diff --git a/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs b/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs index 1b2e82ef23..c383335241 100644 --- a/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs +++ b/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs @@ -90,9 +90,10 @@ namespace Content.IntegrationTests.Tests.Disposal bodyType: KinematicController - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 - type: DoAfter - type: entity @@ -107,9 +108,10 @@ namespace Content.IntegrationTests.Tests.Disposal bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 - type: DoAfter - type: entity @@ -126,9 +128,10 @@ namespace Content.IntegrationTests.Tests.Disposal bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 - type: entity name: DisposalTrunkDummy diff --git a/Content.IntegrationTests/Tests/Doors/AirlockTest.cs b/Content.IntegrationTests/Tests/Doors/AirlockTest.cs index 02c031af1f..e168ee8beb 100644 --- a/Content.IntegrationTests/Tests/Doors/AirlockTest.cs +++ b/Content.IntegrationTests/Tests/Doors/AirlockTest.cs @@ -25,11 +25,12 @@ namespace Content.IntegrationTests.Tests.Doors bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - bounds: ""-0.49,-0.49,0.49,0.49"" - layer: - - Impassable + fix1: + shape: + !type:PhysShapeCircle + bounds: ""-0.49,-0.49,0.49,0.49"" + layer: + - Impassable - type: entity name: AirlockDummy @@ -43,11 +44,12 @@ namespace Content.IntegrationTests.Tests.Doors bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: ""-0.49,-0.49,0.49,0.49"" - mask: - - Impassable + fix1: + shape: + !type:PhysShapeAabb + bounds: ""-0.49,-0.49,0.49,0.49"" + mask: + - Impassable "; [Test] public async Task OpenCloseDestroyTest() diff --git a/Content.IntegrationTests/Tests/Interaction/Click/InteractionSystemTests.cs b/Content.IntegrationTests/Tests/Interaction/Click/InteractionSystemTests.cs index f79c292928..174fe62721 100644 --- a/Content.IntegrationTests/Tests/Interaction/Click/InteractionSystemTests.cs +++ b/Content.IntegrationTests/Tests/Interaction/Click/InteractionSystemTests.cs @@ -26,13 +26,14 @@ namespace Content.IntegrationTests.Tests.Interaction.Click bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: ""-0.25,-0.25,0.25,0.25"" - layer: - - MobMask - mask: - - MobMask + fix1: + shape: + !type:PhysShapeAabb + bounds: ""-0.25,-0.25,0.25,0.25"" + layer: + - MobMask + mask: + - MobMask "; [Test] diff --git a/Content.IntegrationTests/Tests/Utility/EntitySystemExtensionsTest.cs b/Content.IntegrationTests/Tests/Utility/EntitySystemExtensionsTest.cs index da8524ce34..5e84b89686 100644 --- a/Content.IntegrationTests/Tests/Utility/EntitySystemExtensionsTest.cs +++ b/Content.IntegrationTests/Tests/Utility/EntitySystemExtensionsTest.cs @@ -25,11 +25,12 @@ namespace Content.IntegrationTests.Tests.Utility - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: ""-0.49,-0.49,0.49,0.49"" - mask: - - Impassable + fix1: + shape: + !type:PhysShapeAabb + bounds: ""-0.49,-0.49,0.49,0.49"" + mask: + - Impassable "; [Test] diff --git a/Content.Server/Shuttles/Systems/DockingSystem.cs b/Content.Server/Shuttles/Systems/DockingSystem.cs index edcb5dd8a4..b5b4798364 100644 --- a/Content.Server/Shuttles/Systems/DockingSystem.cs +++ b/Content.Server/Shuttles/Systems/DockingSystem.cs @@ -254,13 +254,6 @@ namespace Content.Server.Shuttles.Systems { Undock(uid, component); } - - if (!TryComp(uid, out PhysicsComponent? physicsComponent)) - { - return; - } - - _fixtureSystem.DestroyFixture(uid, DockingFixture, body: physicsComponent); } private void EnableDocking(EntityUid uid, DockingComponent component) @@ -278,6 +271,7 @@ namespace Content.Server.Shuttles.Systems // Listen it makes intersection tests easier; you can probably dump this but it requires a bunch more boilerplate // TODO: I want this to ideally be 2 fixtures to force them to have some level of alignment buuuttt // I also need collisionmanager for that yet again so they get dis. + // TODO: CollisionManager is fine so get to work sloth chop chop. _fixtureSystem.TryCreateFixture(uid, shape, DockingFixture, hard: false, body: physicsComponent); } diff --git a/Resources/Maps/Dungeon/Templates/17x17.yml b/Resources/Maps/Dungeon/Templates/17x17.yml index ed30091b72..cd6c2c186e 100644 --- a/Resources/Maps/Dungeon/Templates/17x17.yml +++ b/Resources/Maps/Dungeon/Templates/17x17.yml @@ -35,8 +35,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 56.3512981 diff --git a/Resources/Maps/Dungeon/Templates/17x5.yml b/Resources/Maps/Dungeon/Templates/17x5.yml index 7467dae0c3..c76e2022d1 100644 --- a/Resources/Maps/Dungeon/Templates/17x5.yml +++ b/Resources/Maps/Dungeon/Templates/17x5.yml @@ -29,8 +29,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 56.3512981 diff --git a/Resources/Maps/Dungeon/Templates/3x5.yml b/Resources/Maps/Dungeon/Templates/3x5.yml index 39512b2cdc..8b06e662a3 100644 --- a/Resources/Maps/Dungeon/Templates/3x5.yml +++ b/Resources/Maps/Dungeon/Templates/3x5.yml @@ -26,8 +26,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 0.45 diff --git a/Resources/Maps/Dungeon/Templates/3x7.yml b/Resources/Maps/Dungeon/Templates/3x7.yml index 39512b2cdc..8b06e662a3 100644 --- a/Resources/Maps/Dungeon/Templates/3x7.yml +++ b/Resources/Maps/Dungeon/Templates/3x7.yml @@ -26,8 +26,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 0.45 diff --git a/Resources/Maps/Dungeon/Templates/5x11.yml b/Resources/Maps/Dungeon/Templates/5x11.yml index 1d6fb945d7..27a1a252dc 100644 --- a/Resources/Maps/Dungeon/Templates/5x11.yml +++ b/Resources/Maps/Dungeon/Templates/5x11.yml @@ -35,8 +35,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 27.154826 diff --git a/Resources/Maps/Dungeon/Templates/5x17.yml b/Resources/Maps/Dungeon/Templates/5x17.yml index c23492f3d8..5239443dfe 100644 --- a/Resources/Maps/Dungeon/Templates/5x17.yml +++ b/Resources/Maps/Dungeon/Templates/5x17.yml @@ -29,8 +29,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 78.7387785 diff --git a/Resources/Maps/Dungeon/Templates/5x5.yml b/Resources/Maps/Dungeon/Templates/5x5.yml index 7a23b62c2b..a484496c6c 100644 --- a/Resources/Maps/Dungeon/Templates/5x5.yml +++ b/Resources/Maps/Dungeon/Templates/5x5.yml @@ -26,8 +26,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 207.9113983 diff --git a/Resources/Maps/Dungeon/Templates/LargeArea2.yml b/Resources/Maps/Dungeon/Templates/LargeArea2.yml index 588502fa44..f30e876df5 100644 --- a/Resources/Maps/Dungeon/Templates/LargeArea2.yml +++ b/Resources/Maps/Dungeon/Templates/LargeArea2.yml @@ -36,8 +36,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 56.3512981 diff --git a/Resources/Maps/Dungeon/Templates/LargeArea3.yml b/Resources/Maps/Dungeon/Templates/LargeArea3.yml index 98c8b14e41..9436d937bc 100644 --- a/Resources/Maps/Dungeon/Templates/LargeArea3.yml +++ b/Resources/Maps/Dungeon/Templates/LargeArea3.yml @@ -36,8 +36,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 56.3512981 diff --git a/Resources/Maps/Dungeon/Templates/LargeArea4.yml b/Resources/Maps/Dungeon/Templates/LargeArea4.yml index 0a7d1f1cba..9a3a85c3f2 100644 --- a/Resources/Maps/Dungeon/Templates/LargeArea4.yml +++ b/Resources/Maps/Dungeon/Templates/LargeArea4.yml @@ -36,8 +36,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 56.3512981 diff --git a/Resources/Maps/Dungeon/Templates/MediumArea2.yml b/Resources/Maps/Dungeon/Templates/MediumArea2.yml index bc4e94bfb0..de64a53982 100644 --- a/Resources/Maps/Dungeon/Templates/MediumArea2.yml +++ b/Resources/Maps/Dungeon/Templates/MediumArea2.yml @@ -30,8 +30,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 78.7387785 diff --git a/Resources/Maps/Dungeon/Templates/MediumArea3.yml b/Resources/Maps/Dungeon/Templates/MediumArea3.yml index 68d8305b78..1e208da5c5 100644 --- a/Resources/Maps/Dungeon/Templates/MediumArea3.yml +++ b/Resources/Maps/Dungeon/Templates/MediumArea3.yml @@ -30,8 +30,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 78.7387785 diff --git a/Resources/Maps/Dungeon/Templates/MediumArea4.yml b/Resources/Maps/Dungeon/Templates/MediumArea4.yml index 4ad37c1dc2..50362ddc1e 100644 --- a/Resources/Maps/Dungeon/Templates/MediumArea4.yml +++ b/Resources/Maps/Dungeon/Templates/MediumArea4.yml @@ -30,8 +30,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 78.7387785 diff --git a/Resources/Maps/Dungeon/experiment.yml b/Resources/Maps/Dungeon/experiment.yml index 5911103b08..9f87123564 100644 --- a/Resources/Maps/Dungeon/experiment.yml +++ b/Resources/Maps/Dungeon/experiment.yml @@ -7046,29 +7046,25 @@ 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 @@ -9036,62 +9032,7 @@ entities: pos: 6.5,24.5 parent: 1653 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.55,-0.55 - - 0.55,-0.55 - - 0.55,0.55 - - -0.55,0.55 - mask: [] - layer: - - Impassable - - MidImpassable - - LowImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: conveyor - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.15,-0.15 - - 0.15,-0.15 - - 0.15,0.15 - - -0.15,0.15 - mask: [] - layer: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: brrt - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.49,-0.49 - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - mask: - - Impassable - layer: - - BulletImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: collision - type: Fixtures + - proto: ReinforcedWindow entities: - uid: 739 diff --git a/Resources/Maps/Dungeon/lava_brig.yml b/Resources/Maps/Dungeon/lava_brig.yml index d518a0a1d4..aaa30c9f48 100644 --- a/Resources/Maps/Dungeon/lava_brig.yml +++ b/Resources/Maps/Dungeon/lava_brig.yml @@ -8528,16 +8528,14 @@ 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 diff --git a/Resources/Maps/Misc/terminal.yml b/Resources/Maps/Misc/terminal.yml index 0b60188df4..4bda43276c 100644 --- a/Resources/Maps/Misc/terminal.yml +++ b/Resources/Maps/Misc/terminal.yml @@ -57,8 +57,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - id: Empty type: BecomesStation - type: OccluderTree @@ -821,336 +820,56 @@ entities: pos: 4.5,-17.5 parent: 818 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 7 components: - rot: -1.5707963267948966 rad pos: 4.5,-10.5 parent: 818 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 8 components: - rot: 1.5707963267948966 rad pos: -5.5,-17.5 parent: 818 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 9 components: - rot: 1.5707963267948966 rad pos: -5.5,-10.5 parent: 818 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 15 components: - rot: -1.5707963267948966 rad pos: -15.5,-17.5 parent: 818 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 16 components: - rot: -1.5707963267948966 rad pos: -15.5,-10.5 parent: 818 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 17 components: - rot: 1.5707963267948966 rad pos: 14.5,-17.5 parent: 818 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 18 components: - rot: 1.5707963267948966 rad pos: 14.5,-10.5 parent: 818 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AlwaysPoweredWallLight entities: - uid: 146 diff --git a/Resources/Maps/Salvage/asteroid-base.yml b/Resources/Maps/Salvage/asteroid-base.yml index bf65ee3777..a65b0597c5 100644 --- a/Resources/Maps/Salvage/asteroid-base.yml +++ b/Resources/Maps/Salvage/asteroid-base.yml @@ -44,8 +44,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Salvage/cargo-1.yml b/Resources/Maps/Salvage/cargo-1.yml index 418c3a8a99..787e16739d 100644 --- a/Resources/Maps/Salvage/cargo-1.yml +++ b/Resources/Maps/Salvage/cargo-1.yml @@ -37,8 +37,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -225,8 +224,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 58 components: - pos: 0.5,-0.5 @@ -234,8 +232,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 59 components: - pos: 0.5,0.5 @@ -248,8 +245,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 61 components: - pos: 1.5,0.5 @@ -257,8 +253,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 75 components: - pos: -1.5,-0.5 @@ -276,8 +271,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 83 components: - pos: -1.5,-1.5 @@ -402,8 +396,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 81 components: - pos: 2.5,0.5 @@ -411,8 +404,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 82 components: - pos: 1.5,0.5 @@ -420,8 +412,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - proto: Chair entities: - uid: 118 diff --git a/Resources/Maps/Salvage/medium-1.yml b/Resources/Maps/Salvage/medium-1.yml index ceaff57d2b..19842ad4a7 100644 --- a/Resources/Maps/Salvage/medium-1.yml +++ b/Resources/Maps/Salvage/medium-1.yml @@ -40,8 +40,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -448,8 +447,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 116 components: - pos: 1.5,1.5 @@ -457,8 +455,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 117 components: - pos: 1.5,0.5 @@ -466,8 +463,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 118 components: - pos: 1.5,-0.5 @@ -475,8 +471,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 119 components: - pos: 0.5,-0.5 @@ -486,8 +481,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 120 components: - pos: -0.5,-0.5 @@ -497,8 +491,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 121 components: - pos: -1.5,-0.5 @@ -508,8 +501,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 122 components: - pos: -2.5,-0.5 @@ -517,8 +509,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 123 components: - pos: -1.5,-0.5 @@ -528,8 +519,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 124 components: - pos: -1.5,-1.5 @@ -537,8 +527,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 125 components: - pos: -1.5,-2.5 @@ -546,8 +535,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 126 components: - pos: -1.5,-3.5 @@ -555,8 +543,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 127 components: - pos: -1.5,-4.5 @@ -566,8 +553,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 128 components: - pos: -2.5,-4.5 @@ -577,8 +563,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 129 components: - pos: -0.5,0.5 @@ -586,8 +571,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 130 components: - pos: -0.5,1.5 @@ -595,8 +579,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 131 components: - pos: 1.5,3.5 @@ -606,8 +589,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 132 components: - pos: 1.5,4.5 @@ -615,8 +597,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 133 components: - pos: 0.5,4.5 @@ -626,8 +607,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 134 components: - pos: -0.5,4.5 @@ -637,8 +617,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 135 components: - pos: -1.5,4.5 @@ -648,8 +627,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 142 components: - pos: 1.5,-1.5 @@ -657,8 +635,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 143 components: - pos: 1.5,-2.5 @@ -666,8 +643,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 144 components: - pos: 2.5,-2.5 @@ -675,8 +651,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 145 components: - pos: 3.5,-2.5 @@ -684,8 +659,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 146 components: - pos: 3.5,-1.5 @@ -693,8 +667,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 168 components: - pos: 2.5,-3.5 @@ -745,8 +718,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 111 components: - pos: 1.5,0.5 @@ -754,8 +726,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 112 components: - pos: 1.5,1.5 @@ -763,8 +734,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 113 components: - pos: 1.5,2.5 @@ -774,8 +744,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 150 components: - pos: -2.5,-2.5 diff --git a/Resources/Maps/Salvage/medium-crashed-shuttle.yml b/Resources/Maps/Salvage/medium-crashed-shuttle.yml index 2474b4aec2..a2b1c1c578 100644 --- a/Resources/Maps/Salvage/medium-crashed-shuttle.yml +++ b/Resources/Maps/Salvage/medium-crashed-shuttle.yml @@ -41,8 +41,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -284,37 +283,6 @@ entities: pos: 2.5,-1.5 parent: 166 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - layer: - - Impassable - - HighImpassable - - BulletImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures - proto: APCBasic entities: - uid: 105 diff --git a/Resources/Maps/Salvage/medium-dock.yml b/Resources/Maps/Salvage/medium-dock.yml index 282e9d8912..aea050da8f 100644 --- a/Resources/Maps/Salvage/medium-dock.yml +++ b/Resources/Maps/Salvage/medium-dock.yml @@ -37,8 +37,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -175,84 +174,14 @@ entities: pos: -1.5,6.5 parent: 50 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 59 components: - rot: 1.5707963267948966 rad pos: 3.5,6.5 parent: 50 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AlwaysPoweredLightExterior entities: - uid: 81 diff --git a/Resources/Maps/Salvage/medium-library.yml b/Resources/Maps/Salvage/medium-library.yml index 364d044ab8..9cd074ab96 100644 --- a/Resources/Maps/Salvage/medium-library.yml +++ b/Resources/Maps/Salvage/medium-library.yml @@ -41,8 +41,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Salvage/medium-pet-hospital.yml b/Resources/Maps/Salvage/medium-pet-hospital.yml index 92172abe4e..efb2076224 100644 --- a/Resources/Maps/Salvage/medium-pet-hospital.yml +++ b/Resources/Maps/Salvage/medium-pet-hospital.yml @@ -42,8 +42,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -463,8 +462,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 144 components: - pos: 2.5,-3.5 @@ -474,8 +472,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 146 components: - pos: 1.5,-3.5 @@ -483,8 +480,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 147 components: - pos: 1.5,-4.5 @@ -492,8 +488,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 148 components: - pos: 1.5,-5.5 @@ -501,8 +496,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 149 components: - pos: 2.5,-5.5 @@ -510,8 +504,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 150 components: - pos: 3.5,-5.5 @@ -519,8 +512,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 151 components: - pos: 4.5,-5.5 @@ -528,8 +520,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 152 components: - pos: 5.5,-5.5 @@ -537,8 +528,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 153 components: - pos: 5.5,-4.5 @@ -546,8 +536,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 154 components: - pos: 5.5,-3.5 @@ -555,8 +544,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 155 components: - pos: 5.5,-2.5 @@ -564,8 +552,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 156 components: - pos: 6.5,-5.5 @@ -573,8 +560,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 157 components: - pos: 7.5,-5.5 @@ -582,8 +568,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 158 components: - pos: 8.5,-5.5 @@ -591,8 +576,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 159 components: - pos: 9.5,-5.5 @@ -600,8 +584,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 160 components: - pos: 10.5,-5.5 @@ -609,8 +592,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 161 components: - pos: 10.5,-4.5 @@ -618,8 +600,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 162 components: - pos: 10.5,-3.5 @@ -627,8 +608,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 163 components: - pos: 10.5,-2.5 @@ -636,8 +616,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 164 components: - pos: 10.5,-6.5 @@ -645,8 +624,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 165 components: - pos: 11.5,-6.5 @@ -654,8 +632,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 166 components: - pos: 5.5,-6.5 @@ -663,8 +640,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 167 components: - pos: 5.5,-7.5 @@ -674,8 +650,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 168 components: - pos: 5.5,-8.5 @@ -683,8 +658,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 169 components: - pos: 5.5,-9.5 @@ -692,8 +666,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 170 components: - pos: 4.5,-9.5 @@ -701,8 +674,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 171 components: - pos: 2.5,-9.5 @@ -710,8 +682,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 172 components: - pos: 3.5,-9.5 @@ -719,8 +690,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 173 components: - pos: 5.5,-10.5 @@ -728,8 +698,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 238 components: - pos: 0.5,-5.5 @@ -737,8 +706,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 239 components: - pos: -0.5,-5.5 @@ -748,8 +716,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 240 components: - pos: -0.5,-6.5 @@ -759,8 +726,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 241 components: - pos: -0.5,-7.5 @@ -770,8 +736,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 242 components: - pos: 5.5,-11.5 @@ -779,8 +744,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 243 components: - pos: 4.5,-11.5 @@ -788,8 +752,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 244 components: - pos: 3.5,-11.5 @@ -799,8 +762,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 245 components: - pos: 2.5,-11.5 @@ -810,8 +772,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 246 components: - pos: 1.5,-11.5 @@ -821,8 +782,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 247 components: - pos: 12.5,-6.5 @@ -830,8 +790,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 248 components: - pos: 13.5,-6.5 @@ -841,8 +800,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 249 components: - pos: 13.5,-7.5 @@ -852,8 +810,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 256 components: - pos: 11.5,-7.5 @@ -861,8 +818,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 257 components: - pos: 11.5,-8.5 @@ -870,8 +826,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 258 components: - pos: 11.5,-9.5 @@ -879,8 +834,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 259 components: - pos: 11.5,-10.5 @@ -888,8 +842,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - proto: CableHV entities: - uid: 224 @@ -899,8 +852,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 225 components: - pos: 1.5,-0.5 @@ -910,8 +862,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 226 components: - pos: 2.5,-0.5 @@ -921,8 +872,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - proto: CableMV entities: - uid: 220 @@ -934,8 +884,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 221 components: - pos: 2.5,-2.5 @@ -943,8 +892,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 222 components: - pos: 2.5,-1.5 @@ -952,8 +900,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 223 components: - pos: 2.5,-0.5 @@ -963,8 +910,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - proto: Catwalk entities: - uid: 138 diff --git a/Resources/Maps/Salvage/medium-pirate.yml b/Resources/Maps/Salvage/medium-pirate.yml index 4f3059a809..9b5f474a85 100644 --- a/Resources/Maps/Salvage/medium-pirate.yml +++ b/Resources/Maps/Salvage/medium-pirate.yml @@ -37,8 +37,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -120,8 +119,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 101 components: - pos: 0.5,0.5 @@ -129,8 +127,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 102 components: - pos: -0.5,0.5 @@ -138,8 +135,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 103 components: - pos: -0.5,1.5 @@ -149,8 +145,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 108 components: - pos: 2.5,0.5 @@ -158,8 +153,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 109 components: - pos: 3.5,0.5 @@ -169,8 +163,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 110 components: - pos: 3.5,-0.5 @@ -178,8 +171,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 111 components: - pos: 3.5,-1.5 @@ -187,8 +179,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 112 components: - pos: -0.5,0.5 @@ -196,8 +187,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 113 components: - pos: -1.5,0.5 @@ -205,8 +195,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 114 components: - pos: -1.5,-0.5 @@ -214,8 +203,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 115 components: - pos: -1.5,-1.5 @@ -223,8 +211,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 116 components: - pos: -0.5,2.5 @@ -234,8 +221,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 117 components: - pos: -0.5,3.5 @@ -245,8 +231,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 118 components: - pos: 0.5,3.5 @@ -256,8 +241,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 119 components: - pos: 1.5,3.5 @@ -267,8 +251,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 120 components: - pos: 2.5,3.5 @@ -278,8 +261,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 121 components: - pos: 2.5,2.5 @@ -289,8 +271,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 122 components: - pos: 2.5,1.5 @@ -300,8 +281,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 123 components: - pos: -1.5,2.5 @@ -311,8 +291,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 124 components: - pos: -2.5,2.5 @@ -322,8 +301,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 125 components: - pos: 3.5,2.5 @@ -333,8 +311,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 126 components: - pos: 4.5,2.5 @@ -344,8 +321,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 127 components: - pos: 2.5,4.5 @@ -355,8 +331,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 128 components: - pos: -0.5,4.5 @@ -366,8 +341,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - proto: CableMV entities: - uid: 100 @@ -377,8 +351,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 104 components: - pos: -0.5,1.5 @@ -388,8 +361,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 105 components: - pos: -0.5,0.5 @@ -397,8 +369,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 106 components: - pos: -2.5,0.5 @@ -406,8 +377,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 107 components: - pos: -2.5,1.5 @@ -415,8 +385,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - proto: CartridgeAntiMateriel entities: - uid: 21 diff --git a/Resources/Maps/Salvage/medium-ruined-emergency-shuttle.yml b/Resources/Maps/Salvage/medium-ruined-emergency-shuttle.yml index e250979060..b4efb6b60f 100644 --- a/Resources/Maps/Salvage/medium-ruined-emergency-shuttle.yml +++ b/Resources/Maps/Salvage/medium-ruined-emergency-shuttle.yml @@ -40,8 +40,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -70,168 +69,28 @@ entities: pos: -5.5,-2.5 parent: 130 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 39 components: - rot: -1.5707963267948966 rad pos: -5.5,3.5 parent: 130 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 40 components: - rot: -1.5707963267948966 rad pos: -5.5,-4.5 parent: 130 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 41 components: - rot: -1.5707963267948966 rad pos: -5.5,5.5 parent: 130 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AlwaysPoweredWallLight entities: - uid: 126 diff --git a/Resources/Maps/Salvage/medium-silent-orchestra.yml b/Resources/Maps/Salvage/medium-silent-orchestra.yml index 4c78b6fe30..681ba1ddb9 100644 --- a/Resources/Maps/Salvage/medium-silent-orchestra.yml +++ b/Resources/Maps/Salvage/medium-silent-orchestra.yml @@ -40,8 +40,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Salvage/medium-template.yml b/Resources/Maps/Salvage/medium-template.yml index a90127ee54..3f7d245a66 100644 --- a/Resources/Maps/Salvage/medium-template.yml +++ b/Resources/Maps/Salvage/medium-template.yml @@ -36,8 +36,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Salvage/medium-vault-1.yml b/Resources/Maps/Salvage/medium-vault-1.yml index f33d67745a..fa8cfa1411 100644 --- a/Resources/Maps/Salvage/medium-vault-1.yml +++ b/Resources/Maps/Salvage/medium-vault-1.yml @@ -41,8 +41,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -870,27 +869,7 @@ entities: type: Transform - locked: False type: Lock - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.25,-0.48 - - 0.25,0.48 - - -0.25,0.48 - - -0.25,-0.48 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 145 - hard: True - restitution: 0 - friction: 0.4 - id: null - type: Fixtures + - open: True removedMasks: 20 type: EntityStorage diff --git a/Resources/Maps/Salvage/ruin-cargo-salvage.yml b/Resources/Maps/Salvage/ruin-cargo-salvage.yml index 9ba4348d85..cd3da7a37c 100644 --- a/Resources/Maps/Salvage/ruin-cargo-salvage.yml +++ b/Resources/Maps/Salvage/ruin-cargo-salvage.yml @@ -56,8 +56,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -693,126 +692,21 @@ entities: - pos: 21.5,4.5 parent: 16 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 452 components: - rot: -1.5707963267948966 rad pos: -14.5,-0.5 parent: 16 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 486 components: - rot: 3.141592653589793 rad pos: 21.5,-3.5 parent: 16 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: APCBasic entities: - uid: 513 @@ -1977,8 +1871,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 515 components: - pos: 6.5,-0.5 @@ -1986,8 +1879,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 516 components: - pos: 5.5,-0.5 @@ -1995,8 +1887,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 517 components: - pos: 4.5,-0.5 @@ -2004,8 +1895,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 518 components: - pos: 3.5,-0.5 @@ -2013,8 +1903,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 519 components: - pos: 2.5,-0.5 @@ -2022,8 +1911,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 520 components: - pos: 1.5,-0.5 @@ -2033,8 +1921,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 521 components: - pos: 0.5,-0.5 @@ -2044,8 +1931,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 522 components: - pos: -0.5,-0.5 @@ -2053,8 +1939,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 523 components: - pos: -1.5,-0.5 @@ -2062,8 +1947,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 524 components: - pos: -2.5,-0.5 @@ -2071,8 +1955,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 525 components: - pos: -3.5,-0.5 @@ -2080,8 +1963,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 526 components: - pos: -4.5,-0.5 @@ -2089,8 +1971,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 527 components: - pos: -5.5,-0.5 @@ -2100,8 +1981,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 528 components: - pos: -6.5,-0.5 @@ -2109,8 +1989,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 529 components: - pos: -7.5,-0.5 @@ -2118,8 +1997,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 530 components: - pos: -8.5,-0.5 @@ -2127,8 +2005,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 531 components: - pos: -9.5,-0.5 @@ -2136,8 +2013,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 532 components: - pos: -5.5,0.5 @@ -2145,8 +2021,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 533 components: - pos: -5.5,1.5 @@ -2154,8 +2029,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 534 components: - pos: -5.5,2.5 @@ -2163,8 +2037,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 535 components: - pos: -5.5,3.5 @@ -2172,8 +2045,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 536 components: - pos: -2.5,-1.5 @@ -2181,8 +2053,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 537 components: - pos: -2.5,-2.5 @@ -2190,8 +2061,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 538 components: - pos: -2.5,-3.5 @@ -2199,8 +2069,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 539 components: - pos: -2.5,-4.5 @@ -2208,8 +2077,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 540 components: - pos: -2.5,-5.5 @@ -2217,8 +2085,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 541 components: - pos: -2.5,-6.5 @@ -2226,8 +2093,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 542 components: - pos: 1.5,-1.5 @@ -2235,8 +2101,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 543 components: - pos: 1.5,-2.5 @@ -2244,8 +2109,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 544 components: - pos: 1.5,-3.5 @@ -2253,8 +2117,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 545 components: - pos: 1.5,-4.5 @@ -2262,8 +2125,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 546 components: - pos: 1.5,-5.5 @@ -2271,8 +2133,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 547 components: - pos: 1.5,-6.5 @@ -2280,8 +2141,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 548 components: - pos: 5.5,-1.5 @@ -2291,8 +2151,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 549 components: - pos: 5.5,-2.5 @@ -2300,8 +2159,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 554 components: - pos: 5.5,0.5 @@ -2309,8 +2167,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 555 components: - pos: 5.5,1.5 @@ -2318,8 +2175,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 556 components: - pos: 5.5,2.5 @@ -2327,8 +2183,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 557 components: - pos: 5.5,3.5 @@ -2336,8 +2191,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 558 components: - pos: 5.5,4.5 @@ -2347,8 +2201,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 559 components: - pos: 5.5,5.5 @@ -2356,8 +2209,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 560 components: - pos: 1.5,5.5 @@ -2365,8 +2217,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 561 components: - pos: 1.5,4.5 @@ -2374,8 +2225,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 562 components: - pos: 1.5,3.5 @@ -2383,8 +2233,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 563 components: - pos: 1.5,2.5 @@ -2392,8 +2241,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 564 components: - pos: 1.5,1.5 @@ -2401,8 +2249,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 565 components: - pos: 1.5,0.5 @@ -2410,8 +2257,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 566 components: - pos: -2.5,0.5 @@ -2419,8 +2265,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 567 components: - pos: -2.5,1.5 @@ -2428,8 +2273,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 568 components: - pos: -2.5,2.5 @@ -2437,8 +2281,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 569 components: - pos: -2.5,3.5 @@ -2446,8 +2289,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 570 components: - pos: -2.5,4.5 @@ -2455,8 +2297,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 571 components: - pos: -2.5,5.5 @@ -2464,8 +2305,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 572 components: - pos: 6.5,1.5 @@ -2473,8 +2313,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 573 components: - pos: 7.5,1.5 @@ -2484,8 +2323,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 574 components: - pos: 8.5,1.5 @@ -2495,8 +2333,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 575 components: - pos: -10.5,-0.5 @@ -2504,8 +2341,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 587 components: - pos: 9.5,1.5 @@ -2513,8 +2349,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 588 components: - pos: 10.5,1.5 @@ -2522,8 +2357,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 589 components: - pos: 11.5,1.5 @@ -2531,8 +2365,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 590 components: - pos: 12.5,1.5 @@ -2540,8 +2373,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 591 components: - pos: 13.5,1.5 @@ -2549,8 +2381,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 650 components: - pos: 15.5,1.5 @@ -2730,8 +2561,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 495 components: - pos: 4.5,11.5 @@ -2741,8 +2571,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - proto: CableHVStack1 entities: - uid: 596 @@ -2781,8 +2610,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 498 components: - pos: 4.5,10.5 @@ -2792,8 +2620,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 499 components: - pos: 5.5,6.5 @@ -2816,8 +2643,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 503 components: - pos: 4.5,5.5 @@ -2827,8 +2653,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 504 components: - pos: 4.5,4.5 @@ -2836,8 +2661,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 505 components: - pos: 4.5,3.5 @@ -2845,8 +2669,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 506 components: - pos: 4.5,2.5 @@ -2854,8 +2677,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 507 components: - pos: 4.5,1.5 @@ -2863,8 +2685,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 508 components: - pos: 4.5,0.5 @@ -2872,8 +2693,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 509 components: - pos: 4.5,-0.5 @@ -2881,8 +2701,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 510 components: - pos: 5.5,-0.5 @@ -2890,8 +2709,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 511 components: - pos: 6.5,-0.5 @@ -2899,8 +2717,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 512 components: - pos: 7.5,-0.5 @@ -2910,8 +2727,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - proto: Catwalk entities: - uid: 107 diff --git a/Resources/Maps/Salvage/small-1.yml b/Resources/Maps/Salvage/small-1.yml index f39d0dbfe9..39cd6c77d6 100644 --- a/Resources/Maps/Salvage/small-1.yml +++ b/Resources/Maps/Salvage/small-1.yml @@ -37,8 +37,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Salvage/small-2.yml b/Resources/Maps/Salvage/small-2.yml index f18356b4d0..9cf7e09e49 100644 --- a/Resources/Maps/Salvage/small-2.yml +++ b/Resources/Maps/Salvage/small-2.yml @@ -38,8 +38,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -117,8 +116,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 29 components: - pos: -0.5,0.5 @@ -126,8 +124,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 30 components: - pos: -0.5,-0.5 @@ -135,8 +132,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 31 components: - pos: -0.5,-1.5 @@ -144,8 +140,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 32 components: - pos: 0.5,-1.5 @@ -153,8 +148,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 33 components: - pos: -1.5,-1.5 @@ -162,8 +156,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 34 components: - pos: 1.5,-1.5 @@ -171,8 +164,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 35 components: - pos: 2.5,-1.5 @@ -180,8 +172,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 38 components: - pos: -1.5,0.5 @@ -189,8 +180,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 39 components: - pos: -2.5,0.5 @@ -198,8 +188,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 40 components: - pos: 0.5,0.5 @@ -207,8 +196,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 74 components: - pos: -1.5,1.5 @@ -317,27 +305,6 @@ entities: - pos: 1.5,2.5 parent: 55 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.25,-0.48 - - 0.25,0.48 - - -0.25,0.48 - - -0.25,-0.48 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 145 - hard: True - restitution: 0 - friction: 0.4 - id: null - type: Fixtures - open: True removedMasks: 20 type: EntityStorage diff --git a/Resources/Maps/Salvage/small-3.yml b/Resources/Maps/Salvage/small-3.yml index b900bd47f3..2c65819ccf 100644 --- a/Resources/Maps/Salvage/small-3.yml +++ b/Resources/Maps/Salvage/small-3.yml @@ -37,8 +37,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Salvage/small-4.yml b/Resources/Maps/Salvage/small-4.yml index 21e94bcc36..331d0ba071 100644 --- a/Resources/Maps/Salvage/small-4.yml +++ b/Resources/Maps/Salvage/small-4.yml @@ -37,8 +37,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -87,8 +86,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 18 components: - pos: -0.5,0.5 @@ -96,8 +94,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 19 components: - pos: 0.5,0.5 @@ -105,8 +102,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 20 components: - pos: 1.5,0.5 @@ -114,8 +110,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 48 components: - pos: -0.5,-2.5 @@ -123,8 +118,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 51 components: - pos: -0.5,-1.5 @@ -132,8 +126,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 54 components: - pos: -0.5,-3.5 @@ -143,8 +136,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 56 components: - pos: 2.5,0.5 @@ -154,8 +146,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - proto: ClothingHeadHatTophat entities: - uid: 41 diff --git a/Resources/Maps/Salvage/small-a-1.yml b/Resources/Maps/Salvage/small-a-1.yml index c3248a34cb..f1cef6f31b 100644 --- a/Resources/Maps/Salvage/small-a-1.yml +++ b/Resources/Maps/Salvage/small-a-1.yml @@ -37,8 +37,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Salvage/small-ai-survey-drone.yml b/Resources/Maps/Salvage/small-ai-survey-drone.yml index 1796943c09..e639078dc5 100644 --- a/Resources/Maps/Salvage/small-ai-survey-drone.yml +++ b/Resources/Maps/Salvage/small-ai-survey-drone.yml @@ -37,8 +37,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -69,8 +68,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 34 components: - pos: -0.5,-3.5 @@ -80,8 +78,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 35 components: - pos: -0.5,1.5 @@ -89,8 +86,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 37 components: - pos: -0.5,-0.5 @@ -98,8 +94,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 38 components: - pos: -0.5,-1.5 @@ -107,8 +102,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 39 components: - pos: -0.5,-2.5 @@ -116,8 +110,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 42 components: - pos: -0.5,2.5 @@ -127,8 +120,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 43 components: - pos: 0.5,2.5 @@ -138,8 +130,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 44 components: - pos: 1.5,2.5 @@ -149,8 +140,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 46 components: - pos: -2.5,2.5 @@ -160,8 +150,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 47 components: - pos: -1.5,-3.5 @@ -171,8 +160,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 48 components: - pos: 0.5,-3.5 @@ -182,8 +170,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 49 components: - pos: 0.5,-1.5 @@ -191,8 +178,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 50 components: - pos: 1.5,-1.5 @@ -202,8 +188,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 51 components: - pos: -2.5,-1.5 @@ -213,8 +198,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - proto: CableHV entities: - uid: 60 @@ -226,8 +210,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 61 components: - pos: 2.5,-3.5 @@ -237,8 +220,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 62 components: - pos: -3.5,-1.5 @@ -248,8 +230,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 63 components: - pos: 2.5,-1.5 @@ -259,8 +240,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 64 components: - pos: 1.5,-2.5 @@ -270,8 +250,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 65 components: - pos: -2.5,-2.5 @@ -281,8 +260,7 @@ entities: type: AmbientSound - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - proto: Catwalk entities: - uid: 75 diff --git a/Resources/Maps/Salvage/small-ship-1.yml b/Resources/Maps/Salvage/small-ship-1.yml index 4cac5d530f..4877a9efed 100644 --- a/Resources/Maps/Salvage/small-ship-1.yml +++ b/Resources/Maps/Salvage/small-ship-1.yml @@ -35,8 +35,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Salvage/small-template.yml b/Resources/Maps/Salvage/small-template.yml index 8a85c3f359..17a0df3d60 100644 --- a/Resources/Maps/Salvage/small-template.yml +++ b/Resources/Maps/Salvage/small-template.yml @@ -36,8 +36,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Salvage/stationstation.yml b/Resources/Maps/Salvage/stationstation.yml index ac3e56aa62..1671af8b9a 100644 --- a/Resources/Maps/Salvage/stationstation.yml +++ b/Resources/Maps/Salvage/stationstation.yml @@ -58,8 +58,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Salvage/tick-colony.yml b/Resources/Maps/Salvage/tick-colony.yml index e2d22ff886..b108f6e80f 100644 --- a/Resources/Maps/Salvage/tick-colony.yml +++ b/Resources/Maps/Salvage/tick-colony.yml @@ -38,8 +38,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Salvage/wh-salvage.yml b/Resources/Maps/Salvage/wh-salvage.yml index 3fe6a92cf3..eb4709f15b 100644 --- a/Resources/Maps/Salvage/wh-salvage.yml +++ b/Resources/Maps/Salvage/wh-salvage.yml @@ -42,8 +42,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Shuttles/arrivals.yml b/Resources/Maps/Shuttles/arrivals.yml index e37815dbf3..d851ebbb4f 100644 --- a/Resources/Maps/Shuttles/arrivals.yml +++ b/Resources/Maps/Shuttles/arrivals.yml @@ -39,8 +39,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - id: Empty type: BecomesStation - type: OccluderTree @@ -209,168 +208,28 @@ entities: pos: 3.5,-2.5 parent: 292 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 178 components: - rot: 1.5707963267948966 rad pos: 3.5,4.5 parent: 292 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 179 components: - rot: -1.5707963267948966 rad pos: -4.5,4.5 parent: 292 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 180 components: - rot: -1.5707963267948966 rad pos: -4.5,-2.5 parent: 292 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: APCBasic entities: - uid: 116 diff --git a/Resources/Maps/Shuttles/cargo.yml b/Resources/Maps/Shuttles/cargo.yml index 5502477694..3031b0a9ac 100644 --- a/Resources/Maps/Shuttles/cargo.yml +++ b/Resources/Maps/Shuttles/cargo.yml @@ -39,8 +39,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -353,42 +352,7 @@ entities: pos: 0.5,1.5 parent: 173 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleLocked entities: - uid: 50 @@ -397,126 +361,21 @@ entities: pos: -5.5,3.5 parent: 173 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 52 components: - rot: 1.5707963267948966 rad pos: 0.5,3.5 parent: 173 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 53 components: - rot: -1.5707963267948966 rad pos: -5.5,1.5 parent: 173 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: APCHyperCapacity entities: - uid: 79 diff --git a/Resources/Maps/Shuttles/dart.yml b/Resources/Maps/Shuttles/dart.yml index 607b817b6e..48fb6723fc 100644 --- a/Resources/Maps/Shuttles/dart.yml +++ b/Resources/Maps/Shuttles/dart.yml @@ -55,8 +55,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - type: GridPathfinding @@ -751,252 +750,42 @@ entities: pos: -9.5,-2.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 413 components: - rot: -1.5707963267948966 rad pos: -9.5,-1.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 414 components: - rot: -1.5707963267948966 rad pos: -9.5,-0.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 415 components: - rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 416 components: - rot: 1.5707963267948966 rad pos: 8.5,-1.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 417 components: - rot: 1.5707963267948966 rad pos: 8.5,-2.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockGlass entities: - uid: 893 @@ -3274,15 +3063,13 @@ entities: pos: -6.5,2.5 parent: 1 type: Transform - - fixtures: [] - type: Fixtures + - uid: 644 components: - pos: 2.5,-9.5 parent: 1 type: Transform - - fixtures: [] - type: Fixtures + - proto: FoodBoxDonkpocketHonk entities: - uid: 633 diff --git a/Resources/Maps/Shuttles/emergency.yml b/Resources/Maps/Shuttles/emergency.yml index d1210d949b..021f5653dc 100644 --- a/Resources/Maps/Shuttles/emergency.yml +++ b/Resources/Maps/Shuttles/emergency.yml @@ -42,8 +42,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -559,336 +558,56 @@ entities: pos: -7.5,7.5 parent: 410 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 6 components: - rot: -1.5707963267948966 rad pos: -7.5,5.5 parent: 410 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 12 components: - rot: -1.5707963267948966 rad pos: -7.5,-0.5 parent: 410 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 14 components: - rot: -1.5707963267948966 rad pos: -7.5,-2.5 parent: 410 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 99 components: - rot: 1.5707963267948966 rad pos: 2.5,-0.5 parent: 410 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 100 components: - rot: 1.5707963267948966 rad pos: 2.5,-2.5 parent: 410 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 145 components: - rot: 1.5707963267948966 rad pos: 2.5,7.5 parent: 410 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 152 components: - rot: 1.5707963267948966 rad pos: 2.5,5.5 parent: 410 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockMedicalGlassLocked entities: - uid: 57 diff --git a/Resources/Maps/Shuttles/emergency_box.yml b/Resources/Maps/Shuttles/emergency_box.yml index 0b9758d533..4f48bf58b3 100644 --- a/Resources/Maps/Shuttles/emergency_box.yml +++ b/Resources/Maps/Shuttles/emergency_box.yml @@ -43,8 +43,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -696,336 +695,56 @@ entities: pos: -10.5,9.5 parent: 603 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 151 components: - rot: -1.5707963267948966 rad pos: -10.5,11.5 parent: 603 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 205 components: - rot: 1.5707963267948966 rad pos: 5.5,1.5 parent: 603 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 303 components: - rot: -1.5707963267948966 rad pos: -10.5,3.5 parent: 603 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 304 components: - rot: 1.5707963267948966 rad pos: 5.5,11.5 parent: 603 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 351 components: - rot: 1.5707963267948966 rad pos: 5.5,3.5 parent: 603 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 352 components: - rot: -1.5707963267948966 rad pos: -10.5,1.5 parent: 603 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 383 components: - rot: 1.5707963267948966 rad pos: 5.5,9.5 parent: 603 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockMedicalGlassLocked entities: - uid: 476 diff --git a/Resources/Maps/Shuttles/emergency_courser.yml b/Resources/Maps/Shuttles/emergency_courser.yml index bcf98858c4..8bed0082ac 100644 --- a/Resources/Maps/Shuttles/emergency_courser.yml +++ b/Resources/Maps/Shuttles/emergency_courser.yml @@ -48,8 +48,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 68.8656601 @@ -509,336 +508,56 @@ entities: pos: 6.5,-5.5 parent: 656 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 11 components: - rot: 1.5707963267948966 rad pos: 6.5,-3.5 parent: 656 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 12 components: - rot: 1.5707963267948966 rad pos: 6.5,4.5 parent: 656 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 13 components: - rot: 1.5707963267948966 rad pos: 6.5,2.5 parent: 656 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 265 components: - rot: -1.5707963267948966 rad pos: -6.5,4.5 parent: 656 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 266 components: - rot: -1.5707963267948966 rad pos: -6.5,2.5 parent: 656 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 267 components: - rot: -1.5707963267948966 rad pos: -6.5,-5.5 parent: 656 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 268 components: - rot: -1.5707963267948966 rad pos: -6.5,-3.5 parent: 656 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockMedicalGlassLocked entities: - uid: 595 diff --git a/Resources/Maps/Shuttles/emergency_lox.yml b/Resources/Maps/Shuttles/emergency_lox.yml index 7cf5e4d848..a7499dc92d 100644 --- a/Resources/Maps/Shuttles/emergency_lox.yml +++ b/Resources/Maps/Shuttles/emergency_lox.yml @@ -56,8 +56,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -724,336 +723,56 @@ entities: pos: 2.5,-0.5 parent: 670 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 74 components: - rot: 1.5707963267948966 rad pos: 2.5,5.5 parent: 670 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 75 components: - rot: 1.5707963267948966 rad pos: 2.5,7.5 parent: 670 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 77 components: - rot: -1.5707963267948966 rad pos: -7.5,7.5 parent: 670 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 81 components: - rot: -1.5707963267948966 rad pos: -7.5,-2.5 parent: 670 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 93 components: - rot: -1.5707963267948966 rad pos: -7.5,5.5 parent: 670 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 96 components: - rot: 1.5707963267948966 rad pos: 2.5,-2.5 parent: 670 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 142 components: - rot: -1.5707963267948966 rad pos: -7.5,-0.5 parent: 670 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockSecurityGlassLocked entities: - uid: 79 diff --git a/Resources/Maps/Shuttles/emergency_raven.yml b/Resources/Maps/Shuttles/emergency_raven.yml index 09e4ea9649..9c5c3ff698 100644 --- a/Resources/Maps/Shuttles/emergency_raven.yml +++ b/Resources/Maps/Shuttles/emergency_raven.yml @@ -55,8 +55,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 4321.2844759 @@ -1313,336 +1312,56 @@ entities: pos: 22.5,-2.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 471 components: - rot: 1.5707963267948966 rad pos: 22.5,-4.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 472 components: - rot: 1.5707963267948966 rad pos: 22.5,3.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 473 components: - rot: 1.5707963267948966 rad pos: 22.5,5.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 474 components: - rot: -1.5707963267948966 rad pos: 0.5,-4.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 475 components: - rot: -1.5707963267948966 rad pos: 0.5,-2.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 476 components: - rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 477 components: - rot: -1.5707963267948966 rad pos: 0.5,5.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockMedicalGlass entities: - uid: 1342 @@ -9090,8 +8809,7 @@ entities: - pos: 9.5,-13.5 parent: 1 type: Transform - - fixtures: [] - type: Fixtures + - proto: FloraTree03 entities: - uid: 2211 diff --git a/Resources/Maps/Shuttles/escape_pod_small.yml b/Resources/Maps/Shuttles/escape_pod_small.yml index dd062e28e7..6d2a26e318 100644 --- a/Resources/Maps/Shuttles/escape_pod_small.yml +++ b/Resources/Maps/Shuttles/escape_pod_small.yml @@ -39,8 +39,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - id: Empty type: BecomesStation - type: OccluderTree @@ -110,42 +109,7 @@ entities: - pos: -0.5,-1.5 parent: 29 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: APCBasic entities: - uid: 15 diff --git a/Resources/Maps/Shuttles/mining.yml b/Resources/Maps/Shuttles/mining.yml index 358ac4c418..d8b7d1a5fa 100644 --- a/Resources/Maps/Shuttles/mining.yml +++ b/Resources/Maps/Shuttles/mining.yml @@ -39,8 +39,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -571,168 +570,28 @@ entities: pos: 1.5,2.5 parent: 181 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 86 components: - rot: -1.5707963267948966 rad pos: -6.5,2.5 parent: 181 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 131 components: - rot: -1.5707963267948966 rad pos: -6.5,1.5 parent: 181 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 148 components: - rot: 1.5707963267948966 rad pos: 1.5,1.5 parent: 181 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: APCBasic entities: - uid: 7 diff --git a/Resources/Maps/Shuttles/pirate.yml b/Resources/Maps/Shuttles/pirate.yml index f72d0087b1..20b2a4777a 100644 --- a/Resources/Maps/Shuttles/pirate.yml +++ b/Resources/Maps/Shuttles/pirate.yml @@ -43,8 +43,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -431,42 +430,7 @@ entities: pos: 3.5,15.5 parent: 732 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockMedicalGlass entities: - uid: 485 @@ -495,84 +459,14 @@ entities: pos: -11.5,2.5 parent: 732 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 77 components: - rot: 1.5707963267948966 rad pos: 6.5,2.5 parent: 732 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: APCBasic entities: - uid: 261 @@ -1819,8 +1713,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - proto: CarpetBlack entities: - uid: 526 diff --git a/Resources/Maps/Shuttles/striker.yml b/Resources/Maps/Shuttles/striker.yml index 4c72acd3d3..7d7a7db00d 100644 --- a/Resources/Maps/Shuttles/striker.yml +++ b/Resources/Maps/Shuttles/striker.yml @@ -41,8 +41,6 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures - type: OccluderTree - type: Shuttle - nextUpdate: 4665.7478885 @@ -264,42 +262,7 @@ entities: pos: -5.5,-1.5 parent: 325 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - containers: board: !type:Container showEnts: False @@ -2899,46 +2862,7 @@ entities: type: Transform - bodyType: Static type: Physics - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.45,-0.45 - - 0.45,0.45 - - -0.45,0.45 - - -0.45,-0.45 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - MidImpassable - - LowImpassable - density: 60 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.4,0.5 - - 0.1,1.2 - - -0.1,1.2 - - -0.4,0.5 - mask: [] - layer: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: thruster-burn - type: Fixtures + - containers: machine_board: !type:Container showEnts: False @@ -2964,46 +2888,7 @@ entities: type: Transform - bodyType: Static type: Physics - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.45,-0.45 - - 0.45,0.45 - - -0.45,0.45 - - -0.45,-0.45 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - MidImpassable - - LowImpassable - density: 60 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.4,0.5 - - 0.1,1.2 - - -0.1,1.2 - - -0.4,0.5 - mask: [] - layer: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: thruster-burn - type: Fixtures + - containers: machine_board: !type:Container showEnts: False @@ -3029,46 +2914,7 @@ entities: type: Transform - bodyType: Static type: Physics - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.45,-0.45 - - 0.45,0.45 - - -0.45,0.45 - - -0.45,-0.45 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - MidImpassable - - LowImpassable - density: 60 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.4,0.5 - - 0.1,1.2 - - -0.1,1.2 - - -0.4,0.5 - mask: [] - layer: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: thruster-burn - type: Fixtures + - containers: machine_board: !type:Container showEnts: False @@ -3094,46 +2940,7 @@ entities: type: Transform - bodyType: Static type: Physics - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.45,-0.45 - - 0.45,0.45 - - -0.45,0.45 - - -0.45,-0.45 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - MidImpassable - - LowImpassable - density: 60 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.4,0.5 - - 0.1,1.2 - - -0.1,1.2 - - -0.4,0.5 - mask: [] - layer: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: thruster-burn - type: Fixtures + - containers: machine_board: !type:Container showEnts: False @@ -3159,46 +2966,7 @@ entities: type: Transform - bodyType: Static type: Physics - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.45,-0.45 - - 0.45,0.45 - - -0.45,0.45 - - -0.45,-0.45 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - MidImpassable - - LowImpassable - density: 60 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.4,0.5 - - 0.1,1.2 - - -0.1,1.2 - - -0.4,0.5 - mask: [] - layer: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: thruster-burn - type: Fixtures + - containers: machine_board: !type:Container showEnts: False @@ -3224,46 +2992,7 @@ entities: type: Transform - bodyType: Static type: Physics - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.45,-0.45 - - 0.45,0.45 - - -0.45,0.45 - - -0.45,-0.45 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - MidImpassable - - LowImpassable - density: 60 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.4,0.5 - - 0.1,1.2 - - -0.1,1.2 - - -0.4,0.5 - mask: [] - layer: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: thruster-burn - type: Fixtures + - containers: machine_board: !type:Container showEnts: False @@ -3288,46 +3017,7 @@ entities: type: Transform - bodyType: Static type: Physics - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.45,-0.45 - - 0.45,0.45 - - -0.45,0.45 - - -0.45,-0.45 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - MidImpassable - - LowImpassable - density: 60 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.4,0.5 - - 0.1,1.2 - - -0.1,1.2 - - -0.4,0.5 - mask: [] - layer: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: thruster-burn - type: Fixtures + - containers: machine_board: !type:Container showEnts: False @@ -3352,46 +3042,7 @@ entities: type: Transform - bodyType: Static type: Physics - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.45,-0.45 - - 0.45,0.45 - - -0.45,0.45 - - -0.45,-0.45 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - MidImpassable - - LowImpassable - density: 60 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.4,0.5 - - 0.1,1.2 - - -0.1,1.2 - - -0.4,0.5 - mask: [] - layer: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: thruster-burn - type: Fixtures + - containers: machine_board: !type:Container showEnts: False diff --git a/Resources/Maps/Shuttles/wizard.yml b/Resources/Maps/Shuttles/wizard.yml index efd3b85166..04d76b4239 100644 --- a/Resources/Maps/Shuttles/wizard.yml +++ b/Resources/Maps/Shuttles/wizard.yml @@ -57,8 +57,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 8309.0552128 @@ -569,168 +568,28 @@ entities: pos: -10.5,-0.5 parent: 768 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 343 components: - rot: -1.5707963267948966 rad pos: -10.5,-2.5 parent: 768 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 671 components: - rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 768 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 672 components: - rot: 1.5707963267948966 rad pos: 9.5,-2.5 parent: 768 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: APCBasic entities: - uid: 436 @@ -2439,8 +2298,7 @@ entities: - pos: 4.5,-11.5 parent: 768 type: Transform - - fixtures: [] - type: Fixtures + - proto: FloraRockSolid01 entities: - uid: 594 diff --git a/Resources/Maps/Test/Breathing/3by3-20oxy-80nit.yml b/Resources/Maps/Test/Breathing/3by3-20oxy-80nit.yml index 6ef366756b..9ee538a403 100644 --- a/Resources/Maps/Test/Breathing/3by3-20oxy-80nit.yml +++ b/Resources/Maps/Test/Breathing/3by3-20oxy-80nit.yml @@ -34,8 +34,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - version: 2 data: tiles: diff --git a/Resources/Maps/Test/admin_test_arena.yml b/Resources/Maps/Test/admin_test_arena.yml index 7e7aab897f..12b4701bc1 100644 --- a/Resources/Maps/Test/admin_test_arena.yml +++ b/Resources/Maps/Test/admin_test_arena.yml @@ -37,8 +37,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - 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 d71dd0bb87..4c072dc081 100644 --- a/Resources/Maps/Test/dev_map.yml +++ b/Resources/Maps/Test/dev_map.yml @@ -62,8 +62,6 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -510,42 +508,7 @@ entities: pos: -17.5,9.5 parent: 179 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockMedicalGlass entities: - uid: 177 @@ -2947,8 +2910,7 @@ entities: - pos: -13.5,2.5 parent: 179 type: Transform - - fixtures: [] - type: Fixtures + missingComponents: - TimedDespawn - uid: 911 @@ -2956,8 +2918,7 @@ entities: - pos: -13.5,1.5 parent: 179 type: Transform - - fixtures: [] - type: Fixtures + missingComponents: - TimedDespawn - proto: hydroponicsTray diff --git a/Resources/Maps/Test/empty.yml b/Resources/Maps/Test/empty.yml index 7cddf9c8ac..b80a5dda0e 100644 --- a/Resources/Maps/Test/empty.yml +++ b/Resources/Maps/Test/empty.yml @@ -28,8 +28,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - id: Empty type: BecomesStation - type: OccluderTree diff --git a/Resources/Maps/Test/floor3x3.yml b/Resources/Maps/Test/floor3x3.yml index 6eccf80230..10048835a1 100644 --- a/Resources/Maps/Test/floor3x3.yml +++ b/Resources/Maps/Test/floor3x3.yml @@ -35,8 +35,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/Test/npc_test_map.yml b/Resources/Maps/Test/npc_test_map.yml index d3bffb0ee5..55e5abec03 100644 --- a/Resources/Maps/Test/npc_test_map.yml +++ b/Resources/Maps/Test/npc_test_map.yml @@ -57,8 +57,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -271,8 +270,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity diff --git a/Resources/Maps/aspid.yml b/Resources/Maps/aspid.yml index bdd80cd85d..068b5608e9 100644 --- a/Resources/Maps/aspid.yml +++ b/Resources/Maps/aspid.yml @@ -276,8 +276,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 132705.6201203 @@ -8660,8 +8659,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 97465.7475215 @@ -10900,84 +10898,14 @@ entities: pos: 52.5,-7.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 6514 components: - rot: 1.5707963267948966 rad pos: 52.5,-14.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - uid: 2 @@ -10986,166 +10914,26 @@ entities: pos: 48.5,18.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 26 components: - rot: 3.141592653589793 rad pos: 46.5,18.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 50 components: - pos: 46.5,33.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 52 components: - pos: 48.5,33.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleLocked entities: - uid: 87 @@ -11154,669 +10942,109 @@ entities: pos: 52.5,15.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 89 components: - rot: 1.5707963267948966 rad pos: 52.5,13.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 111 components: - rot: -1.5707963267948966 rad pos: -44.5,2.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 112 components: - rot: -1.5707963267948966 rad pos: -44.5,4.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 467 components: - rot: -1.5707963267948966 rad pos: -53.5,15.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 763 components: - rot: -1.5707963267948966 rad pos: -53.5,13.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 764 components: - rot: -1.5707963267948966 rad pos: -53.5,-7.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 765 components: - rot: -1.5707963267948966 rad pos: -53.5,-9.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 767 components: - pos: -49.5,-12.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 768 components: - pos: -47.5,-12.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 1298 components: - rot: -1.5707963267948966 rad pos: -53.5,36.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 1299 components: - rot: -1.5707963267948966 rad pos: -53.5,38.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 2145 components: - rot: 1.5707963267948966 rad pos: 52.5,36.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 2146 components: - rot: 1.5707963267948966 rad pos: 52.5,38.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3160 components: - pos: -48.5,-12.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3168 components: - rot: -1.5707963267948966 rad pos: -53.5,-8.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalLocked entities: - uid: 6359 @@ -12130,42 +11358,7 @@ entities: - dockJointId: docking21483 dockedWith: 8865 type: Docking - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 2047 components: - rot: 1.5707963267948966 rad @@ -12175,42 +11368,7 @@ entities: - dockJointId: docking21482 dockedWith: 8864 type: Docking - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 8864 components: - rot: -1.5707963267948966 rad @@ -12220,42 +11378,7 @@ entities: - dockJointId: docking21482 dockedWith: 2047 type: Docking - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 8865 components: - rot: -1.5707963267948966 rad @@ -12265,126 +11388,21 @@ entities: - dockJointId: docking21483 dockedWith: 2030 type: Docking - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 8866 components: - rot: 1.5707963267948966 rad pos: 3.5,0.5 parent: 8756 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 8867 components: - rot: 1.5707963267948966 rad pos: 3.5,-1.5 parent: 8756 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockHeadOfPersonnelGlassLocked entities: - uid: 9276 @@ -66157,52 +65175,45 @@ entities: - pos: 19.5,-4.5 parent: 1 type: Transform - - fixtures: [] - type: Fixtures + - uid: 4316 components: - pos: -38.5,49.5 parent: 1 type: Transform - - fixtures: [] - type: Fixtures + - uid: 6631 components: - pos: 11.5,2.5 parent: 1 type: Transform - - fixtures: [] - type: Fixtures + - uid: 6816 components: - pos: -7.5,69.5 parent: 1 type: Transform - - fixtures: [] - type: Fixtures + - uid: 8425 components: - rot: 3.141592653589793 rad pos: 15.5,28.5 parent: 1 type: Transform - - fixtures: [] - type: Fixtures + - uid: 17277 components: - pos: -23.5,-12.5 parent: 1 type: Transform - - fixtures: [] - type: Fixtures + - uid: 17456 components: - rot: -1.5707963267948966 rad pos: 6.5,23.5 parent: 1 type: Transform - - fixtures: [] - type: Fixtures + - proto: FloorTileItemGold entities: - uid: 17989 @@ -107651,62 +106662,7 @@ entities: - pos: 19.5,-35.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.55,-0.55 - - 0.55,-0.55 - - 0.55,0.55 - - -0.55,0.55 - mask: [] - layer: - - Impassable - - MidImpassable - - LowImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: conveyor - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.15,-0.15 - - 0.15,-0.15 - - 0.15,0.15 - - -0.15,0.15 - mask: [] - layer: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: brrt - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.49,-0.49 - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - mask: - - Impassable - layer: - - BulletImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: collision - type: Fixtures + - inputs: Reverse: - port: Right diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index 2fd7e9aef2..efc5ddfc2f 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -356,8 +356,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - id: Bagel type: BecomesStation - gravityShakeSound: !type:SoundPathSpecifier @@ -8756,8 +8755,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 0.45 @@ -11176,84 +11174,14 @@ entities: pos: -5.5,-70.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 7344 components: - rot: -1.5707963267948966 rad pos: -5.5,-63.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - uid: 21532 @@ -11262,168 +11190,28 @@ entities: pos: 44.5,31.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 21533 components: - rot: 3.141592653589793 rad pos: 46.5,31.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 21534 components: - rot: 3.141592653589793 rad pos: 52.5,31.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 21535 components: - rot: 3.141592653589793 rad pos: 54.5,31.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleEscape entities: - uid: 2733 @@ -11432,167 +11220,27 @@ entities: pos: 38.5,-46.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3233 components: - rot: 1.5707963267948966 rad pos: 24.5,-46.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 19697 components: - rot: 3.141592653589793 rad pos: 20.5,29.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 19789 components: - pos: -24.5,-36.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleLocked entities: - uid: 4889 @@ -11601,251 +11249,41 @@ entities: pos: -23.5,-54.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 7364 components: - pos: 0.5,-80.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 13181 components: - rot: 1.5707963267948966 rad pos: 59.5,12.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 13182 components: - rot: 1.5707963267948966 rad pos: 59.5,14.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 24001 components: - rot: 1.5707963267948966 rad pos: 15.5,-70.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 24004 components: - rot: 1.5707963267948966 rad pos: 15.5,-63.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalLocked entities: - uid: 1435 @@ -12252,168 +11690,28 @@ entities: pos: 6.5,-70.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 4939 components: - rot: 1.5707963267948966 rad pos: 6.5,-63.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 24002 components: - rot: -1.5707963267948966 rad pos: 7.5,-63.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 24003 components: - rot: -1.5707963267948966 rad pos: 7.5,-70.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockHeadOfPersonnelLocked entities: - uid: 36 @@ -13298,126 +12596,21 @@ entities: - pos: -47.5,-39.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 9129 components: - rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 7536 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 12584 components: - rot: -1.5707963267948966 rad pos: -56.5,-31.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockTheatreLocked entities: - uid: 2933 @@ -52157,8 +51350,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 3725 components: - rot: 3.141592653589793 rad @@ -52184,8 +51376,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 15732 components: - pos: 0.5,26.5 @@ -52193,8 +51384,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 15733 components: - pos: -0.5,26.5 @@ -52202,8 +51392,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 16345 components: - rot: 1.5707963267948966 rad @@ -52212,8 +51401,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 17936 components: - rot: 3.141592653589793 rad @@ -76257,50 +75445,43 @@ entities: - pos: 24.5,-27.5 parent: 60 type: Transform - - fixtures: [] - type: Fixtures + - uid: 9044 components: - pos: -6.5,-27.5 parent: 60 type: Transform - - fixtures: [] - type: Fixtures + - uid: 12634 components: - pos: 39.5,-28.5 parent: 60 type: Transform - - fixtures: [] - type: Fixtures + - uid: 18254 components: - pos: -2.5,-11.5 parent: 60 type: Transform - - fixtures: [] - type: Fixtures + - uid: 19872 components: - pos: 40.5,-5.5 parent: 60 type: Transform - - fixtures: [] - type: Fixtures + - uid: 19874 components: - pos: -3.5,-26.5 parent: 60 type: Transform - - fixtures: [] - type: Fixtures + - uid: 24158 components: - pos: -41.5,-1.5 parent: 60 type: Transform - - fixtures: [] - type: Fixtures + - proto: FloorTileItemArcadeBlue entities: - uid: 26 @@ -125795,8 +124976,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 7414 components: - pos: -54.5,14.5 @@ -125824,8 +125004,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 18964 components: - pos: -36.5,11.5 @@ -125838,8 +125017,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 19863 components: - pos: 35.5,-37.5 @@ -125862,8 +125040,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 23114 components: - pos: -105.5,15.5 @@ -131578,62 +130755,6 @@ entities: pos: -12.5,-43.5 parent: 60 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.55,-0.55 - - 0.55,-0.55 - - 0.55,0.55 - - -0.55,0.55 - mask: [] - layer: - - Impassable - - MidImpassable - - LowImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: conveyor - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.15,-0.15 - - 0.15,0.15 - - -0.15,0.15 - - -0.15,-0.15 - mask: [] - layer: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: brrt - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - layer: - - BulletImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: collision - type: Fixtures - inputs: Reverse: - port: Right @@ -164264,8 +163385,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 5145 components: - pos: -20.5,-14.5 @@ -164273,8 +163393,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 7225 components: - pos: -23.5,-1.5 @@ -164282,8 +163401,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 12684 components: - pos: -33.5,3.5 @@ -164291,8 +163409,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 12685 components: - pos: -28.5,-17.5 @@ -164300,8 +163417,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - proto: WardrobeBlackFilled entities: - uid: 3368 @@ -164981,8 +164097,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 1944 components: - pos: -27.5,-13.5 @@ -164990,8 +164105,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 2132 components: - pos: -32.5,-15.5 @@ -165009,8 +164123,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 9536 components: - pos: -42.5,3.5 @@ -165028,8 +164141,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - proto: WeaponDisabler entities: - uid: 1873 diff --git a/Resources/Maps/barratry.yml b/Resources/Maps/barratry.yml index 622f9bc21c..3d82e1eb59 100644 --- a/Resources/Maps/barratry.yml +++ b/Resources/Maps/barratry.yml @@ -236,8 +236,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 15801.3235625 @@ -10488,8 +10487,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - nextUpdate: 0 type: SpreaderGrid @@ -12018,163 +12016,27 @@ entities: - pos: -73.5,2.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 4876 components: - pos: -66.5,2.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 4964 components: - rot: 3.141592653589793 rad pos: -73.5,-7.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 4984 components: - rot: 3.141592653589793 rad pos: -66.5,-7.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - uid: 1636 @@ -12183,164 +12045,28 @@ entities: pos: 32.5,10.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 1637 components: - rot: 1.5707963267948966 rad pos: 32.5,8.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 1638 components: - rot: 1.5707963267948966 rad pos: 32.5,16.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 1639 components: - rot: 1.5707963267948966 rad pos: 32.5,18.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleLocked entities: - uid: 3966 @@ -12348,241 +12074,37 @@ entities: - pos: -64.5,-15.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 4100 components: - pos: -74.5,-15.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 4105 components: - pos: -72.5,-15.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 4756 components: - pos: -66.5,-15.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 10292 components: - pos: -34.5,-14.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 10302 components: - pos: -32.5,-14.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalLocked entities: - uid: 748 @@ -43597,26 +43119,6 @@ entities: - pos: 14.5,-4.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.25,-0.48 - - 0.25,0.48 - - -0.25,0.48 - - -0.25,-0.48 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 145 - hard: True - restitution: 0 - friction: 0.4 - type: Fixtures - open: True removedMasks: 20 type: EntityStorage @@ -54603,23 +54105,20 @@ entities: - pos: -2.5,25.5 parent: 1 type: Transform - - fixtures: [] - type: Fixtures + - uid: 6928 components: - pos: -28.5,46.5 parent: 1 type: Transform - - fixtures: [] - type: Fixtures + - uid: 10144 components: - rot: -1.5707963267948966 rad pos: -51.5,36.5 parent: 1 type: Transform - - fixtures: [] - type: Fixtures + - proto: FloraTree01 entities: - uid: 5652 @@ -94779,62 +94278,7 @@ entities: pos: -73.5,55.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.55,-0.55 - - 0.55,-0.55 - - 0.55,0.55 - - -0.55,0.55 - mask: [] - layer: - - Impassable - - MidImpassable - - LowImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: conveyor - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.15,-0.15 - - 0.15,0.15 - - -0.15,0.15 - - -0.15,-0.15 - mask: [] - layer: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: brrt - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - layer: - - BulletImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: collision - type: Fixtures + - inputs: Reverse: - port: Right diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index 36cef56d96..e39c5a9d3c 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -374,8 +374,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - id: Boxstation type: BecomesStation - gravityShakeSound: !type:SoundPathSpecifier @@ -7524,8 +7523,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -9922,166 +9920,26 @@ entities: pos: -70.5,-2.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 616 components: - rot: 3.141592653589793 rad pos: -77.5,-2.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 648 components: - pos: -70.5,7.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 1508 components: - pos: -77.5,7.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleEscape entities: - uid: 8791 @@ -10090,126 +9948,21 @@ entities: pos: -22.5,20.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 12471 components: - rot: -1.5707963267948966 rad pos: -67.5,-9.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 12642 components: - rot: 1.5707963267948966 rad pos: 93.5,-29.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleLocked entities: - uid: 18302 @@ -10218,84 +9971,14 @@ entities: pos: -44.5,-28.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 18325 components: - rot: -1.5707963267948966 rad pos: -44.5,-30.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalLocked entities: - uid: 610 @@ -10373,208 +10056,33 @@ entities: pos: -81.5,9.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 1110 components: - rot: -1.5707963267948966 rad pos: -79.5,-13.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 12469 components: - pos: -75.5,-17.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 12470 components: - pos: -68.5,-17.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 12486 components: - rot: -1.5707963267948966 rad pos: -81.5,-4.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockFreezer entities: - uid: 25720 @@ -10959,294 +10467,49 @@ entities: changeAirtight: False state: Opening type: Door - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3580 components: - rot: 1.5707963267948966 rad pos: 85.5,-3.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3581 components: - rot: 1.5707963267948966 rad pos: 85.5,-5.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 10005 components: - rot: -1.5707963267948966 rad pos: -22.5,24.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 11335 components: - rot: 1.5707963267948966 rad pos: 85.5,-13.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 11336 components: - rot: 1.5707963267948966 rad pos: 85.5,-11.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 12644 components: - rot: 1.5707963267948966 rad pos: 93.5,-26.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 21828 components: - pos: -0.5,-0.5 @@ -11259,42 +10522,7 @@ entities: changeAirtight: False state: Opening type: Door - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockHeadOfPersonnelGlassLocked entities: - uid: 114 @@ -12525,42 +11753,7 @@ entities: pos: 65.5,-78.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockTheatreLocked entities: - uid: 5947 @@ -93044,15 +92237,13 @@ entities: - pos: 20.5,-18.5 parent: 8364 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14118 components: - pos: -50.5,-6.5 parent: 8364 type: Transform - - fixtures: [] - type: Fixtures + - proto: FloorTileItemArcadeBlue2 entities: - uid: 917 @@ -149615,62 +148806,7 @@ entities: - pos: -58.5,-15.5 parent: 8364 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.55,-0.55 - - 0.55,-0.55 - - 0.55,0.55 - - -0.55,0.55 - mask: [] - layer: - - Impassable - - MidImpassable - - LowImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: conveyor - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.15,-0.15 - - 0.15,0.15 - - -0.15,0.15 - - -0.15,-0.15 - mask: [] - layer: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: brrt - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - layer: - - BulletImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: collision - type: Fixtures + - inputs: Reverse: - port: Right diff --git a/Resources/Maps/centcomm.yml b/Resources/Maps/centcomm.yml index 77b613f515..fb2244652f 100644 --- a/Resources/Maps/centcomm.yml +++ b/Resources/Maps/centcomm.yml @@ -124,8 +124,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - id: centcomm type: BecomesStation - gravityShakeSound: !type:SoundPathSpecifier @@ -2916,168 +2915,28 @@ entities: pos: 35.5,4.5 parent: 1668 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 435 components: - rot: 1.5707963267948966 rad pos: 35.5,2.5 parent: 1668 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 436 components: - rot: 1.5707963267948966 rad pos: 35.5,-3.5 parent: 1668 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 437 components: - rot: 1.5707963267948966 rad pos: 35.5,-5.5 parent: 1668 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleLocked entities: - uid: 1613 @@ -3086,376 +2945,61 @@ entities: pos: -16.5,25.5 parent: 1668 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 1614 components: - rot: -1.5707963267948966 rad pos: -16.5,27.5 parent: 1668 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 1672 components: - rot: 3.141592653589793 rad pos: -9.5,34.5 parent: 1668 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3968 components: - rot: -1.5707963267948966 rad pos: -34.5,-1.5 parent: 1668 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3969 components: - rot: -1.5707963267948966 rad pos: -34.5,0.5 parent: 1668 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 5959 components: - rot: -1.5707963267948966 rad pos: -23.5,-24.5 parent: 1668 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 5960 components: - rot: -1.5707963267948966 rad pos: -23.5,-26.5 parent: 1668 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 6282 components: - pos: -1.5,-46.5 parent: 1668 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 6283 components: - pos: 0.5,-46.5 parent: 1668 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalLocked entities: - uid: 777 @@ -22684,22 +22228,19 @@ entities: - pos: -20.5,15.5 parent: 1668 type: Transform - - fixtures: [] - type: Fixtures + - uid: 6622 components: - pos: 12.5,-16.5 parent: 1668 type: Transform - - fixtures: [] - type: Fixtures + - uid: 6623 components: - pos: -16.5,-33.5 parent: 1668 type: Transform - - fixtures: [] - type: Fixtures + - proto: FoodBoxDonkpocketPizza entities: - uid: 2227 @@ -31624,62 +31165,7 @@ entities: pos: -19.5,-31.5 parent: 1668 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.55,-0.55 - - 0.55,-0.55 - - 0.55,0.55 - - -0.55,0.55 - mask: [] - layer: - - Impassable - - MidImpassable - - LowImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: conveyor - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.15,-0.15 - - 0.15,-0.15 - - 0.15,0.15 - - -0.15,0.15 - mask: [] - layer: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: brrt - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.49,-0.49 - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - mask: - - Impassable - layer: - - BulletImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: collision - type: Fixtures + - inputs: Reverse: - port: Right diff --git a/Resources/Maps/cluster.yml b/Resources/Maps/cluster.yml index 0da9611563..f65215399e 100644 --- a/Resources/Maps/cluster.yml +++ b/Resources/Maps/cluster.yml @@ -191,8 +191,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - type: OccluderTree - type: Shuttle - nextUpdate: 15845.118538 @@ -5821,82 +5820,14 @@ entities: pos: 48.5,5.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 1278 components: - rot: 1.5707963267948966 rad pos: 48.5,12.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - uid: 3059 @@ -5905,164 +5836,28 @@ entities: pos: -44.5,3.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3060 components: - rot: -1.5707963267948966 rad pos: -44.5,5.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3061 components: - rot: -1.5707963267948966 rad pos: -44.5,11.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3062 components: - rot: -1.5707963267948966 rad pos: -44.5,13.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleEscape entities: - uid: 2998 @@ -6070,164 +5865,28 @@ entities: - pos: 1.5,-35.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 4815 components: - rot: 1.5707963267948966 rad pos: 48.5,22.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 5553 components: - rot: -1.5707963267948966 rad pos: -42.5,-10.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 8326 components: - rot: 3.141592653589793 rad pos: 10.5,34.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleLocked entities: - uid: 1728 @@ -6235,245 +5894,41 @@ entities: - pos: 11.5,-31.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 1729 components: - pos: 13.5,-31.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3047 components: - rot: 3.141592653589793 rad pos: 33.5,38.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3048 components: - rot: 3.141592653589793 rad pos: 31.5,38.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3049 components: - rot: 3.141592653589793 rad pos: 25.5,38.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3050 components: - rot: 3.141592653589793 rad pos: 23.5,38.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 3367 @@ -38431,37 +37886,32 @@ entities: - pos: -23.5,14.5 parent: 1 type: Transform - - fixtures: [] - type: Fixtures + - uid: 5873 components: - pos: 12.5,-1.5 parent: 1 type: Transform - - fixtures: [] - type: Fixtures + - uid: 9655 components: - pos: 12.5,25.5 parent: 1 type: Transform - - fixtures: [] - type: Fixtures + - uid: 10117 components: - rot: 3.141592653589793 rad pos: -2.5,3.5 parent: 1 type: Transform - - fixtures: [] - type: Fixtures + - uid: 12481 components: - pos: -11.5,15.5 parent: 1 type: Transform - - fixtures: [] - type: Fixtures + - proto: FloorTileItemArcadeBlue2 entities: - uid: 8752 @@ -69437,62 +68887,7 @@ entities: pos: -33.5,24.5 parent: 1 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.55,-0.55 - - 0.55,-0.55 - - 0.55,0.55 - - -0.55,0.55 - mask: [] - layer: - - Impassable - - MidImpassable - - LowImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: conveyor - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.15,-0.15 - - 0.15,0.15 - - -0.15,0.15 - - -0.15,-0.15 - mask: [] - layer: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: brrt - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - layer: - - BulletImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: collision - type: Fixtures + - inputs: Reverse: - port: Right diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index 137386b545..58849af32f 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -461,8 +461,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - id: Fland type: BecomesStation - type: OccluderTree @@ -18885,167 +18884,27 @@ entities: - pos: -37.5,-10.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3002 components: - rot: 3.141592653589793 rad pos: -30.5,-20.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3003 components: - pos: -30.5,-10.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3031 components: - rot: 3.141592653589793 rad pos: -37.5,-20.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - uid: 3754 @@ -19054,168 +18913,28 @@ entities: pos: -41.5,40.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3755 components: - rot: -1.5707963267948966 rad pos: -41.5,42.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3756 components: - rot: -1.5707963267948966 rad pos: -41.5,34.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3757 components: - rot: -1.5707963267948966 rad pos: -41.5,32.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleEscape entities: - uid: 6767 @@ -19224,292 +18943,47 @@ entities: pos: -4.5,76.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 12424 components: - rot: -1.5707963267948966 rad pos: -43.5,-39.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 12425 components: - rot: -1.5707963267948966 rad pos: -43.5,-32.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 13269 components: - rot: 1.5707963267948966 rad pos: 95.5,61.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 13270 components: - rot: 1.5707963267948966 rad pos: 95.5,66.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 13280 components: - pos: -28.5,-30.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 13281 components: - pos: -33.5,-30.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleLocked entities: - uid: 3743 @@ -19517,415 +18991,65 @@ entities: - pos: -16.5,-30.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 10108 components: - rot: -1.5707963267948966 rad pos: 1.5,-37.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 10109 components: - rot: -1.5707963267948966 rad pos: 1.5,-35.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 12395 components: - pos: -29.5,-48.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 12397 components: - rot: 3.141592653589793 rad pos: -29.5,-58.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 12399 components: - pos: -32.5,-64.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 12400 components: - pos: -37.5,-64.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 15609 components: - pos: 25.5,-61.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 15610 components: - pos: 27.5,-61.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 31366 components: - rot: 3.141592653589793 rad pos: 91.5,74.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalLocked entities: - uid: 3833 @@ -121780,116 +120904,100 @@ entities: - pos: 5.5,8.5 parent: 13329 type: Transform - - fixtures: [] - type: Fixtures + - uid: 4151 components: - pos: -36.5,28.5 parent: 13329 type: Transform - - fixtures: [] - type: Fixtures + - uid: 4152 components: - pos: -37.5,28.5 parent: 13329 type: Transform - - fixtures: [] - type: Fixtures + - uid: 10454 components: - pos: 50.5,29.5 parent: 13329 type: Transform - - fixtures: [] - type: Fixtures + - uid: 10455 components: - pos: 51.5,29.5 parent: 13329 type: Transform - - fixtures: [] - type: Fixtures + - uid: 13340 components: - pos: 6.5,39.5 parent: 13329 type: Transform - - fixtures: [] - type: Fixtures + - uid: 15317 components: - pos: 48.5,-21.5 parent: 13329 type: Transform - - fixtures: [] - type: Fixtures + - uid: 18453 components: - pos: 22.5,38.5 parent: 13329 type: Transform - - fixtures: [] - type: Fixtures + - uid: 23564 components: - pos: 85.5,-3.5 parent: 13329 type: Transform - - fixtures: [] - type: Fixtures + - uid: 23565 components: - pos: 87.5,-3.5 parent: 13329 type: Transform - - fixtures: [] - type: Fixtures + - uid: 26688 components: - pos: 79.5,-24.5 parent: 13329 type: Transform - - fixtures: [] - type: Fixtures + - uid: 29152 components: - rot: 3.141592653589793 rad pos: 66.5,19.5 parent: 13329 type: Transform - - fixtures: [] - type: Fixtures + - uid: 29153 components: - rot: 3.141592653589793 rad pos: 68.5,19.5 parent: 13329 type: Transform - - fixtures: [] - type: Fixtures + - uid: 29154 components: - rot: 3.141592653589793 rad pos: 64.5,19.5 parent: 13329 type: Transform - - fixtures: [] - type: Fixtures + - uid: 29394 components: - pos: -4.5,28.5 parent: 13329 type: Transform - - fixtures: [] - type: Fixtures + - uid: 30464 components: - pos: 81.5,53.5 parent: 13329 type: Transform - - fixtures: [] - type: Fixtures + - proto: FloorTileItemBar entities: - uid: 34161 @@ -198103,62 +197211,7 @@ entities: pos: 128.5,-3.5 parent: 13329 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.55,-0.55 - - 0.55,-0.55 - - 0.55,0.55 - - -0.55,0.55 - mask: [] - layer: - - Impassable - - MidImpassable - - LowImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: conveyor - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.15,-0.15 - - 0.15,0.15 - - -0.15,0.15 - - -0.15,-0.15 - mask: [] - layer: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: brrt - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - layer: - - BulletImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: collision - type: Fixtures + - inputs: Reverse: - port: Right diff --git a/Resources/Maps/infiltrator.yml b/Resources/Maps/infiltrator.yml index 635023b4f4..15c5b4bd58 100644 --- a/Resources/Maps/infiltrator.yml +++ b/Resources/Maps/infiltrator.yml @@ -45,8 +45,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -543,84 +542,14 @@ entities: pos: 8.5,-16.5 parent: 73 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 734 components: - rot: -1.5707963267948966 rad pos: -9.5,-16.5 parent: 73 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AMEController entities: - uid: 725 @@ -2012,8 +1941,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 213 components: - rot: 3.141592653589793 rad @@ -2022,8 +1950,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - proto: Carpet entities: - uid: 422 diff --git a/Resources/Maps/kettle.yml b/Resources/Maps/kettle.yml index 5662beb717..237c648f35 100644 --- a/Resources/Maps/kettle.yml +++ b/Resources/Maps/kettle.yml @@ -414,8 +414,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - id: Kettle type: BecomesStation - gravityShakeSound: !type:SoundPathSpecifier @@ -12300,168 +12299,28 @@ entities: pos: 74.5,-10.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 7832 components: - rot: 1.5707963267948966 rad pos: 74.5,-3.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 7840 components: - rot: -1.5707963267948966 rad pos: 84.5,-3.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 7844 components: - rot: -1.5707963267948966 rad pos: 84.5,-10.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - uid: 8260 @@ -12470,168 +12329,28 @@ entities: pos: -67.5,38.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 8390 components: - rot: -1.5707963267948966 rad pos: -67.5,40.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 8391 components: - rot: -1.5707963267948966 rad pos: -67.5,46.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 8392 components: - rot: -1.5707963267948966 rad pos: -67.5,48.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleEscape entities: - uid: 7874 @@ -12639,209 +12358,34 @@ entities: - pos: 9.5,-51.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 7878 components: - rot: 1.5707963267948966 rad pos: -52.5,46.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 7879 components: - rot: 1.5707963267948966 rad pos: -52.5,39.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 7910 components: - rot: 1.5707963267948966 rad pos: 89.5,3.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 7922 components: - pos: -47.5,-50.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleLocked entities: - uid: 30 @@ -12850,334 +12394,54 @@ entities: pos: 49.5,23.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 31 components: - rot: 1.5707963267948966 rad pos: 49.5,21.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 7706 components: - rot: 3.141592653589793 rad pos: 75.5,16.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 7707 components: - rot: 3.141592653589793 rad pos: 76.5,16.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 7708 components: - rot: 3.141592653589793 rad pos: 82.5,16.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 7709 components: - rot: 3.141592653589793 rad pos: 83.5,16.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 8990 components: - pos: -4.5,-66.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 8991 components: - pos: -6.5,-66.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 25610 @@ -74036,28 +73300,7 @@ entities: - open: True removedMasks: 28 type: EntityStorage - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - - -0.4,-0.4 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 135 - hard: True - restitution: 0 - friction: 0.4 - id: null - type: Fixtures + - proto: CrateNPCGoose entities: - uid: 4323 @@ -74068,28 +73311,7 @@ entities: - open: True removedMasks: 28 type: EntityStorage - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - - -0.4,-0.4 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 135 - hard: True - restitution: 0 - friction: 0.4 - id: null - type: Fixtures + - proto: CrateNPCLizard entities: - uid: 20542 @@ -74100,28 +73322,7 @@ entities: - open: True removedMasks: 28 type: EntityStorage - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - - -0.4,-0.4 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 135 - hard: True - restitution: 0 - friction: 0.4 - id: null - type: Fixtures + - proto: CrateScienceSecure entities: - uid: 7416 @@ -86987,30 +86188,26 @@ entities: - pos: -36.5,-14.5 parent: 82 type: Transform - - fixtures: [] - type: Fixtures + - uid: 10030 components: - pos: -0.5,38.5 parent: 82 type: Transform - - fixtures: [] - type: Fixtures + - uid: 10730 components: - pos: 8.5,-45.5 parent: 82 type: Transform - - fixtures: [] - type: Fixtures + - uid: 22930 components: - rot: 3.141592653589793 rad pos: 7.5,-18.5 parent: 82 type: Transform - - fixtures: [] - type: Fixtures + - proto: FloorTileItemEighties entities: - uid: 25579 @@ -143028,62 +142225,7 @@ entities: pos: -63.5,-33.5 parent: 82 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.55,-0.55 - - 0.55,-0.55 - - 0.55,0.55 - - -0.55,0.55 - mask: [] - layer: - - Impassable - - MidImpassable - - LowImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: conveyor - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.15,-0.15 - - 0.15,-0.15 - - 0.15,0.15 - - -0.15,0.15 - mask: [] - layer: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: brrt - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.49,-0.49 - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - mask: - - Impassable - layer: - - BulletImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: collision - type: Fixtures + - inputs: Reverse: - port: Left diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index d0e69950ce..63e6345dc9 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -349,8 +349,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -9952,166 +9951,26 @@ entities: pos: -51.5,-3.5 parent: 30 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3172 components: - rot: 3.141592653589793 rad pos: -58.5,-3.5 parent: 30 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3173 components: - pos: -58.5,6.5 parent: 30 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3174 components: - pos: -51.5,6.5 parent: 30 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - uid: 1145 @@ -10120,168 +9979,28 @@ entities: pos: -62.5,15.5 parent: 30 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 1148 components: - rot: -1.5707963267948966 rad pos: -62.5,23.5 parent: 30 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 1149 components: - rot: -1.5707963267948966 rad pos: -62.5,21.5 parent: 30 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 1152 components: - rot: -1.5707963267948966 rad pos: -62.5,13.5 parent: 30 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleEscape entities: - uid: 1307 @@ -10290,84 +10009,14 @@ entities: pos: -48.5,-8.5 parent: 30 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3701 components: - rot: 3.141592653589793 rad pos: 25.5,43.5 parent: 30 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleLocked entities: - uid: 4353 @@ -10376,126 +10025,21 @@ entities: pos: -63.5,-18.5 parent: 30 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 11864 components: - rot: 1.5707963267948966 rad pos: 38.5,-5.5 parent: 30 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 12012 components: - rot: 1.5707963267948966 rad pos: 38.5,-3.5 parent: 30 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalLocked entities: - uid: 5069 @@ -50250,8 +49794,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 9487 components: - pos: -6.5,-33.5 @@ -50259,8 +49802,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 9488 components: - pos: -8.5,-33.5 @@ -50268,8 +49810,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 9489 components: - pos: -7.5,-33.5 @@ -50277,8 +49818,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 15296 components: - rot: 3.141592653589793 rad @@ -50287,8 +49827,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 16264 components: - rot: 3.141592653589793 rad @@ -50297,8 +49836,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 21949 components: - rot: -1.5707963267948966 rad @@ -72197,43 +71735,37 @@ entities: - pos: -23.5,-5.5 parent: 30 type: Transform - - fixtures: [] - type: Fixtures + - uid: 20458 components: - pos: -17.5,15.5 parent: 30 type: Transform - - fixtures: [] - type: Fixtures + - uid: 20459 components: - pos: -7.5,-7.5 parent: 30 type: Transform - - fixtures: [] - type: Fixtures + - uid: 20460 components: - pos: -8.5,-11.5 parent: 30 type: Transform - - fixtures: [] - type: Fixtures + - uid: 20461 components: - pos: -31.5,9.5 parent: 30 type: Transform - - fixtures: [] - type: Fixtures + - uid: 22542 components: - pos: 18.5,14.5 parent: 30 type: Transform - - fixtures: [] - type: Fixtures + - proto: FloorTileItemEighties entities: - uid: 15081 @@ -119164,8 +118696,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 1645 components: - pos: -28.5,33.5 @@ -119173,8 +118704,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 2004 components: - pos: 12.5,-25.5 @@ -119187,8 +118717,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 8372 components: - pos: 5.5,-26.5 @@ -119236,8 +118765,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 20993 components: - pos: -18.5,-35.5 @@ -119245,8 +118773,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 20995 components: - pos: -11.5,-35.5 @@ -119254,8 +118781,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 20996 components: - pos: 1.5,-44.5 @@ -119263,8 +118789,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 20997 components: - pos: -12.5,-14.5 @@ -119272,8 +118797,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 20999 components: - pos: -12.5,45.5 @@ -119281,8 +118805,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 21000 components: - pos: -33.5,39.5 @@ -119290,8 +118813,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 21001 components: - pos: -39.5,17.5 @@ -119299,8 +118821,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 21041 components: - pos: 6.5,65.5 @@ -119308,8 +118829,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 22219 components: - pos: 27.5,-7.5 @@ -124865,62 +124385,7 @@ entities: pos: 53.5,22.5 parent: 30 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.55,-0.55 - - 0.55,-0.55 - - 0.55,0.55 - - -0.55,0.55 - mask: [] - layer: - - Impassable - - MidImpassable - - LowImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: conveyor - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.15,-0.15 - - 0.15,0.15 - - -0.15,0.15 - - -0.15,-0.15 - mask: [] - layer: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: brrt - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - layer: - - BulletImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: collision - type: Fixtures + - inputs: Off: - port: Middle @@ -154946,8 +154411,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - proto: WardrobeBlueFilled entities: - uid: 16039 @@ -155729,8 +155193,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 1924 components: - pos: -37.5,60.5 @@ -155743,8 +155206,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 2116 components: - pos: -27.5,59.5 @@ -155752,8 +155214,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 2117 components: - pos: -27.5,57.5 @@ -155761,8 +155222,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 2159 components: - pos: -23.5,53.5 @@ -155770,8 +155230,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 2193 components: - pos: -34.5,49.5 @@ -155779,8 +155238,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 6572 components: - pos: 12.5,23.5 @@ -155788,8 +155246,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 6758 components: - pos: -16.5,-0.5 @@ -155797,8 +155254,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 11252 components: - pos: -3.5,-32.5 @@ -155806,8 +155262,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 20276 components: - pos: -2.5,75.5 @@ -155815,8 +155270,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 20994 components: - pos: -15.5,-34.5 @@ -155824,8 +155278,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 20998 components: - pos: -6.5,46.5 @@ -155833,8 +155286,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - proto: WeaponDisabler entities: - uid: 682 diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index f89e2304d4..bc9cc155c9 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -353,8 +353,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -10097,166 +10096,26 @@ entities: pos: -63.5,-5.5 parent: 5350 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 4463 components: - rot: 3.141592653589793 rad pos: -70.5,-5.5 parent: 5350 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 4682 components: - pos: -63.5,4.5 parent: 5350 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 4683 components: - pos: -70.5,4.5 parent: 5350 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - uid: 20055 @@ -10264,165 +10123,25 @@ entities: - pos: -1.5,-74.5 parent: 5350 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 20056 components: - pos: -3.5,-74.5 parent: 5350 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 20057 components: - pos: -9.5,-74.5 parent: 5350 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 20058 components: - pos: -11.5,-74.5 parent: 5350 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleEscape entities: - uid: 5078 @@ -10430,126 +10149,21 @@ entities: - pos: -61.5,-24.5 parent: 5350 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 5080 components: - rot: 1.5707963267948966 rad pos: 41.5,47.5 parent: 5350 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 5327 components: - rot: -1.5707963267948966 rad pos: -64.5,-13.5 parent: 5350 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleLocked entities: - uid: 3885 @@ -10558,250 +10172,40 @@ entities: pos: -45.5,16.5 parent: 5350 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3887 components: - rot: -1.5707963267948966 rad pos: -45.5,18.5 parent: 5350 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 5443 components: - rot: -1.5707963267948966 rad pos: -78.5,8.5 parent: 5350 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 5711 components: - rot: -1.5707963267948966 rad pos: -76.5,-17.5 parent: 5350 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 5715 components: - pos: -73.5,-22.5 parent: 5350 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 5716 components: - pos: -72.5,-22.5 parent: 5350 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalLocked entities: - uid: 9492 @@ -78969,43 +78373,37 @@ entities: - pos: 6.5,2.5 parent: 5350 type: Transform - - fixtures: [] - type: Fixtures + - uid: 3157 components: - pos: 35.5,-16.5 parent: 5350 type: Transform - - fixtures: [] - type: Fixtures + - uid: 5342 components: - pos: -16.5,-44.5 parent: 5350 type: Transform - - fixtures: [] - type: Fixtures + - uid: 9500 components: - pos: -26.5,27.5 parent: 5350 type: Transform - - fixtures: [] - type: Fixtures + - uid: 12708 components: - pos: 28.5,34.5 parent: 5350 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14845 components: - pos: -7.5,-33.5 parent: 5350 type: Transform - - fixtures: [] - type: Fixtures + - proto: FloorTileItemEighties entities: - uid: 22994 @@ -144580,62 +143978,7 @@ entities: - pos: -40.5,38.5 parent: 5350 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.55,-0.55 - - 0.55,-0.55 - - 0.55,0.55 - - -0.55,0.55 - mask: [] - layer: - - Impassable - - MidImpassable - - LowImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: conveyor - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.15,-0.15 - - 0.15,0.15 - - -0.15,0.15 - - -0.15,-0.15 - mask: [] - layer: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: brrt - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - layer: - - BulletImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: collision - type: Fixtures + - inputs: Reverse: - port: Right diff --git a/Resources/Maps/moose.yml b/Resources/Maps/moose.yml index f49a897746..66967aca89 100644 --- a/Resources/Maps/moose.yml +++ b/Resources/Maps/moose.yml @@ -1,98630 +1,97987 @@ -meta: - format: 4 - name: DemoStation - author: Space-Wizards - postmapinit: false -tilemap: - 0: Space - 1: FloorArcadeBlue - 3: FloorArcadeRed - 4: FloorAsteroidCoarseSand0 - 5: FloorAsteroidCoarseSandDug - 6: FloorAsteroidIronsand1 - 7: FloorAsteroidIronsand2 - 8: FloorAsteroidIronsand3 - 10: FloorAsteroidSand - 15: FloorBlueCircuit - 16: FloorBoxing - 17: FloorCarpetClown - 18: FloorCarpetOffice - 22: FloorDark - 25: FloorDarkHerringbone - 26: FloorDarkMini - 27: FloorDarkMono - 28: FloorDarkOffset - 29: FloorDarkPavement - 30: FloorDarkPavementVertical - 31: FloorDarkPlastic - 33: FloorDirt - 34: FloorEighties - 37: FloorFreezer - 41: FloorGrassDark - 44: FloorGreenCircuit - 46: FloorHydro - 47: FloorKitchen - 48: FloorLaundry - 49: FloorLino - 51: FloorMetalDiamond - 58: FloorReinforced - 59: FloorRockVault - 60: FloorShowroom - 63: FloorShuttlePurple - 65: FloorShuttleWhite - 68: FloorSteel - 71: FloorSteelDirty - 74: FloorSteelMono - 75: FloorSteelOffset - 78: FloorTechMaint - 79: FloorTechMaint2 - 80: FloorTechMaint3 - 81: FloorWhite - 85: FloorWhiteMini - 87: FloorWhiteOffset - 91: FloorWood - 93: Lattice - 94: Plating -entities: -- proto: "" - entities: - - uid: 5 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - - uid: 6 - components: - - type: MetaData - - pos: 0.6031583,0.44106165 - parent: 5 - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: RAAAAEQAAAFEAAADLgAAABYAAAAuAAAAFgAAAi4AAABeAAAAXgAAAF4AAABPAAAAEgAAABIAAABPAAAAWwAAAUQAAANEAAADRAAAAhYAAAAuAAAAFgAAAy4AAAAWAAACXgAAAE8AAABeAAAAXgAAABIAAAASAAAAXgAAAFsAAAFEAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAADRAAAAEQAAANEAAACRAAAAUQAAABEAAADRAAAAEQAAAJEAAAARAAAA0QAAAFEAAACRAAAA0QAAAJEAAADRAAAAUQAAAJEAAABRAAAAUQAAAJEAAAARAAAAUQAAAFEAAADRAAAAEQAAABEAAAARAAAAEQAAAFEAAACRAAAAkQAAAJEAAABRAAAA0QAAANEAAABRAAAAUQAAANEAAAARAAAAkQAAANEAAABRAAAAUQAAABEAAACRAAAAkQAAABeAAAAFgAAARYAAAIWAAABFgAAARYAAAJeAAAATwAAAF4AAABKAAADSgAAAkoAAANKAAAASgAAAkQAAANEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADEAAABEAAAARAAAA14AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAAAxAAAARAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAAMQAAAEQAAAFEAAADXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATwAAADEAAAAxAAAAMQAAADEAAABEAAADRAAAA14AAABeAAAATgAAAF4AAABVAAADVQAAAl4AAABeAAAATgAAAF4AAABeAAAAXgAAADEAAABeAAAARAAAA0QAAAFeAAAAXgAAAE4AAABeAAAAVQAAAVUAAABVAAADXgAAAE4AAABeAAAAWwAAAFsAAAJbAAACWwAAAkQAAANEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAVQAAAF4AAABOAAAATwAAAFsAAAM7AAAAOwAAADsAAABEAAACRAAAAF4AAABeAAAAXgAAAE4AAABeAAAAWwAAAlsAAAJeAAAAXgAAAF4AAABbAAABOwAAAFsAAAJbAAADRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAJbAAACXgAAAFsAAAFeAAAAWwAAATsAAABbAAABWwAAAQ== - 0,-1: - ind: 0,-1 - tiles: WwAAAFsAAANbAAADWwAAA1sAAAJEAAACRAAAAl4AAAAxAAAAMQAAADEAAABeAAAAWwAAAVsAAAFbAAACWwAAA1sAAANbAAACWwAAA1sAAANbAAADRAAAAUQAAABeAAAAMQAAADEAAAAxAAAAXgAAAFsAAANbAAABWwAAAVsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABXgAAAF4AAAAxAAAAXgAAAF4AAABeAAAARAAAA14AAABeAAAARAAAAEQAAABEAAACRAAAAEQAAAFEAAADRAAAAUQAAAJEAAABRAAAAEQAAABEAAABRAAAAEQAAABEAAAARAAAAEQAAABEAAADRAAAA0QAAANEAAADRAAAAkQAAAFEAAACRAAAAEQAAAFEAAABRAAAAkQAAABEAAABRAAAA0QAAAFEAAADRAAAAkQAAANEAAACRAAAAUQAAAFEAAACRAAAA0QAAANEAAACRAAAA0QAAAFEAAADRAAAA0QAAANEAAAAXgAAABYAAAAWAAACFgAAAF4AAABEAAAARAAAAl4AAABEAAADRAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAACRAAAAUQAAAJEAAACSgAAABYAAAFKAAABRAAAAkQAAAJeAAAAWwAAA1sAAABbAAAAXgAAAEQAAANEAAABRAAAAEQAAAFEAAACRAAAA14AAAAcAAAAXgAAAEQAAAFEAAACMQAAAFsAAANbAAABWwAAAF4AAABEAAADRAAAA0QAAANEAAAARAAAAEQAAAJKAAABFgAAAkoAAABEAAADRAAAAl4AAABbAAABWwAAAlsAAANeAAAARAAAAEQAAANeAAAAFgAAAhYAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAACXgAAABYAAAEWAAACFgAAAF4AAABEAAACRAAAAUQAAAJEAAABWwAAAl4AAAAEAAACBAAAAV4AAABEAAADRAAAAF4AAAAWAAAAFgAAAhYAAAAWAAADRAAAAEQAAAFEAAABRAAAAzsAAABeAAAABQAAAAQAAAJeAAAARAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAAV4AAABbAAAAXgAAAAQAAAIEAAACXgAAAEQAAAJEAAADXgAAAEcAAABHAAAAXgAAAEQAAAJEAAABRAAAAEQAAAJeAAAAWwAAAl4AAAAEAAACBAAAAl4AAABEAAABRAAAA14AAABHAAAARwAAAF4AAABEAAABRAAAA0QAAABEAAADGgAAAQ== - -1,0: - ind: -1,0 - tiles: RAAAAkQAAABeAAAAXgAAAF4AAABPAAAAXgAAAFsAAAFbAAABWwAAAlsAAAIWAAABWwAAADsAAAA7AAAAOwAAAEQAAABEAAAATwAAAF4AAABeAAAAXgAAAF4AAABbAAADWwAAAlsAAAJbAAABXgAAAFsAAANbAAADWwAAAFsAAAJEAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAACRAAAAkQAAAMbAAABFgAAAhYAAAIbAAABHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAAEQAAAFEAAABGwAAAxYAAAMWAAADGwAAAhwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAABEAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAAxsAAAIbAAABXgAAAF4AAABeAAAARAAAAkQAAAFEAAABRAAAAV4AAAAWAAACFgAAAxYAAAEWAAABFgAAAxYAAAMWAAAAFgAAAxYAAAEWAAAAFgAAAEQAAABEAAADRAAAAEQAAAJeAAAAFgAAARYAAAEcAAAAHAAAABYAAAEcAAAAHAAAABwAAAAWAAAAHAAAABwAAABEAAACRAAAAUQAAANEAAACXgAAABYAAAEWAAADHAAAABwAAAAWAAAAHAAAABwAAAAcAAAAFgAAARwAAAAcAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAADFgAAAhYAAAMWAAABFgAAAhYAAAAWAAABFgAAAAQAAAEEAAABBAAAAgQAAAEEAAAABAAAAF4AAAAWAAABFgAAAhYAAAEWAAADFgAAABYAAAMWAAACFgAAARYAAAEEAAACBAAAAAQAAAIEAAAABAAAAQQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAIEAAACBAAAAAQAAAAEAAAABAAAAgQAAAIEAAACBAAAAgQAAAIEAAABBAAAAgQAAAEEAAACBAAAAQQAAAEEAAABBAAAAQQAAAEEAAACBAAAAAUAAAAEAAAABAAAAgQAAAEEAAACBAAAAgQAAAEEAAACBQAAAAQAAAAKAAAACgAAAAoAAAAEAAAABAAAAAQAAAAEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,0: - ind: 0,0 - tiles: OwAAAF4AAAAEAAACBAAAAl4AAABEAAADRAAAAV4AAABHAAAARwAAAFAAAANEAAABRAAAAEQAAANEAAADXgAAAFsAAAJbAAABBAAAAgUAAABeAAAARAAAAkQAAAJeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADXgAAAEcAAABHAAAAUAAAA0QAAANEAAABRAAAAl4AAABeAAAAHAAAABsAAAIWAAACFgAAARsAAAFEAAADRAAAAF4AAABHAAAARwAAAF4AAABEAAAARAAAA0QAAANEAAAARAAAABwAAAAbAAAAFgAAABYAAAMbAAACRAAAA0QAAAFeAAAARwAAAEcAAABeAAAARAAAAkQAAABEAAABRAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAAFgAAAxYAAABeAAAAKQAAAykAAABEAAADRAAAA0QAAABEAAAAXgAAABoAAAIaAAAAGgAAA14AAABEAAABRAAAARYAAAAWAAADXgAAACkAAAMpAAABRAAAAEQAAABEAAACRAAAA14AAAAaAAADGgAAABoAAAEbAAACRAAAAkQAAAEWAAABFgAAA14AAAApAAADKQAAA0QAAAFEAAAARAAAAkQAAANeAAAAGgAAABoAAAMaAAADXgAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAABoAAAEaAAAAGgAAA14AAABEAAADRAAAAl4AAAAEAAACBAAAAQQAAAEEAAACBQAAAAQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAARsAAANeAAAABAAAAQQAAAEEAAACBAAAAgQAAAIEAAABXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAGwAAABsAAAMbAAACBAAAAgQAAAAEAAABBAAAAgQAAAEEAAACBAAAAV4AAABeAAAATgAAAE4AAABOAAAAXgAAABsAAAAbAAAAGwAAAQQAAAEEAAABBAAAAQQAAAEAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAARsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAEQAAAJEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAADRAAAAQ== - 1,0: - ind: 1,0 - tiles: GgAAAhoAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAARoAAAIaAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAMAAAADAAAAAwAAAAMAAAAF4AAABEAAACRAAAAl4AAAAbAAACGwAAARsAAAFeAAAAXgAAAF4AAABOAAAAXgAAADAAAAAwAAAAMAAAADAAAABeAAAARAAAA0QAAANeAAAAFgAAAxYAAAMWAAAAXgAAAF4AAABeAAAATgAAAF4AAAAwAAAAMAAAADAAAAAwAAAAXgAAAEQAAAFEAAAAGwAAAhYAAAMWAAACFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAl4AAAAWAAABFgAAAhYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABRAAAAUQAAAFeAAAAGwAAABsAAAMbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAFgAAAUQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAABYAAAMWAAACFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAbAAADTwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAQQAAAIFAAAABAAAAQQAAAIEAAACGwAAAV4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAABAAAAAQAAAIEAAACBAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,-1: - ind: 1,-1 - tiles: WwAAAFsAAAFeAAAAXgAAAE4AAABeAAAABAAAAAQAAAAEAAACBAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAFsAAAFbAAADXgAAAE8AAABeAAAAXgAAAAQAAAEEAAACBAAAAAQAAAIEAAACBAAAAQQAAAEAAAAAAAAAAAAAAABEAAADXgAAAF4AAAAWAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAADRAAAAkQAAANEAAADRAAAAkQAAANEAAADRAAAAEQAAANEAAADRAAAAEQAAANEAAAARAAAA0QAAAFEAAAARAAAAUQAAAFEAAADRAAAAEQAAAJEAAAARAAAA0QAAANEAAADRAAAA0QAAANEAAACRAAAA0QAAAJEAAABRAAAAEQAAAFEAAAARAAAAEQAAAJEAAABRAAAA0QAAABEAAADRAAAA0QAAANEAAADRAAAAUQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAAhYAAAIWAAAAXgAAAF4AAAAiAAAAXgAAAF4AAABEAAADRAAAAF4AAAAWAAABFgAAAxYAAAFeAAAATwAAAF4AAABeAAAAXgAAAF4AAAAiAAAAIgAAACIAAABeAAAARAAAA0QAAAAWAAADFgAAAxYAAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAIgAAACIAAAAiAAAAXgAAAEQAAAFEAAADXgAAABYAAAEWAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAACIAAAAiAAAAIgAAAF4AAABEAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAiAAAAIgAAACIAAABeAAAARAAAAUQAAABEAAACRAAAAU8AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAIgAAACIAAAAiAAAAXgAAAEQAAABEAAAARAAAAkQAAAFeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAF4AAAAbAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAEaAAACGgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAAGgAAAhoAAANeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAg== - -2,0: - ind: -2,0 - tiles: RAAAAUQAAAFeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABXgAAABYAAAAWAAACFgAAARYAAAFOAAAAXgAAABkAAAAdAAADHQAAAx0AAAMZAAABXgAAAF4AAABEAAADRAAAAF4AAAAzAAAAMwAAADMAAAAWAAABTgAAAF4AAAAeAAABGwAAAiwAAAAbAAADHgAAAV4AAABeAAAARAAAAEQAAAFeAAAAMwAAADMAAAAzAAAAFgAAAk4AAABeAAAAHgAAAywAAAAbAAACLAAAAB4AAABeAAAAXgAAAEQAAAJEAAAAXgAAADMAAAAzAAAAMwAAABYAAABOAAAAXgAAAB4AAAMbAAACLAAAABsAAAEeAAACXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAA14AAABOAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAE8AAABEAAABRAAAAEQAAAFOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAACRAAAAkQAAAFeAAAAXgAAAF4AAABeAAAABAAAAAQAAAAEAAAABAAAAgQAAAAEAAABXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAAXgAAAAQAAAIEAAACBAAAAgQAAAAEAAACBAAAAgQAAAEEAAABBAAAAAQAAAEEAAACBAAAAgQAAABEAAABRAAAAF4AAAAEAAACBAAAAgQAAAIEAAAABAAAAQQAAAIEAAAABAAAAQQAAAIEAAACBAAAAgQAAAEEAAACRAAAA0QAAABeAAAACAAAAAcAAAAEAAACBQAAAAQAAAAEAAABBAAAAAQAAAAEAAACBAAAAgQAAAEEAAAABQAAAEQAAABEAAAAXgAAAAYAAAAHAAAABAAAAQQAAAAEAAAABAAAAgQAAAEEAAACBAAAAAQAAAIEAAACBAAAAgQAAABeAAAAXgAAAF4AAAAEAAACBgAAAAQAAAIKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXgAAAF4AAABeAAAABAAAAAYAAAAGAAAAXgAAAAYAAAAGAAAABAAAAQQAAAEEAAABBAAAAQQAAAAEAAABBAAAAQ== - -2,-1: - ind: -2,-1 - tiles: XgAAABYAAAMWAAACFgAAAF4AAABRAAABUQAAAFcAAABXAAAAVwAAAFEAAABRAAACRAAAAkQAAAJEAAADRAAAAl4AAAAWAAADFgAAARYAAABeAAAAUQAAAFEAAANRAAADUQAAAFEAAAJRAAADXgAAAEQAAAJEAAAARAAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAEQAAAJeAAAARAAAAUQAAAJEAAAARAAAAkQAAABEAAACRAAAAUQAAAFEAAACRAAAAEQAAAJEAAADRAAAA0QAAAJEAAABRAAAAEQAAABEAAACRAAAA0QAAABEAAACRAAAA0QAAABEAAAARAAAAEQAAAFEAAADRAAAAkQAAAJEAAADRAAAAkQAAANEAAADRAAAA0QAAAFEAAACRAAAAkQAAABEAAACRAAAAEQAAAFEAAABRAAAAkQAAABEAAABRAAAA0QAAANEAAAAXgAAABYAAAIWAAABFgAAABYAAAMWAAAAFgAAAxYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAACkAAAMpAAADKQAAASkAAAFOAAAARAAAA0QAAAJEAAAARAAAAkQAAANEAAADRAAAAF4AAABeAAAAXgAAAF4AAAApAAADKQAAACkAAAApAAAAXgAAAEQAAABEAAABRAAAAEQAAAFEAAABRAAAA0QAAAJeAAAAGgAAAhoAAANeAAAAKQAAACkAAAMpAAAAKQAAAV4AAABEAAADRAAAAUQAAABEAAADRAAAAEQAAAJEAAACRAAAABoAAAEaAAADXgAAACkAAAMpAAABKQAAASkAAANeAAAARAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAaAAABGgAAA14AAAApAAADKQAAAikAAAMpAAABRAAAAEQAAAFEAAADXgAAAEQAAAFEAAACRAAAAUQAAABeAAAAGgAAAxoAAANeAAAAKQAAACkAAAApAAAAKQAAAEQAAAFEAAABRAAAA14AAABEAAADRAAAAEQAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAAJOAAAARAAAAEQAAAFEAAAARAAAAE4AAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAABeAAAARAAAAEQAAANEAAAATgAAAEQAAANEAAAARAAAAUQAAABeAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAFgAAAA== - -2,-2: - ind: -2,-2 - tiles: XgAAAF4AAABeAAAATgAAAF4AAABRAAACUQAAAVEAAABRAAABUQAAAl4AAABeAAAAFgAAAhYAAAAWAAABXgAAAE8AAABeAAAAXgAAAE4AAABeAAAAUQAAAF4AAABRAAABUQAAAlEAAAMWAAACFgAAARYAAAIWAAADFgAAAEQAAANeAAAAXgAAAF4AAABOAAAAXgAAAFEAAAFRAAADUQAAAFEAAANRAAAAXgAAABYAAAMWAAABFgAAABYAAAFEAAADXgAAAF4AAABPAAAAXgAAAF4AAABRAAABXgAAAFEAAAJRAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAfAAABHwAAAh8AAABeAAAAUQAAAFEAAAFRAAABUQAAAlEAAAIfAAAAHwAAAh8AAAMfAAACHwAAAF4AAABeAAAAHwAAAR8AAAMfAAACXgAAAFEAAAFRAAABUQAAAVEAAAFeAAAAHwAAARwAAAAcAAAAHAAAAB8AAAFeAAAAXgAAAB8AAAAfAAAAHwAAAF4AAABRAAABUQAAA1EAAABRAAACXgAAAB8AAAIfAAABHwAAAB8AAAAfAAABXgAAAF4AAAAfAAABHwAAAR8AAABeAAAAUQAAAVEAAAFRAAABUQAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAF4AAABeAAAAXgAAAFEAAANeAAAAXgAAAF4AAABRAAADUQAAAV4AAABeAAAAUQAAAlEAAABRAAABUQAAA1EAAAJeAAAAUQAAA1EAAAJRAAADUQAAA1EAAAJRAAACUQAAAFEAAAJRAAADUQAAAFEAAANRAAABUQAAAVEAAANRAAADXgAAAFEAAAFRAAACUQAAA1EAAANeAAAAUQAAAFEAAAFRAAAAUQAAAlEAAABRAAAAUQAAA1EAAANRAAABUQAAAF4AAABRAAADUQAAAFEAAABRAAABUQAAAVEAAABRAAAAUQAAA1EAAAJRAAAAUQAAAlEAAAJRAAAAUQAAA1EAAABeAAAAXgAAAF4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABRAAAAUQAAAVEAAANRAAADUQAAAFEAAAJRAAACXgAAAF4AAAAWAAADFgAAAhYAAABeAAAAUQAAAVEAAAFeAAAAUQAAA14AAABeAAAAXgAAAFEAAANRAAABUQAAA14AAABeAAAAGwAAAhYAAAIbAAACXgAAAFEAAABRAAACUQAAAVEAAANRAAACUQAAAF4AAABRAAABUQAAAl4AAABeAAAAXgAAABYAAAIWAAACFgAAAl4AAABRAAABUQAAAVcAAABXAAAAVwAAAFEAAANeAAAARAAAA0QAAAJEAAADRAAAAw== - -1,-2: - ind: -1,-2 - tiles: RAAAAEQAAABEAAABXgAAAAAAAABeAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAEQAAABEAAACRAAAAV4AAABdAAAAXgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABEAAABRAAAA0QAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAABXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAEQAAAJEAAACRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAA0QAAAFeAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAAAWAAACFgAAABYAAAEWAAADRAAAAUQAAABEAAADXgAAAC8AAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAAFgAAARYAAAIWAAACFgAAAUQAAANEAAADRAAAA14AAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAAXgAAABYAAAEWAAADFgAAAhYAAAJEAAABRAAAAUQAAAFeAAAAXgAAAC4AAAAuAAAAXgAAAC8AAAAvAAAALwAAAC8AAAAWAAABFgAAAxYAAAAWAAACRAAAAUQAAAFEAAADXgAAAC4AAAAWAAACLgAAAF4AAABPAAAAXgAAAF4AAABeAAAAFgAAAxYAAAIWAAABFgAAAEQAAAJEAAAARAAAA14AAAAWAAABLgAAABYAAABeAAAAJQAAACUAAAAlAAAAXgAAABYAAAAWAAABFgAAABYAAAJEAAABRAAAAEQAAAAuAAAALgAAABYAAAMuAAAAXgAAACUAAAAlAAAAJQAAAF4AAAAWAAAAFgAAABYAAAEWAAABRAAAAkQAAANEAAADXgAAABYAAAEuAAAAFgAAAF4AAABeAAAAXgAAAE8AAABeAAAAFgAAAxYAAAAWAAADWwAAAEQAAAFEAAABRAAAAV4AAAAuAAAAFgAAAy4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAANEAAAARAAAAF4AAABeAAAAFgAAAC4AAAAWAAAALgAAAF4AAABeAAAAXgAAAF4AAAASAAAAEgAAAF4AAABbAAABRAAAAkQAAABEAAADFgAAAi4AAAAWAAACLgAAABYAAANeAAAAXgAAAF4AAABeAAAAEgAAABIAAABeAAAAWwAAAw== - 0,-2: - ind: 0,-2 - tiles: XgAAAE4AAABOAAAAXgAAAEQAAANEAAABRAAAAF4AAAAaAAAAGgAAAhoAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAARAAAAEQAAABEAAACFgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAACIAAAAiAAAAXQAAAF0AAABdAAAAXgAAAEQAAANEAAAARAAAAhYAAANeAAAATgAAAE4AAABOAAAAXgAAAF4AAAAiAAAAIgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAIgAAACIAAAAWAAABFgAAABYAAANeAAAARAAAAEQAAABEAAADFgAAAhYAAAEWAAACWwAAA1sAAANbAAABIgAAACIAAAAiAAAAFgAAABYAAAMWAAAAXgAAAEQAAANEAAAARAAAAhYAAAMWAAADFgAAAlsAAAJbAAACWwAAA14AAABeAAAAXgAAABYAAAMWAAACFgAAA14AAABEAAAARAAAAUQAAAMWAAADFgAAAhYAAAFbAAACWwAAAlsAAAJeAAAATgAAAE4AAAAWAAADFgAAARYAAANeAAAARAAAAEQAAANEAAADFgAAABYAAAIWAAACWwAAAFsAAABbAAADXgAAAE4AAABeAAAAFgAAAhYAAAIWAAAAXgAAAEQAAANEAAACRAAAAhYAAAMWAAACFgAAA1sAAABbAAADWwAAAU8AAABOAAAAXgAAABYAAAIWAAADFgAAAkQAAANEAAABRAAAAkQAAAAWAAAAFgAAARYAAAJbAAACWwAAAVsAAAJeAAAATgAAAF4AAAAWAAACFgAAAxYAAANEAAAARAAAAEQAAANEAAABFgAAAxYAAAIWAAADFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAWwAAAFsAAABbAAABXgAAAEQAAABEAAACRAAAAxYAAAEWAAABFgAAABYAAABeAAAAWwAAAVsAAAJbAAAAWwAAAVsAAANbAAACWwAAAF4AAABeAAAARAAAAUQAAAMWAAABFgAAAhYAAAIWAAACXgAAAFsAAAFbAAAAWwAAAFsAAABbAAADWwAAAlsAAANbAAAAWwAAAkQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAA1sAAAJbAAACWwAAAVsAAANbAAABWwAAA1sAAAFEAAACRAAAAF4AAAAxAAAAMQAAADEAAAAxAAAAWwAAAVsAAABbAAACWwAAAQ== - 1,-2: - ind: 1,-2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAIgAAAF4AAABeAAAAXgAAAAUAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAACIAAABeAAAAXgAAAF4AAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIAAAAiAAAAXgAAAF4AAABeAAAABAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAiAAAAIgAAAF4AAABeAAAAXgAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAATwAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAl0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAJdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABdAAAAWwAAA1sAAAFPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAFsAAAFbAAAAXgAAAF4AAABOAAAAXgAAAAQAAAAEAAABBAAAAl0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABbAAADWwAAA14AAABeAAAATgAAAF4AAAAEAAAABAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAWwAAAlsAAAJeAAAAXgAAAE4AAABeAAAABAAAAgQAAAEFAAAABAAAAgAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAA== - 0,1: - ind: 0,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABEAAACRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAASgAAAkoAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARwAAAEQAAAJHAAAARwAAAEQAAANEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAFEAAAARAAAAUQAAANHAAAARAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAl4AAABEAAAARwAAAEQAAANEAAAARAAAAEcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAABeAAAAVQAAAV4AAABeAAAAXgAAAF4AAABHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAXgAAAFUAAABVAAABVQAAAFUAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAF4AAABeAAAAVQAAA1UAAAFVAAAAXgAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIEAAACBAAAAgQAAAIEAAACBAAAAQQAAAAEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAAEAAAABAAAAgQAAAEEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAACBAAAAgQAAAAFAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAQQAAAIEAAABBAAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAABBAAAAQQAAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAEEAAACBAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAQAAAIEAAACAAAAAA== - 2,0: - ind: 2,0 - tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAA14AAAAWAAADFgAAABsAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAJEAAACRAAAAkQAAAJEAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACRAAAA0QAAAJEAAAARAAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAF4AAAAWAAADFgAAAhsAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAAXgAAAF0AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAV4AAABdAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAFeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-1: - ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAARAAAAEQAAAFEAAACRAAAAEQAAAJEAAABRAAAAUQAAAFEAAAARAAAAUQAAAFEAAABXgAAAAAAAAAAAAAAAAAAAEQAAAFEAAADRAAAAUQAAAFEAAABRAAAAEQAAAFEAAABRAAAA0QAAABEAAACRAAAAF4AAAAAAAAAAAAAAAAAAABEAAACRAAAAkQAAABEAAACRAAAA0QAAAFEAAABRAAAAEQAAABEAAACRAAAAEQAAANeAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAF0AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABeAAAAFgAAAxYAAAMbAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAADXgAAAEQAAABEAAADRAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAV4AAABEAAABRAAAAkQAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAFeAAAAFgAAAhYAAAIbAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAARYAAAFeAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAEWAAAAXgAAAF0AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAAFgAAAl4AAABdAAAAXQAAAA== - 3,0: - ind: 3,0 - tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,-1: - ind: 3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-2: - ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAA== - 1,1: - ind: 1,1 - tiles: XgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAACEAAAAhAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAAIhAAAAIQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFHAAAARAAAAEQAAAFeAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAAkQAAAJEAAADXgAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAUAAAAEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAEEAAABBAAAAAQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAACBAAAAQQAAAIEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAAQAAAIEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAAEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,-3: - ind: -1,-3 - tiles: RAAAAw8AAABeAAAARAAAA0QAAABEAAADRAAAA0QAAANEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACXgAAAF4AAABEAAADRAAAAl4AAABPAAAAXgAAABYAAAAWAAAAFgAAAhYAAABEAAADRAAAAkQAAAJEAAADRAAAA0QAAANEAAABRAAAA0QAAAJEAAADRAAAAUQAAANEAAACRAAAA0QAAABEAAAARAAAAUQAAAFEAAACRAAAAUQAAANEAAAARAAAAUQAAABEAAADRAAAAEQAAANEAAADRAAAAUQAAANEAAAARAAAAkQAAANEAAABRAAAA0QAAABEAAADRAAAAkQAAANEAAACRAAAAkQAAAJEAAAARAAAAEQAAAJEAAADRAAAA0QAAAJEAAACRAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAANEAAACXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAEQAAANEAAACRAAAA14AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA0QAAAFeAAAAXQAAAF4AAAAQAAACEAAAARAAAAEQAAAAEAAAAxAAAAAQAAADEAAAABAAAAMQAAABRAAAA0QAAAFEAAABXgAAAAAAAABeAAAAEAAAAxAAAAAQAAACEAAAAxAAAAEQAAABEAAAABAAAAMQAAAAEAAAAkQAAAJEAAABRAAAAF4AAAAAAAAAXgAAABAAAAIQAAAAEAAAAhAAAAEQAAADEAAAAxAAAAEQAAACEAAAARAAAABEAAABRAAAAUQAAAJeAAAAXgAAAF4AAAAQAAAAEAAAAxAAAAMQAAAAEAAAAxAAAAIQAAABEAAAAxAAAAAQAAAARAAAAUQAAABEAAADTgAAAE4AAABOAAAAOgAAABAAAAMQAAADEAAAARAAAAEQAAABEAAAAhAAAAEQAAACOgAAAEQAAANEAAAARAAAAU4AAABOAAAATgAAADoAAAAKAAAACgAAABAAAAAQAAADEAAAAwoAAAAKAAAACgAAADoAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAARAAAAUQAAAFEAAADXgAAAAAAAABeAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAA== - 0,-3: - ind: 0,-3 - tiles: XgAAAF4AAAAWAAAAFgAAAxYAAAAWAAAAFgAAAxYAAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAARAAAAl4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAUQAAAFEAAADRAAAAkQAAANEAAADXgAAAE4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAARAAAAUQAAAFEAAABRAAAAUQAAAJEAAABRAAAAE8AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAAXgAAAEQAAAJEAAADRAAAAkQAAAFEAAADRAAAAkQAAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAANEAAABXgAAAF4AAABeAAAAXgAAABoAAAIaAAABGgAAARoAAAJeAAAAXQAAAF0AAABdAAAAXgAAAEQAAAFEAAAARAAAAV4AAABeAAAAXgAAAF4AAAAaAAAAGgAAAhoAAAEaAAABXgAAAF4AAABdAAAAXQAAAF4AAABEAAACRAAAAEQAAANEAAAARAAAAUQAAAFEAAADGgAAAxoAAAAaAAADGgAAAl4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAANEAAADRAAAA0QAAAFEAAACRAAAABoAAAIaAAABGgAAARoAAAJeAAAAXgAAAE4AAABOAAAAXgAAAEQAAANEAAAARAAAA14AAABEAAADRAAAAV4AAABeAAAAXgAAAEQAAAFEAAABXgAAAF4AAABOAAAATgAAAF4AAABEAAADRAAAAUQAAAJeAAAARAAAAkQAAAFeAAAARAAAAkQAAANEAAADRAAAA0QAAAJeAAAATgAAAE4AAABeAAAARAAAA0QAAANEAAADRAAAAkQAAABEAAADRAAAAEQAAANEAAACRAAAA0QAAANEAAAARAAAA0QAAAFEAAACRAAAAUQAAANEAAACRAAAAEQAAAJEAAAARAAAAEQAAABEAAAARAAAA0QAAANEAAABRAAAA0QAAAFEAAABRAAAAEQAAANEAAADRAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAAUQAAAFeAAAATgAAAE4AAABeAAAARAAAAUQAAABEAAABXgAAABoAAAEaAAAAGgAAAUQAAANEAAADRAAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAEQAAAFEAAABRAAAAF4AAAAaAAABGgAAAxoAAAJeAAAAXgAAAF4AAABeAAAAXgAAAA== - -2,-3: - ind: -2,-3 - tiles: WwAAAxsAAAIZAAACGQAAABkAAAEZAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAzAAAAMwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAARYAAAMWAAACFgAAARYAAAFeAAAAXgAAAF4AAABEAAACRAAAAkQAAABEAAADRAAAA0QAAAFEAAAARAAAA0QAAANEAAACRAAAAEQAAAJEAAABRAAAAEQAAABEAAACRAAAA0QAAABEAAACRAAAAEQAAABEAAACRAAAAEQAAAJEAAACRAAAAEQAAANEAAABRAAAAkQAAANEAAADRAAAA0QAAAFEAAAARAAAAUQAAAJEAAACRAAAAEQAAABEAAACRAAAAEQAAABEAAAARAAAAkQAAANEAAABRAAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABeAAAAVQAAA1UAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAANbAAABWwAAAlsAAABbAAACXgAAAFUAAAFVAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAAAWwAAA1sAAANbAAAAWwAAAV4AAABVAAABVQAAA14AAABeAAAATgAAAF4AAABbAAACWwAAA14AAABbAAABWwAAAFsAAAJbAAAAWwAAAVsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAWwAAA1sAAAFeAAAAWwAAA1sAAAFbAAABWwAAA1sAAABbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAADWwAAAFsAAAFbAAADWwAAAVsAAANbAAACWwAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAUAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAFAAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAJRAAAAUQAAA1EAAAJRAAACUQAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAABXgAAAFEAAANRAAADUQAAAVEAAANeAAAAFgAAABYAAAIWAAACGwAAAA== - 1,-3: - ind: 1,-3 - tiles: XgAAAF4AAABeAAAATgAAAF4AAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAE4AAABeAAAABAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAAXgAAAF4AAABOAAAAXgAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE8AAABPAAAAXgAAAF4AAAAEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAEWAAADFgAAAhYAAABeAAAABAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACFgAAAxYAAAEWAAACXgAAAAQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAxYAAAIWAAACFgAAAl4AAAAEAAABBAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAADFgAAABYAAAJeAAAABAAAAAUAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAGwAAABsAAANeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAAJEAAABRAAAAl4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAACRAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACRAAAAkQAAANEAAADXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAABEAAACRAAAAV4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFEAAACRAAAAkQAAANeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABOAAAATgAAAF4AAAAEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,-4: - ind: 0,-4 - tiles: BAAAAQQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAQQAAAEEAAACBAAAAgQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAAEAAACBQAAAAQAAAAEAAAABAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAEAAACBAAAAQQAAAEEAAAABAAAAgQAAAEEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAABAAAAQoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAKAAAACgAAAAoAAAAEAAAABAAAAgQAAAIEAAABBAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAACgAAAAoAAAAEAAAABAAAAQQAAAAEAAACBAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAUAAAAEAAABBAAAAAQAAAIEAAACBAAAAAQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAIEAAAABAAAAgQAAAIEAAABBAAAAAQAAAEEAAABXgAAAF4AAAAWAAACFgAAABYAAAEWAAACFgAAAl4AAAAEAAABBAAAAgQAAAEEAAAABAAAAQQAAAEEAAACBAAAAV4AAABeAAAAFgAAABYAAAIWAAAAFgAAAhYAAAJeAAAABAAAAgQAAAEEAAABBAAAAAQAAAIEAAABBAAAAQQAAAFeAAAAXgAAABYAAAIWAAAAFgAAAxYAAAMWAAACXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAQQAAAIEAAAAXgAAAE8AAAAWAAABFgAAABYAAAEWAAAAFgAAAxYAAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 1,-4: - ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAACBAAAAQQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAgQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABQAAAAQAAAAEAAACBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,-4: - ind: -1,-4 - tiles: BAAAAgQAAAAEAAABBAAAAAQAAAIEAAACBAAAAV4AAAAWAAAAHgAAAh4AAAAWAAADXgAAAAQAAAAEAAABBAAAAQQAAAAEAAACBAAAAgQAAAAEAAACBAAAAAQAAAJeAAAAFgAAAh4AAAIeAAACFgAAAV4AAAAEAAAABAAAAQQAAAAEAAAABAAAAAQAAAIEAAAABAAAAQQAAAIEAAAAXgAAABYAAAIeAAACHgAAARYAAAFeAAAABAAAAgQAAAIEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAABsAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAFgAAAR4AAAEeAAABFgAAAl4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEeAAADHgAAARYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAAhsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAA0QAAAJEAAAARAAAAkQAAANEAAABRAAAA0QAAANEAAACRAAAAV4AAABOAAAATgAAAF4AAABEAAABRAAAAEQAAABEAAABRAAAA0QAAAFEAAAARAAAA0QAAAFEAAABRAAAA0QAAAJPAAAAXgAAAF4AAABeAAAARAAAAEQAAAFEAAABRAAAA14AAABEAAACRAAAAkQAAAJEAAADRAAAAkQAAAFEAAAAXgAAABYAAAIWAAABFgAAAkQAAAJEAAACRAAAAUQAAAJeAAAAGwAAAF4AAABeAAAATwAAAF4AAABeAAAAFgAAAV4AAAAWAAABFgAAAxYAAAJEAAACRAAAAEQAAAJEAAACXgAAAB4AAAFVAAABXgAAAE4AAABeAAAAGgAAABoAAAJeAAAAFgAAAxYAAABeAAAARAAAAkQAAAJEAAABRAAAAF4AAAAeAAACVQAAA14AAABOAAAAXgAAABoAAAMaAAAAXgAAABYAAAIWAAADXgAAAEQAAAFEAAACRAAAA0QAAAJeAAAAHgAAAFUAAANeAAAATgAAAF4AAAAaAAAAGgAAAF4AAABEAAADDwAAAF4AAABeAAAARAAAAl4AAABeAAAAXgAAABsAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAg8AAABeAAAARAAAAUQAAAFEAAABRAAAAUQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -2,-4: - ind: -2,-4 - tiles: XgAAAF4AAAAEAAAABAAAAAQAAAEEAAACXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAQQAAAIEAAABBAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAIEAAABBAAAAgQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAIEAAACBAAAAQQAAAAEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAAXgAAAE4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAFsAAABeAAAAHwAAAR8AAAJeAAAAXgAAAEcAAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAABGwAAAR8AAAIfAAACXgAAAEcAAABeAAAAXgAAAEcAAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABOAAAAWwAAAl4AAAAfAAACHwAAAl4AAABeAAAARwAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABPAAAAFgAAAhYAAABbAAAAGwAAAlsAAAFbAAACXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAWwAAAhsAAAFeAAAAXgAAAF4AAABHAAAARwAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAVsAAAIbAAABXgAAAFsAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAFgAAABYAAAFbAAABXgAAAF4AAAAbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADMAAAAzAAAAWwAAAV4AAAAZAAABGQAAABkAAAAZAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAzAAAAMwAAAA== - -1,-5: - ind: -1,-5 - tiles: AAAAAAAAAAAEAAAABAAAAQQAAAIFAAAABAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAABAAAAgQAAAIEAAAABAAAAAQAAAFeAAAAFgAAABYAAAAWAAADFgAAAhYAAAMWAAACFgAAAV4AAAAAAAAABAAAAAQAAAJeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAABFgAAAhYAAAAWAAACFgAAAxYAAAMWAAACBAAAAAQAAAAEAAABXgAAAA8AAAAPAAAADwAAAF4AAAAWAAADFgAAABYAAAEWAAABFgAAAxYAAAMWAAADFgAAAQQAAAIEAAACBAAAAF4AAAAdAAAAHQAAAx0AAANeAAAAFgAAAhYAAAIWAAABXgAAAF4AAAAWAAAAFgAAABYAAAIEAAACBAAAAgQAAAJeAAAAHQAAAB0AAAIdAAADGwAAABYAAAAWAAAAFgAAA14AAABeAAAAFgAAARYAAAFeAAAABAAAAQQAAAIEAAAAXgAAAE4AAABOAAAATgAAAF4AAAAWAAACFgAAARYAAAJeAAAAXgAAABYAAAEWAAACXgAAAAAAAAAEAAACBAAAAV4AAABOAAAATgAAAE4AAABeAAAAFgAAAxYAAAMWAAAAXgAAAF4AAAAWAAABFgAAAxsAAAIAAAAAAAAAAAQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAbAAACGwAAA14AAABeAAAAFgAAABYAAAFeAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAACBAAAAF4AAAAWAAACHgAAAx4AAAIWAAADXgAAABYAAAMWAAABGwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAABeAAAAFgAAAR4AAAEeAAADFgAAAl4AAAAWAAABFgAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABXgAAAF4AAAAbAAACGwAAA14AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAFeAAAAXgAAAF4AAABeAAAABAAAAQUAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIFAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAl4AAABeAAAAXgAAAF4AAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAF4AAABeAAAAGwAAAhsAAANeAAAAXgAAAAQAAAAEAAAABAAAAg== - 0,-5: - ind: 0,-5 - tiles: FgAAARYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAIbAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAxYAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAMWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,-6: - ind: -1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAgQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAABBAAAAQQAAAEEAAABBQAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAAABAAAAQQAAAEEAAACBAAAAQQAAAIEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAAABAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 0,-6: - ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADFgAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,-2: - ind: -3,-2 - tiles: EgAAABIAAAASAAAARAAAAUQAAAJEAAACXgAAABEAAAARAAAAEQAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAABIAAAASAAAAEgAAAF4AAABEAAADRAAAA14AAAARAAAAEQAAABEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAASAAAAEgAAABIAAABeAAAARAAAAUQAAANEAAAAEQAAABEAAAARAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAEAAAABAAAAAwAAAF4AAAAxAAAAMQAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAABAAAAAwAAAAMAAABeAAAAMQAAAF4AAAAxAAAAXgAAAF4AAABOAAAARAAAAUQAAAJeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAEoAAAJEAAABXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABKAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABRAAADUQAAA1EAAAJRAAABUQAAAlEAAAFRAAADUQAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAlEAAAJRAAAAUQAAAFEAAANRAAABUQAAAFEAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAFRAAACUQAAAlEAAAFRAAAAUQAAAFEAAAFRAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAUQAAAl4AAABeAAAAXgAAAF4AAABRAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGgAAAhoAAAIaAAACGgAAAF4AAABRAAAAUQAAAFEAAAI8AAAAPAAAADwAAAA8AAAAXgAAAE4AAABeAAAAXgAAABoAAAAaAAADGgAAAxoAAAFeAAAAUQAAAFEAAAJRAAAAPAAAADwAAAA8AAAAPAAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAANRAAADUQAAAg== - -3,-1: - ind: -3,-1 - tiles: PAAAADwAAAA8AAAAPAAAAF4AAABOAAAAXgAAAF4AAABbAAAAWwAAAlsAAAFbAAABXgAAAFEAAAJRAAABUQAAAzwAAAA8AAAAPAAAADwAAABeAAAAXgAAAE8AAABeAAAAWwAAAlsAAABbAAAAWwAAA14AAABRAAACUQAAA1EAAANeAAAAPAAAAF4AAABeAAAAXgAAABYAAAIWAAADXgAAAEQAAAJeAAAARAAAAEQAAANeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAACRAAAA0QAAANEAAADRAAAAUQAAABEAAACRAAAAUQAAAFEAAACRAAAAUQAAABEAAACRAAAAkQAAAJEAAAARAAAA0QAAAFEAAADRAAAAUQAAAJEAAAARAAAAEQAAAFEAAABRAAAAUQAAANEAAADRAAAAEQAAAJEAAACRAAAAkQAAANEAAADRAAAAUQAAAJEAAADRAAAA0QAAANEAAADRAAAA0QAAAJEAAAARAAAAUQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAAQAAAEEAAABBAAAAQQAAAEEAAABXgAAAE8AAABeAAAAXgAAABYAAAIWAAABFgAAAl4AAABOAAAARAAAAU4AAAAEAAAABAAAAAUAAAAEAAAABAAAAV4AAABeAAAATgAAAF4AAAAWAAABFgAAARYAAAJOAAAARAAAAkQAAAJEAAABBAAAAAQAAAEEAAACBAAAAAQAAAFeAAAAXgAAAE4AAABeAAAAFgAAAxYAAAMWAAABXgAAAE4AAABOAAAATgAAAAQAAAAEAAACBAAAAQQAAAAEAAACXgAAAF4AAABOAAAAXgAAABYAAAAWAAAAFgAAAV4AAABeAAAAXgAAAF4AAAAEAAACBAAAAgQAAAIEAAACBAAAAV4AAABeAAAATgAAAF4AAABEAAADRAAAA0QAAAJEAAACRAAAA0QAAAJEAAAABAAAAAQAAAIEAAAABAAAAAQAAAJeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAABRAAAAUQAAAJEAAAARAAAAgQAAAIEAAAABAAAAQQAAAIEAAABXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAA0QAAABEAAADRAAAA0QAAAIEAAAABAAAAgQAAAIEAAACBAAAAV4AAABeAAAAXgAAAE8AAABEAAAARAAAAkQAAABEAAACRAAAAkQAAAJEAAABAAAAAAQAAAIFAAAABAAAAgQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAARAAAAA== - -3,0: - ind: -3,0 - tiles: AAAAAAQAAAEEAAABBAAAAQQAAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABEAAACRAAAAEQAAANeAAAARAAAAgAAAAAEAAABBAAAAgQAAAIEAAAAXgAAAF4AAABOAAAAXgAAAEQAAAJEAAAAXgAAAEQAAAJEAAAAXgAAAEQAAAIAAAAABAAAAgQAAAAEAAAABAAAAF4AAABeAAAATgAAAF4AAABEAAABMwAAAF4AAAAzAAAARAAAAF4AAABEAAACAAAAAAQAAAAEAAAABAAAAQQAAAFeAAAAXgAAAE4AAABeAAAARAAAAF4AAABeAAAAXgAAAEQAAAJeAAAARAAAAQAAAAAEAAACBAAAAQQAAAAEAAABXgAAAF4AAABeAAAAXgAAAEQAAAIzAAAAMwAAADMAAABEAAABXgAAAEQAAAAAAAAABAAAAQQAAAEFAAAABAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAQAAAAEAAABBAAAAAQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAATgAAAAQAAAIEAAAABAAAAQQAAAIEAAACBgAAAAYAAAAGAAAABgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAAAEAAACBAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEEAAACXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAFAAAABAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -3,-3: - ind: -3,-3 - tiles: XgAAAFsAAANeAAAAWwAAAlsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAlsAAAJbAAAAWwAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAAEQAAABEAAAARAAAAkQAAANEAAACRAAAAkQAAANEAAADRAAAAkQAAABEAAABRAAAAEQAAAFEAAACRAAAAEQAAAJEAAADRAAAAUQAAANEAAABRAAAAUQAAABEAAACRAAAAEQAAABEAAAARAAAAkQAAAFEAAADRAAAAEQAAAJEAAAARAAAA0QAAAJEAAABRAAAAkQAAANEAAADRAAAA0QAAAJEAAAARAAAAUQAAAFEAAAARAAAAEQAAABEAAABRAAAAkQAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFUAAANeAAAALgAAAC4AAAAuAAAAXgAAAEQAAABEAAABXgAAAFsAAAFbAAAAWwAAAl4AAABVAAADVQAAAVUAAANVAAABVQAAAC4AAAAuAAAALgAAAF4AAABEAAACRAAAA0QAAABbAAACWwAAA1sAAAFeAAAAVQAAAFUAAAJVAAADVQAAAFUAAAMuAAAALgAAAC4AAABEAAABRAAAAEQAAANeAAAAWwAAA1sAAABbAAACXgAAAFUAAANVAAAAVQAAAFUAAANVAAACXgAAAF4AAAAuAAAAXgAAAEQAAAJEAAAAXgAAAFsAAABbAAACWwAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAACIAAABeAAAAXgAAAF4AAABEAAAARAAAAV4AAABeAAAAXgAAAFsAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAiAAAAIgAAACIAAABeAAAARAAAA0QAAABeAAAAHwAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAIgAAACIAAAAiAAAARAAAAEQAAAFEAAACXgAAAB8AAAIfAAADHwAAAl4AAABeAAAAXgAAAF4AAABeAAAAUAAAAiIAAAAiAAAAIgAAAF4AAABEAAACRAAAAkQAAAMfAAABHwAAAh8AAAJeAAAAXgAAAF4AAABeAAAAUAAAAlAAAAAiAAAAIgAAACIAAABeAAAARAAAAEQAAAJeAAAAHwAAAh8AAAIfAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAA== - -3,-4: - ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAQQAAAIEAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAIEAAACBQAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAAQAAAIEAAAABAAAAgQAAAFeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAAQAAAAEAAACXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAIEAAABBAAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAAABAAAAgQAAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAACWwAAA1sAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABbAAABWwAAAlsAAANbAAADXgAAAF4AAABbAAADXgAAAFsAAAFbAAADWwAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAFsAAABbAAAAWwAAAV4AAABeAAAAWwAAAFsAAANeAAAAXgAAAFsAAAFeAAAAXgAAAF4AAABeAAAAXgAAAFsAAANbAAAAWwAAAFsAAANeAAAAXgAAAFsAAABeAAAAXgAAAFsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAA1sAAANbAAACXgAAAFsAAANbAAABXgAAAFsAAANHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAA1sAAAFbAAACWwAAAl4AAABeAAAAWwAAA1sAAABbAAAAXgAAAEcAAABHAAAAXgAAAF4AAABOAAAAXgAAAFsAAANbAAAAWwAAAVsAAAJeAAAAWwAAAl4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAATgAAAF4AAABbAAAAWwAAA1sAAANbAAACXgAAAFsAAAJbAAACWwAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAWwAAA1sAAABbAAAAWwAAAA== - -4,-3: - ind: -4,-3 - tiles: XQAAAF0AAABdAAAABAAAAAQAAAIEAAABTgAAAE4AAAAPAAAAGwAAAQ8AAABeAAAAWwAAAFsAAAJbAAAAWwAAAF0AAABdAAAABAAAAAQAAAEEAAABXgAAAE4AAABOAAAADwAAABsAAAEPAAAAXgAAAF4AAABeAAAARAAAAV4AAABdAAAAXQAAAAQAAAEEAAACBAAAAV4AAAAWAAABFgAAABYAAAAWAAABFgAAABYAAAEbAAACRAAAAUQAAANEAAABAAAAAF0AAAAEAAACBAAAAQQAAAFeAAAAFgAAARYAAAIWAAADFgAAAxYAAAEWAAAAXgAAAEQAAAJEAAACRAAAA10AAABdAAAABAAAAgQAAAEEAAAAXgAAABYAAAEWAAADFgAAAhYAAAMWAAADFgAAARsAAABEAAABRAAAAUQAAAJdAAAAXQAAAAQAAAAEAAAABAAAAF4AAABOAAAATgAAAA8AAAAbAAADDwAAAF4AAABeAAAAXgAAAE8AAABeAAAAXQAAAF0AAAAEAAABBAAAAQQAAAEEAAAATgAAAE4AAAAPAAAAGwAAAQ8AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAABAAAAAQAAAAFAAAABAAAAQQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABdAAAAAAAAAAQAAAIEAAACBAAAAAQAAAAEAAACBAAAAAQAAAEEAAABBAAAAQQAAAFeAAAATgAAAF4AAABeAAAAAAAAAAAAAAAEAAACBAAAAQQAAAAEAAABBAAAAQQAAAAEAAACBAAAAAQAAAEEAAACXgAAAE4AAABeAAAAXgAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAgQAAAAEAAACBAAAAgQAAAAEAAACBAAAAl4AAABOAAAAXgAAAF4AAAAEAAABBAAAAAQAAAAEAAACBAAAAQQAAAIEAAACBAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAEEAAABBAAAAgQAAAEEAAACBAAAAgQAAAFeAAAARwAAAEcAAABHAAAARwAAAF4AAABeAAAAXgAAAAQAAAEEAAAABAAAAgQAAAEEAAABBAAAAgQAAAEEAAAAXgAAAEcAAABHAAAARwAAAEcAAABeAAAAXgAAAF4AAAAEAAACBAAAAQQAAAAEAAABBAAAAgQAAAAEAAAABAAAAV4AAABHAAAARwAAAEcAAABHAAAAXgAAAF4AAABeAAAABAAAAAQAAAEEAAACBAAAAQQAAAEEAAAABAAAAgQAAAJeAAAARwAAAEcAAABHAAAARwAAAE8AAABeAAAAXgAAAA== - -4,-2: - ind: -4,-2 - tiles: BAAAAQQAAAEEAAABBAAAAQQAAAEEAAACBAAAAgQAAAFeAAAARwAAAEcAAABHAAAARwAAAF4AAABeAAAAXgAAAAQAAAIEAAACBAAAAQQAAAIEAAABBAAAAQQAAAEEAAABXgAAAF4AAABeAAAARwAAAEcAAABeAAAAXgAAAF4AAAAEAAAABAAAAAQAAAIEAAACBAAAAQQAAAIEAAABBAAAAgQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAUAAAAEAAACBAAAAgQAAAAEAAABBAAAAQQAAAIEAAABBAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAACBAAAAgQAAAAFAAAABAAAAAQAAAIEAAAABAAAAQQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAgQAAAEEAAABBAAAAAQAAAAEAAABBAAAAAQAAAEEAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAIEAAAABAAAAAQAAAEEAAACBAAAAAQAAAEEAAACBAAAAF4AAABOAAAAXgAAAF4AAABEAAAARAAAAQoAAAAKAAAABAAAAgQAAAEEAAACBAAAAQQAAAIEAAACBAAAAgQAAAFeAAAATgAAAF4AAABeAAAARAAAAkoAAAMKAAAACgAAAAoAAAAKAAAABAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJKAAACBAAAAQQAAAAKAAAACgAAAAQAAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAARAAAA0QAAAJEAAABRAAAAkQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAJVAAAAVQAAA1UAAAFVAAACRAAAA14AAABeAAAAXgAAAE8AAABPAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAAAVQAAA1UAAABVAAABVQAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAFUAAABVAAAAVQAAAVUAAAJEAAABXgAAAA== - -4,-1: - ind: -4,-1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAFUAAABVAAACVQAAAlUAAANEAAABXgAAAEQAAANEAAAARAAAAUQAAANEAAADRAAAA0QAAANEAAABXgAAAEQAAANEAAADRAAAAUQAAAFEAAAARAAAAl4AAABEAAAASwAAAEsAAABLAAAASwAAAEsAAABEAAADRAAAAF4AAABeAAAARAAAAl4AAABeAAAARAAAAl4AAABeAAAARAAAAUsAAAApAAADKQAAAikAAAJLAAAARAAAAEQAAAFEAAABRAAAAkQAAANEAAAARAAAA0QAAAFEAAAARAAAA0QAAANLAAAASwAAAEsAAABLAAAASwAAAEQAAAJEAAACRAAAAkQAAANEAAABRAAAA0QAAABEAAAARAAAAEQAAABEAAACRAAAA0QAAAJEAAAARAAAAEQAAAJEAAACRAAAA0QAAABEAAABRAAAAEQAAAJEAAACRAAAAUQAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAgQAAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEFAAAABAAAAgQAAAAEAAAABAAAAAQAAAFeAAAABAAAAgUAAAAEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAgQAAAEEAAAABAAAAAQAAAEEAAAAXgAAAAQAAAIEAAACBAAAAV4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAAEAAABBAAAAAQAAAEEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,1: - ind: -3,1 - tiles: BAAAAAQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAFAAAABAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEEAAABXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAAQAAAAEAAAABAAAAgQAAAEEAAAABAAAAQQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAEEAAACBQAAAAQAAAIEAAACBAAAAQUAAAAEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAIEAAAABAAAAAQAAAAEAAABBAAAAQQAAAEEAAABBAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAABAAAAAQAAAAEAAACBAAAAAQAAAAEAAAABAAAAQQAAAEEAAABBAAAAV0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAQAAAAEAAABBAAAAgQAAAAEAAACBAAAAAQAAAEEAAABBAAAAgQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAEAAAABAAAAgQAAAIEAAACBAAAAAQAAAIEAAABBAAAAgQAAAEEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAABAAAAQQAAAEEAAACBAAAAQQAAAIEAAABBAAAAQQAAAIEAAAABAAAAV4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAQAAAEEAAABBAAAAAQAAAAEAAAABAAAAAQAAAIEAAAABAAAAgQAAAAEAAABBAAAAQQAAAIEAAACBAAAAgAAAAAAAAAABAAAAAQAAAIEAAACBAAAAAQAAAAEAAACBAAAAAQAAAAEAAAABQAAAAQAAAIEAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAgQAAAAEAAABBAAAAQQAAAAEAAACBAAAAgQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAgQAAAAEAAAABAAAAA== - -2,1: - ind: -2,1 - tiles: XgAAAF4AAABeAAAABAAAAF4AAABeAAAAXgAAAF4AAAAGAAAABAAAAQQAAAEEAAABBAAAAAQAAAIEAAAAAAAAAF4AAABeAAAAXgAAAAQAAAFeAAAAXgAAAF4AAABeAAAABgAAAAQAAAAEAAAABAAAAQQAAAAEAAACAAAAAAAAAABeAAAAXgAAAF4AAAAEAAAAXgAAAF4AAABeAAAAXgAAAAYAAAAEAAAABAAAAgQAAAIFAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAABAAAAgYAAAAGAAAAXgAAAAYAAAAGAAAABAAAAQQAAAEEAAABBAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAQAAAEEAAAABAAAAAQAAAIEAAAABAAAAQQAAAAEAAABBAAAAAQAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAEAAAABAAAAQQAAAAEAAAABAAAAgQAAAAEAAABBAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAABAAAAAQAAAIEAAABBAAAAAQAAAIEAAACBAAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAQAAAEEAAACBAAAAgQAAAIEAAACBAAAAgQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAAEAAAABAAAAAQAAAAEAAABBAAAAAQAAAIEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAABBQAAAAQAAAIEAAABBAAAAAQAAAIEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAgQAAAEEAAAABAAAAgQAAAIEAAAABAAAAAQAAAEEAAABAAAAAF0AAABdAAAAXQAAAF0AAAAEAAACBAAAAQQAAAAEAAAABAAAAAQAAAEEAAACBAAAAgQAAAEEAAABBAAAAQAAAABdAAAAXQAAAF0AAABdAAAABAAAAgQAAAIEAAAABAAAAgQAAAEEAAAABAAAAQQAAAIEAAABBAAAAgQAAAIAAAAAXQAAAF0AAABdAAAAXQAAAAQAAAAEAAACBAAAAAQAAAIEAAAABAAAAgQAAAEEAAACBAAAAQQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAIEAAABBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAABAAAAgYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAA== - -4,-4: - ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAEFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAABBAAAAgQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAACBAAAAQQAAAEEAAABBAAAAAQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAAQAAAIEAAABBAAAAAQAAAEEAAABBAAAAV0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAIEAAABBQAAAAQAAAAEAAACBAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAIEAAAABAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAIEAAAABAAAAQQAAABeAAAAWwAAAlsAAAFbAAABWwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAUAAAAEAAAABAAAAQQAAAEEAAABXgAAAFsAAANbAAADWwAAAFsAAABdAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAABBAAAAgQAAAIEAAAABAAAAF4AAABbAAACWwAAAlsAAAFbAAABAAAAAAAAAAAAAAAABAAAAQQAAAEEAAAABAAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAANbAAAAWwAAAg== - -5,-1: - ind: -5,-1 - tiles: AAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAQAAAIEAAACBAAAAAQAAAEEAAABXgAAAE4AAABeAAAATwAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAQAAAAEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAEAAAABAAAAV4AAAAWAAAAFgAAARYAAAMWAAAAFgAAA14AAABEAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAJeAAAAFgAAAhYAAAIWAAABFgAAAhYAAABKAAABRAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABXgAAABYAAAIWAAADFgAAAhYAAAEWAAAAXgAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAV4AAAAWAAACFgAAAxYAAAIWAAADFgAAA14AAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAIAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQUAAAAEAAAABAAAAV4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAAQAAAJeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,-2: - ind: -5,-2 - tiles: AAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIEAAABAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAABAAAAAQAAAIEAAABBAAAAV0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAEAAACBAAAAQQAAAIEAAABBAAAAgUAAAAEAAACAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAABAAAAAQAAAEEAAAABAAAAQAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAAQAAAIEAAACBAAAAgQAAAIAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAAEAAABBAAAAgQAAAAEAAACAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEFAAAABAAAAgQAAAIEAAACBAAAAQAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAABBAAAAl4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAQQAAAFeAAAATgAAAE4AAABOAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAQQAAAEEAAABXgAAAE4AAABOAAAAXgAAAA== - -4,0: - ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAA== - -4,1: - ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,2: - ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAEEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,2: - ind: -2,2 - tiles: BAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,2: - ind: 1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,2: - ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIFAAAABAAAAgQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAEEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-5: - ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAAEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAgQAAAAEAAABBQAAAA== - -5,-3: - ind: -5,-3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAAAAAABdAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABHAAAARwAAAF4AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQ== - -6,-3: - ind: -6,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABHAAAARwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAA== - -2,-6: - ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,-5: - ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,-6: - ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAA== - -5,-4: - ind: -5,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAA== - -6,-4: - ind: -6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAEcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARwAAAEcAAABHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAA== - -6,-2: - ind: -6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAA== - -6,-1: - ind: -6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,1: - ind: -1,1 - tiles: XQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAA== - -1,2: - ind: -1,2 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - type: OccluderTree - - type: Shuttle - - nextUpdate: 3754.1875118 - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - color: '#DE3A3A96' - id: ArrowsGreyscale - decals: - 2769: -29.218893,-17.986204 - 2770: -28.793892,-17.994537 - - node: - angle: 3.141592653589793 rad - color: '#52B4E996' - id: ArrowsGreyscale - decals: - 2767: -31.248856,-18.00287 - 2768: -30.815523,-18.00287 - - node: - color: '#FFFFFFFF' - id: Basalt1 - decals: - 2812: -10,-31 - - node: - color: '#FFFFFFFF' - id: Basalt3 - decals: - 2813: -2,-34 - - node: - color: '#FFFFFFFF' - id: Basalt5 - decals: - 2814: -4,-31 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 1227: 4,-51 - 1360: 47,1 - 1361: 47,4 - 1362: 47,-8 - 1363: 47,-5 - - node: - color: '#EFB34196' - id: Bot - decals: - 1370: 29,7 - 1371: 43,9 - 1372: 20,-14 - 1373: 11,1 - 1374: 7,8 - 1375: -7,8 - 1376: -4,1 - 1377: -6,-14 - 1378: -19,6 - 1379: -33,-1 - 1380: -41,-10 - 1381: -58,-15 - 1382: -40,-22 - 1383: -14,-31 - 1384: -22,-47 - 1385: -40,-46 - 1386: -3,-47 - 1387: -13,-55 - 1388: 4,-40 - 1389: 13,-34 - 1390: 7,-29 - 1391: -4,-20 - 2754: -12,-25 - - node: - angle: 3.141592653589793 rad - color: '#334E6DC8' - id: BotLeftGreyscale - decals: - 1164: -5,-10 - - node: - color: '#334E6DC8' - id: BotLeftGreyscale - decals: - 1158: -2,-10 - 1159: -3,-10 - 1160: -4,-10 - - node: - color: '#FFFFFFFF' - id: Box - decals: - 1123: 16,-36 - 1124: 16,-37 - 1125: 15,-36 - 1126: 15,-37 - 1129: 16,-41 - 1130: 16,-42 - 1131: 16,-43 - 1132: 16,-44 - 1133: 19,-41 - 1134: 19,-42 - 1135: 19,-43 - 1136: 19,-44 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - decals: - 238: 10,-32 - 246: 14,-40 - 437: 17,1 - 442: 12,9 - 481: 0,4 - 615: -8,8 - 616: -4,8 - 617: -1,8 - 663: -37,-18 - 819: -22,-4 - 1224: -2,-51 - 1242: -18,-1 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - decals: - 240: 8,-32 - 248: 11,-40 - 438: 16,1 - 439: 10,9 - 479: -10,4 - 624: -9,8 - 625: -6,8 - 626: -2,8 - 662: -40,-18 - 816: -23,-4 - 1223: -3,-51 - 1245: -23,-1 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - decals: - 239: 10,-34 - 247: 14,-43 - 432: 17,-2 - 441: 12,6 - 482: 0,3 - 618: -1,7 - 619: -4,7 - 620: -8,7 - 661: -37,-19 - 818: -22,-7 - 1225: -2,-53 - 1243: -18,-2 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - decals: - 64: -8,-79 - 237: 8,-34 - 245: 11,-43 - 431: 16,-2 - 440: 10,6 - 480: -10,3 - 621: -9,7 - 622: -6,7 - 623: -2,7 - 664: -40,-19 - 817: -23,-7 - 1226: -3,-53 - 1244: -23,-2 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndE - decals: - 955: -19,-27 - 2828: -54,-45 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndW - decals: - 954: -21,-27 - 2827: -57,-45 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNe - decals: - 185: -23,-32 - 368: 13,12 - 476: -15,2 - 1238: -25,-3 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNw - decals: - 366: 16,12 - 462: 5,2 - 512: -16,-34 - 1231: -16,-3 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSe - decals: - 184: -23,-30 - 367: 13,11 - 475: -15,5 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSw - decals: - 365: 16,11 - 457: 5,5 - 511: -16,-32 - 1230: -16,0 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 91: -5,-70 - 92: -5,-71 - 99: -5,-62 - 100: -5,-63 - 101: -5,-64 - 183: -23,-31 - 242: 10,-33 - 251: 14,-41 - 252: 14,-42 - 433: 17,-1 - 434: 17,0 - 445: 12,8 - 446: 12,7 - 458: 3,4 - 459: 3,3 - 471: -12,4 - 472: -12,3 - 473: -15,4 - 474: -15,3 - 635: -5,-59 - 636: -5,-60 - 820: -22,-5 - 821: -22,-6 - 862: -37,-8 - 863: -37,-9 - 864: -37,-6 - 865: -37,-7 - 988: -15,-54 - 989: -15,-53 - 990: -15,-52 - 991: -15,-51 - 1200: 7,-48 - 1201: 7,-49 - 1202: 6,-50 - 1203: 6,-51 - 1204: 6,-52 - 1221: -2,-52 - 1236: -25,-1 - 1237: -25,-2 - 1353: -5,-26 - 1354: -5,-27 - 1355: -22,-49 - 1426: -67,-11 - 1427: -67,-12 - 1428: -67,-13 - 1429: -67,-14 - 2819: -55,-42 - 2820: -55,-43 - 2821: -55,-47 - 2822: -55,-48 - 2841: -53,-44 - 2842: -53,-46 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - decals: - 172: -18,-30 - 173: -19,-30 - 174: -20,-30 - 175: -21,-30 - 244: 9,-32 - 249: 12,-40 - 250: 13,-40 - 328: 12,-8 - 329: 12,-7 - 338: 17,-7 - 339: 18,-7 - 340: 19,-7 - 369: 15,12 - 370: 14,12 - 444: 11,9 - 483: -1,4 - 484: -2,4 - 485: -3,4 - 486: -4,4 - 487: -5,4 - 488: -6,4 - 489: -7,4 - 490: -8,4 - 491: -9,4 - 562: -11,8 - 563: -10,8 - 564: -9,10 - 565: -8,10 - 566: -7,10 - 567: -6,10 - 568: -5,10 - 569: -4,10 - 570: -3,10 - 571: -2,10 - 572: -1,10 - 573: 0,8 - 574: 1,8 - 627: -5,8 - 667: -39,-18 - 668: -38,-18 - 937: -22,-26 - 938: -21,-26 - 939: -20,-26 - 940: -19,-26 - 941: -18,-26 - 952: -20,-27 - 1111: 8,-4 - 1112: 9,-4 - 1113: 10,-4 - 1246: -22,-1 - 1247: -21,-1 - 1248: -20,-1 - 1249: -19,-1 - 2756: -31,-15 - 2757: -30,-15 - 2758: -29,-15 - 2771: -12,-77 - 2772: -11,-77 - 2773: -10,-77 - 2831: -56,-45 - 2832: -55,-45 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - decals: - 65: -7,-79 - 66: -6,-79 - 67: -5,-79 - 68: -4,-79 - 69: -3,-79 - 71: -2,-79 - 169: -18,-33 - 170: -19,-33 - 171: -20,-33 - 241: 9,-34 - 253: 13,-43 - 254: 12,-43 - 327: 12,-8 - 330: 12,-9 - 335: 19,-9 - 336: 18,-9 - 337: 17,-9 - 364: 14,11 - 371: 15,11 - 443: 11,6 - 492: -9,3 - 493: -8,3 - 494: -7,3 - 495: -6,3 - 496: -5,3 - 497: -4,3 - 498: -3,3 - 499: -2,3 - 500: -1,3 - 549: -11,6 - 550: -10,6 - 551: -9,6 - 552: -8,6 - 553: -7,6 - 554: -6,6 - 555: -5,6 - 556: -4,6 - 557: -3,6 - 558: -2,6 - 559: -1,6 - 560: 0,6 - 561: 1,6 - 628: -5,7 - 665: -39,-19 - 666: -38,-19 - 932: -20,-28 - 933: -21,-28 - 934: -22,-28 - 935: -19,-28 - 936: -18,-28 - 953: -20,-27 - 1117: 8,-6 - 1118: 9,-6 - 1250: -22,-2 - 1251: -21,-2 - 1252: -20,-2 - 1253: -19,-2 - 2755: -29,-19 - 2763: -31,-19 - 2764: -30,-19 - 2829: -56,-45 - 2830: -55,-45 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 58: -8,-73 - 59: -8,-74 - 60: -8,-75 - 61: -8,-76 - 62: -8,-77 - 63: -8,-78 - 89: -8,-70 - 90: -8,-71 - 102: -8,-62 - 103: -8,-63 - 104: -8,-64 - 243: 8,-33 - 255: 11,-42 - 256: 11,-41 - 435: 16,-1 - 436: 16,0 - 447: 10,8 - 448: 10,7 - 455: 5,3 - 456: 5,4 - 460: 2,4 - 461: 2,3 - 477: -13,4 - 478: -13,3 - 510: -16,-33 - 633: -8,-59 - 634: -8,-60 - 742: -51,-44 - 743: -51,-45 - 744: -51,-46 - 822: -23,-5 - 823: -23,-6 - 858: -39,-6 - 859: -39,-7 - 860: -39,-8 - 861: -39,-9 - 992: -18,-51 - 993: -18,-52 - 994: -18,-53 - 995: -18,-54 - 1195: 2,-48 - 1196: 2,-49 - 1197: 2,-50 - 1198: 2,-51 - 1199: 2,-52 - 1222: -3,-52 - 1228: -16,-1 - 1229: -16,-2 - 1422: -71,-11 - 1423: -71,-12 - 1424: -71,-13 - 1425: -71,-14 - 2815: -55,-47 - 2816: -55,-48 - 2817: -55,-43 - 2818: -55,-42 - 2843: -53,-46 - 2844: -53,-44 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNe - decals: - 280: 13,-34 - 1146: -59,-12 - 1292: -51,-16 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNw - decals: - 279: 12,-34 - 1148: -63,-12 - 1281: -54,-16 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSe - decals: - 1147: -59,-14 - 1289: -51,-19 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSw - decals: - 274: 16,-39 - 1149: -63,-14 - 1284: -54,-19 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerNe - decals: - 281: 13,-35 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerNw - decals: - 277: 12,-36 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerSw - decals: - 275: 16,-38 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineE - decals: - 449: 4,6 - 450: 4,7 - 451: 4,8 - 965: -2,-55 - 966: -2,-56 - 967: -2,-57 - 968: -10,-54 - 969: -10,-55 - 970: -10,-51 - 971: -10,-52 - 972: -10,-53 - 1097: -17,-4 - 1098: -17,-6 - 1099: -17,-5 - 1100: -17,-7 - 1101: -17,-8 - 1102: -17,-9 - 1157: -59,-13 - 1290: -51,-18 - 1291: -51,-17 - - node: - color: '#9FED5896' - id: BrickTileSteelLineE - decals: - 452: 4,6 - 453: 4,7 - 454: 4,8 - 1103: -17,-4 - 1104: -17,-5 - 1105: -17,-6 - 1106: -17,-7 - 1107: -17,-8 - 1108: -17,-9 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - decals: - 276: 11,-36 - 282: 14,-35 - 283: 15,-35 - 284: 16,-35 - 285: 17,-35 - 286: 18,-35 - 287: 19,-35 - 347: 17,-4 - 348: 16,-4 - 349: 15,-4 - 350: 11,4 - 351: 12,4 - 352: 13,4 - 356: 14,9 - 357: 15,9 - 360: 15,16 - 361: 14,16 - 397: 14,1 - 881: -39,-2 - 882: -38,-2 - 883: -37,-2 - 884: -36,-2 - 885: -35,-2 - 886: -34,-2 - 887: -33,4 - 888: -32,4 - 889: -31,4 - 900: -31,-6 - 901: -30,-6 - 902: -29,-6 - 903: -28,-6 - 904: -27,-6 - 905: -26,-6 - 906: -25,-6 - 930: -30,-1 - 1150: -62,-12 - 1151: -61,-12 - 1152: -60,-12 - 1293: -52,-16 - 1294: -53,-16 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineS - decals: - 269: 11,-38 - 270: 12,-38 - 271: 13,-38 - 272: 14,-38 - 273: 15,-38 - 341: 15,-9 - 342: 14,-9 - 343: 17,-5 - 344: 16,-5 - 345: 13,-5 - 346: 12,-5 - 353: 11,-2 - 354: 14,3 - 355: 15,3 - 358: 14,14 - 359: 15,14 - 874: -39,-5 - 875: -38,-5 - 876: -37,-5 - 877: -36,-5 - 878: -35,-5 - 879: -34,-5 - 880: -33,-5 - 890: -32,-4 - 891: -31,-4 - 892: -30,-4 - 893: -31,-8 - 894: -30,-8 - 895: -29,-8 - 896: -28,-8 - 897: -27,-8 - 898: -26,-8 - 899: -25,-8 - 1153: -62,-14 - 1154: -61,-14 - 1155: -60,-14 - 1285: -53,-19 - 1286: -52,-19 - 1288: -51,-19 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineW - decals: - 135: 7,-19 - 136: 7,-20 - 137: 7,-21 - 138: 7,-22 - 139: 7,-23 - 140: 7,-24 - 141: 7,-25 - 142: 7,-26 - 143: 7,-27 - 278: 12,-35 - 958: -13,-51 - 959: -13,-52 - 960: -13,-53 - 961: -13,-54 - 962: -13,-55 - 963: -13,-56 - 964: -13,-57 - 1156: -63,-13 - 1282: -54,-17 - 1283: -54,-18 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerNe - decals: - 257: 14,-40 - 299: 13,-34 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe - decals: - 693: -23,-16 - 1172: -5,-26 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNe - decals: - 548: 0,4 - 1264: -18,-1 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNw - decals: - 694: -25,-16 - 1165: -8,-24 - 1182: -12,-25 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerNw - decals: - 260: 11,-40 - 298: 12,-34 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNw - decals: - 538: -10,4 - 1263: -23,-1 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerSe - decals: - 258: 14,-43 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerSe - decals: - 547: 0,3 - 1265: -18,-2 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSe - decals: - 698: -23,-17 - 1173: -5,-27 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSw - decals: - 697: -25,-17 - 1180: -12,-27 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerSw - decals: - 537: -10,3 - 1262: -23,-2 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerSw - decals: - 259: 11,-43 - 294: 16,-39 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteEndE - decals: - 1168: -5,-24 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerNe - decals: - 1171: -6,-26 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerNe - decals: - 188: -23,-32 - 377: 13,12 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerNe - decals: - 545: -15,2 - 1241: -25,-3 - - node: - color: '#A4610696' - id: BrickTileWhiteInnerNe - decals: - 300: 13,-35 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerNw - decals: - 1186: -8,-25 - - node: - color: '#A4610696' - id: BrickTileWhiteInnerNw - decals: - 295: 12,-36 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerNw - decals: - 376: 16,12 - 515: -16,-34 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerNw - decals: - 467: 5,2 - 1235: -16,-3 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSe - decals: - 546: -15,5 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerSe - decals: - 187: -23,-30 - 378: 13,11 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerSe - decals: - 1169: -6,-24 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSw - decals: - 468: 5,5 - 1234: -16,0 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerSw - decals: - 379: 16,11 - 514: -16,-32 - - node: - color: '#A4610696' - id: BrickTileWhiteInnerSw - decals: - 293: 16,-38 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineE - decals: - 803: -33,-19 - 804: -33,-18 - 805: -33,-17 - 806: -33,-16 - 807: -33,-15 - 1170: -6,-25 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineE - decals: - 469: 3,3 - 470: 3,4 - 541: -15,4 - 542: -15,3 - 543: -12,4 - 544: -12,3 - 1239: -25,-1 - 1240: -25,-2 - 1434: -67,-11 - 1435: -67,-12 - 1436: -67,-13 - 1437: -67,-14 - - node: - color: '#A4610696' - id: BrickTileWhiteLineE - decals: - 263: 14,-42 - 264: 14,-41 - 1210: 7,-48 - 1211: 7,-49 - 1212: 6,-50 - 1213: 6,-51 - 1214: 6,-52 - - node: - color: '#D4D4D428' - id: BrickTileWhiteLineE - decals: - 2854: -55,-43 - - node: - color: '#D4D4D426' - id: BrickTileWhiteLineE - decals: - 2845: -53,-46 - 2846: -53,-44 - - node: - color: '#D381C996' - id: BrickTileWhiteLineE - decals: - 980: -10,-51 - 981: -10,-52 - 982: -10,-53 - 983: -10,-54 - 984: -10,-55 - 985: -2,-55 - 986: -2,-56 - 987: -2,-57 - 1000: -15,-54 - 1001: -15,-53 - 1002: -15,-52 - 1003: -15,-51 - 2852: -55,-48 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineE - decals: - 866: -37,-6 - 867: -37,-7 - 868: -37,-8 - 869: -37,-9 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineE - decals: - 2849: -55,-47 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineE - decals: - 186: -23,-31 - 2848: -55,-42 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineN - decals: - 767: -18,-19 - 768: -19,-19 - 769: -20,-19 - 770: -21,-20 - 771: -22,-20 - 772: -23,-20 - 773: -24,-20 - 774: -25,-21 - 775: -26,-21 - 776: -29,-21 - 777: -30,-21 - 778: -31,-21 - 779: -32,-21 - 780: -33,-21 - 781: -34,-21 - 782: -35,-21 - 783: -36,-21 - 784: -37,-21 - 785: -38,-21 - 786: -39,-21 - 787: -40,-21 - 947: -22,-26 - 948: -21,-26 - 949: -20,-26 - 950: -19,-26 - 951: -18,-26 - 1878: -28,-21 - 1879: -27,-21 - 2760: -31,-15 - 2761: -30,-15 - 2762: -29,-15 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineN - decals: - 669: -27,-15 - 670: -26,-15 - 671: -25,-15 - 672: -24,-15 - 673: -23,-15 - 674: -22,-15 - 696: -24,-16 - 721: -40,-21 - 722: -39,-21 - 723: -38,-21 - 724: -37,-21 - 725: -36,-21 - 726: -35,-21 - 727: -34,-21 - 728: -33,-21 - 729: -32,-21 - 730: -31,-21 - 731: -30,-21 - 732: -29,-21 - 733: -26,-21 - 734: -25,-21 - 735: -24,-20 - 736: -23,-20 - 737: -22,-20 - 738: -21,-20 - 739: -20,-19 - 740: -19,-19 - 741: -18,-19 - 1166: -7,-24 - 1167: -6,-24 - 1183: -11,-25 - 1184: -10,-25 - 1185: -9,-25 - 1876: -28,-21 - 1877: -27,-21 - - node: - color: '#FF9F4196' - id: BrickTileWhiteLineN - decals: - 675: -27,-15 - 676: -26,-15 - 677: -25,-15 - 678: -24,-15 - 679: -23,-15 - 680: -22,-15 - - node: - color: '#A4610696' - id: BrickTileWhiteLineN - decals: - 267: 12,-40 - 268: 13,-40 - 296: 11,-36 - 301: 14,-35 - 302: 15,-35 - 303: 16,-35 - 304: 17,-35 - 305: 18,-35 - 306: 19,-35 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 176: -18,-30 - 177: -19,-30 - 178: -20,-30 - 179: -21,-30 - 333: 12,-8 - 334: 12,-7 - 374: 15,12 - 375: 14,12 - 380: 14,9 - 381: 15,9 - 382: 13,4 - 383: 12,4 - 384: 11,4 - 394: 17,-4 - 395: 16,-4 - 396: 15,-4 - 398: 14,1 - 399: 15,16 - 400: 14,16 - 408: 17,-7 - 409: 18,-7 - 410: 19,-7 - 1114: 8,-4 - 1115: 9,-4 - 1116: 10,-4 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineN - decals: - 914: -31,-6 - 915: -30,-6 - 916: -29,-6 - 917: -28,-6 - 918: -27,-6 - 919: -26,-6 - 920: -25,-6 - 921: -39,-2 - 922: -38,-2 - 923: -37,-2 - 924: -36,-2 - 925: -35,-2 - 926: -34,-2 - 927: -33,4 - 928: -32,4 - 929: -31,4 - 931: -30,-1 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineN - decals: - 528: -1,4 - 529: -2,4 - 530: -3,4 - 531: -4,4 - 532: -5,4 - 533: -6,4 - 534: -7,4 - 535: -8,4 - 536: -9,4 - 588: 1,8 - 589: 0,8 - 590: -1,10 - 591: -2,10 - 592: -3,10 - 593: -4,10 - 594: -5,10 - 595: -6,10 - 596: -7,10 - 597: -8,10 - 598: -9,10 - 599: -10,8 - 600: -11,8 - 1254: -22,-1 - 1255: -21,-1 - 1256: -20,-1 - 1257: -19,-1 - - node: - color: '#A4610696' - id: BrickTileWhiteLineS - decals: - 261: 12,-43 - 262: 13,-43 - 288: 11,-38 - 289: 12,-38 - 290: 13,-38 - 291: 14,-38 - 292: 15,-38 - - node: - color: '#FF9F4196' - id: BrickTileWhiteLineS - decals: - 681: -27,-19 - 682: -26,-19 - 683: -25,-18 - 684: -24,-18 - 685: -23,-18 - 686: -22,-18 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 907: -31,-8 - 908: -30,-8 - 909: -29,-8 - 910: -28,-8 - 911: -27,-8 - 912: -26,-8 - 913: -25,-8 - 1005: -39,-5 - 1006: -38,-5 - 1007: -37,-5 - 1008: -36,-5 - 1009: -35,-5 - 1010: -34,-5 - 1011: -33,-5 - 1012: -32,-4 - 1013: -31,-4 - 1014: -30,-4 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - decals: - 647: -27,-19 - 648: -26,-19 - 649: -25,-18 - 650: -24,-18 - 651: -23,-18 - 652: -22,-18 - 695: -24,-17 - 699: -18,-24 - 700: -19,-24 - 701: -20,-24 - 702: -21,-24 - 703: -22,-24 - 704: -23,-23 - 705: -24,-23 - 706: -25,-23 - 707: -26,-23 - 708: -27,-23 - 709: -28,-23 - 710: -29,-23 - 711: -30,-23 - 712: -31,-23 - 713: -32,-23 - 714: -33,-23 - 715: -34,-23 - 716: -35,-23 - 717: -36,-23 - 718: -37,-23 - 719: -39,-23 - 720: -40,-23 - 1174: -6,-27 - 1175: -7,-27 - 1176: -8,-27 - 1177: -9,-27 - 1178: -10,-27 - 1179: -11,-27 - 2729: -38,-23 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 745: -40,-23 - 746: -39,-23 - 747: -37,-23 - 748: -36,-23 - 749: -35,-23 - 750: -34,-23 - 751: -33,-23 - 752: -32,-23 - 753: -31,-23 - 754: -30,-23 - 755: -29,-23 - 756: -28,-23 - 757: -27,-23 - 758: -26,-23 - 759: -25,-23 - 760: -24,-23 - 761: -23,-23 - 762: -22,-24 - 763: -21,-24 - 764: -20,-24 - 765: -19,-24 - 766: -18,-24 - 942: -22,-28 - 943: -21,-28 - 944: -20,-28 - 945: -19,-28 - 946: -18,-28 - 2730: -38,-23 - 2759: -29,-19 - 2765: -31,-19 - 2766: -30,-19 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineS - decals: - 501: -9,3 - 502: -8,3 - 503: -7,3 - 504: -6,3 - 505: -5,3 - 506: -4,3 - 507: -3,3 - 508: -2,3 - 509: -1,3 - 575: -11,6 - 576: -10,6 - 577: -9,6 - 578: -8,6 - 579: -7,6 - 580: -6,6 - 581: -5,6 - 582: -4,6 - 583: -3,6 - 584: -2,6 - 585: -1,6 - 586: 0,6 - 587: 1,6 - 1258: -22,-2 - 1259: -21,-2 - 1260: -20,-2 - 1261: -19,-2 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineS - decals: - 180: -18,-33 - 181: -19,-33 - 182: -20,-33 - 331: 12,-9 - 332: 12,-8 - 362: 14,14 - 363: 15,14 - 372: 14,11 - 373: 15,11 - 385: 15,3 - 386: 14,3 - 387: 11,-2 - 388: 12,-5 - 389: 13,-5 - 390: 14,-9 - 391: 15,-9 - 392: 16,-5 - 393: 17,-5 - 405: 17,-9 - 406: 18,-9 - 407: 19,-9 - 1119: 8,-6 - 1120: 9,-6 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineW - decals: - 870: -39,-6 - 871: -39,-7 - 872: -39,-8 - 873: -39,-9 - 2851: -55,-43 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineW - decals: - 2850: -55,-48 - - node: - color: '#A4610696' - id: BrickTileWhiteLineW - decals: - 265: 11,-42 - 266: 11,-41 - 297: 12,-35 - 1205: 2,-48 - 1206: 2,-49 - 1207: 2,-50 - 1208: 2,-51 - 1209: 2,-52 - 2853: -55,-47 - - node: - color: '#D381C996' - id: BrickTileWhiteLineW - decals: - 973: -13,-51 - 974: -13,-52 - 975: -13,-53 - 976: -13,-54 - 977: -13,-55 - 978: -13,-56 - 979: -13,-57 - 996: -18,-54 - 997: -18,-53 - 998: -18,-52 - 999: -18,-51 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineW - decals: - 513: -16,-33 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineW - decals: - 830: -27,-29 - 831: -27,-30 - 832: -27,-31 - 833: -27,-32 - 834: -27,-33 - 835: -27,-34 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineW - decals: - 798: -35,-19 - 799: -35,-18 - 800: -35,-17 - 801: -35,-16 - 802: -35,-15 - 824: -27,-29 - 825: -27,-30 - 826: -27,-31 - 827: -27,-32 - 828: -27,-33 - 829: -27,-34 - 1181: -12,-26 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineW - decals: - 463: 5,4 - 464: 5,3 - 465: 2,3 - 466: 2,4 - 539: -13,4 - 540: -13,3 - 1232: -16,-2 - 1233: -16,-1 - 1356: -51,-46 - 1357: -51,-45 - 1358: -51,-44 - 1430: -71,-11 - 1431: -71,-12 - 1432: -71,-13 - 1433: -71,-14 - 2847: -55,-42 - - node: - color: '#9FED5896' - id: Busha1 - decals: - 1026: -18.094267,-6.2415576 - 1027: -18.909277,-5.3673854 - 1028: -17.815971,-5.029637 - 1029: -20.241123,-4.0362597 - 1030: -20.101976,-5.864074 - 1031: -20.002584,-8.32765 - 1032: -20.161612,-9.082618 - 1033: -18.511711,-9.181956 - 1034: -19.048426,-8.049505 - 1035: -17.73646,-8.069372 - 1036: -17.398527,-9.420366 - 1037: -17.000961,-6.321028 - 1038: -19.048426,-6.2614245 - 1039: -20.161612,-7.3740087 - - node: - color: '#9FED5896' - id: Bushb3 - decals: - 1019: -19.545383,-4.6124187 - 1020: -17.815971,-4.4932137 - 1021: -19.56526,-6.2018223 - 1022: -19.783924,-8.24818 - 1023: -17.95512,-8.943545 - 1024: -17.557552,-7.294538 - 1025: -19.088182,-7.11573 - - node: - color: '#9FED5896' - id: Bushc2 - decals: - 1403: 3.3756588,6.1882553 - 1404: 3.2762673,7.1390595 - - node: - color: '#9FED5896' - id: Bushc3 - decals: - 1405: 3.8158202,7.9337606 - 1406: 2.8219063,6.103108 - 1407: 2.8361046,8.274347 - 1408: 2.8219063,7.2951617 - 1409: 3.9436097,6.656562 - - node: - color: '#9FED5896' - id: Bushn1 - decals: - 1040: -18.611103,-5.943545 - 1041: -19.505627,-4.6124187 - 1042: -17.378649,-8.566062 - 1043: -19.426113,-8.6852665 - 1044: -18.352684,-7.1753325 - - node: - color: '#79150036' - id: CheckerNESW - decals: - 1295: -4,-20 - 1296: -4,-21 - 1297: -4,-22 - 1298: -4,-23 - 1299: -4,-24 - 1300: -4,-25 - 1301: -4,-26 - 1302: -4,-27 - 1303: -3,-27 - 1304: -2,-27 - 1305: -1,-27 - 1306: 0,-27 - 1307: 1,-27 - 1308: 2,-27 - 1309: 2,-26 - 1310: 2,-25 - 1311: 2,-24 - 1312: 2,-23 - 1313: 2,-22 - 1314: 2,-21 - 1315: -3,-20 - 1316: -2,-20 - 1317: 1,-21 - 1318: 0,-21 - 1319: -1,-21 - 1320: -2,-21 - 1321: -3,-21 - 1322: -3,-22 - 1323: -2,-22 - 1324: -1,-22 - 1325: 0,-22 - 1326: 1,-22 - 1327: 1,-23 - 1328: 0,-23 - 1329: -1,-23 - 1330: -2,-23 - 1331: -3,-23 - 1332: -3,-24 - 1333: -2,-24 - 1334: -1,-24 - 1335: 0,-24 - 1336: 1,-24 - 1337: 1,-25 - 1338: 0,-25 - 1339: -1,-25 - 1340: -2,-25 - 1341: -3,-25 - 1342: -3,-26 - 1343: -2,-26 - 1344: -1,-26 - 1345: 0,-26 - 1346: 1,-26 - - node: - color: '#9FED5896' - id: Damaged - decals: - 1140: -62,-13 - 1141: -60,-13 - 1142: -61,-13 - - node: - cleanable: True - color: '#A461067F' - id: Damaged - decals: - 1870: -57,-34 - 1871: -59,-35 - 1872: -58,-36 - 1873: -58,-32 - 1874: -48,-25 - 1875: -45,-15 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 1127: 17,-36 - 1128: 17,-37 - - node: - color: '#334E6DC8' - id: DeliveryGreyscale - decals: - 1161: -1,-10 - - node: - color: '#F9801DFF' - id: Dirt - decals: - 2781: -8,-35 - 2782: -7,-34 - 2783: -9,-35 - 2784: -8,-34 - 2785: -6,-34 - 2786: -5,-34 - 2787: -4,-34 - 2788: -4,-35 - 2789: -3,-35 - 2790: -2,-35 - - node: - color: '#F9801D98' - id: Dirt - decals: - 2791: -10,-34 - 2792: -7,-32 - 2793: -4,-32 - 2794: -2,-34 - 2795: -1,-32 - 2796: -7,-31 - 2797: -7,-33 - 2798: -10,-31 - 2799: -5,-32 - 2800: -1,-33 - 2801: -2,-33 - - node: - cleanable: True - color: '#A4610696' - id: Dirt - decals: - 1596: -53,-15 - 1597: -38,-13 - 2155: -47,-46 - 2156: -48,-45 - 2157: -43,-45 - 2158: -41,-46 - 2159: -37,-44 - 2160: -43,-41 - 2161: -43,-39 - 2162: -44,-38 - 2163: -44,-37 - 2164: -44,-35 - 2165: -42,-34 - 2166: -44,-33 - 2167: -43,-32 - 2168: -43,-31 - 2169: -44,-30 - 2170: -44,-34 - 2171: -44,-36 - 2172: -43,-39 - 2173: -44,-41 - 2174: -30,-56 - 2175: -29,-56 - 2176: -30,-57 - 2177: -29,-57 - 2178: -44,-41 - 2179: -43,-33 - 2180: -43,-30 - 2181: -55,-44 - 2182: -56,-47 - 2183: -47,-46 - 2184: -43,-44 - 2185: -32,-46 - 2186: -29,-44 - 2187: -26,-45 - 2188: -21,-44 - 2189: -11,-45 - 2190: -9,-45 - 2191: -6,-46 - 2192: -4,-45 - 2193: -2,-45 - 2194: 3,-45 - 2195: 4,-45 - 2196: 6,-44 - 2197: 3,-48 - 2198: 4,-50 - 2199: 5,-51 - 2200: 5,-51 - 2201: 6,-49 - 2202: 7,-49 - 2203: 6,-51 - 2204: 5,-52 - 2205: 5,-52 - 2206: 3,-49 - 2207: 10,-46 - 2208: 11,-47 - 2209: 10,-46 - 2210: 11,-46 - 2211: 13,-45 - 2212: 14,-45 - 2213: 14,-46 - 2214: 11,-46 - 2215: 12,-47 - 2216: 15,-47 - 2217: 18,-47 - 2218: 18,-43 - 2219: 17,-42 - 2220: 18,-41 - 2221: 19,-42 - 2222: 19,-44 - 2223: 18,-44 - 2224: 17,-44 - 2225: 17,-44 - 2226: 17,-42 - 2227: 17,-41 - 2228: 17,-41 - 2229: 16,-41 - 2230: 13,-41 - 2231: 12,-41 - 2232: 12,-41 - 2233: 12,-42 - 2234: 11,-41 - 2235: 12,-38 - 2236: 14,-36 - 2237: 15,-37 - 2238: 17,-38 - 2239: 18,-36 - 2240: 18,-35 - 2241: 19,-38 - 2242: 14,-38 - 2243: 8,-36 - 2244: 8,-38 - 2245: 8,-40 - 2246: 4,-36 - 2247: 5,-33 - 2248: 5,-32 - 2249: 5,-30 - 2250: 5,-27 - 2251: 5,-25 - 2252: 5,-23 - 2253: 5,-21 - 2254: 5,-19 - 2255: 6,-18 - 2256: -14,-42 - 2257: -15,-40 - 2258: -15,-36 - 2259: -16,-33 - 2260: -15,-31 - 2261: -15,-29 - 2262: -15,-28 - 2263: -15,-26 - 2264: -15,-23 - 2265: -14,-22 - 2266: -16,-20 - 2267: -15,-18 - 2268: -17,-16 - 2269: -19,-14 - 2270: -20,-12 - 2271: -19,-14 - 2272: -17,-15 - 2273: -15,-12 - 2274: -16,-11 - 2275: -16,-8 - 2276: -15,-7 - 2277: -15,-5 - 2278: -16,-3 - 2279: -16,-1 - 2280: -15,2 - 2281: -16,3 - 2282: -15,5 - 2283: -14,7 - 2284: -16,7 - 2285: -18,7 - 2286: -18,7 - 2287: -14,6 - 2288: -9,3 - 2289: -6,4 - 2290: -3,3 - 2291: -1,3 - 2292: 0,4 - 2293: 3,3 - 2294: 2,4 - 2295: 4,4 - 2296: 6,6 - 2297: 8,8 - 2298: 5,-1 - 2299: 6,-3 - 2300: 5,-5 - 2301: 6,-7 - 2302: 6,-9 - 2303: 5,-10 - 2304: 6,-12 - 2305: 7,-13 - 2306: 8,-12 - 2307: 8,-9 - 2308: 10,-12 - 2309: 9,-9 - 2310: 8,-8 - 2311: 14,-9 - 2312: 15,-8 - 2313: 14,-6 - 2314: 16,-4 - 2315: 14,-5 - 2316: 13,-4 - 2317: 12,-2 - 2318: 11,0 - 2319: 12,1 - 2320: 13,4 - 2321: 9,2 - 2322: 8,2 - 2323: 8,2 - 2324: 8,3 - 2325: 8,4 - 2326: 9,3 - 2327: 8,0 - 2328: 8,-1 - 2329: 8,-2 - 2330: 9,-2 - 2331: 14,5 - 2332: 15,6 - 2333: 15,7 - 2334: 15,9 - 2335: 14,11 - 2336: 14,11 - 2337: 15,12 - 2338: 16,12 - 2339: 14,12 - 2340: 13,11 - 2341: 15,15 - 2342: 14,15 - 2343: 14,16 - 2344: 16,19 - 2345: 16,20 - 2346: 12,19 - 2347: 11,19 - 2348: 10,20 - 2349: 18,20 - 2350: 11,18 - 2351: 10,18 - 2352: 8,-13 - 2353: 13,-12 - 2354: 15,-12 - 2355: 20,-11 - 2356: 22,-12 - 2357: 26,-12 - 2358: 28,-11 - 2359: 34,-12 - 2360: 35,-12 - 2361: 37,-13 - 2362: 42,-12 - 2363: 42,-10 - 2364: 43,-6 - 2365: 43,-4 - 2366: 43,7 - 2367: 45,3 - 2368: 46,2 - 2369: 47,2 - 2370: 31,4 - 2371: 30,2 - 2372: 31,-1 - 2373: 30,-4 - 2374: 30,-6 - 2375: 31,-8 - 2376: 30,-12 - 2377: 26,-13 - 2378: 20,-11 - 2379: 13,-12 - 2380: 11,-11 - 2381: 8,-11 - 2382: 7,-12 - 2383: 1,-13 - 2384: -2,-12 - 2385: -5,-11 - 2386: -8,-13 - 2387: -9,-11 - 2388: -10,-12 - 2389: -5,-10 - 2390: -3,-10 - 2391: -2,-10 - 2392: -1,-10 - 2393: -1,-10 - 2394: -2,-13 - 2395: -4,-13 - 2396: -5,-12 - 2397: -7,-12 - 2398: -25,-22 - 2399: -30,-22 - 2400: -39,-22 - 2401: -30,-16 - 2402: -30,-15 - 2403: -14,-33 - 2404: -11,-26 - 2405: -10,-26 - 2406: -7,-25 - 2407: -6,-24 - 2408: -7,-26 - 2409: -6,-26 - 2410: -7,-24 - 2411: -8,-26 - 2412: -10,-26 - 2413: -10,-27 - 2414: -11,-25 - 2415: -7,-26 - 2423: -9,-25 - 2424: -7,-26 - 2425: -6,-26 - 2426: -6,-25 - 2427: -11,-26 - 2428: -11,-22 - 2429: -11,-21 - 2430: -10,-20 - 2431: -13,-16 - 2432: -12,-16 - 2433: -10,-16 - 2434: -11,-18 - 2435: -11,-19 - 2436: -11,-21 - 2437: -11,-21 - 2438: -3,-26 - 2439: -3,-25 - 2440: -1,-22 - 2441: 1,-21 - 2442: 2,-22 - 2443: -1,-22 - 2444: 1,-25 - 2445: 2,-25 - 2446: -1,-26 - 2447: -1,-26 - 2448: -4,-22 - 2449: -2,-20 - 2450: -37,-3 - 2451: -38,-4 - 2452: -39,-5 - 2453: -34,-3 - 2454: -32,-4 - 2455: -37,0 - 2456: -39,1 - 2457: -39,2 - 2458: -36,4 - 2459: -35,3 - 2460: -32,2 - 2461: -32,3 - 2462: -31,-3 - 2463: -31,-4 - 2464: -30,-3 - 2465: -27,-1 - 2466: -25,-1 - 2467: -25,-3 - 2468: -26,-3 - 2469: -23,-2 - 2470: -20,-2 - 2471: -18,-2 - 2472: -8,4 - 2473: -6,4 - 2474: -2,4 - 2475: 0,3 - 2476: -1,7 - 2477: -3,8 - 2478: -6,8 - 2479: -9,7 - 2480: -10,6 - 2481: -7,7 - 2482: -5,7 - 2483: -2,7 - 2484: -1,6 - 2485: -1,8 - 2486: -8,9 - 2487: -9,6 - 2488: -5,7 - 2489: -4,8 - 2490: -4,7 - 2491: -6,7 - 2492: -6,8 - 2493: -5,8 - 2494: -5,8 - 2495: -6,7 - 2496: -4,7 - 2497: -4,8 - 2498: -3,7 - 2499: -7,6 - 2500: -8,6 - 2501: -4,3 - 2502: -2,3 - 2503: -1,4 - 2504: -6,3 - 2505: -7,4 - 2506: -7,3 - 2507: 5,3 - 2508: 5,2 - 2509: 6,2 - 2510: 6,1 - 2511: 6,1 - 2512: 6,-8 - 2513: -3,-13 - 2514: -6,-12 - 2515: -13,-12 - 2516: -17,-12 - 2517: -19,-12 - 2518: -22,-12 - 2519: -25,-12 - 2520: -27,-12 - 2521: -29,-13 - 2522: -37,-12 - 2523: -39,-12 - 2524: -41,-13 - 2525: -36,-3 - 2526: -35,-2 - 2527: -35,-4 - 2528: -36,-4 - 2529: -31,4 - 2530: -32,4 - 2531: -33,9 - 2532: -32,11 - 2533: -32,13 - 2534: -32,12 - 2535: -32,10 - 2536: -32,10 - 2537: -31,13 - 2538: -33,18 - 2539: -35,20 - 2540: -36,20 - 2541: -38,18 - 2542: -36,15 - 2543: -33,14 - 2544: -36,13 - 2545: -36,11 - 2546: -36,10 - 2547: -37,10 - 2548: -35,13 - 2549: -33,16 - 2550: -33,17 - 2551: -32,17 - 2552: -21,1 - 2553: -20,1 - 2554: -22,1 - 2555: 7,-21 - 2556: 7,-24 - 2557: 7,-25 - 2558: 7,-30 - 2559: 7,-30 - 2560: 2,-46 - 2561: -6,-46 - 2562: -6,-46 - 2563: -25,-47 - 2564: -25,-47 - 2565: -41,-46 - 2566: -41,-48 - 2567: -39,-48 - 2568: -38,-48 - 2569: -19,-17 - 2570: -20,-17 - 2571: -18,-17 - 2572: -17,-17 - 2573: -16,-17 - 2574: -20,-13 - 2575: -21,-13 - 2576: -15,-14 - 2577: -15,-15 - 2578: -16,-15 - 2579: -14,-21 - 2580: -14,-26 - 2581: 4,-21 - 2582: 4,-22 - 2583: 9,-13 - 2584: 10,-9 - 2585: 10,-7 - 2586: 14,-7 - 2587: 14,-8 - 2588: 14,14 - 2589: 15,16 - 2590: 14,18 - 2591: 15,18 - 2592: 16,18 - 2593: 5,4 - 2594: -15,4 - 2595: -15,3 - 2596: -1,-11 - 2597: -8,-11 - 2598: -7,-11 - 2599: 14,-12 - 2600: 16,-13 - 2601: 19,-14 - 2602: 19,-13 - 2603: 20,-13 - 2604: 30,-11 - 2605: 29,-11 - 2606: 30,-10 - 2607: 43,-7 - 2608: 43,3 - 2609: 43,2 - 2610: 30,5 - 2611: 30,4 - 2612: 10,-8 - 2613: 9,-10 - 2614: 4,-35 - 2615: 2,-35 - 2616: 1,-35 - 2617: 1,-36 - 2618: 2,-36 - 2619: -14,-35 - 2620: -16,-36 - 2621: -16,-36 - 2622: -16,-32 - 2623: -20,-19 - 2624: -19,-20 - 2625: -19,-19 - 2626: -15,-44 - 2627: -14,-44 - 2628: -16,-44 - 2629: -13,-47 - 2630: -12,-47 - 2631: -8,-47 - 2632: 6,-45 - 2633: 7,-41 - 2634: 9,-40 - 2635: 9,-41 - 2636: 13,-38 - 2637: 14,-38 - 2638: 18,-40 - 2639: 17,-40 - 2640: -25,-2 - 2641: -30,-2 - 2642: -30,-1 - 2643: -30,-2 - 2644: -30,-4 - 2645: -32,4 - 2646: -38,-5 - 2647: -39,-2 - 2648: -38,-3 - 2649: -31,-8 - 2650: -30,-8 - 2651: -30,-7 - 2652: -31,-6 - 2653: -30,-6 - 2654: -31,-7 - 2655: -29,-7 - 2656: -28,-7 - 2657: -27,-8 - 2658: -47,-13 - 2659: -51,-13 - 2660: -54,-13 - 2661: -54,-15 - 2662: -51,-15 - 2663: -57,-11 - 2664: -59,-11 - 2665: -65,-11 - 2666: -65,-13 - 2667: -70,-13 - 2668: -69,-12 - 2669: -68,-11 - 2670: -67,-11 - 2671: -67,-13 - 2672: -68,-13 - 2673: -69,-13 - 2674: -67,-12 - 2675: -57,-12 - 2676: -54,-20 - 2677: -42,-14 - 2678: -42,-10 - 2679: -33,-13 - 2680: -29,-10 - 2681: -28,-10 - 2682: -27,-10 - 2683: -29,-11 - 2684: -28,-11 - 2685: -27,-11 - 2686: -26,-11 - 2687: -25,-12 - 2688: -20,-44 - 2689: -18,-46 - 2690: -17,-46 - 2691: 16,-35 - 2692: 16,-35 - 2693: 4,-22 - 2694: 27,-11 - 2695: 11,2 - 2696: 11,9 - 2697: 5,-14 - 2698: 6,-14 - 2699: 5,-13 - 2700: 3,-13 - 2701: 0,-12 - 2702: -4,-12 - 2735: -30,-25 - 2736: -30,-28 - 2737: -31,-28 - 2738: -26,-25 - 2739: -26,-27 - 2740: -25,-25 - 2741: -25,-23 - 2742: -26,-23 - 2743: -27,-21 - 2744: -27,-23 - 2745: -29,-21 - 2746: -29,-23 - 2747: -30,-21 - 2748: -30,-23 - 2749: -20,-27 - 2750: -18,-33 - 2751: -21,-31 - 2752: -18,-30 - 2753: -18,-31 - - node: - cleanable: True - color: '#A461067F' - id: Dirt - decals: - 1857: -54,-34 - 1858: -52,-33 - 1859: -52,-32 - 1860: -53,-36 - 1861: -55,-36 - 1862: -53,-33 - 1863: -53,-32 - - node: - cleanable: True - color: '#A4610641' - id: Dirt - decals: - 1598: -25,-13 - 1599: -16,-12 - 1600: -16,-5 - 1601: -15,2 - 1602: -15,7 - 1603: -37,-4 - 1604: -38,-3 - 1605: -31,-3 - 1606: -29,-7 - 1607: -26,-7 - 1608: -19,-15 - 1609: -19,-19 - 1610: -20,-21 - 1611: -24,-23 - 1612: -31,-22 - 1613: -37,-23 - 1614: -30,-15 - 1615: -35,-18 - 1616: -34,-18 - 1617: -33,-16 - 1618: -34,-16 - 1619: -25,-28 - 1620: -25,-31 - 1621: -24,-33 - 1622: -23,-31 - 1623: -23,-33 - 1624: -20,-32 - 1625: -19,-32 - 1626: -15,-29 - 1627: -14,-27 - 1628: -15,-23 - 1629: -15,-21 - 1630: -15,-18 - 1631: -16,-16 - 1632: -11,-18 - 1633: -12,-16 - 1634: -10,-16 - 1635: -11,-22 - 1636: -11,-20 - 1637: -10,-21 - 1638: -10,-23 - 1639: -10,-25 - 1640: -11,-26 - 1641: -8,-25 - 1642: -6,-24 - 1643: -6,-26 - 1644: -3,-25 - 1645: -3,-26 - 1646: -4,-26 - 1647: -14,-44 - 1648: -20,-46 - 1649: -25,-44 - 1650: -28,-46 - 1651: -30,-46 - 1652: -33,-45 - 1653: -36,-46 - 1654: -39,-44 - 1655: -42,-46 - 1656: -46,-45 - 1657: -48,-45 - 1658: -23,-45 - 1659: -20,-46 - 1660: -13,-46 - 1661: -9,-45 - 1662: -7,-46 - 1663: -3,-44 - 1664: 4,-44 - 1665: -9,-49 - 1666: -12,-49 - 1667: -11,-53 - 1668: -12,-55 - 1669: -10,-57 - 1670: -5,-57 - 1671: -4,-55 - 1672: -3,-56 - 1673: -6,-60 - 1674: -6,-64 - 1675: -6,-71 - 1676: -3,-72 - 1677: -2,-75 - 1678: -2,-77 - 1679: 0,-77 - 1680: -2,-77 - 1681: -5,-77 - 1682: -6,-77 - 1683: -5,-78 - 1684: -5,-78 - 1685: -5,-78 - 1686: -1,-77 - 1687: 1,-77 - 1688: 1,-80 - 1689: 1,-82 - 1690: -3,-74 - 1691: -3,-55 - 1692: 4,-44 - 1693: 5,-40 - 1694: 19,-38 - 1695: 19,-36 - 1696: 16,-37 - 1697: 17,-37 - 1698: 17,-42 - 1699: 18,-41 - 1700: 18,-43 - 1701: 17,-44 - 1702: 17,-44 - 1703: 17,-41 - 1704: 20,-41 - 1705: 12,-38 - 1706: 6,-34 - 1707: 5,-29 - 1708: 6,-25 - 1709: 8,-23 - 1710: 8,-21 - 1711: 9,-20 - 1712: 5,-18 - 1713: 6,-13 - 1714: 10,-11 - 1715: 10,-9 - 1716: 15,-8 - 1717: 15,-3 - 1718: 12,-2 - 1719: 13,1 - 1720: 14,5 - 1721: 14,8 - 1722: 16,18 - 1723: 17,19 - 1724: 18,20 - 1725: 18,20 - 1726: 14,20 - 1727: 11,20 - 1728: 10,20 - 1729: 11,19 - 1730: 13,19 - 1731: 13,19 - 1732: 12,19 - 1733: 12,19 - 1734: 12,19 - 1735: 12,19 - 1736: 13,19 - 1737: 17,19 - 1738: 17,20 - 1739: 17,20 - 1740: 17,19 - 1741: 17,19 - 1742: 10,19 - 1743: 10,20 - 1744: 11,22 - 1745: 12,23 - 1746: 11,23 - 1747: 12,22 - 1748: 12,22 - 1749: 10,22 - 1750: 10,22 - 1751: 13,23 - 1752: 13,23 - 1753: 13,23 - 1754: 12,22 - 1755: 13,22 - 1756: 12,22 - 1757: 17,18 - 1758: 15,14 - 1759: 15,8 - 1760: 17,-4 - 1761: 17,-4 - 1762: 20,-12 - 1763: 29,-11 - 1764: 34,-12 - 1765: 38,-12 - 1766: 43,-11 - 1767: 43,-4 - 1768: 43,0 - 1769: 43,3 - 1770: 46,2 - 1771: 47,3 - 1772: 31,4 - 1773: 31,1 - 1774: 30,-3 - 1775: 31,-5 - 1776: 31,-8 - 1777: 37,-11 - 1778: 23,-22 - 1779: 22,-22 - 1780: 19,-22 - 1781: 17,-23 - 1782: 16,-23 - 1783: 16,-25 - 1784: 20,-24 - 1785: 19,-25 - 1786: 19,-29 - 1787: 19,-31 - 1788: 18,-33 - 1789: 15,-32 - 1790: 12,-32 - 1791: 12,-30 - 1792: 9,-30 - 1793: 10,-46 - 1794: 10,-45 - 1795: 9,-45 - 1796: 6,-51 - 1797: 5,-51 - 1798: 4,-49 - 1799: 3,-49 - 1800: 5,-48 - 1801: 6,-48 - 1802: 6,-49 - 1803: 5,-50 - 1804: 4,-49 - 1805: 3,-49 - 1806: 5,-48 - 1807: 6,-48 - 1808: 5,-50 - 1809: 4,-50 - 1810: 2,-54 - 1811: 3,-54 - 1812: 4,-54 - 1813: 5,-54 - 1814: 6,-54 - 1815: 5,-54 - 1816: 3,-54 - 1817: 3,-55 - 1818: 3,-55 - 1819: 2,-55 - 1820: 2,-55 - 1821: 3,-54 - 1822: -33,-62 - 1823: -33,-62 - 1824: -28,-62 - 1825: -33,-62 - 1826: -57,-34 - 1827: -58,-34 - 1828: -58,-32 - 1829: -57,-32 - 1830: -59,-32 - 1831: -60,-33 - 1832: -59,-34 - 1833: -59,-36 - 1834: -58,-36 - 1835: -57,-36 - 1836: -58,-33 - 1837: -57,-32 - 1838: -54,-33 - 1839: -54,-32 - 1840: -53,-32 - 1841: -52,-32 - 1842: -52,-33 - 1843: -53,-33 - 1844: -54,-33 - 1845: -55,-33 - 1846: -53,-33 - 1847: -53,-32 - 1848: -54,-32 - 1849: -53,-34 - 1850: -52,-34 - 1851: -55,-33 - 1852: -55,-34 - 1853: -55,-35 - 1854: -54,-36 - 1855: -53,-36 - 1856: -52,-36 - - node: - cleanable: True - color: '#A461067F' - id: DirtHeavy - decals: - 1866: -52,-34 - 1867: -53,-31 - 1868: -54,-36 - 1869: -54,-33 - - node: - cleanable: True - color: '#A4610696' - id: DirtHeavy - decals: - 1880: 31,5 - 1881: 31,2 - 1882: 31,-1 - 1883: 31,-3 - 1884: 30,-5 - 1885: 30,-7 - 1886: 31,-9 - 1887: 31,-12 - 1888: 34,-13 - 1889: 36,-12 - 1890: 39,-12 - 1891: 41,-13 - 1892: 43,-12 - 1893: 43,-10 - 1894: 43,-8 - 1895: 43,-3 - 1896: 45,3 - 1897: 45,2 - 1898: 46,2 - 1899: 47,3 - 1900: 45,-6 - 1901: 47,-6 - 1902: 47,-7 - 1903: 46,-7 - 1904: 35,-13 - 1905: 26,-12 - 1906: 23,-13 - 1907: 21,-12 - 1908: 18,-12 - 1909: 15,-11 - 1910: 13,-12 - 1911: 10,-12 - 1912: 8,-11 - 1913: 6,-12 - 1914: 4,-11 - 1915: -1,-12 - 1916: -4,-13 - 1917: -6,-12 - 1918: -8,-13 - 1919: -11,-12 - 1920: -13,-12 - 1921: -16,-12 - 1922: -19,-12 - 1923: -21,-12 - 1924: -24,-12 - 1925: -26,-12 - 1926: -28,-12 - 1927: -31,-12 - 1928: -35,-13 - 1929: -38,-11 - 1930: -40,-13 - 1931: -43,-12 - 1932: -45,-13 - 1933: -50,-12 - 1934: -52,-12 - 1935: -53,-12 - 1936: -55,-12 - 1937: -56,-12 - 1938: -58,-13 - 1939: -60,-12 - 1940: -63,-12 - 1941: -64,-12 - 1942: -64,-13 - 1943: -63,-14 - 1944: -62,-15 - 1945: -59,-14 - 1946: -55,-15 - 1947: -51,-15 - 1948: -51,-19 - 1949: -53,-17 - 1950: -50,-16 - 1951: -53,-16 - 1952: -54,-19 - 1953: -55,-20 - 1954: -52,-19 - 1955: -53,-16 - 1956: -47,-16 - 1957: -48,-17 - 1958: -46,-18 - 1959: -45,-17 - 1960: -33,-23 - 1961: -30,-22 - 1962: -25,-22 - 1963: -21,-23 - 1964: -22,-24 - 1965: -19,-24 - 1966: -20,-20 - 1967: -18,-19 - 1968: -22,-17 - 1969: -26,-17 - 1970: -27,-17 - 1971: -25,-15 - 1972: -19,-15 - 1973: -19,-13 - 1974: -18,-16 - 1975: -17,-16 - 1976: -15,-13 - 1977: -16,-16 - 1978: -15,-20 - 1979: -15,-22 - 1980: -14,-25 - 1981: -16,-27 - 1982: -15,-30 - 1983: -14,-32 - 1984: -16,-33 - 1985: -14,-36 - 1986: -14,-40 - 1987: -16,-42 - 1988: -14,-41 - 1989: -18,-46 - 1990: -20,-45 - 1991: -23,-46 - 1992: -25,-46 - 1993: -27,-45 - 1994: -30,-46 - 1995: -32,-45 - 1996: -34,-44 - 1997: -36,-46 - 1998: -39,-45 - 1999: -41,-45 - 2000: -43,-46 - 2001: -45,-45 - 2002: -47,-44 - 2003: -49,-45 - 2004: -51,-46 - 2005: -15,-46 - 2006: -8,-45 - 2007: -5,-46 - 2008: -1,-45 - 2009: 1,-46 - 2010: 4,-45 - 2011: 6,-44 - 2012: 6,-41 - 2013: 8,-39 - 2014: 9,-38 - 2015: 9,-37 - 2016: 8,-40 - 2017: 4,-36 - 2018: 6,-33 - 2019: 5,-30 - 2020: 5,-27 - 2021: 5,-25 - 2022: 4,-23 - 2023: 5,-20 - 2024: 5,-18 - 2025: 8,-20 - 2026: 9,-22 - 2027: 8,-23 - 2028: 8,-28 - 2029: 17,-38 - 2030: 18,-37 - 2031: 18,-36 - 2032: 17,-36 - 2033: 13,-35 - 2034: 14,-37 - 2035: 12,-38 - 2036: 13,-40 - 2037: 12,-41 - 2038: 12,-42 - 2039: 13,-42 - 2040: 11,-40 - 2041: 17,-43 - 2042: 17,-44 - 2043: 18,-44 - 2044: 18,-44 - 2045: 18,-42 - 2046: 19,-41 - 2047: 18,-39 - 2048: 15,-36 - 2049: 4,-26 - 2050: 5,-24 - 2051: 5,-21 - 2052: 5,-19 - 2053: 6,-17 - 2054: 5,-9 - 2055: 6,-7 - 2056: 6,-5 - 2057: 5,-3 - 2058: 6,0 - 2059: 5,2 - 2060: 6,6 - 2061: 8,7 - 2062: 5,7 - 2063: 5,-1 - 2064: 16,-5 - 2065: 14,-4 - 2066: 13,-4 - 2067: 13,-3 - 2068: 12,1 - 2069: 12,2 - 2070: 13,3 - 2071: 14,4 - 2072: 14,7 - 2073: 14,8 - 2074: 15,8 - 2075: 15,14 - 2076: 14,15 - 2077: 14,16 - 2078: 14,7 - 2079: 15,5 - 2080: 13,3 - 2081: 11,1 - 2082: 11,0 - 2083: 12,-1 - 2084: 13,-2 - 2085: 13,-4 - 2086: 14,-5 - 2087: 16,-5 - 2088: 15,-9 - 2089: 14,-9 - 2090: 26,-11 - 2091: 28,-12 - 2092: 6,-36 - 2093: 5,-46 - 2094: 3,-46 - 2095: 0,-45 - 2096: 4,-48 - 2097: 4,-49 - 2098: 5,-50 - 2099: 5,-51 - 2100: 6,-51 - 2101: 6,-49 - 2102: 3,-48 - 2103: -3,-46 - 2104: -6,-45 - 2105: -8,-45 - 2106: -10,-46 - 2107: -13,-44 - 2108: -12,-48 - 2109: -10,-48 - 2110: -8,-48 - 2111: -12,-49 - 2112: -11,-52 - 2113: -12,-52 - 2114: -12,-55 - 2115: -12,-57 - 2116: -9,-57 - 2117: -6,-56 - 2118: -4,-55 - 2119: -3,-55 - 2120: -3,-56 - 2121: -6,-56 - 2122: -7,-60 - 2123: -7,-60 - 2124: -7,-63 - 2125: -6,-64 - 2126: -6,-62 - 2127: -6,-59 - 2128: -7,-71 - 2129: -6,-70 - 2130: -7,-75 - 2131: -6,-74 - 2132: -7,-76 - 2133: -7,-77 - 2134: -6,-78 - 2135: -5,-78 - 2136: -4,-77 - 2137: -2,-77 - 2138: 0,-77 - 2139: 0,-77 - 2140: -2,-78 - 2141: -3,-75 - 2142: -2,-71 - 2143: -3,-72 - 2144: -3,-73 - 2145: 1,-81 - 2146: 0,-82 - 2147: 1,-82 - 2148: -3,-77 - 2149: -22,-60 - 2150: -26,-60 - 2151: -30,-60 - 2152: -34,-60 - 2153: -37,-60 - 2154: -40,-58 - 2416: -7,-26 - 2417: -9,-25 - 2418: -9,-25 - 2419: -7,-26 - 2420: -12,-26 - 2421: -7,-25 - 2422: -6,-27 - 2731: -30,-27 - 2732: -30,-28 - - node: - cleanable: True - color: '#A4610696' - id: DirtLight - decals: - 1438: -32,12 - 1439: -36,0 - 1440: -37,-4 - 1441: -31,-3 - 1442: -32,0 - 1443: -27,-3 - 1444: -19,-2 - 1445: -31,-12 - 1446: -37,-13 - 1447: -46,-12 - 1448: -51,-13 - 1449: -58,-12 - 1450: -64,-14 - 1451: -60,-17 - 1452: -58,-14 - 1453: -52,-15 - 1454: -53,-19 - 1455: -51,-19 - 1456: -47,-16 - 1457: -38,-12 - 1458: -34,-13 - 1459: -34,-17 - 1460: -30,-16 - 1461: -29,-23 - 1462: -35,-23 - 1463: -39,-22 - 1464: -23,-23 - 1465: -19,-20 - 1466: -18,-20 - 1467: -24,-17 - 1468: -26,-16 - 1469: -23,-16 - 1470: -22,-17 - 1471: -24,-31 - 1472: -24,-33 - 1473: -26,-32 - 1474: -23,-34 - 1475: -20,-32 - 1476: -18,-32 - 1477: -16,-29 - 1478: -14,-24 - 1479: -15,-18 - 1480: -17,-14 - 1481: -15,-13 - 1482: -15,-8 - 1483: -15,-4 - 1484: -16,0 - 1485: -16,4 - 1486: -15,7 - 1487: -18,6 - 1488: -9,3 - 1489: -3,3 - 1490: 2,3 - 1491: -3,7 - 1492: -7,6 - 1493: -10,6 - 1494: 8,8 - 1495: 6,1 - 1496: 5,-4 - 1497: 6,-10 - 1498: 9,-11 - 1499: 15,-12 - 1500: 21,-13 - 1501: 15,-8 - 1502: 15,-4 - 1503: 12,-3 - 1504: 13,3 - 1505: 15,6 - 1506: 15,9 - 1507: 15,15 - 1508: 16,19 - 1509: 18,20 - 1510: 10,19 - 1511: 23,-12 - 1512: 26,-13 - 1513: 36,-11 - 1514: 40,-12 - 1515: 42,-12 - 1516: 43,-4 - 1517: 43,4 - 1518: 46,3 - 1519: 47,3 - 1520: 46,-7 - 1521: 47,-6 - 1522: 31,4 - 1523: 30,0 - 1524: 31,-4 - 1525: 30,-7 - 1526: 19,-17 - 1527: 19,-23 - 1528: 18,-22 - 1529: 15,-24 - 1530: 19,-25 - 1531: 8,-27 - 1532: 9,-20 - 1533: 6,-21 - 1534: 5,-16 - 1535: 1,-22 - 1536: -1,-23 - 1537: -3,-26 - 1538: -4,-25 - 1539: 0,-25 - 1540: 1,-25 - 1541: 6,-25 - 1542: 3,-29 - 1543: 5,-34 - 1544: 6,-36 - 1545: 4,-39 - 1546: 6,-40 - 1547: 4,-42 - 1548: 1,-38 - 1549: 1,-33 - 1550: 2,-34 - 1551: 8,-37 - 1552: 8,-39 - 1553: 12,-36 - 1554: 15,-36 - 1555: 16,-35 - 1556: 17,-38 - 1557: 18,-36 - 1558: 11,-40 - 1559: 14,-41 - 1560: 12,-42 - 1561: 18,-43 - 1562: 17,-41 - 1563: 18,-42 - 1564: 17,-44 - 1565: 18,-47 - 1566: 14,-48 - 1567: 10,-48 - 1568: 9,-46 - 1569: 10,-45 - 1570: 5,-51 - 1571: 2,-50 - 1572: 3,-49 - 1573: 6,-48 - 1574: -3,-45 - 1575: -8,-46 - 1576: -12,-45 - 1577: -17,-46 - 1578: -21,-45 - 1579: -25,-46 - 1580: -30,-45 - 1581: -34,-46 - 1582: -40,-45 - 1583: -44,-46 - 1584: -48,-45 - 1585: -55,-46 - 1586: -43,-41 - 1587: -44,-38 - 1588: -44,-34 - 1589: -43,-31 - 1590: -40,-36 - 1591: -48,-25 - 1592: -47,-25 - 1593: -52,-19 - 1594: -52,-16 - 1595: -47,-18 - 2703: -5,-11 - 2704: -1,-11 - 2705: -7,-14 - 2706: -13,-13 - 2707: -15,-14 - 2708: -33,-44 - 2709: -34,-44 - 2710: -33,-46 - 2711: -44,-44 - 2712: -43,-35 - 2713: -44,-32 - 2714: -44,-30 - 2733: -30,-26 - 2734: -30,-25 - - node: - cleanable: True - color: '#A461067F' - id: DirtMedium - decals: - 1864: -54,-33 - 1865: -53,-34 - - node: - cleanable: True - color: '#A4610696' - id: DirtMedium - decals: - 2715: -44,-30 - 2716: -50,-44 - 2717: -8,-49 - 2718: -8,-55 - 2719: -6,-62 - 2720: 0,-80 - 2721: 1,-82 - 2722: -26,-44 - 2723: -4,-46 - 2724: -1,-46 - 2725: -1,-47 - 2726: -12,-13 - 2727: -7,-13 - 2728: 7,7 - - node: - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 1144: -61,-13 - - node: - color: '#9FED5896' - id: Flowerspv1 - decals: - 1049: -19.823679,-8.605797 - 1050: -19.903193,-7.095862 - 1051: -17.35877,-5.8044715 - 1052: -17.73646,-8.6654 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 1145: -60,-13 - - node: - color: '#9FED5896' - id: Flowerspv3 - decals: - 1045: -19.8038,-4.989902 - 1046: -17.776215,-4.8110943 - 1047: -18.710495,-6.2415576 - 1048: -17.93524,-7.4733458 - - node: - color: '#FFFFFFFF' - id: Flowerspv3 - decals: - 1143: -62,-13 - - node: - color: '#9FED5896' - id: Flowersy1 - decals: - 1053: -18.750252,-7.572683 - 1054: -19.764044,-5.6455307 - 1055: -17.398527,-7.1355968 - 1056: -19.764044,-7.3541408 - 1057: -18.31293,-8.864074 - 1058: -17.537676,-5.16871 - - node: - color: '#9FED5896' - id: Grassa2 - decals: - 1137: -62,-13 - 1138: -60,-13 - 1139: -61,-13 - - node: - color: '#FFFFFFFF' - id: Grassb1 - decals: - 401: 18,19 - - node: - color: '#FFFFFFFF' - id: Grassb2 - decals: - 402: 18,18 - - node: - color: '#FFFFFFFF' - id: Grassb3 - decals: - 403: 19,18 - - node: - color: '#FFFFFFFF' - id: Grassb5 - decals: - 404: 19,19 - - node: - color: '#9FED5896' - id: Grasse2 - decals: - 1088: -17.527288,-4.3816347 - 1089: -17.567047,-3.9445488 - 1090: -17.129723,-3.924681 - 1091: -17.427898,-5.3154097 - 1092: -18.819378,-4.083622 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 53: -7,-79 - 54: -6,-79 - 55: -5,-79 - 56: -4,-79 - 57: -3,-79 - 70: -2,-79 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale270 - decals: - 46: -8,-73 - 47: -8,-74 - 48: -8,-75 - 49: -8,-76 - 50: -8,-77 - 51: -8,-78 - 87: -8,-70 - 88: -8,-71 - 93: -8,-62 - 94: -8,-63 - 95: -8,-64 - 629: -8,-60 - 630: -8,-59 - - node: - color: '#D4D4D40C' - id: HalfTileOverlayGreyscale270 - decals: - 2839: -53,-44 - 2840: -53,-46 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 793: -35,-19 - 794: -35,-18 - 795: -35,-17 - 796: -35,-16 - 797: -35,-15 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 - decals: - 788: -33,-19 - 789: -33,-18 - 790: -33,-17 - 791: -33,-16 - 792: -33,-15 - - node: - color: '#D4D4D419' - id: HalfTileOverlayGreyscale90 - decals: - 2837: -53,-44 - 2838: -53,-46 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 85: -5,-70 - 86: -5,-71 - 96: -5,-62 - 97: -5,-63 - 98: -5,-64 - 631: -5,-59 - 632: -5,-60 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 1121: 18,-35 - 1122: 18,-39 - - node: - angle: 3.141592653589793 rad - color: '#334E6DC8' - id: LoadingAreaGreyscale - decals: - 1163: -5,-11 - - node: - color: '#334E6DC8' - id: LoadingAreaGreyscale - decals: - 1162: -1,-11 - - node: - color: '#EFB34196' - id: MiniTileCheckerAOverlay - decals: - 808: -23,-4 - 809: -22,-4 - 810: -23,-5 - 811: -22,-5 - 812: -23,-6 - 813: -22,-6 - 814: -23,-7 - 815: -22,-7 - - node: - color: '#52B4E9CB' - id: MiniTileCheckerAOverlay - decals: - 1266: -54,-16 - 1267: -53,-16 - 1268: -52,-16 - 1269: -51,-16 - 1270: -51,-17 - 1271: -52,-17 - 1272: -53,-17 - 1273: -54,-17 - 1274: -54,-18 - 1275: -53,-18 - 1276: -52,-18 - 1277: -51,-18 - 1278: -52,-19 - 1279: -53,-19 - 1280: -54,-19 - 1287: -51,-19 - - node: - color: '#334E6DC8' - id: MiniTileCheckerAOverlay - decals: - 2823: -57,-45 - 2824: -56,-45 - 2825: -55,-45 - 2826: -54,-45 - - node: - color: '#DE3A3A96' - id: MiniTileCheckerAOverlay - decals: - 411: 10,9 - 412: 11,9 - 413: 12,9 - 414: 10,8 - 415: 11,8 - 416: 12,8 - 417: 10,7 - 418: 11,7 - 419: 12,7 - 420: 10,6 - 421: 11,6 - 422: 12,6 - 423: 16,1 - 424: 17,1 - 425: 16,0 - 426: 17,0 - 427: 16,-1 - 428: 17,-1 - 429: 16,-2 - 430: 17,-2 - - node: - color: '#D381C996' - id: MiniTileCheckerAOverlay - decals: - 1215: -3,-51 - 1216: -2,-51 - 1217: -3,-52 - 1218: -2,-52 - 1219: -3,-53 - 1220: -2,-53 - - node: - color: '#52B4E996' - id: MiniTileCheckerAOverlay - decals: - 653: -40,-18 - 654: -40,-19 - 655: -39,-18 - 656: -39,-19 - 657: -38,-18 - 658: -38,-19 - 659: -37,-18 - 660: -37,-19 - - node: - color: '#A4610696' - id: MiniTileCheckerBOverlay - decals: - 228: 8,-32 - 229: 9,-32 - 230: 10,-32 - 231: 8,-33 - 232: 9,-33 - 233: 10,-33 - 234: 8,-34 - 235: 9,-34 - 236: 10,-34 - - node: - color: '#FF9F4196' - id: OffsetCheckerBOverlay - decals: - 687: -25,-16 - 688: -25,-17 - 689: -24,-17 - 690: -23,-17 - 691: -23,-16 - 692: -24,-16 - - node: - color: '#334E6DC8' - id: OffsetCheckerBOverlay - decals: - 601: -9,8 - 602: -9,7 - 603: -8,7 - 604: -8,8 - 605: -6,8 - 606: -6,7 - 607: -5,8 - 608: -4,8 - 609: -4,7 - 610: -5,7 - 611: -2,8 - 612: -1,8 - 613: -2,7 - 614: -1,7 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 836: -39,-11 - 837: -38,-11 - 838: -37,-11 - 839: -36,-11 - 840: -35,-11 - 841: -34,-11 - 842: -33,-11 - 843: -32,-11 - 844: -31,-11 - 845: -30,-11 - 846: -29,-11 - 847: -28,-11 - 848: -27,-11 - 849: -26,-11 - 850: -25,-11 - 851: -24,-11 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale - decals: - 156: -13,-49 - 157: -13,-48 - 158: -13,-47 - 165: -9,-48 - 166: -10,-48 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 316: 8,-11 - 323: 10,-7 - 324: 9,-7 - 325: 8,-7 - 326: 7,-7 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 516: -20,-14 - 517: -20,-15 - 518: -20,-16 - 519: -20,-17 - 525: -16,-15 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 311: 8,-40 - 312: 8,-39 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale180 - decals: - 150: -8,-49 - 151: -9,-49 - 152: -10,-49 - 153: -11,-49 - 154: -12,-49 - 155: -13,-49 - 159: -8,-48 - 160: -8,-47 - 161: -12,-46 - 162: -11,-46 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 144: 6,-46 - 145: 5,-46 - 146: 4,-46 - 147: 3,-46 - 148: 2,-46 - 149: 1,-46 - 309: 6,-38 - 310: 6,-37 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 318: 6,-9 - 319: 10,-9 - 320: 10,-8 - 321: 10,-7 - 322: 10,-10 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 520: -20,-17 - 521: -19,-17 - 522: -18,-17 - 523: -17,-17 - 524: -18,-13 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 202: -22,-34 - 203: -23,-34 - 204: -24,-34 - 205: -25,-34 - 206: -25,-33 - 207: -25,-32 - 208: -25,-31 - 209: -25,-30 - 210: -25,-29 - 211: -25,-28 - 212: -26,-28 - 213: -27,-28 - 214: -27,-27 - 215: -27,-26 - 216: -27,-25 - 526: -16,-13 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 163: -10,-46 - 164: -9,-46 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 219: 7,-41 - 220: 8,-41 - 221: 9,-41 - 313: 8,-38 - 314: 8,-37 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 315: 8,-9 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 217: 8,-36 - 218: 7,-36 - 222: 9,-40 - 223: 9,-41 - 224: 9,-39 - 225: 9,-38 - 226: 9,-37 - 227: 9,-36 - 307: 6,-39 - 308: 6,-40 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 189: -24,-25 - 190: -25,-25 - 191: -26,-25 - 192: -27,-25 - 193: -24,-26 - 194: -24,-27 - 195: -24,-28 - 196: -24,-29 - 197: -24,-30 - 198: -23,-30 - 199: -23,-33 - 200: -22,-33 - 201: -22,-34 - 527: -18,-15 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - decals: - 317: 6,-11 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 167: -11,-48 - 168: -12,-48 - - node: - color: '#9FED5866' - id: Rock05 - decals: - 1416: 3.0206888,6.2592106 - 1417: 3.9010134,6.64237 - 1418: 3.1768754,7.2951617 - 1419: 2.6941173,8.189201 - 1420: 3.801622,8.04729 - 1421: 2.9212978,7.2667794 - - node: - color: '#9FED5896' - id: Rock05 - decals: - 1069: -19.386356,-8.486591 - 1070: -17.756336,-8.32765 - 1071: -17.875607,-5.3872523 - 1072: -19.744167,-4.4932137 - 1073: -19.823679,-6.2018223 - 1074: -19.505627,-7.453478 - 1075: -18.591225,-7.4932137 - 1076: -17.776215,-7.572683 - 1077: -20.082096,-8.844207 - 1078: -17.815971,-5.943545 - 1079: -19.863436,-5.903809 - 1080: -17.080473,-7.791227 - 1081: -17.080473,-8.963412 - 1082: -19.028547,-9.122354 - 1083: -20.241123,-6.5594387 - 1084: -20.121855,-3.9766572 - 1085: -18.929155,-3.8773198 - 1086: -17.02084,-5.1885777 - 1087: -18.8894,-5.1289754 - - node: - color: '#FFFFFFFF' - id: Rust - decals: - 2802: -9,-35 - 2803: -8,-35 - 2804: -8,-34 - 2805: -7,-34 - 2806: -6,-34 - 2807: -5,-34 - 2808: -4,-34 - 2809: -4,-35 - 2810: -3,-35 - 2811: -2,-35 - - node: - color: '#52B4E9FF' - id: SpaceStationSign1 - decals: - 1396: 13,-12 - - node: - color: '#52B4E9FF' - id: SpaceStationSign2 - decals: - 1397: 14,-12 - - node: - color: '#52B4E9FF' - id: SpaceStationSign3 - decals: - 1398: 15,-12 - - node: - color: '#52B4E9FF' - id: SpaceStationSign4 - decals: - 1399: 16,-12 - - node: - color: '#52B4E9FF' - id: SpaceStationSign5 - decals: - 1400: 17,-12 - - node: - color: '#52B4E9FF' - id: SpaceStationSign6 - decals: - 1401: 18,-12 - - node: - color: '#52B4E9FF' - id: SpaceStationSign7 - decals: - 1402: 19,-12 - - node: - color: '#EFB34196' - id: StandClear - decals: - 44: 18,-40 - 45: 17,-40 - - node: - color: '#DE3A3A96' - id: StandClearGreyscale - decals: - 0: -14,4 - 1: -14,3 - 2: -11,4 - 3: -11,3 - 4: 1,4 - 5: 1,3 - 6: 4,4 - 7: 4,3 - 8: -6,5 - 9: -5,5 - 10: -4,5 - 11: 11,-7 - 12: 11,-9 - 13: 13,-7 - 14: 13,-9 - 15: 15,10 - 16: 14,10 - 17: 14,13 - 18: 15,13 - 19: 15,17 - 20: 14,17 - - node: - color: '#D381C996' - id: StandClearGreyscale - decals: - 42: -8,-54 - 43: -8,-50 - 81: -7,-69 - 82: -6,-69 - 83: -7,-72 - 84: -6,-72 - 125: 0,-79 - 126: 1,-79 - 127: -1,-81 - 128: -1,-82 - 129: -1,-73 - 130: -1,-71 - 1109: -7,-83 - 1110: -3,-83 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 52: -8,-79 - - node: - color: '#DE3A3A96' - id: WarnBox - decals: - 1359: -33,7 - - node: - color: '#52B4E996' - id: WarnBoxGreyscale - decals: - 1015: -31,-10 - 1016: -30,-10 - - node: - color: '#DE3A3A96' - id: WarnBoxGreyscale - decals: - 1017: -26,-10 - 1018: -25,-10 - - node: - color: '#FFFFFFFF' - id: WarnCornerNE - decals: - 75: -6,-73 - 2780: -10,-35 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 1187: -7,-51 - 2778: -1,-35 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 2779: -10,-36 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 1188: -7,-53 - 2777: -1,-36 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 105: -6,-77 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 108: -3,-77 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 857: -34,-8 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 856: -34,-8 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 72: -6,-74 - 73: -6,-75 - 74: -6,-76 - 119: -2,-71 - 120: -2,-73 - 123: 1,-73 - 124: 1,-71 - 855: -34,-9 - 1392: -13,4 - 1393: -13,3 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 77: -7,-71 - 78: -6,-71 - 113: 0,-78 - 114: 1,-78 - 637: -7,-57 - 638: -6,-57 - 639: -7,-60 - 640: -6,-60 - 641: -7,-64 - 642: -6,-64 - 852: -35,-8 - 853: -33,-8 - 1004: -16,-50 - 1367: 17,5 - 1368: 18,5 - 1369: 19,5 - 2835: -58,-46 - 2836: -57,-46 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 109: -3,-76 - 110: -3,-75 - 111: -3,-74 - 112: -3,-73 - 117: 0,-81 - 118: 0,-82 - 121: 0,-73 - 122: 0,-71 - 854: -34,-9 - 1189: -7,-52 - 1394: 3,4 - 1395: 3,3 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 76: -7,-73 - 79: -7,-70 - 80: -6,-70 - 106: -5,-77 - 107: -4,-77 - 115: 0,-80 - 116: 1,-80 - 643: -7,-62 - 644: -6,-62 - 645: -7,-59 - 646: -6,-59 - 956: -8,-55 - 957: -5,-55 - 1364: 17,7 - 1365: 18,7 - 1366: 19,7 - 2774: -12,-75 - 2775: -11,-75 - 2776: -10,-75 - 2833: -57,-44 - 2834: -58,-44 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - decals: - 40: -2,-1 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSw - decals: - 41: -2,-2 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 38: -4,-4 - 1351: -2,-21 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - decals: - 39: -4,1 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 28: -4,0 - 29: -4,-1 - 30: -4,-2 - 31: -4,-3 - 131: 4,-15 - 132: 4,-16 - 133: 4,-17 - 134: 4,-18 - 1352: -2,-20 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 32: -1,-1 - 33: 0,-1 - 34: -2,-4 - 35: -3,-4 - 36: -1,-4 - 37: 0,-4 - 1347: -1,-21 - 1348: 0,-21 - 1349: 1,-21 - 1350: 2,-21 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 21: -3,1 - 22: -2,1 - 23: -1,1 - 24: 0,1 - 25: 1,1 - 26: -1,-2 - 27: 0,-2 - 1193: -35,-47 - 1194: -33,-47 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 1190: -31,-53 - 1191: -31,-52 - 1192: -31,-51 - - node: - color: '#9FED5896' - id: grasssnow04 - decals: - 1412: 3.077484,6.3869305 - - node: - color: '#9FED5896' - id: grasssnow07 - decals: - 1059: -19.505627,-6.4402337 - 1060: -17.796093,-5.8442063 - 1061: -19.227331,-4.393875 - 1062: -18.949036,-8.109108 - 1063: -17.577433,-8.864074 - 1064: -19.704409,-8.943545 - 1065: -17.537676,-6.360763 - 1066: -17.756336,-7.989902 - 1067: -19.028547,-5.16871 - 1068: -19.167696,-6.9567895 - 1093: -17.785707,-4.560443 - 1094: -19.13743,-8.514086 - 1095: -17.547167,-9.030642 - 1096: -17.646559,-5.9313035 - 1410: 2.9070985,8.075672 - 1411: 3.4182546,7.025531 - - node: - color: '#9FED5896' - id: grasssnow08 - decals: - 1413: 3.6454349,6.571415 - 1414: 3.7732244,7.9479523 - - node: - color: '#9FED5896' - id: grasssnowb1 - decals: - 1415: 3.489249,6.2592106 - type: DecalGrid - - version: 2 - data: - tiles: - -1,-1: - 0: 65535 - 0,-2: - 0: 65533 - 1: 2 - 0,-1: - 0: 65535 - -4,-4: - 0: 65535 - -4,-3: - 0: 65535 - -4,-2: - 0: 65535 - -4,-1: - 0: 32767 - 1: 32768 - -3,-4: - 0: 65535 - -3,-3: - 0: 65535 - -3,-2: - 0: 65521 - 1: 14 - -3,-1: - 0: 32767 - 1: 32768 - -2,-4: - 0: 65535 - -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - 0,-4: - 0: 65535 - 0,-3: - 0: 63999 - 1: 1536 - 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: 62975 - 1: 2560 - 3,-4: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - -4,0: - 0: 65527 - 1: 8 - -4,1: - 0: 65535 - -4,2: - 0: 65535 - -4,3: - 0: 65535 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - -3,2: - 0: 65535 - -3,3: - 0: 32767 - -2,0: - 0: 65535 - -2,1: - 0: 65279 - 1: 256 - -2,2: - 0: 65535 - -2,3: - 0: 4095 - -1,0: - 0: 65535 - -1,1: - 0: 64511 - 1: 1024 - -1,2: - 0: 65535 - -1,3: - 0: 255 - 0,0: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 255 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - 1,3: - 0: 2255 - 2,0: - 0: 65535 - 2,1: - 0: 65525 - 1: 10 - 2,2: - 0: 65471 - 1: 64 - 2,3: - 0: 2295 - 1: 8 - 3,0: - 0: 65535 - 3,1: - 0: 65535 - 3,2: - 0: 65535 - 3,3: - 0: 65533 - 1: 2 - 4,0: - 0: 65503 - 1: 32 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 1: 13 - 0: 14322 - 5,0: - 0: 32767 - 1: 32768 - 5,1: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 3327 - 6,0: - 0: 65535 - 6,1: - 0: 61437 - 1: 4098 - 6,2: - 0: 65487 - 1: 48 - 6,3: - 0: 319 - 7,0: - 1: 1 - 0: 65534 - 7,1: - 0: 65535 - 7,2: - 0: 65535 - 7,3: - 0: 3 - 4,-4: - 0: 65535 - 4,-3: - 0: 8191 - 1: 57344 - 4,-2: - 0: 32767 - 1: 32768 - 4,-1: - 0: 65527 - 1: 8 - 5,-4: - 1: 1 - 0: 65534 - 5,-3: - 0: 62463 - 1: 3072 - 5,-2: - 0: 65521 - 1: 14 - 5,-1: - 0: 65535 - 6,-4: - 0: 65535 - 6,-3: - 0: 65535 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 65296 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - -8,0: - 0: 65535 - -8,1: - 0: 57343 - 1: 8192 - -8,2: - 0: 65535 - -8,3: - 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -7,2: - 0: 65535 - -7,3: - 0: 65535 - -6,0: - 0: 65503 - 1: 32 - -6,1: - 0: 16383 - 1: 49152 - -6,2: - 0: 65535 - -6,3: - 0: 65535 - -5,0: - 0: 65503 - 1: 32 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -8,-4: - 0: 65535 - -8,-3: - 0: 65535 - -8,-2: - 0: 65535 - -8,-1: - 0: 65535 - -7,-4: - 0: 65535 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-4: - 0: 65535 - -6,-3: - 0: 65535 - -6,-2: - 0: 65535 - -6,-1: - 0: 65531 - 1: 4 - -5,-4: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -8,-8: - 0: 63487 - 1: 2048 - -8,-7: - 0: 48059 - 1: 17476 - -8,-6: - 0: 65535 - -8,-5: - 0: 65535 - -7,-8: - 0: 65535 - -7,-7: - 0: 65535 - -7,-6: - 0: 65535 - -7,-5: - 0: 65439 - 1: 96 - -6,-8: - 0: 65535 - -6,-7: - 0: 61183 - 1: 4352 - -6,-6: - 0: 65535 - -6,-5: - 0: 65535 - -5,-8: - 0: 65535 - -5,-7: - 0: 64767 - 1: 768 - -5,-6: - 0: 65535 - -5,-5: - 0: 65535 - -4,-8: - 0: 65535 - -4,-7: - 0: 65535 - -4,-6: - 0: 65535 - -4,-5: - 0: 65535 - -3,-8: - 0: 32766 - -3,-7: - 0: 65535 - -3,-6: - 0: 64447 - 1: 1088 - -3,-5: - 0: 65535 - -2,-8: - 0: 53247 - -2,-7: - 0: 65535 - -2,-6: - 0: 65535 - -2,-5: - 0: 48063 - 1: 17472 - -1,-8: - 0: 36863 - -1,-7: - 0: 65535 - -1,-6: - 0: 65535 - -1,-5: - 0: 57343 - 1: 8192 - 0,-8: - 0: 65535 - 0,-7: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 0: 65535 - 1,-8: - 0: 65535 - 1,-7: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-8: - 1: 57345 - 0: 8190 - 2,-7: - 0: 65535 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-8: - 0: 65535 - 3,-7: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 - 4,-8: - 0: 65535 - 4,-7: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - 5,-8: - 0: 30591 - 5,-7: - 0: 65399 - 5,-6: - 0: 49151 - 1: 16384 - 5,-5: - 0: 61167 - 1: 4368 - 6,-7: - 0: 65280 - 6,-6: - 0: 65535 - 6,-5: - 0: 12671 - 7,-7: - 0: 65422 - 7,-6: - 0: 52428 - 7,-5: - 0: 52428 - 1,6: - 0: 36040 - 1,7: - 0: 8 - 2,5: - 0: 65535 - 2,6: - 0: 65535 - 2,7: - 0: 52991 - 2,4: - 0: 61170 - 3,4: - 0: 65023 - 1: 512 - 3,5: - 0: 65535 - 3,6: - 0: 32767 - 3,7: - 0: 30583 - 8,0: - 0: 56797 - 8,1: - 0: 49087 - 1: 16448 - 8,2: - 0: 56799 - 9,0: - 0: 65535 - 9,1: - 0: 65535 - 9,2: - 0: 65535 - 10,1: - 0: 65535 - 10,2: - 0: 12015 - 10,0: - 0: 61166 - 11,0: - 0: 65535 - 11,1: - 0: 16383 - 11,2: - 0: 4881 - 8,-4: - 0: 65280 - 8,-3: - 0: 8191 - 8,-2: - 0: 49113 - 1: 16384 - 8,-1: - 0: 57279 - 1: 64 - 9,-4: - 0: 65280 - 9,-3: - 0: 4095 - 9,-2: - 0: 65527 - 9,-1: - 0: 65535 - 10,-4: - 0: 65280 - 10,-3: - 0: 61439 - 10,-2: - 0: 65518 - 10,-1: - 0: 61439 - 11,-4: - 0: 4352 - 11,-3: - 0: 65329 - 11,-2: - 0: 65535 - 11,-1: - 0: 63487 - 12,0: - 0: 4369 - 12,1: - 0: 273 - 12,-3: - 0: 4352 - 12,-2: - 0: 4369 - 12,-1: - 0: 4113 - 8,-7: - 0: 65423 - 8,-6: - 0: 56797 - 8,-5: - 0: 56797 - 9,-7: - 0: 65423 - 9,-6: - 0: 56797 - 9,-5: - 0: 56797 - 10,-7: - 0: 65423 - 10,-6: - 0: 56797 - 10,-5: - 0: 56797 - 11,-7: - 0: 30019 - 11,-6: - 0: 21845 - 11,-5: - 0: 21845 - 4,4: - 0: 65523 - 4,5: - 0: 65535 - 4,6: - 0: 65535 - 4,7: - 0: 36046 - 5,4: - 0: 4401 - 5,5: - 0: 13107 - 5,6: - 0: 14199 - 5,7: - 0: 4371 - -4,-12: - 0: 65533 - 1: 2 - -4,-11: - 0: 65535 - -4,-10: - 0: 65535 - -4,-9: - 0: 65535 - -3,-12: - 0: 65535 - -3,-11: - 0: 63487 - -3,-10: - 0: 65263 - -3,-9: - 0: 61439 - -2,-12: - 0: 65535 - -2,-11: - 0: 64767 - -2,-10: - 0: 65535 - -2,-9: - 0: 65535 - -1,-12: - 0: 65535 - -1,-11: - 0: 63743 - -1,-10: - 0: 65535 - -1,-9: - 0: 65535 - 0,-12: - 0: 65535 - 0,-11: - 0: 65535 - 0,-10: - 0: 65535 - 0,-9: - 0: 65535 - 1,-12: - 0: 65535 - 1,-11: - 0: 65535 - 1,-10: - 0: 65535 - 1,-9: - 0: 65535 - 2,-12: - 0: 65279 - 1: 256 - 2,-11: - 0: 65535 - 2,-10: - 0: 65535 - 2,-9: - 0: 65535 - 3,-12: - 0: 63487 - 1: 2048 - 3,-11: - 0: 65535 - 3,-10: - 0: 65535 - 3,-9: - 0: 65535 - -8,-12: - 0: 65535 - -8,-11: - 0: 65535 - -8,-10: - 0: 65535 - -8,-9: - 0: 65535 - -7,-12: - 0: 65535 - -7,-11: - 0: 62463 - 1: 3072 - -7,-10: - 0: 65535 - -7,-9: - 0: 65535 - -6,-12: - 0: 65487 - 1: 48 - -6,-11: - 0: 65279 - 1: 256 - -6,-10: - 0: 65535 - -6,-9: - 0: 65535 - -5,-12: - 0: 65535 - -5,-11: - 0: 65535 - -5,-10: - 0: 65535 - -5,-9: - 0: 61327 - 1: 4208 - 4,-12: - 0: 65279 - 1: 256 - 4,-11: - 0: 65263 - 1: 272 - 4,-10: - 0: 65535 - 4,-9: - 0: 57343 - 1: 8192 - 5,-12: - 0: 30583 - 5,-11: - 0: 65399 - 5,-10: - 0: 65535 - 5,-9: - 0: 65535 - 0,-16: - 0: 65527 - 0,-15: - 0: 65535 - 0,-14: - 0: 65535 - 0,-13: - 0: 64447 - 1: 1088 - 1,-16: - 0: 65520 - 1,-15: - 0: 65535 - 1,-14: - 0: 65535 - 1,-13: - 0: 65535 - 2,-16: - 0: 29456 - 2,-15: - 0: 30583 - 2,-14: - 0: 65527 - 2,-13: - 0: 65535 - 3,-14: - 0: 65280 - 3,-13: - 0: 65535 - 4,-14: - 0: 61440 - 4,-13: - 0: 65535 - 5,-13: - 0: 13107 - -4,-16: - 0: 65535 - -4,-15: - 0: 65535 - -4,-14: - 0: 65535 - -4,-13: - 0: 65535 - -3,-16: - 0: 65535 - -3,-15: - 0: 40959 - 1: 24576 - -3,-14: - 0: 65535 - -3,-13: - 0: 65535 - -2,-16: - 0: 65399 - 1: 136 - -2,-15: - 0: 65535 - -2,-14: - 0: 57343 - 1: 8192 - -2,-13: - 0: 65501 - 1: 34 - -1,-16: - 0: 65535 - -1,-15: - 0: 65529 - 1: 6 - -1,-14: - 0: 65535 - -1,-13: - 0: 8159 - 1: 57376 - -8,-16: - 0: 65535 - -8,-15: - 0: 65343 - 1: 192 - -8,-14: - 0: 65403 - 1: 132 - -8,-13: - 0: 65535 - -7,-16: - 0: 63487 - 1: 2048 - -7,-15: - 0: 65535 - -7,-14: - 0: 65535 - -7,-13: - 0: 65535 - -6,-16: - 0: 65535 - -6,-15: - 0: 65343 - 1: 192 - -6,-14: - 0: 65535 - -6,-13: - 0: 36863 - 1: 28672 - -5,-16: - 0: 65535 - -5,-15: - 0: 65535 - -5,-14: - 0: 65535 - -5,-13: - 0: 65535 - -4,-20: - 0: 65228 - -4,-19: - 0: 61439 - -4,-18: - 0: 140 - -3,-20: - 0: 65535 - -3,-19: - 0: 65535 - -3,-18: - 0: 52991 - -3,-17: - 0: 60620 - -2,-20: - 0: 65535 - -2,-19: - 0: 65535 - -2,-18: - 0: 65535 - -2,-17: - 0: 65535 - -1,-20: - 0: 65535 - -1,-19: - 0: 65535 - -1,-18: - 0: 65535 - -1,-17: - 0: 62263 - 0,-20: - 0: 30583 - 0,-19: - 0: 30583 - 0,-18: - 0: 30583 - -4,-21: - 0: 32768 - -3,-21: - 0: 65516 - -3,-22: - 0: 32768 - -2,-22: - 0: 65024 - -2,-21: - 0: 65535 - -1,-22: - 0: 62208 - -1,-21: - 0: 65535 - 0,-21: - 0: 30579 - -12,-8: - 0: 65535 - -12,-7: - 0: 65535 - -12,-6: - 0: 65535 - -12,-5: - 0: 65535 - -11,-8: - 0: 65535 - -11,-7: - 0: 65471 - 1: 64 - -11,-6: - 0: 65535 - -11,-5: - 1: 8705 - 0: 56830 - -10,-8: - 0: 65535 - -10,-7: - 0: 65531 - 1: 4 - -10,-6: - 0: 65535 - -10,-5: - 0: 63487 - 1: 2048 - -9,-8: - 0: 65535 - -9,-7: - 0: 30583 - 1: 34952 - -9,-6: - 0: 65535 - -9,-5: - 0: 63487 - 1: 2048 - -12,-4: - 0: 65535 - -12,-3: - 0: 65535 - -12,-2: - 0: 65535 - -12,-1: - 0: 61439 - -11,-4: - 0: 65533 - 1: 2 - -11,-3: - 0: 65535 - -11,-2: - 0: 30591 - 1: 34944 - -11,-1: - 0: 65407 - 1: 128 - -10,-4: - 0: 65535 - -10,-3: - 0: 57343 - 1: 8192 - -10,-2: - 0: 32221 - 1: 33314 - -10,-1: - 0: 65535 - -9,-4: - 0: 65535 - -9,-3: - 0: 24575 - 1: 40960 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - -12,1: - 0: 65262 - -12,2: - 0: 32639 - 2: 128 - 3: 32768 - -12,3: - 0: 32639 - 4: 32896 - -12,0: - 0: 61166 - -11,0: - 0: 32767 - 1: 32768 - -11,1: - 0: 65535 - -11,2: - 0: 53199 - 2: 48 - 3: 12288 - -11,3: - 0: 53199 - 4: 12336 - -10,0: - 0: 65533 - 1: 2 - -10,1: - 0: 65535 - -10,2: - 0: 65535 - -10,3: - 0: 65535 - -9,0: - 0: 30175 - 1: 35360 - -9,1: - 0: 65527 - 1: 8 - -9,2: - 0: 65535 - -9,3: - 0: 65535 - -12,-12: - 0: 65535 - -12,-11: - 0: 65535 - -12,-10: - 0: 65471 - 1: 64 - -12,-9: - 0: 65535 - -11,-12: - 0: 65535 - -11,-11: - 0: 65535 - -11,-10: - 0: 65535 - -11,-9: - 0: 63487 - 1: 2048 - -10,-12: - 0: 65535 - -10,-11: - 0: 65535 - -10,-10: - 0: 65535 - -10,-9: - 0: 65535 - -9,-12: - 0: 65535 - -9,-11: - 0: 65535 - -9,-10: - 0: 65535 - -9,-9: - 0: 65535 - -12,-15: - 0: 65528 - -12,-14: - 0: 65535 - -12,-13: - 0: 65535 - -11,-15: - 0: 65535 - -11,-14: - 0: 65535 - -11,-13: - 0: 64511 - 1: 1024 - -11,-16: - 0: 61064 - -10,-16: - 0: 65535 - -10,-15: - 0: 65439 - 1: 96 - -10,-14: - 0: 65535 - -10,-13: - 0: 48063 - 1: 17472 - -9,-16: - 0: 65535 - -9,-15: - 0: 65535 - -9,-14: - 0: 65535 - -9,-13: - 0: 65535 - -16,-12: - 0: 65521 - 4: 14 - -16,-11: - 0: 35327 - 4: 17920 - -16,-10: - 0: 64717 - -16,-9: - 0: 65535 - -15,-12: - 0: 65535 - -15,-11: - 0: 65535 - -15,-10: - 0: 65535 - -15,-9: - 0: 65535 - -14,-12: - 0: 65535 - -14,-11: - 0: 65535 - -14,-10: - 0: 65535 - -14,-9: - 0: 65535 - -13,-12: - 0: 65535 - -13,-11: - 0: 57087 - 1: 8448 - -13,-10: - 0: 65533 - 1: 2 - -13,-9: - 0: 65535 - -16,-8: - 0: 65535 - -16,-7: - 0: 65535 - -16,-6: - 0: 65535 - -16,-5: - 0: 65503 - 1: 32 - -15,-8: - 0: 65535 - -15,-7: - 0: 65535 - -15,-6: - 0: 65535 - -15,-5: - 0: 65535 - -14,-8: - 0: 32639 - 1: 32896 - -14,-7: - 0: 65535 - -14,-6: - 0: 65423 - 1: 112 - -14,-5: - 0: 64989 - 1: 546 - -13,-8: - 0: 61423 - 1: 4112 - -13,-7: - 0: 65535 - -13,-6: - 0: 65535 - -13,-5: - 1: 1091 - 0: 64444 - -16,-4: - 0: 65535 - -16,-3: - 0: 65535 - -16,-2: - 0: 255 - -15,-4: - 0: 63359 - 1: 2176 - -15,-3: - 0: 65535 - -15,-2: - 0: 255 - -14,-4: - 0: 65535 - -14,-3: - 0: 65535 - -14,-2: - 0: 255 - -13,-4: - 0: 65535 - -13,-3: - 0: 65535 - -13,-2: - 0: 2303 - -12,4: - 0: 32639 - 5: 128 - 4: 32768 - -12,5: - 0: 65535 - -12,6: - 0: 61166 - -12,7: - 0: 206 - -11,4: - 0: 53199 - 5: 48 - 4: 12288 - -11,5: - 0: 65535 - -11,6: - 0: 65535 - -11,7: - 0: 3839 - -10,4: - 0: 65535 - -10,5: - 0: 65535 - -10,6: - 0: 65535 - -10,7: - 0: 61439 - -9,4: - 0: 65535 - -9,5: - 0: 65535 - -9,6: - 0: 63743 - 4: 1792 - -9,7: - 0: 65535 - -8,4: - 0: 65535 - -8,5: - 0: 65535 - -8,6: - 0: 65535 - -8,7: - 0: 32767 - -7,4: - 0: 63487 - 1: 2048 - -7,5: - 0: 65535 - -7,6: - 0: 65535 - -7,7: - 0: 1023 - -6,4: - 0: 65535 - -6,5: - 0: 32767 - -6,6: - 0: 30583 - -6,7: - 0: 119 - -5,4: - 0: 4927 - -5,5: - 0: 1 - -15,-13: - 0: 65260 - 4: 258 - -15,-14: - 0: 51336 - -14,-14: - 0: 65535 - -14,-13: - 0: 65535 - -14,-15: - 0: 60928 - -13,-15: - 0: 32752 - 1: 32768 - -13,-14: - 0: 65535 - -13,-13: - 0: 65407 - 1: 128 - -19,-4: - 0: 52680 - -19,-3: - 0: 35020 - -18,-4: - 0: 63487 - 1: 2048 - -18,-3: - 0: 65535 - -18,-2: - 0: 207 - -17,-4: - 0: 65535 - -17,-3: - 0: 65535 - -17,-2: - 0: 255 - -19,-5: - 0: 32768 - -18,-5: - 0: 65534 - -18,-6: - 0: 61167 - -18,-8: - 0: 50252 - -18,-7: - 0: 65092 - -17,-8: - 0: 65485 - -17,-7: - 0: 65535 - -17,-6: - 0: 65535 - -17,-5: - 0: 61951 - 1: 3584 - -13,3: - 0: 52424 - -13,2: - 0: 34816 - -13,4: - 0: 36044 - -13,5: - 0: 136 - -9,8: - 0: 15 - -8,8: - 0: 1 - 5,8: - 0: 1 - 2,8: - 0: 2252 - 3,8: - 0: 13175 - 3,9: - 0: 2 - -8,-20: - 0: 65520 - -8,-19: - 0: 65520 - -8,-18: - 0: 65520 - -8,-17: - 0: 49152 - -7,-20: - 0: 65528 - -7,-19: - 0: 65528 - -7,-18: - 0: 65528 - -7,-17: - 0: 64648 - -6,-20: - 0: 13243 - -6,-19: - 0: 13107 - -6,-18: - 0: 13107 - -6,-17: - 0: 63283 - -5,-17: - 0: 61440 - -20,-12: - 0: 65535 - -20,-11: - 0: 65535 - -19,-12: - 0: 65523 - -19,-11: - 0: 13311 - -18,-12: - 0: 65527 - -18,-11: - 0: 10239 - -17,-12: - 0: 65532 - -17,-11: - 0: 36095 - -17,-9: - 0: 51339 - -22,-12: - 0: 65532 - -22,-11: - 0: 52479 - -21,-12: - 0: 65535 - -21,-11: - 0: 65535 - -8,-22: - 0: 61440 - -8,-21: - 0: 65520 - -7,-22: - 0: 13024 - -7,-21: - 0: 65528 - -6,-22: - 0: 39152 - -6,-21: - 0: 64507 - -9,-20: - 0: 60130 - -9,-19: - 0: 60130 - -9,-18: - 0: 60130 - -9,-17: - 0: 34 - -9,-22: - 0: 57344 - -9,-21: - 0: 60130 - 1,5: - 0: 32768 - -20,-10: - 0: 32767 - -20,-9: - 0: 57347 - -19,-10: - 0: 819 - -22,-10: - 0: 2188 - -21,-10: - 0: 53247 - -21,-9: - 0: 62008 - -20,-14: - 0: 29440 - -20,-13: - 0: 65535 - -19,-13: - 0: 13107 - -22,-13: - 0: 52360 - -21,-13: - 0: 65535 - -21,-14: - 0: 51200 - -10,8: - 0: 8 - -5,6: - 0: 65280 - -5,7: - 0: 65311 - -20,-4: - 0: 4014 - -20,-7: - 0: 65262 - -20,-6: - 0: 61167 - -20,-8: - 0: 61166 - -20,-5: - 0: 61166 - -19,-7: - 0: 65262 - -19,-6: - 0: 15 - -19,-8: - 0: 61166 - -19,-9: - 0: 57344 - -22,-9: - 0: 60144 - -22,-7: - 0: 62702 - -22,-6: - 0: 61164 - -22,-8: - 0: 61166 - -22,-5: - 0: 61166 - -21,-7: - 0: 65262 - -21,-6: - 0: 61167 - -21,-8: - 0: 61166 - -21,-5: - 0: 61166 - -22,-4: - 0: 4014 - -21,-4: - 0: 4015 - -4,6: - 0: 65484 - -4,7: - 0: 65487 - -4,4: - 0: 52943 - -4,5: - 0: 52428 - -3,4: - 0: 65280 - -3,5: - 0: 65295 - -3,6: - 0: 65295 - -3,7: - 0: 65295 - -2,4: - 0: 65408 - -2,5: - 0: 65423 - -2,6: - 0: 65423 - -2,7: - 0: 65455 - -16,-14: - 0: 256 - -16,-13: - 0: 256 - 4: 32768 - -18,-10: - 0: 8751 - -18,-9: - 0: 15 - -17,-10: - 0: 15 - -18,-14: - 0: 12032 - -18,-13: - 0: 12066 - -17,-14: - 0: 36608 - -17,-13: - 0: 36744 - -6,8: - 0: 19520 - -6,9: - 0: 3148 - -5,8: - 0: 65295 - -5,9: - 0: 3855 - -23,-9: - 0: 34944 - -23,-7: - 0: 41704 - -23,-6: - 0: 35042 - -23,-8: - 0: 34952 - -23,-5: - 0: 34952 - -23,-4: - 0: 2184 - -4,8: - 0: 65359 - -4,9: - 0: 5455 - -4,10: - 0: 15 - -3,8: - 0: 65295 - -3,9: - 0: 7951 - -3,10: - 0: 1 - -2,8: - 0: 65423 - -2,9: - 0: 3983 - -1,4: - 0: 8992 - -1,5: - 0: 8739 - -1,6: - 0: 8995 - -1,7: - 0: 8995 - -1,8: - 0: 8995 - -1,9: - 0: 803 - 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: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - id: Moose - type: BecomesStation - - type: RadiationGridResistance - - nextShake: 0 - shakeTimes: 10 - type: GravityShake - - type: GasTileOverlay - - nextUpdate: 0 - type: SpreaderGrid - - uid: 10465 - components: - - type: MetaData - - pos: -139.89185,-116.9631 - parent: 5 - type: Transform - - chunks: - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAABbAAAAWwAAAFsAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAWwAAAFsAAABbAAAAWwAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - type: OccluderTree - - type: Shuttle - - nextUpdate: 0.45 - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - color: '#FFFFFFFF' - id: Remains - decals: - 0: 8.497086,-4.8336945 - type: DecalGrid - - version: 2 - data: - tiles: - -1,-1: - 0: 52428 - 0,-4: - 0: 61440 - 0,-3: - 0: 65535 - 0,-1: - 0: 65535 - -1,-4: - 0: 49152 - -1,-3: - 0: 52428 - -1,-2: - 0: 52428 - 0,-2: - 0: 65535 - 1,-4: - 0: 61440 - 1,-3: - 0: 65535 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 2,-4: - 0: 61440 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-4: - 0: 4096 - 3,-3: - 0: 4369 - 3,-2: - 0: 4369 - 3,-1: - 0: 4369 - 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: RadiationGridResistance - - type: GasTileOverlay - - nextUpdate: 0 - type: SpreaderGrid - - uid: 13645 - components: - - type: MetaData - - pos: 139.06548,142.73047 - parent: 5 - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAA== - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAF4AAAAEAAAAXgAAAAQAAABeAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,0: - ind: 0,0 - tiles: XgAAAEEAAABeAAAAXgAAAF4AAABBAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABBAAAAPwAAAEEAAAA/AAAAQQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAQQAAAD8AAABBAAAAPwAAAEEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAQAAAA/AAAAQQAAAD8AAABBAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAQQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - type: OccluderTree - - type: Shuttle - - nextUpdate: 0.45 - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: [] - type: DecalGrid - - version: 2 - data: - tiles: - -1,-1: - 0: 59392 - 0,-1: - 0: 65280 - 1,-1: - 0: 28928 - 1,0: - 0: 30583 - 0,0: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 16383 - 1,1: - 0: 30583 - 1,2: - 0: 375 - -1,0: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 3311 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: RadiationGridResistance - - type: GasTileOverlay - - nextUpdate: 0 - type: SpreaderGrid -- proto: AcousticGuitarInstrument - entities: - - uid: 4891 - components: - - pos: 17.377642,0.53766143 - parent: 6 - type: Transform - - uid: 6351 - components: - - pos: -21.490076,-6.4055924 - parent: 6 - type: Transform -- proto: AdvancedCapacitorStockPart - entities: - - uid: 5390 - components: - - pos: -9.340726,-53.888344 - parent: 6 - type: Transform - - uid: 5391 - components: - - pos: -9.6389,-54.030254 - parent: 6 - type: Transform -- proto: AdvancedMatterBinStockPart - entities: - - uid: 5392 - components: - - pos: -9.354924,-54.413414 - parent: 6 - type: Transform -- proto: AirAlarm - entities: - - uid: 6045 - components: - - pos: 11.5,21.5 - parent: 6 - type: Transform - - devices: - - 12416 - - 12415 - - 12417 - - 12418 - - 11838 - - 11812 - - 11839 - - 11813 - type: DeviceList - - uid: 13054 - components: - - rot: 3.141592653589793 rad - pos: -60.5,-15.5 - parent: 6 - type: Transform - - devices: - - 6543 - - 6544 - - 6545 - - 6546 - - 11356 - - 11355 - type: DeviceList - - uid: 13056 - components: - - pos: -46.5,-9.5 - parent: 6 - type: Transform - - devices: - - 6543 - - 6544 - - 6545 - - 6548 - - 6547 - - 12546 - - 12547 - - 12218 - - 12219 - - 12228 - - 12229 - type: DeviceList - - uid: 13058 - components: - - pos: -31.5,-9.5 - parent: 6 - type: Transform - - devices: - - 6549 - - 6550 - - 6551 - - 3381 - - 3382 - - 6552 - - 6553 - - 6554 - - 12549 - - 12548 - - 3332 - - 3325 - - 3335 - type: DeviceList - - uid: 13060 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-2.5 - parent: 6 - type: Transform - - devices: - - 3323 - - 3337 - - 3336 - - 3339 - - 3338 - - 6260 - - 6262 - - 11187 - - 11185 - - 6379 - - 6300 - - 6321 - - 6322 - type: DeviceList - - uid: 13062 - components: - - pos: -18.5,-9.5 - parent: 6 - type: Transform - - devices: - - 6554 - - 6553 - - 6552 - - 6555 - - 6556 - - 6565 - - 6564 - - 6563 - - 6558 - - 6557 - - 6560 - - 6568 - - 6567 - - 6566 - - 11382 - - 11406 - - 6562 - - 2981 - type: DeviceList - - uid: 13066 - components: - - pos: -26.5,-19.5 - parent: 6 - type: Transform - - devices: - - 13064 - - 6560 - - 6632 - - 6631 - - 11573 - - 11592 - - 11593 - - 11585 - - 11586 - - 13071 - - 11508 - - 11509 - - 11558 - - 11549 - - 11513 - - 11512 - - 2981 - - 3643 - - 3635 - type: DeviceList - - uid: 13072 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-23.5 - parent: 6 - type: Transform - - devices: - - 6558 - - 6557 - - 6627 - - 6624 - - 6625 - - 6626 - - 11954 - - 11955 - - 11416 - - 13074 - type: DeviceList - - uid: 13075 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-21.5 - parent: 6 - type: Transform - - devices: - - 6602 - - 6603 - - 6604 - - 6605 - - 5156 - - 13077 - - 12357 - - 12358 - - 12346 - - 12345 - - 11852 - - 11853 - - 830 - type: DeviceList - - uid: 13078 - components: - - pos: -5.5,-29.5 - parent: 6 - type: Transform - - devices: - - 6622 - - 6623 - - 6620 - - 6621 - - 11875 - - 11874 - - 12380 - - 12381 - type: DeviceList - - uid: 13080 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-39.5 - parent: 6 - type: Transform - - devices: - - 6626 - - 6625 - - 6624 - - 11590 - - 11589 - - 6620 - - 6621 - - 6634 - - 6635 - - 6636 - - 11957 - - 11956 - - 11859 - - 11863 - type: DeviceList - - uid: 13082 - components: - - pos: -10.5,-42.5 - parent: 6 - type: Transform - - devices: - - 6657 - - 6658 - - 6659 - - 6654 - - 6653 - - 6656 - - 6655 - - 6634 - - 6635 - - 6636 - - 5488 - - 5487 - - 5486 - - 12551 - - 12550 - - 12453 - - 12454 - type: DeviceList - - uid: 13084 - components: - - pos: -32.5,-42.5 - parent: 6 - type: Transform - - devices: - - 5488 - - 5487 - - 5486 - - 6641 - - 6642 - - 6646 - - 6647 - - 6648 - - 6649 - - 6650 - - 12029 - - 12028 - - 12053 - - 12030 - - 12027 - - 12054 - - 12031 - - 12026 - - 12044 - - 12560 - - 12561 - - 12544 - - 12545 - - 12008 - type: DeviceList - - uid: 13086 - components: - - pos: 0.5,-42.5 - parent: 6 - type: Transform - - devices: - - 6657 - - 6658 - - 6659 - - 6643 - - 6644 - - 6613 - - 6612 - - 6611 - - 12432 - - 12431 - - 11981 - - 11990 - type: DeviceList - - uid: 13088 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-53.5 - parent: 6 - type: Transform - - devices: - - 6652 - - 7413 - - 3344 - - 13090 - - 7414 - - 7415 - - 12458 - - 12460 - - 12465 - - 12467 - - 12480 - - 12478 - - 12440 - - 12535 - - 12489 - - 12491 - type: DeviceList - - uid: 13091 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-76.5 - parent: 6 - type: Transform - - devices: - - 13095 - - 13096 - - 13094 - - 13093 - - 13097 - - 12527 - - 12528 - - 12506 - - 12507 - - 12523 - type: DeviceList - - uid: 13098 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-37.5 - parent: 6 - type: Transform - - devices: - - 6608 - - 6609 - - 6610 - - 6616 - - 6617 - - 6614 - - 6615 - - 6611 - - 6612 - - 6613 - - 12383 - - 12305 - - 12420 - - 12419 - type: DeviceList - - uid: 13100 - components: - - pos: 14.5,-33.5 - parent: 6 - type: Transform - - devices: - - 6618 - - 6619 - - 13102 - - 13103 - - 12408 - - 12407 - - 12429 - - 12430 - - 12413 - - 12414 - type: DeviceList - - uid: 13104 - components: - - pos: 9.5,-17.5 - parent: 6 - type: Transform - - devices: - - 6577 - - 6578 - - 456 - - 476 - - 5947 - - 478 - - 480 - - 489 - - 496 - - 628 - - 629 - - 5156 - - 6602 - - 6603 - - 6604 - - 6605 - - 6610 - - 6609 - - 6608 - - 12364 - - 12363 - - 12369 - - 12368 - type: DeviceList - - uid: 13111 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,15.5 - parent: 6 - type: Transform - - devices: - - 3328 - - 13110 - - 6288 - - 6287 - type: DeviceList - - uid: 13113 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 6 - type: Transform - - devices: - - 6569 - - 6570 - - 6592 - - 6593 - - 6556 - - 6555 - - 3333 - - 11228 - - 11227 - - 11243 - - 11219 - - 11200 - - 11199 - type: DeviceList - - uid: 13115 - components: - - rot: 3.141592653589793 rad - pos: -5.5,2.5 - parent: 6 - type: Transform - - devices: - - 6593 - - 6592 - - 6596 - - 6598 - - 6597 - - 6594 - - 6595 - - 6599 - - 6600 - - 11241 - - 11258 - - 11240 - - 11245 - - 11260 - - 11279 - - 11266 - - 11277 - type: DeviceList - - uid: 13118 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-13.5 - parent: 6 - type: Transform - - devices: - - 6575 - - 6574 - - 6573 - - 6563 - - 6564 - - 6565 - - 8275 - - 8276 - - 6576 - - 11681 - - 11682 - - 11671 - - 11676 - - 11687 - - 11686 - type: DeviceList - - uid: 13119 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 6 - type: Transform - - devices: - - 6582 - - 6583 - - 6595 - - 6594 - - 6571 - - 6572 - - 11688 - - 11689 - - 11291 - - 11294 - type: DeviceList - - uid: 13121 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-13.5 - parent: 6 - type: Transform - - devices: - - 6581 - - 6580 - - 6579 - - 6587 - - 6586 - - 6585 - - 6584 - - 6583 - - 6582 - - 6577 - - 6578 - - 6573 - - 6574 - - 6575 - - 11697 - - 11696 - - 12336 - type: DeviceList - - uid: 13123 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,4.5 - parent: 6 - type: Transform - - devices: - - 6591 - - 6590 - - 6589 - - 6588 - - 11825 - - 11827 - - 12235 - - 12234 - - 11783 - - 11770 - - 11704 - - 11766 - type: DeviceList - - uid: 13127 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-13.5 - parent: 6 - type: Transform - - devices: - - 7656 - - 7655 - - 7654 - - 6579 - - 6580 - - 6581 - - 13125 - - 13126 - - 12062 - - 12061 - - 12330 - - 12331 - - 12058 - - 12059 - type: DeviceList - - uid: 13129 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 6 - type: Transform - - devices: - - 7659 - - 7658 - - 7653 - - 12208 - - 12209 - - 12199 - - 12200 - type: DeviceList - - uid: 13132 - components: - - pos: 37.5,-9.5 - parent: 6 - type: Transform - - devices: - - 7659 - - 7658 - - 7654 - - 7655 - - 7656 - - 7657 - - 12071 - - 12070 - type: DeviceList - - uid: 13134 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,0.5 - parent: 6 - type: Transform - - devices: - - 7657 - - 12170 - - 12168 - type: DeviceList -- proto: AirAlarmElectronics - entities: - - uid: 6374 - components: - - pos: -32.410076,21.578552 - parent: 6 - type: Transform -- proto: AirCanister - entities: - - uid: 4876 - components: - - pos: -30.5,-9.5 - parent: 6 - type: Transform - - uid: 4877 - components: - - pos: -29.5,-9.5 - parent: 6 - type: Transform - - uid: 5860 - components: - - pos: -23.5,-55.5 - parent: 6 - type: Transform - - uid: 7381 - components: - - pos: -7.5,-62.5 - parent: 6 - type: Transform - - uid: 10885 - components: - - pos: 23.5,12.5 - parent: 6 - type: Transform - - uid: 10913 - components: - - pos: 15.5,-21.5 - parent: 6 - type: Transform - - uid: 10921 - components: - - pos: 15.5,-32.5 - parent: 6 - type: Transform - - uid: 10922 - components: - - pos: -14.5,-55.5 - parent: 6 - type: Transform - - uid: 10947 - components: - - pos: -35.5,-58.5 - parent: 6 - type: Transform - - uid: 10980 - components: - - pos: -34.5,-31.5 - parent: 6 - type: Transform - - uid: 11003 - components: - - pos: -52.5,-26.5 - parent: 6 - type: Transform - - uid: 11025 - components: - - pos: -57.5,-17.5 - parent: 6 - type: Transform - - uid: 11046 - components: - - pos: -6.5,-5.5 - parent: 6 - type: Transform - - uid: 13632 - components: - - pos: 5.5,-8.5 - parent: 10465 - type: Transform -- proto: Airlock - entities: - - uid: 5494 - components: - - pos: -44.5,-39.5 - parent: 6 - type: Transform - - uid: 5495 - components: - - pos: -41.5,-40.5 - parent: 6 - type: Transform - - uid: 5496 - components: - - pos: -44.5,-35.5 - parent: 6 - type: Transform - - uid: 5497 - components: - - pos: -41.5,-34.5 - parent: 6 - type: Transform - - uid: 5498 - components: - - pos: -44.5,-31.5 - parent: 6 - type: Transform - - uid: 5499 - components: - - pos: -41.5,-29.5 - parent: 6 - type: Transform -- proto: AirlockArmoryGlassLocked - entities: - - uid: 4696 - components: - - pos: 17.5,-2.5 - parent: 6 - type: Transform -- proto: AirlockAtmosphericsGlassLocked - entities: - - uid: 5042 - components: - - pos: -31.5,5.5 - parent: 6 - type: Transform - - uid: 5043 - components: - - pos: -31.5,8.5 - parent: 6 - type: Transform -- proto: AirlockBarLocked - entities: - - uid: 5249 - components: - - pos: -1.5,-15.5 - parent: 6 - type: Transform -- proto: AirlockBrigGlassLocked - entities: - - uid: 4672 - components: - - pos: 11.5,-6.5 - parent: 6 - type: Transform - - uid: 4673 - components: - - pos: 11.5,-8.5 - parent: 6 - type: Transform - - uid: 4674 - components: - - pos: 13.5,-6.5 - parent: 6 - type: Transform - - uid: 4675 - components: - - pos: 13.5,-8.5 - parent: 6 - type: Transform - - uid: 5231 - components: - - pos: 9.5,-13.5 - parent: 6 - type: Transform - - uid: 5232 - components: - - pos: 11.5,-16.5 - parent: 6 - type: Transform -- proto: AirlockCaptainLocked - entities: - - uid: 19 - components: - - pos: -4.5,0.5 - parent: 6 - type: Transform - - uid: 2998 - components: - - pos: -7.5,-2.5 - parent: 6 - type: Transform -- proto: AirlockCargoGlass - entities: - - uid: 5236 - components: - - pos: 14.5,-38.5 - parent: 6 - type: Transform - - uid: 5237 - components: - - pos: 13.5,-38.5 - parent: 6 - type: Transform -- proto: AirlockCargoLocked - entities: - - uid: 5241 - components: - - pos: 10.5,-40.5 - parent: 6 - type: Transform - - uid: 5242 - components: - - pos: 10.5,-39.5 - parent: 6 - type: Transform -- proto: AirlockChapelLocked - entities: - - uid: 5873 - components: - - pos: -30.5,-47.5 - parent: 6 - type: Transform - - uid: 5875 - components: - - pos: -28.5,-49.5 - parent: 6 - type: Transform - - uid: 5876 - components: - - pos: -30.5,-55.5 - parent: 6 - type: Transform -- proto: AirlockChemistryLocked - entities: - - uid: 4814 - components: - - pos: -21.5,-18.5 - parent: 6 - type: Transform -- proto: AirlockChiefEngineerGlassLocked - entities: - - uid: 5611 - components: - - pos: -23.5,-5.5 - parent: 6 - type: Transform -- proto: AirlockChiefMedicalOfficerGlassLocked - entities: - - uid: 5610 - components: - - pos: -38.5,-19.5 - parent: 6 - type: Transform -- proto: AirlockCommandGlassLocked - entities: - - uid: 5119 - components: - - pos: 1.5,4.5 - parent: 6 - type: Transform - - uid: 5120 - components: - - pos: 1.5,3.5 - parent: 6 - type: Transform - - uid: 5121 - components: - - pos: 4.5,4.5 - parent: 6 - type: Transform - - uid: 5122 - components: - - pos: 4.5,3.5 - parent: 6 - type: Transform - - uid: 5123 - components: - - pos: -1.5,2.5 - parent: 6 - type: Transform - - uid: 5124 - components: - - pos: -0.5,2.5 - parent: 6 - type: Transform - - uid: 5125 - components: - - pos: -5.5,5.5 - parent: 6 - type: Transform - - uid: 5126 - components: - - pos: -4.5,5.5 - parent: 6 - type: Transform - - uid: 5127 - components: - - pos: -3.5,5.5 - parent: 6 - type: Transform - - uid: 5128 - components: - - pos: -10.5,4.5 - parent: 6 - type: Transform - - uid: 5129 - components: - - pos: -10.5,3.5 - parent: 6 - type: Transform - - uid: 5130 - components: - - pos: -13.5,4.5 - parent: 6 - type: Transform - - uid: 5131 - components: - - pos: -13.5,3.5 - parent: 6 - type: Transform - - uid: 13812 - components: - - pos: -65.5,-12.5 - parent: 6 - type: Transform -- proto: AirlockCommandLocked - entities: - - uid: 2994 - components: - - pos: -23.5,-1.5 - parent: 6 - type: Transform - - uid: 2995 - components: - - pos: -16.5,-0.5 - parent: 6 - type: Transform -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 5057 - components: - - pos: -36.5,-0.5 - parent: 6 - type: Transform - - uid: 5058 - components: - - pos: -29.5,-4.5 - parent: 6 - type: Transform - - uid: 5059 - components: - - pos: -30.5,-4.5 - parent: 6 - type: Transform -- proto: AirlockEngineeringLocked - entities: - - uid: 5051 - components: - - pos: -28.5,-0.5 - parent: 6 - type: Transform - - uid: 5052 - components: - - pos: -28.5,-1.5 - parent: 6 - type: Transform - - uid: 5054 - components: - - pos: -33.5,-9.5 - parent: 6 - type: Transform - - uid: 5055 - components: - - pos: -35.5,-7.5 - parent: 6 - type: Transform - - uid: 5056 - components: - - pos: -31.5,-7.5 - parent: 6 - type: Transform - - uid: 7633 - components: - - pos: -10.5,0.5 - parent: 6 - type: Transform - - uid: 7634 - components: - - pos: 21.5,-3.5 - parent: 6 - type: Transform - - uid: 7644 - components: - - pos: 9.5,-43.5 - parent: 6 - type: Transform - - uid: 7645 - components: - - pos: -16.5,-57.5 - parent: 6 - type: Transform - - uid: 7646 - components: - - pos: -31.5,-30.5 - parent: 6 - type: Transform - - uid: 8290 - components: - - pos: -37.5,-54.5 - parent: 6 - type: Transform -- proto: AirlockEVAGlassLocked - entities: - - uid: 7631 - components: - - pos: -46.5,-13.5 - parent: 6 - type: Transform -- proto: AirlockExternalGlass - entities: - - uid: 2973 - components: - - pos: -66.5,-9.5 - parent: 6 - type: Transform - - uid: 2974 - components: - - pos: -64.5,-9.5 - parent: 6 - type: Transform - - uid: 2975 - components: - - pos: -58.5,-9.5 - parent: 6 - type: Transform - - uid: 2976 - components: - - pos: -56.5,-9.5 - parent: 6 - type: Transform - - uid: 3484 - components: - - pos: 44.5,3.5 - parent: 6 - type: Transform - - uid: 3485 - components: - - pos: 44.5,2.5 - parent: 6 - type: Transform - - uid: 3486 - components: - - pos: 44.5,-6.5 - parent: 6 - type: Transform - - uid: 3487 - components: - - pos: 44.5,-5.5 - parent: 6 - type: Transform - - uid: 3692 - components: - - pos: -6.5,-64.5 - parent: 6 - type: Transform - - uid: 3693 - components: - - pos: -5.5,-64.5 - parent: 6 - type: Transform - - uid: 3694 - components: - - pos: -6.5,-68.5 - parent: 6 - type: Transform - - uid: 3695 - components: - - pos: -5.5,-68.5 - parent: 6 - type: Transform -- proto: AirlockExternalGlassAtmosphericsLocked - entities: - - uid: 3326 - components: - - pos: -30.5,23.5 - parent: 6 - type: Transform - - uid: 3398 - components: - - pos: -30.5,20.5 - parent: 6 - type: Transform -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 1270 - components: - - pos: 20.5,-35.5 - parent: 6 - type: Transform - - uid: 1271 - components: - - pos: 20.5,-37.5 - parent: 6 - type: Transform -- proto: AirlockExternalGlassEngineeringLocked - entities: - - uid: 3469 - components: - - pos: -25.5,15.5 - parent: 6 - type: Transform - - uid: 3470 - components: - - pos: -25.5,19.5 - parent: 6 - type: Transform -- proto: AirlockExternalGlassLocked - entities: - - uid: 848 - components: - - pos: -74.5,-45.5 - parent: 6 - type: Transform - - uid: 2969 - components: - - pos: -60.5,-21.5 - parent: 6 - type: Transform - - uid: 2970 - components: - - pos: -61.5,-21.5 - parent: 6 - type: Transform - - uid: 2971 - components: - - pos: -61.5,-17.5 - parent: 6 - type: Transform - - uid: 2972 - components: - - pos: -60.5,-17.5 - parent: 6 - type: Transform - - uid: 3394 - components: - - pos: -74.5,-43.5 - parent: 6 - type: Transform - - uid: 3505 - components: - - pos: 25.5,-21.5 - parent: 6 - type: Transform - - uid: 3506 - components: - - pos: 21.5,-21.5 - parent: 6 - type: Transform - - uid: 3760 - components: - - pos: -23.5,-64.5 - parent: 6 - type: Transform - - uid: 3762 - components: - - pos: -23.5,-60.5 - parent: 6 - type: Transform - - uid: 5339 - components: - - pos: 6.5,-52.5 - parent: 6 - type: Transform - - uid: 5340 - components: - - pos: 5.5,-52.5 - parent: 6 - type: Transform - - uid: 5341 - components: - - pos: 2.5,-55.5 - parent: 6 - type: Transform - - uid: 5342 - components: - - pos: 3.5,-55.5 - parent: 6 - type: Transform -- proto: AirlockExternalGlassShuttleArrivals - entities: - - uid: 523 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,2.5 - parent: 6 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures - - uid: 652 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-4.5 - parent: 6 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures - - uid: 670 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-4.5 - parent: 6 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures - - uid: 699 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,2.5 - parent: 6 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- proto: AirlockExternalGlassShuttleEmergencyLocked - entities: - - uid: 2880 - components: - - rot: 3.141592653589793 rad - pos: -66.5,-6.5 - parent: 6 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures - - uid: 2881 - components: - - rot: 3.141592653589793 rad - pos: -64.5,-6.5 - parent: 6 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures - - uid: 2882 - components: - - rot: 3.141592653589793 rad - pos: -58.5,-6.5 - parent: 6 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures - - uid: 2883 - components: - - rot: 3.141592653589793 rad - pos: -56.5,-6.5 - parent: 6 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 1268 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-35.5 - parent: 6 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures - - uid: 1269 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-37.5 - parent: 6 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures - - uid: 3507 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-6.5 - parent: 6 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures - - uid: 3508 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-5.5 - parent: 6 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures - - uid: 3509 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,3.5 - parent: 6 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures - - uid: 3510 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,2.5 - parent: 6 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures - - uid: 3672 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-70.5 - parent: 6 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures - - uid: 3673 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-72.5 - parent: 6 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- proto: AirlockFreezerLocked - entities: - - uid: 5147 - components: - - pos: -7.5,-22.5 - parent: 6 - type: Transform - - uid: 5149 - components: - - pos: -5.5,-19.5 - parent: 6 - type: Transform -- proto: AirlockGlass - entities: - - uid: 924 - components: - - pos: 3.5,-21.5 - parent: 6 - type: Transform - - uid: 3001 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-20.5 - parent: 6 - type: Transform - - uid: 3606 - components: - - pos: 0.5,-34.5 - parent: 6 - type: Transform - - uid: 3607 - components: - - pos: 0.5,-35.5 - parent: 6 - type: Transform - - uid: 4691 - components: - - pos: 10.5,21.5 - parent: 6 - type: Transform - - uid: 5233 - components: - - pos: 13.5,-13.5 - parent: 6 - type: Transform - - uid: 5234 - components: - - pos: 16.5,-13.5 - parent: 6 - type: Transform - - uid: 5466 - components: - - pos: 27.5,-9.5 - parent: 6 - type: Transform - - uid: 5467 - components: - - pos: 29.5,-10.5 - parent: 6 - type: Transform - - uid: 5468 - components: - - pos: 29.5,-11.5 - parent: 6 - type: Transform - - uid: 5469 - components: - - pos: 29.5,-12.5 - parent: 6 - type: Transform - - uid: 5470 - components: - - pos: 4.5,-10.5 - parent: 6 - type: Transform - - uid: 5471 - components: - - pos: 4.5,-11.5 - parent: 6 - type: Transform - - uid: 5472 - components: - - pos: 4.5,-12.5 - parent: 6 - type: Transform - - uid: 5473 - components: - - pos: -13.5,-10.5 - parent: 6 - type: Transform - - uid: 5474 - components: - - pos: -13.5,-11.5 - parent: 6 - type: Transform - - uid: 5475 - components: - - pos: -13.5,-12.5 - parent: 6 - type: Transform - - uid: 5476 - components: - - pos: -43.5,-10.5 - parent: 6 - type: Transform - - uid: 5477 - components: - - pos: -43.5,-11.5 - parent: 6 - type: Transform - - uid: 5478 - components: - - pos: -43.5,-12.5 - parent: 6 - type: Transform - - uid: 5479 - components: - - pos: 4.5,-42.5 - parent: 6 - type: Transform - - uid: 5480 - components: - - pos: 5.5,-42.5 - parent: 6 - type: Transform - - uid: 5481 - components: - - pos: 6.5,-42.5 - parent: 6 - type: Transform - - uid: 5482 - components: - - pos: -19.5,-42.5 - parent: 6 - type: Transform - - uid: 5483 - components: - - pos: -13.5,-42.5 - parent: 6 - type: Transform - - uid: 5484 - components: - - pos: -14.5,-42.5 - parent: 6 - type: Transform - - uid: 5485 - components: - - pos: -15.5,-42.5 - parent: 6 - type: Transform - - uid: 5489 - components: - - pos: -34.5,-46.5 - parent: 6 - type: Transform - - uid: 5490 - components: - - pos: -32.5,-46.5 - parent: 6 - type: Transform - - uid: 5491 - components: - - pos: -33.5,-42.5 - parent: 6 - type: Transform - - uid: 5514 - components: - - pos: -53.5,-13.5 - parent: 6 - type: Transform - - uid: 5515 - components: - - pos: -50.5,-13.5 - parent: 6 - type: Transform - - uid: 6166 - components: - - pos: -39.5,-13.5 - parent: 6 - type: Transform - - uid: 6660 - components: - - pos: -26.5,-43.5 - parent: 6 - type: Transform - - uid: 6661 - components: - - pos: -26.5,-44.5 - parent: 6 - type: Transform - - uid: 6662 - components: - - pos: -26.5,-45.5 - parent: 6 - type: Transform - - uid: 7693 - components: - - pos: -10.5,-34.5 - parent: 6 - type: Transform - - uid: 7694 - components: - - pos: -10.5,-35.5 - parent: 6 - type: Transform - - uid: 7720 - components: - - pos: -42.5,-42.5 - parent: 6 - type: Transform - - uid: 7721 - components: - - pos: -43.5,-42.5 - parent: 6 - type: Transform -- proto: AirlockHeadOfPersonnelGlassLocked - entities: - - uid: 17 - components: - - pos: 0.5,-6.5 - parent: 6 - type: Transform -- proto: AirlockHeadOfPersonnelLocked - entities: - - uid: 708 - components: - - pos: -1.5,-4.5 - parent: 6 - type: Transform -- proto: AirlockHeadOfSecurityGlassLocked - entities: - - uid: 4692 - components: - - pos: 13.5,7.5 - parent: 6 - type: Transform -- proto: AirlockHydroGlassLocked - entities: - - uid: 5140 - components: - - pos: -12.5,-20.5 - parent: 6 - type: Transform -- proto: AirlockJanitorLocked - entities: - - uid: 5464 - components: - - pos: 29.5,5.5 - parent: 6 - type: Transform -- proto: AirlockKitchenGlassLocked - entities: - - uid: 5139 - components: - - pos: -4.5,-23.5 - parent: 6 - type: Transform -- proto: AirlockKitchenLocked - entities: - - uid: 5141 - components: - - pos: -12.5,-25.5 - parent: 6 - type: Transform -- proto: AirlockMaintBarLocked - entities: - - uid: 882 - components: - - pos: -4.5,-15.5 - parent: 6 - type: Transform -- proto: AirlockMaintCaptainLocked - entities: - - uid: 2480 - components: - - pos: -47.5,-22.5 - parent: 6 - type: Transform -- proto: AirlockMaintCargoLocked - entities: - - uid: 3034 - components: - - pos: 17.5,-44.5 - parent: 6 - type: Transform - - uid: 3037 - components: - - pos: 18.5,-44.5 - parent: 6 - type: Transform - - uid: 8328 - components: - - pos: 16.5,-33.5 - parent: 6 - type: Transform -- proto: AirlockMaintChapelLocked - entities: - - uid: 5877 - components: - - pos: -31.5,-57.5 - parent: 6 - type: Transform -- proto: AirlockMaintCommandLocked - entities: - - uid: 33 - components: - - pos: -4.5,-2.5 - parent: 6 - type: Transform -- proto: AirlockMaintEngiLocked - entities: - - uid: 8333 - components: - - pos: -39.5,-1.5 - parent: 6 - type: Transform -- proto: AirlockMaintHOPLocked - entities: - - uid: 705 - components: - - pos: -4.5,-5.5 - parent: 6 - type: Transform -- proto: AirlockMaintJanitorLocked - entities: - - uid: 3182 - components: - - pos: 25.5,2.5 - parent: 6 - type: Transform -- proto: AirlockMaintLocked - entities: - - uid: 220 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,7.5 - parent: 6 - type: Transform - - uid: 3608 - components: - - pos: 3.5,-35.5 - parent: 6 - type: Transform - - uid: 3609 - components: - - pos: 3.5,-34.5 - parent: 6 - type: Transform - - uid: 5235 - components: - - pos: 18.5,-19.5 - parent: 6 - type: Transform - - uid: 8292 - components: - - pos: 8.5,9.5 - parent: 6 - type: Transform - - uid: 8293 - components: - - pos: 28.5,8.5 - parent: 6 - type: Transform - - uid: 8294 - components: - - pos: 21.5,-8.5 - parent: 6 - type: Transform - - uid: 8295 - components: - - pos: 25.5,-7.5 - parent: 6 - type: Transform - - uid: 8296 - components: - - pos: 19.5,-14.5 - parent: 6 - type: Transform - - uid: 8297 - components: - - pos: 8.5,-29.5 - parent: 6 - type: Transform - - uid: 8298 - components: - - pos: 7.5,-44.5 - parent: 6 - type: Transform - - uid: 8299 - components: - - pos: -5.5,-46.5 - parent: 6 - type: Transform - - uid: 8300 - components: - - pos: -3.5,-58.5 - parent: 6 - type: Transform - - uid: 8301 - components: - - pos: -8.5,-58.5 - parent: 6 - type: Transform - - uid: 8302 - components: - - pos: -40.5,-46.5 - parent: 6 - type: Transform - - uid: 8303 - components: - - pos: -49.5,-42.5 - parent: 6 - type: Transform - - uid: 8304 - components: - - pos: -24.5,-42.5 - parent: 6 - type: Transform - - uid: 8305 - components: - - pos: -16.5,-35.5 - parent: 6 - type: Transform - - uid: 8306 - components: - - pos: -21.5,-36.5 - parent: 6 - type: Transform - - uid: 8307 - components: - - pos: -41.5,-14.5 - parent: 6 - type: Transform - - uid: 8308 - components: - - pos: -53.5,-20.5 - parent: 6 - type: Transform - - uid: 8309 - components: - - pos: -64.5,-15.5 - parent: 6 - type: Transform - - uid: 8310 - components: - - pos: -43.5,-28.5 - parent: 6 - type: Transform - - uid: 8311 - components: - - pos: -50.5,-32.5 - parent: 6 - type: Transform - - uid: 8316 - components: - - pos: -33.5,-38.5 - parent: 6 - type: Transform - - uid: 8317 - components: - - pos: -6.5,-14.5 - parent: 6 - type: Transform - - uid: 8318 - components: - - pos: -6.5,-9.5 - parent: 6 - type: Transform - - uid: 8319 - components: - - pos: -13.5,1.5 - parent: 6 - type: Transform - - uid: 8320 - components: - - pos: -41.5,-8.5 - parent: 6 - type: Transform - - uid: 8321 - components: - - pos: -33.5,6.5 - parent: 6 - type: Transform - - uid: 8322 - components: - - pos: -29.5,6.5 - parent: 6 - type: Transform - - uid: 8324 - components: - - pos: 12.5,11.5 - parent: 6 - type: Transform - - uid: 8325 - components: - - pos: 17.5,11.5 - parent: 6 - type: Transform - - uid: 9758 - components: - - pos: -24.5,-47.5 - parent: 6 - type: Transform -- proto: AirlockMaintMedLocked - entities: - - uid: 3653 - components: - - pos: -40.5,-22.5 - parent: 6 - type: Transform - - uid: 8331 - components: - - pos: -29.5,-28.5 - parent: 6 - type: Transform - - uid: 8332 - components: - - pos: -23.5,-34.5 - parent: 6 - type: Transform -- proto: AirlockMaintRnDLocked - entities: - - uid: 1262 - components: - - pos: -0.5,-55.5 - parent: 6 - type: Transform - - uid: 5372 - components: - - pos: -18.5,-53.5 - parent: 6 - type: Transform - - uid: 5373 - components: - - pos: -4.5,-53.5 - parent: 6 - type: Transform -- proto: AirlockMaintSalvageLocked - entities: - - uid: 3043 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-47.5 - parent: 6 - type: Transform - - uid: 3180 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-48.5 - parent: 6 - type: Transform - - uid: 8329 - components: - - pos: 1.5,-48.5 - parent: 6 - type: Transform -- proto: AirlockMaintSecLocked - entities: - - uid: 8326 - components: - - pos: 18.5,-4.5 - parent: 6 - type: Transform -- proto: AirlockMaintTheatreLocked - entities: - - uid: 5637 - components: - - pos: 16.5,-25.5 - parent: 6 - type: Transform - - uid: 8327 - components: - - pos: 13.5,-22.5 - parent: 6 - type: Transform -- proto: AirlockMedicalGlass - entities: - - uid: 5557 - components: - - pos: -19.5,-17.5 - parent: 6 - type: Transform - - uid: 5558 - components: - - pos: -18.5,-17.5 - parent: 6 - type: Transform -- proto: AirlockMedicalGlassLocked - entities: - - uid: 3389 - components: - - pos: -27.5,-22.5 - parent: 6 - type: Transform - - uid: 4810 - components: - - pos: -22.5,-27.5 - parent: 6 - type: Transform - - uid: 4811 - components: - - pos: -25.5,-23.5 - parent: 6 - type: Transform - - uid: 4812 - components: - - pos: -24.5,-23.5 - parent: 6 - type: Transform - - uid: 4813 - components: - - pos: -17.5,-24.5 - parent: 6 - type: Transform - - uid: 4826 - components: - - pos: -29.5,-19.5 - parent: 6 - type: Transform - - uid: 4827 - components: - - pos: -29.5,-23.5 - parent: 6 - type: Transform - - uid: 5531 - components: - - pos: -27.5,-20.5 - parent: 6 - type: Transform -- proto: AirlockMedicalLocked - entities: - - uid: 4828 - components: - - pos: -33.5,-19.5 - parent: 6 - type: Transform -- proto: AirlockQuartermasterGlassLocked - entities: - - uid: 5238 - components: - - pos: 11.5,-33.5 - parent: 6 - type: Transform -- proto: AirlockResearchDirectorGlassLocked - entities: - - uid: 5361 - components: - - pos: -1.5,-53.5 - parent: 6 - type: Transform -- proto: AirlockSalvageGlassLocked - entities: - - uid: 5284 - components: - - pos: 2.5,-46.5 - parent: 6 - type: Transform -- proto: AirlockScienceGlassLocked - entities: - - uid: 1478 - components: - - pos: -4.5,-80.5 - parent: 6 - type: Transform - - uid: 1479 - components: - - pos: -4.5,-81.5 - parent: 6 - type: Transform - - uid: 1480 - components: - - pos: -0.5,-72.5 - parent: 6 - type: Transform - - uid: 1481 - components: - - pos: -0.5,-70.5 - parent: 6 - type: Transform - - uid: 1482 - components: - - pos: -5.5,-71.5 - parent: 6 - type: Transform - - uid: 1483 - components: - - pos: -6.5,-71.5 - parent: 6 - type: Transform - - uid: 3688 - components: - - pos: -0.5,-81.5 - parent: 6 - type: Transform - - uid: 3689 - components: - - pos: -0.5,-80.5 - parent: 6 - type: Transform - - uid: 3690 - components: - - pos: 0.5,-78.5 - parent: 6 - type: Transform - - uid: 3691 - components: - - pos: 1.5,-78.5 - parent: 6 - type: Transform - - uid: 5370 - components: - - pos: -13.5,-52.5 - parent: 6 - type: Transform - - uid: 5371 - components: - - pos: -13.5,-53.5 - parent: 6 - type: Transform - - uid: 5510 - components: - - pos: -8.5,-74.5 - parent: 6 - type: Transform -- proto: AirlockScienceLocked - entities: - - uid: 1484 - components: - - pos: -6.5,-60.5 - parent: 6 - type: Transform - - uid: 1485 - components: - - pos: -5.5,-60.5 - parent: 6 - type: Transform - - uid: 4484 - components: - - pos: -6.5,-57.5 - parent: 6 - type: Transform - - uid: 4485 - components: - - pos: -5.5,-57.5 - parent: 6 - type: Transform - - uid: 5368 - components: - - pos: -7.5,-53.5 - parent: 6 - type: Transform - - uid: 5369 - components: - - pos: -7.5,-49.5 - parent: 6 - type: Transform -- proto: AirlockSecurityGlassLocked - entities: - - uid: 4684 - components: - - pos: 11.5,-3.5 - parent: 6 - type: Transform - - uid: 4685 - components: - - pos: 15.5,10.5 - parent: 6 - type: Transform - - uid: 4686 - components: - - pos: 14.5,10.5 - parent: 6 - type: Transform - - uid: 4687 - components: - - pos: 14.5,13.5 - parent: 6 - type: Transform - - uid: 4688 - components: - - pos: 15.5,13.5 - parent: 6 - type: Transform - - uid: 4689 - components: - - pos: 15.5,17.5 - parent: 6 - type: Transform - - uid: 4690 - components: - - pos: 14.5,17.5 - parent: 6 - type: Transform - - uid: 4693 - components: - - pos: 10.5,0.5 - parent: 6 - type: Transform - - uid: 4694 - components: - - pos: 10.5,2.5 - parent: 6 - type: Transform - - uid: 4695 - components: - - pos: 16.5,-7.5 - parent: 6 - type: Transform - - uid: 4830 - components: - - pos: -21.5,-30.5 - parent: 6 - type: Transform - - uid: 4831 - components: - - pos: -16.5,-32.5 - parent: 6 - type: Transform - - uid: 5582 - components: - - pos: -49.5,-46.5 - parent: 6 - type: Transform -- proto: AirlockServiceLocked - entities: - - uid: 7752 - components: - - pos: -23.5,-37.5 - parent: 6 - type: Transform -- proto: AirlockTheatreLocked - entities: - - uid: 5638 - components: - - pos: 13.5,-26.5 - parent: 6 - type: Transform -- proto: AltarSpawner - entities: - - uid: 4476 - components: - - pos: -33.5,-54.5 - parent: 6 - type: Transform -- proto: AMEController - entities: - - uid: 4894 - components: - - pos: -34.5,0.5 - parent: 6 - type: Transform -- proto: AnomalyScanner - entities: - - uid: 14285 - components: - - pos: 1.0719459,-75.33638 - parent: 6 - type: Transform -- proto: APCBasic - entities: - - uid: 5153 - components: - - pos: 26.5,0.5 - parent: 6 - type: Transform - - uid: 6046 - components: - - rot: 3.141592653589793 rad - pos: 16.5,17.5 - parent: 6 - type: Transform - - uid: 8551 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,14.5 - parent: 6 - type: Transform - - uid: 8668 - components: - - pos: -33.5,-0.5 - parent: 6 - type: Transform - - uid: 8719 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,1.5 - parent: 6 - type: Transform - - uid: 8769 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-15.5 - parent: 6 - type: Transform - - uid: 8915 - components: - - rot: 3.141592653589793 rad - pos: -6.5,5.5 - parent: 6 - type: Transform - - uid: 8996 - components: - - pos: -3.5,-4.5 - parent: 6 - type: Transform - - uid: 9086 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,2.5 - parent: 6 - type: Transform - - uid: 9282 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-19.5 - parent: 6 - type: Transform - - uid: 9482 - components: - - pos: 17.5,-33.5 - parent: 6 - type: Transform - - uid: 9483 - components: - - pos: 7.5,-46.5 - parent: 6 - type: Transform - - uid: 9535 - components: - - pos: -5.5,-53.5 - parent: 6 - type: Transform - - uid: 9630 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-70.5 - parent: 6 - type: Transform - - uid: 9701 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-36.5 - parent: 6 - type: Transform - - uid: 9759 - components: - - pos: -1.5,-18.5 - parent: 6 - type: Transform - - uid: 9760 - components: - - pos: -6.5,-22.5 - parent: 6 - type: Transform - - uid: 9865 - components: - - pos: -25.5,-19.5 - parent: 6 - type: Transform - - uid: 9936 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-31.5 - parent: 6 - type: Transform - - uid: 10004 - components: - - pos: -35.5,-19.5 - parent: 6 - type: Transform - - uid: 10045 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-32.5 - parent: 6 - type: Transform - - uid: 10206 - components: - - pos: -56.5,-40.5 - parent: 6 - type: Transform - - uid: 10214 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-51.5 - parent: 6 - type: Transform - - uid: 13745 - components: - - rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 13645 - type: Transform -- proto: APCElectronics - entities: - - uid: 6367 - components: - - pos: -34.561337,-4.242736 - parent: 6 - type: Transform - - uid: 6414 - components: - - pos: -46.367,-23.650623 - parent: 6 - type: Transform - - uid: 13400 - components: - - pos: 28.588854,-2.4873984 - parent: 6 - type: Transform -- proto: Ash - entities: - - uid: 7441 - components: - - pos: -28.470121,-54.3469 - parent: 6 - type: Transform -- proto: AsteroidRock - entities: - - uid: 219 - components: - - pos: -21.5,10.5 - parent: 6 - type: Transform - - uid: 1430 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-73.5 - parent: 6 - type: Transform - - uid: 1433 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-74.5 - parent: 6 - type: Transform - - uid: 1434 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-76.5 - parent: 6 - type: Transform - - uid: 1439 - components: - - pos: -47.5,-7.5 - parent: 6 - type: Transform - - uid: 1443 - components: - - pos: -62.5,-6.5 - parent: 6 - type: Transform - - uid: 1502 - components: - - pos: -61.5,-6.5 - parent: 6 - type: Transform - - uid: 1504 - components: - - pos: -69.5,-6.5 - parent: 6 - type: Transform - - uid: 1506 - components: - - pos: -53.5,-6.5 - parent: 6 - type: Transform - - uid: 1511 - components: - - pos: -73.5,-14.5 - parent: 6 - type: Transform - - uid: 1512 - components: - - pos: -73.5,-10.5 - parent: 6 - type: Transform - - uid: 1540 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,13.5 - parent: 6 - type: Transform - - uid: 1679 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,14.5 - parent: 6 - type: Transform - - uid: 1681 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,12.5 - parent: 6 - type: Transform - - uid: 1689 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,13.5 - parent: 6 - type: Transform - - uid: 2112 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,14.5 - parent: 6 - type: Transform - - uid: 2511 - components: - - pos: -61.5,-26.5 - parent: 6 - type: Transform - - uid: 2513 - components: - - pos: -61.5,-42.5 - parent: 6 - type: Transform - - uid: 2516 - components: - - pos: -60.5,-40.5 - parent: 6 - type: Transform - - uid: 2518 - components: - - pos: -61.5,-41.5 - parent: 6 - type: Transform - - uid: 2634 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-8.5 - parent: 6 - type: Transform - - uid: 2635 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-7.5 - parent: 6 - type: Transform - - uid: 2636 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-6.5 - parent: 6 - type: Transform - - uid: 2637 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-8.5 - parent: 6 - type: Transform - - uid: 2639 - components: - - pos: -60.5,-6.5 - parent: 6 - type: Transform - - uid: 2641 - components: - - pos: -18.5,12.5 - parent: 6 - type: Transform - - uid: 2642 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-6.5 - parent: 6 - type: Transform - - uid: 2644 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-7.5 - parent: 6 - type: Transform - - uid: 2645 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-6.5 - parent: 6 - type: Transform - - uid: 2646 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-8.5 - parent: 6 - type: Transform - - uid: 2650 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-7.5 - parent: 6 - type: Transform - - uid: 2651 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-6.5 - parent: 6 - type: Transform - - uid: 2654 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-7.5 - parent: 6 - type: Transform - - uid: 2656 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-7.5 - parent: 6 - type: Transform - - uid: 2658 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-7.5 - parent: 6 - type: Transform - - uid: 2659 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-8.5 - parent: 6 - type: Transform - - uid: 2660 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-7.5 - parent: 6 - type: Transform - - uid: 2662 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-7.5 - parent: 6 - type: Transform - - uid: 2664 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-6.5 - parent: 6 - type: Transform - - uid: 2665 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-6.5 - parent: 6 - type: Transform - - uid: 2666 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-6.5 - parent: 6 - type: Transform - - uid: 2667 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-5.5 - parent: 6 - type: Transform - - uid: 2668 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-4.5 - parent: 6 - type: Transform - - uid: 2669 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-3.5 - parent: 6 - type: Transform - - uid: 2670 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-3.5 - parent: 6 - type: Transform - - uid: 2671 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-3.5 - parent: 6 - type: Transform - - uid: 2672 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-2.5 - parent: 6 - type: Transform - - uid: 2673 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-1.5 - parent: 6 - type: Transform - - uid: 2674 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-2.5 - parent: 6 - type: Transform - - uid: 2675 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-1.5 - parent: 6 - type: Transform - - uid: 2676 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-0.5 - parent: 6 - type: Transform - - uid: 2677 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,0.5 - parent: 6 - type: Transform - - uid: 2678 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,1.5 - parent: 6 - type: Transform - - uid: 2679 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,2.5 - parent: 6 - type: Transform - - uid: 2680 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,3.5 - parent: 6 - type: Transform - - uid: 2681 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,4.5 - parent: 6 - type: Transform - - uid: 2682 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,5.5 - parent: 6 - type: Transform - - uid: 2683 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,5.5 - parent: 6 - type: Transform - - uid: 2684 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,4.5 - parent: 6 - type: Transform - - uid: 2685 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,3.5 - parent: 6 - type: Transform - - uid: 2687 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,1.5 - parent: 6 - type: Transform - - uid: 2688 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,0.5 - parent: 6 - type: Transform - - uid: 2689 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-0.5 - parent: 6 - type: Transform - - uid: 2691 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-2.5 - parent: 6 - type: Transform - - uid: 2692 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-3.5 - parent: 6 - type: Transform - - uid: 2693 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-3.5 - parent: 6 - type: Transform - - uid: 2695 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,5.5 - parent: 6 - type: Transform - - uid: 2697 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,6.5 - parent: 6 - type: Transform - - uid: 2701 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,6.5 - parent: 6 - type: Transform - - uid: 2702 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,7.5 - parent: 6 - type: Transform - - uid: 2703 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,6.5 - parent: 6 - type: Transform - - uid: 2704 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,7.5 - parent: 6 - type: Transform - - uid: 2705 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,8.5 - parent: 6 - type: Transform - - uid: 2706 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,9.5 - parent: 6 - type: Transform - - uid: 2707 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,10.5 - parent: 6 - type: Transform - - uid: 2708 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,11.5 - parent: 6 - type: Transform - - uid: 2709 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,7.5 - parent: 6 - type: Transform - - uid: 2710 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,8.5 - parent: 6 - type: Transform - - uid: 2711 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,9.5 - parent: 6 - type: Transform - - uid: 2712 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,10.5 - parent: 6 - type: Transform - - uid: 2713 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,11.5 - parent: 6 - type: Transform - - uid: 2714 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,12.5 - parent: 6 - type: Transform - - uid: 2715 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,13.5 - parent: 6 - type: Transform - - uid: 2716 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,14.5 - parent: 6 - type: Transform - - uid: 2717 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,14.5 - parent: 6 - type: Transform - - uid: 2718 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,15.5 - parent: 6 - type: Transform - - uid: 2719 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,16.5 - parent: 6 - type: Transform - - uid: 2720 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,17.5 - parent: 6 - type: Transform - - uid: 2721 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,18.5 - parent: 6 - type: Transform - - uid: 2722 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,15.5 - parent: 6 - type: Transform - - uid: 2723 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,16.5 - parent: 6 - type: Transform - - uid: 2724 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,17.5 - parent: 6 - type: Transform - - uid: 2725 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,18.5 - parent: 6 - type: Transform - - uid: 2726 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,19.5 - parent: 6 - type: Transform - - uid: 2727 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,20.5 - parent: 6 - type: Transform - - uid: 2728 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,21.5 - parent: 6 - type: Transform - - uid: 2729 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,11.5 - parent: 6 - type: Transform - - uid: 2730 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,12.5 - parent: 6 - type: Transform - - uid: 2731 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,13.5 - parent: 6 - type: Transform - - uid: 2732 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,14.5 - parent: 6 - type: Transform - - uid: 2733 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,15.5 - parent: 6 - type: Transform - - uid: 2734 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,16.5 - parent: 6 - type: Transform - - uid: 2735 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,17.5 - parent: 6 - type: Transform - - uid: 2736 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,18.5 - parent: 6 - type: Transform - - uid: 2737 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,19.5 - parent: 6 - type: Transform - - uid: 2738 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,20.5 - parent: 6 - type: Transform - - uid: 2739 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,21.5 - parent: 6 - type: Transform - - uid: 2740 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,22.5 - parent: 6 - type: Transform - - uid: 2741 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,12.5 - parent: 6 - type: Transform - - uid: 2742 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,13.5 - parent: 6 - type: Transform - - uid: 2744 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,15.5 - parent: 6 - type: Transform - - uid: 2746 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,17.5 - parent: 6 - type: Transform - - uid: 2747 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,18.5 - parent: 6 - type: Transform - - uid: 2748 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,19.5 - parent: 6 - type: Transform - - uid: 2749 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,20.5 - parent: 6 - type: Transform - - uid: 2750 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,21.5 - parent: 6 - type: Transform - - uid: 2751 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,22.5 - parent: 6 - type: Transform - - uid: 2752 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,23.5 - parent: 6 - type: Transform - - uid: 2753 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,23.5 - parent: 6 - type: Transform - - uid: 2754 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,24.5 - parent: 6 - type: Transform - - uid: 2755 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,25.5 - parent: 6 - type: Transform - - uid: 2756 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,26.5 - parent: 6 - type: Transform - - uid: 2757 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,27.5 - parent: 6 - type: Transform - - uid: 2759 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,25.5 - parent: 6 - type: Transform - - uid: 2760 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,26.5 - parent: 6 - type: Transform - - uid: 2761 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,27.5 - parent: 6 - type: Transform - - uid: 2762 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,28.5 - parent: 6 - type: Transform - - uid: 2763 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,29.5 - parent: 6 - type: Transform - - uid: 2764 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,27.5 - parent: 6 - type: Transform - - uid: 2765 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,26.5 - parent: 6 - type: Transform - - uid: 2766 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,25.5 - parent: 6 - type: Transform - - uid: 2767 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,24.5 - parent: 6 - type: Transform - - uid: 2768 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,28.5 - parent: 6 - type: Transform - - uid: 2769 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,29.5 - parent: 6 - type: Transform - - uid: 2770 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,31.5 - parent: 6 - type: Transform - - uid: 2771 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,32.5 - parent: 6 - type: Transform - - uid: 2772 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,33.5 - parent: 6 - type: Transform - - uid: 2773 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,25.5 - parent: 6 - type: Transform - - uid: 2774 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,26.5 - parent: 6 - type: Transform - - uid: 2775 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,27.5 - parent: 6 - type: Transform - - uid: 2776 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,28.5 - parent: 6 - type: Transform - - uid: 2777 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,29.5 - parent: 6 - type: Transform - - uid: 2778 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,30.5 - parent: 6 - type: Transform - - uid: 2779 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,31.5 - parent: 6 - type: Transform - - uid: 2780 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,32.5 - parent: 6 - type: Transform - - uid: 2781 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,33.5 - parent: 6 - type: Transform - - uid: 2782 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,25.5 - parent: 6 - type: Transform - - uid: 2783 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,26.5 - parent: 6 - type: Transform - - uid: 2784 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,27.5 - parent: 6 - type: Transform - - uid: 2785 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,28.5 - parent: 6 - type: Transform - - uid: 2786 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,29.5 - parent: 6 - type: Transform - - uid: 2787 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,30.5 - parent: 6 - type: Transform - - uid: 2788 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,31.5 - parent: 6 - type: Transform - - uid: 2789 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,32.5 - parent: 6 - type: Transform - - uid: 2790 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,33.5 - parent: 6 - type: Transform - - uid: 2791 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,25.5 - parent: 6 - type: Transform - - uid: 2792 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,26.5 - parent: 6 - type: Transform - - uid: 2794 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,28.5 - parent: 6 - type: Transform - - uid: 2795 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,29.5 - parent: 6 - type: Transform - - uid: 2796 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,30.5 - parent: 6 - type: Transform - - uid: 2797 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,31.5 - parent: 6 - type: Transform - - uid: 2798 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,32.5 - parent: 6 - type: Transform - - uid: 2799 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,33.5 - parent: 6 - type: Transform - - uid: 2800 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,25.5 - parent: 6 - type: Transform - - uid: 2801 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,26.5 - parent: 6 - type: Transform - - uid: 2802 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,27.5 - parent: 6 - type: Transform - - uid: 2803 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,28.5 - parent: 6 - type: Transform - - uid: 2804 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,29.5 - parent: 6 - type: Transform - - uid: 2805 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,30.5 - parent: 6 - type: Transform - - uid: 2806 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,31.5 - parent: 6 - type: Transform - - uid: 2807 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,32.5 - parent: 6 - type: Transform - - uid: 2808 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,33.5 - parent: 6 - type: Transform - - uid: 2809 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,25.5 - parent: 6 - type: Transform - - uid: 2810 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,26.5 - parent: 6 - type: Transform - - uid: 2811 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,27.5 - parent: 6 - type: Transform - - uid: 2812 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,28.5 - parent: 6 - type: Transform - - uid: 2813 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,29.5 - parent: 6 - type: Transform - - uid: 2815 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,34.5 - parent: 6 - type: Transform - - uid: 2816 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,35.5 - parent: 6 - type: Transform - - uid: 2817 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,34.5 - parent: 6 - type: Transform - - uid: 2818 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,35.5 - parent: 6 - type: Transform - - uid: 2819 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,26.5 - parent: 6 - type: Transform - - uid: 2820 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,25.5 - parent: 6 - type: Transform - - uid: 2822 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,26.5 - parent: 6 - type: Transform - - uid: 2823 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,25.5 - parent: 6 - type: Transform - - uid: 2825 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,26.5 - parent: 6 - type: Transform - - uid: 2826 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,25.5 - parent: 6 - type: Transform - - uid: 2828 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,26.5 - parent: 6 - type: Transform - - uid: 2835 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,25.5 - parent: 6 - type: Transform - - uid: 2836 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,26.5 - parent: 6 - type: Transform - - uid: 2837 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,25.5 - parent: 6 - type: Transform - - uid: 2838 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,26.5 - parent: 6 - type: Transform - - uid: 2839 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,27.5 - parent: 6 - type: Transform - - uid: 2840 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,28.5 - parent: 6 - type: Transform - - uid: 2841 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,29.5 - parent: 6 - type: Transform - - uid: 2842 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,30.5 - parent: 6 - type: Transform - - uid: 2843 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,29.5 - parent: 6 - type: Transform - - uid: 2844 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,28.5 - parent: 6 - type: Transform - - uid: 2845 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,27.5 - parent: 6 - type: Transform - - uid: 2846 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,28.5 - parent: 6 - type: Transform - - uid: 2847 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,27.5 - parent: 6 - type: Transform - - uid: 2848 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,30.5 - parent: 6 - type: Transform - - uid: 2849 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,29.5 - parent: 6 - type: Transform - - uid: 2850 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,28.5 - parent: 6 - type: Transform - - uid: 2851 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,31.5 - parent: 6 - type: Transform - - uid: 2852 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,26.5 - parent: 6 - type: Transform - - uid: 2853 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,25.5 - parent: 6 - type: Transform - - uid: 2854 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,26.5 - parent: 6 - type: Transform - - uid: 2855 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,25.5 - parent: 6 - type: Transform - - uid: 2856 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,24.5 - parent: 6 - type: Transform - - uid: 2857 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,23.5 - parent: 6 - type: Transform - - uid: 2858 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,22.5 - parent: 6 - type: Transform - - uid: 2936 - components: - - pos: 9.5,-55.5 - parent: 6 - type: Transform - - uid: 2937 - components: - - pos: 10.5,-55.5 - parent: 6 - type: Transform - - uid: 2938 - components: - - rot: 3.141592653589793 rad - pos: -69.5,-7.5 - parent: 6 - type: Transform - - uid: 2939 - components: - - pos: 23.5,-41.5 - parent: 6 - type: Transform - - uid: 2940 - components: - - rot: 3.141592653589793 rad - pos: -70.5,-7.5 - parent: 6 - type: Transform - - uid: 2941 - components: - - pos: 23.5,-31.5 - parent: 6 - type: Transform - - uid: 2942 - components: - - rot: 3.141592653589793 rad - pos: -71.5,-7.5 - parent: 6 - type: Transform - - uid: 2943 - components: - - rot: 3.141592653589793 rad - pos: -71.5,-8.5 - parent: 6 - type: Transform - - uid: 2944 - components: - - rot: 3.141592653589793 rad - pos: -72.5,-9.5 - parent: 6 - type: Transform - - uid: 2945 - components: - - rot: 3.141592653589793 rad - pos: -72.5,-10.5 - parent: 6 - type: Transform - - uid: 2946 - components: - - pos: 21.5,-26.5 - parent: 6 - type: Transform - - uid: 2949 - components: - - rot: 3.141592653589793 rad - pos: -73.5,-11.5 - parent: 6 - type: Transform - - uid: 2950 - components: - - rot: 3.141592653589793 rad - pos: -73.5,-12.5 - parent: 6 - type: Transform - - uid: 2951 - components: - - rot: 3.141592653589793 rad - pos: -73.5,-13.5 - parent: 6 - type: Transform - - uid: 2952 - components: - - rot: 3.141592653589793 rad - pos: -72.5,-14.5 - parent: 6 - type: Transform - - uid: 2977 - components: - - pos: -59.5,-39.5 - parent: 6 - type: Transform - - uid: 2978 - components: - - pos: -60.5,-45.5 - parent: 6 - type: Transform - - uid: 3130 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,11.5 - parent: 6 - type: Transform - - uid: 3131 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,11.5 - parent: 6 - type: Transform - - uid: 3138 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,11.5 - parent: 6 - type: Transform - - uid: 3139 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,10.5 - parent: 6 - type: Transform - - uid: 3142 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,10.5 - parent: 6 - type: Transform - - uid: 3143 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,10.5 - parent: 6 - type: Transform - - uid: 3150 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,10.5 - parent: 6 - type: Transform - - uid: 3154 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,12.5 - parent: 6 - type: Transform - - uid: 3155 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,11.5 - parent: 6 - type: Transform - - uid: 3187 - components: - - pos: 28.5,12.5 - parent: 6 - type: Transform - - uid: 3193 - components: - - pos: -41.5,25.5 - parent: 6 - type: Transform - - uid: 3194 - components: - - pos: -45.5,21.5 - parent: 6 - type: Transform - - uid: 3195 - components: - - pos: -45.5,22.5 - parent: 6 - type: Transform - - uid: 3196 - components: - - pos: -45.5,23.5 - parent: 6 - type: Transform - - uid: 3197 - components: - - pos: -45.5,24.5 - parent: 6 - type: Transform - - uid: 3198 - components: - - pos: -45.5,25.5 - parent: 6 - type: Transform - - uid: 3199 - components: - - pos: -44.5,21.5 - parent: 6 - type: Transform - - uid: 3200 - components: - - pos: -44.5,22.5 - parent: 6 - type: Transform - - uid: 3202 - components: - - pos: -44.5,24.5 - parent: 6 - type: Transform - - uid: 3203 - components: - - pos: -44.5,25.5 - parent: 6 - type: Transform - - uid: 3204 - components: - - pos: -43.5,21.5 - parent: 6 - type: Transform - - uid: 3205 - components: - - pos: -43.5,22.5 - parent: 6 - type: Transform - - uid: 3206 - components: - - pos: -43.5,23.5 - parent: 6 - type: Transform - - uid: 3208 - components: - - pos: -43.5,25.5 - parent: 6 - type: Transform - - uid: 3209 - components: - - pos: -42.5,21.5 - parent: 6 - type: Transform - - uid: 3210 - components: - - pos: -42.5,22.5 - parent: 6 - type: Transform - - uid: 3211 - components: - - pos: -42.5,23.5 - parent: 6 - type: Transform - - uid: 3212 - components: - - pos: -42.5,24.5 - parent: 6 - type: Transform - - uid: 3213 - components: - - pos: -42.5,25.5 - parent: 6 - type: Transform - - uid: 3214 - components: - - pos: -41.5,21.5 - parent: 6 - type: Transform - - uid: 3215 - components: - - pos: -41.5,22.5 - parent: 6 - type: Transform - - uid: 3216 - components: - - pos: -41.5,23.5 - parent: 6 - type: Transform - - uid: 3217 - components: - - pos: -41.5,24.5 - parent: 6 - type: Transform - - uid: 3218 - components: - - pos: -46.5,25.5 - parent: 6 - type: Transform - - uid: 3219 - components: - - pos: -45.5,26.5 - parent: 6 - type: Transform - - uid: 3220 - components: - - pos: -45.5,27.5 - parent: 6 - type: Transform - - uid: 3221 - components: - - pos: -45.5,28.5 - parent: 6 - type: Transform - - uid: 3222 - components: - - pos: -44.5,26.5 - parent: 6 - type: Transform - - uid: 3223 - components: - - pos: -44.5,27.5 - parent: 6 - type: Transform - - uid: 3224 - components: - - pos: -44.5,28.5 - parent: 6 - type: Transform - - uid: 3225 - components: - - pos: -43.5,26.5 - parent: 6 - type: Transform - - uid: 3226 - components: - - pos: -43.5,27.5 - parent: 6 - type: Transform - - uid: 3227 - components: - - pos: -43.5,28.5 - parent: 6 - type: Transform - - uid: 3228 - components: - - pos: -42.5,26.5 - parent: 6 - type: Transform - - uid: 3230 - components: - - pos: -42.5,28.5 - parent: 6 - type: Transform - - uid: 3231 - components: - - pos: -41.5,26.5 - parent: 6 - type: Transform - - uid: 3232 - components: - - pos: -41.5,27.5 - parent: 6 - type: Transform - - uid: 3233 - components: - - pos: -41.5,28.5 - parent: 6 - type: Transform - - uid: 3234 - components: - - pos: -40.5,26.5 - parent: 6 - type: Transform - - uid: 3235 - components: - - pos: -40.5,27.5 - parent: 6 - type: Transform - - uid: 3236 - components: - - pos: -40.5,28.5 - parent: 6 - type: Transform - - uid: 3237 - components: - - pos: -39.5,26.5 - parent: 6 - type: Transform - - uid: 3238 - components: - - pos: -39.5,27.5 - parent: 6 - type: Transform - - uid: 3239 - components: - - pos: -39.5,28.5 - parent: 6 - type: Transform - - uid: 3240 - components: - - pos: -43.5,29.5 - parent: 6 - type: Transform - - uid: 3241 - components: - - pos: -42.5,29.5 - parent: 6 - type: Transform - - uid: 3242 - components: - - pos: -41.5,29.5 - parent: 6 - type: Transform - - uid: 3243 - components: - - pos: -40.5,29.5 - parent: 6 - type: Transform - - uid: 3244 - components: - - pos: -39.5,29.5 - parent: 6 - type: Transform - - uid: 3245 - components: - - pos: -38.5,29.5 - parent: 6 - type: Transform - - uid: 3246 - components: - - pos: -37.5,29.5 - parent: 6 - type: Transform - - uid: 3247 - components: - - pos: -39.5,30.5 - parent: 6 - type: Transform - - uid: 3248 - components: - - pos: -38.5,30.5 - parent: 6 - type: Transform - - uid: 3249 - components: - - pos: -37.5,30.5 - parent: 6 - type: Transform - - uid: 3250 - components: - - pos: -36.5,30.5 - parent: 6 - type: Transform - - uid: 3251 - components: - - pos: -35.5,30.5 - parent: 6 - type: Transform - - uid: 3252 - components: - - pos: -36.5,31.5 - parent: 6 - type: Transform - - uid: 3253 - components: - - pos: -35.5,31.5 - parent: 6 - type: Transform - - uid: 3254 - components: - - pos: -34.5,31.5 - parent: 6 - type: Transform - - uid: 3255 - components: - - pos: -33.5,31.5 - parent: 6 - type: Transform - - uid: 3256 - components: - - pos: -32.5,31.5 - parent: 6 - type: Transform - - uid: 3257 - components: - - pos: -31.5,31.5 - parent: 6 - type: Transform - - uid: 3258 - components: - - pos: -37.5,31.5 - parent: 6 - type: Transform - - uid: 3259 - components: - - pos: -32.5,32.5 - parent: 6 - type: Transform - - uid: 3260 - components: - - pos: -30.5,31.5 - parent: 6 - type: Transform - - uid: 3261 - components: - - pos: -30.5,30.5 - parent: 6 - type: Transform - - uid: 3262 - components: - - pos: -30.5,29.5 - parent: 6 - type: Transform - - uid: 3263 - components: - - pos: -29.5,31.5 - parent: 6 - type: Transform - - uid: 3264 - components: - - pos: -29.5,30.5 - parent: 6 - type: Transform - - uid: 3265 - components: - - pos: -29.5,29.5 - parent: 6 - type: Transform - - uid: 3266 - components: - - pos: -28.5,30.5 - parent: 6 - type: Transform - - uid: 3267 - components: - - pos: -28.5,29.5 - parent: 6 - type: Transform - - uid: 3268 - components: - - pos: -28.5,28.5 - parent: 6 - type: Transform - - uid: 3269 - components: - - pos: -27.5,30.5 - parent: 6 - type: Transform - - uid: 3270 - components: - - pos: -27.5,29.5 - parent: 6 - type: Transform - - uid: 3271 - components: - - pos: -27.5,28.5 - parent: 6 - type: Transform - - uid: 3272 - components: - - pos: -28.5,27.5 - parent: 6 - type: Transform - - uid: 3273 - components: - - pos: -28.5,26.5 - parent: 6 - type: Transform - - uid: 3274 - components: - - pos: -27.5,27.5 - parent: 6 - type: Transform - - uid: 3275 - components: - - pos: -27.5,26.5 - parent: 6 - type: Transform - - uid: 3276 - components: - - pos: -26.5,27.5 - parent: 6 - type: Transform - - uid: 3277 - components: - - pos: -26.5,26.5 - parent: 6 - type: Transform - - uid: 3278 - components: - - pos: -25.5,27.5 - parent: 6 - type: Transform - - uid: 3279 - components: - - pos: -25.5,26.5 - parent: 6 - type: Transform - - uid: 3280 - components: - - pos: -24.5,27.5 - parent: 6 - type: Transform - - uid: 3281 - components: - - pos: -24.5,26.5 - parent: 6 - type: Transform - - uid: 3282 - components: - - pos: -23.5,27.5 - parent: 6 - type: Transform - - uid: 3283 - components: - - pos: -23.5,26.5 - parent: 6 - type: Transform - - uid: 3284 - components: - - pos: -22.5,27.5 - parent: 6 - type: Transform - - uid: 3285 - components: - - pos: -22.5,26.5 - parent: 6 - type: Transform - - uid: 3288 - components: - - pos: -24.5,28.5 - parent: 6 - type: Transform - - uid: 3289 - components: - - pos: -23.5,28.5 - parent: 6 - type: Transform - - uid: 3290 - components: - - pos: -22.5,28.5 - parent: 6 - type: Transform - - uid: 3291 - components: - - pos: -22.5,29.5 - parent: 6 - type: Transform - - uid: 3292 - components: - - pos: -23.5,29.5 - parent: 6 - type: Transform - - uid: 3293 - components: - - pos: -24.5,29.5 - parent: 6 - type: Transform - - uid: 3294 - components: - - pos: -25.5,29.5 - parent: 6 - type: Transform - - uid: 3295 - components: - - pos: -26.5,29.5 - parent: 6 - type: Transform - - uid: 3296 - components: - - pos: -21.5,28.5 - parent: 6 - type: Transform - - uid: 3297 - components: - - pos: -21.5,27.5 - parent: 6 - type: Transform - - uid: 3298 - components: - - pos: -21.5,26.5 - parent: 6 - type: Transform - - uid: 3299 - components: - - pos: -21.5,25.5 - parent: 6 - type: Transform - - uid: 3300 - components: - - pos: -21.5,24.5 - parent: 6 - type: Transform - - uid: 3301 - components: - - pos: -21.5,23.5 - parent: 6 - type: Transform - - uid: 3302 - components: - - pos: -23.5,25.5 - parent: 6 - type: Transform - - uid: 3303 - components: - - pos: -23.5,24.5 - parent: 6 - type: Transform - - uid: 3304 - components: - - pos: -23.5,23.5 - parent: 6 - type: Transform - - uid: 3305 - components: - - pos: -23.5,22.5 - parent: 6 - type: Transform - - uid: 3306 - components: - - pos: -23.5,21.5 - parent: 6 - type: Transform - - uid: 3307 - components: - - pos: -22.5,25.5 - parent: 6 - type: Transform - - uid: 3309 - components: - - pos: -22.5,23.5 - parent: 6 - type: Transform - - uid: 3310 - components: - - pos: -22.5,22.5 - parent: 6 - type: Transform - - uid: 3311 - components: - - pos: -22.5,21.5 - parent: 6 - type: Transform - - uid: 3312 - components: - - pos: -21.5,22.5 - parent: 6 - type: Transform - - uid: 3313 - components: - - pos: -21.5,21.5 - parent: 6 - type: Transform - - uid: 3314 - components: - - pos: -21.5,20.5 - parent: 6 - type: Transform - - uid: 3315 - components: - - pos: -21.5,19.5 - parent: 6 - type: Transform - - uid: 3316 - components: - - pos: -20.5,22.5 - parent: 6 - type: Transform - - uid: 3317 - components: - - pos: -20.5,21.5 - parent: 6 - type: Transform - - uid: 3318 - components: - - pos: -20.5,20.5 - parent: 6 - type: Transform - - uid: 3319 - components: - - pos: -20.5,19.5 - parent: 6 - type: Transform - - uid: 3320 - components: - - pos: -22.5,19.5 - parent: 6 - type: Transform - - uid: 3321 - components: - - pos: -22.5,20.5 - parent: 6 - type: Transform - - uid: 3322 - components: - - pos: -23.5,20.5 - parent: 6 - type: Transform - - uid: 3385 - components: - - pos: 2.5,10.5 - parent: 6 - type: Transform - - uid: 3386 - components: - - pos: 2.5,11.5 - parent: 6 - type: Transform - - uid: 3387 - components: - - pos: 3.5,10.5 - parent: 6 - type: Transform - - uid: 3430 - components: - - pos: -22.5,18.5 - parent: 6 - type: Transform - - uid: 3431 - components: - - pos: -22.5,17.5 - parent: 6 - type: Transform - - uid: 3432 - components: - - pos: -22.5,16.5 - parent: 6 - type: Transform - - uid: 3433 - components: - - pos: -21.5,18.5 - parent: 6 - type: Transform - - uid: 3434 - components: - - pos: -21.5,17.5 - parent: 6 - type: Transform - - uid: 3435 - components: - - pos: -21.5,16.5 - parent: 6 - type: Transform - - uid: 3436 - components: - - pos: -29.5,28.5 - parent: 6 - type: Transform - - uid: 3613 - components: - - pos: -12.5,-78.5 - parent: 6 - type: Transform - - uid: 3614 - components: - - pos: -12.5,-79.5 - parent: 6 - type: Transform - - uid: 3615 - components: - - pos: -12.5,-80.5 - parent: 6 - type: Transform - - uid: 3616 - components: - - pos: -11.5,-79.5 - parent: 6 - type: Transform - - uid: 3617 - components: - - pos: -11.5,-80.5 - parent: 6 - type: Transform - - uid: 3619 - components: - - pos: -10.5,-80.5 - parent: 6 - type: Transform - - uid: 3620 - components: - - pos: -9.5,-79.5 - parent: 6 - type: Transform - - uid: 3621 - components: - - pos: -9.5,-80.5 - parent: 6 - type: Transform - - uid: 3622 - components: - - pos: -11.5,-81.5 - parent: 6 - type: Transform - - uid: 3623 - components: - - pos: -10.5,-81.5 - parent: 6 - type: Transform - - uid: 3624 - components: - - pos: -9.5,-81.5 - parent: 6 - type: Transform - - uid: 3625 - components: - - pos: -9.5,-82.5 - parent: 6 - type: Transform - - uid: 3626 - components: - - pos: -13.5,-78.5 - parent: 6 - type: Transform - - uid: 3628 - components: - - pos: -13.5,-76.5 - parent: 6 - type: Transform - - uid: 3629 - components: - - pos: -13.5,-77.5 - parent: 6 - type: Transform - - uid: 3630 - components: - - pos: -14.5,-77.5 - parent: 6 - type: Transform - - uid: 3631 - components: - - pos: -14.5,-76.5 - parent: 6 - type: Transform - - uid: 3632 - components: - - pos: -14.5,-75.5 - parent: 6 - type: Transform - - uid: 3633 - components: - - pos: -14.5,-73.5 - parent: 6 - type: Transform - - uid: 3634 - components: - - pos: -14.5,-72.5 - parent: 6 - type: Transform - - uid: 3636 - components: - - pos: -13.5,-73.5 - parent: 6 - type: Transform - - uid: 3637 - components: - - pos: -13.5,-72.5 - parent: 6 - type: Transform - - uid: 3638 - components: - - pos: -13.5,-71.5 - parent: 6 - type: Transform - - uid: 3640 - components: - - pos: -12.5,-70.5 - parent: 6 - type: Transform - - uid: 3715 - components: - - pos: -9.5,-64.5 - parent: 6 - type: Transform - - uid: 3716 - components: - - pos: -10.5,-64.5 - parent: 6 - type: Transform - - uid: 3717 - components: - - pos: -10.5,-63.5 - parent: 6 - type: Transform - - uid: 3718 - components: - - pos: -10.5,-62.5 - parent: 6 - type: Transform - - uid: 3719 - components: - - pos: -10.5,-61.5 - parent: 6 - type: Transform - - uid: 3720 - components: - - pos: -11.5,-63.5 - parent: 6 - type: Transform - - uid: 3723 - components: - - pos: -12.5,-63.5 - parent: 6 - type: Transform - - uid: 3724 - components: - - pos: -12.5,-62.5 - parent: 6 - type: Transform - - uid: 3726 - components: - - pos: -13.5,-63.5 - parent: 6 - type: Transform - - uid: 3727 - components: - - pos: -13.5,-62.5 - parent: 6 - type: Transform - - uid: 3731 - components: - - pos: -14.5,-63.5 - parent: 6 - type: Transform - - uid: 3732 - components: - - pos: -14.5,-62.5 - parent: 6 - type: Transform - - uid: 3733 - components: - - pos: -14.5,-61.5 - parent: 6 - type: Transform - - uid: 3734 - components: - - pos: -15.5,-63.5 - parent: 6 - type: Transform - - uid: 3736 - components: - - pos: -15.5,-61.5 - parent: 6 - type: Transform - - uid: 3737 - components: - - pos: -16.5,-63.5 - parent: 6 - type: Transform - - uid: 3738 - components: - - pos: -16.5,-62.5 - parent: 6 - type: Transform - - uid: 3739 - components: - - pos: -16.5,-61.5 - parent: 6 - type: Transform - - uid: 3740 - components: - - pos: -17.5,-63.5 - parent: 6 - type: Transform - - uid: 3741 - components: - - pos: -17.5,-62.5 - parent: 6 - type: Transform - - uid: 3742 - components: - - pos: -17.5,-61.5 - parent: 6 - type: Transform - - uid: 3743 - components: - - pos: -18.5,-63.5 - parent: 6 - type: Transform - - uid: 3745 - components: - - pos: -18.5,-61.5 - parent: 6 - type: Transform - - uid: 3746 - components: - - pos: -19.5,-63.5 - parent: 6 - type: Transform - - uid: 3747 - components: - - pos: -19.5,-62.5 - parent: 6 - type: Transform - - uid: 3748 - components: - - pos: -19.5,-61.5 - parent: 6 - type: Transform - - uid: 3749 - components: - - pos: -18.5,-64.5 - parent: 6 - type: Transform - - uid: 3750 - components: - - pos: -19.5,-64.5 - parent: 6 - type: Transform - - uid: 3751 - components: - - pos: -20.5,-64.5 - parent: 6 - type: Transform - - uid: 3752 - components: - - pos: -20.5,-63.5 - parent: 6 - type: Transform - - uid: 3753 - components: - - pos: -20.5,-62.5 - parent: 6 - type: Transform - - uid: 3754 - components: - - pos: -20.5,-61.5 - parent: 6 - type: Transform - - uid: 3765 - components: - - pos: -26.5,-64.5 - parent: 6 - type: Transform - - uid: 3805 - components: - - pos: -39.5,-62.5 - parent: 6 - type: Transform - - uid: 3807 - components: - - pos: -40.5,-62.5 - parent: 6 - type: Transform - - uid: 3808 - components: - - pos: -40.5,-61.5 - parent: 6 - type: Transform - - uid: 3809 - components: - - pos: -41.5,-61.5 - parent: 6 - type: Transform - - uid: 3810 - components: - - pos: -41.5,-60.5 - parent: 6 - type: Transform - - uid: 3811 - components: - - pos: -42.5,-60.5 - parent: 6 - type: Transform - - uid: 3812 - components: - - pos: -43.5,-59.5 - parent: 6 - type: Transform - - uid: 3815 - components: - - pos: -42.5,-59.5 - parent: 6 - type: Transform - - uid: 3818 - components: - - pos: -41.5,-59.5 - parent: 6 - type: Transform - - uid: 3821 - components: - - pos: -44.5,-59.5 - parent: 6 - type: Transform - - uid: 3822 - components: - - pos: -44.5,-57.5 - parent: 6 - type: Transform - - uid: 3823 - components: - - pos: -44.5,-58.5 - parent: 6 - type: Transform - - uid: 3827 - components: - - pos: -44.5,-56.5 - parent: 6 - type: Transform - - uid: 3828 - components: - - pos: -45.5,-56.5 - parent: 6 - type: Transform - - uid: 3829 - components: - - pos: -46.5,-56.5 - parent: 6 - type: Transform - - uid: 3830 - components: - - pos: -47.5,-56.5 - parent: 6 - type: Transform - - uid: 3832 - components: - - pos: -48.5,-55.5 - parent: 6 - type: Transform - - uid: 3833 - components: - - pos: -48.5,-54.5 - parent: 6 - type: Transform - - uid: 3834 - components: - - pos: -49.5,-54.5 - parent: 6 - type: Transform - - uid: 3835 - components: - - pos: -50.5,-54.5 - parent: 6 - type: Transform - - uid: 3836 - components: - - pos: -51.5,-54.5 - parent: 6 - type: Transform - - uid: 3837 - components: - - pos: -52.5,-54.5 - parent: 6 - type: Transform - - uid: 3838 - components: - - pos: -53.5,-54.5 - parent: 6 - type: Transform - - uid: 3839 - components: - - pos: -54.5,-54.5 - parent: 6 - type: Transform - - uid: 3840 - components: - - pos: -54.5,-53.5 - parent: 6 - type: Transform - - uid: 3841 - components: - - pos: -54.5,-52.5 - parent: 6 - type: Transform - - uid: 3842 - components: - - pos: -54.5,-51.5 - parent: 6 - type: Transform - - uid: 3843 - components: - - pos: -54.5,-50.5 - parent: 6 - type: Transform - - uid: 3844 - components: - - pos: -55.5,-50.5 - parent: 6 - type: Transform - - uid: 3845 - components: - - pos: -56.5,-50.5 - parent: 6 - type: Transform - - uid: 3846 - components: - - pos: -56.5,-49.5 - parent: 6 - type: Transform - - uid: 3847 - components: - - pos: -57.5,-50.5 - parent: 6 - type: Transform - - uid: 3848 - components: - - pos: -57.5,-49.5 - parent: 6 - type: Transform - - uid: 3850 - components: - - pos: -59.5,-41.5 - parent: 6 - type: Transform - - uid: 3851 - components: - - pos: -58.5,-50.5 - parent: 6 - type: Transform - - uid: 3852 - components: - - pos: -58.5,-49.5 - parent: 6 - type: Transform - - uid: 3855 - components: - - pos: -52.5,-37.5 - parent: 6 - type: Transform - - uid: 3856 - components: - - pos: -52.5,-38.5 - parent: 6 - type: Transform - - uid: 3857 - components: - - pos: -52.5,-39.5 - parent: 6 - type: Transform - - uid: 3858 - components: - - pos: -53.5,-37.5 - parent: 6 - type: Transform - - uid: 3859 - components: - - pos: -53.5,-38.5 - parent: 6 - type: Transform - - uid: 3861 - components: - - pos: -54.5,-37.5 - parent: 6 - type: Transform - - uid: 3862 - components: - - pos: -54.5,-38.5 - parent: 6 - type: Transform - - uid: 3864 - components: - - pos: -55.5,-37.5 - parent: 6 - type: Transform - - uid: 3865 - components: - - pos: -55.5,-38.5 - parent: 6 - type: Transform - - uid: 3867 - components: - - pos: -56.5,-38.5 - parent: 6 - type: Transform - - uid: 3868 - components: - - pos: -56.5,-39.5 - parent: 6 - type: Transform - - uid: 3869 - components: - - pos: -57.5,-39.5 - parent: 6 - type: Transform - - uid: 3871 - components: - - pos: -60.5,-46.5 - parent: 6 - type: Transform - - uid: 3872 - components: - - pos: -58.5,-39.5 - parent: 6 - type: Transform - - uid: 3875 - components: - - pos: -64.5,-21.5 - parent: 6 - type: Transform - - uid: 3876 - components: - - pos: -64.5,-20.5 - parent: 6 - type: Transform - - uid: 3877 - components: - - pos: -64.5,-19.5 - parent: 6 - type: Transform - - uid: 3878 - components: - - pos: -65.5,-21.5 - parent: 6 - type: Transform - - uid: 3879 - components: - - pos: -65.5,-20.5 - parent: 6 - type: Transform - - uid: 3880 - components: - - pos: -65.5,-19.5 - parent: 6 - type: Transform - - uid: 3881 - components: - - pos: -66.5,-21.5 - parent: 6 - type: Transform - - uid: 3882 - components: - - pos: -66.5,-20.5 - parent: 6 - type: Transform - - uid: 3883 - components: - - pos: -66.5,-19.5 - parent: 6 - type: Transform - - uid: 3885 - components: - - pos: -67.5,-20.5 - parent: 6 - type: Transform - - uid: 3886 - components: - - pos: -67.5,-19.5 - parent: 6 - type: Transform - - uid: 3888 - components: - - pos: -68.5,-20.5 - parent: 6 - type: Transform - - uid: 3889 - components: - - pos: -68.5,-19.5 - parent: 6 - type: Transform - - uid: 3894 - components: - - pos: -69.5,-20.5 - parent: 6 - type: Transform - - uid: 3895 - components: - - pos: -69.5,-19.5 - parent: 6 - type: Transform - - uid: 3899 - components: - - pos: -72.5,-15.5 - parent: 6 - type: Transform - - uid: 3900 - components: - - pos: -72.5,-16.5 - parent: 6 - type: Transform - - uid: 3901 - components: - - pos: -71.5,-15.5 - parent: 6 - type: Transform - - uid: 3902 - components: - - pos: -71.5,-16.5 - parent: 6 - type: Transform - - uid: 3904 - components: - - pos: -70.5,-16.5 - parent: 6 - type: Transform - - uid: 3906 - components: - - pos: -69.5,-16.5 - parent: 6 - type: Transform - - uid: 3907 - components: - - pos: -68.5,-15.5 - parent: 6 - type: Transform - - uid: 3908 - components: - - pos: -68.5,-16.5 - parent: 6 - type: Transform - - uid: 3909 - components: - - pos: -70.5,-17.5 - parent: 6 - type: Transform - - uid: 3910 - components: - - pos: -70.5,-18.5 - parent: 6 - type: Transform - - uid: 3912 - components: - - pos: -69.5,-18.5 - parent: 6 - type: Transform - - uid: 3913 - components: - - pos: -68.5,-17.5 - parent: 6 - type: Transform - - uid: 3914 - components: - - pos: -68.5,-18.5 - parent: 6 - type: Transform - - uid: 3915 - components: - - pos: -45.5,-57.5 - parent: 6 - type: Transform - - uid: 3916 - components: - - pos: -45.5,-58.5 - parent: 6 - type: Transform - - uid: 3917 - components: - - pos: -46.5,-57.5 - parent: 6 - type: Transform - - uid: 3918 - components: - - pos: -46.5,-58.5 - parent: 6 - type: Transform - - uid: 3919 - components: - - pos: -47.5,-57.5 - parent: 6 - type: Transform - - uid: 3920 - components: - - pos: -47.5,-58.5 - parent: 6 - type: Transform - - uid: 3921 - components: - - pos: -48.5,-57.5 - parent: 6 - type: Transform - - uid: 3922 - components: - - pos: -48.5,-58.5 - parent: 6 - type: Transform - - uid: 3923 - components: - - pos: -49.5,-57.5 - parent: 6 - type: Transform - - uid: 3924 - components: - - pos: -49.5,-58.5 - parent: 6 - type: Transform - - uid: 3925 - components: - - pos: -50.5,-57.5 - parent: 6 - type: Transform - - uid: 3926 - components: - - pos: -50.5,-58.5 - parent: 6 - type: Transform - - uid: 3927 - components: - - pos: -49.5,-56.5 - parent: 6 - type: Transform - - uid: 3928 - components: - - pos: -49.5,-55.5 - parent: 6 - type: Transform - - uid: 3929 - components: - - pos: -50.5,-56.5 - parent: 6 - type: Transform - - uid: 3930 - components: - - pos: -61.5,-43.5 - parent: 6 - type: Transform - - uid: 3931 - components: - - pos: -51.5,-56.5 - parent: 6 - type: Transform - - uid: 3932 - components: - - pos: -51.5,-55.5 - parent: 6 - type: Transform - - uid: 3933 - components: - - pos: -52.5,-56.5 - parent: 6 - type: Transform - - uid: 3934 - components: - - pos: -52.5,-55.5 - parent: 6 - type: Transform - - uid: 3935 - components: - - pos: -53.5,-56.5 - parent: 6 - type: Transform - - uid: 3936 - components: - - pos: -53.5,-55.5 - parent: 6 - type: Transform - - uid: 3937 - components: - - pos: -54.5,-56.5 - parent: 6 - type: Transform - - uid: 3938 - components: - - pos: -54.5,-55.5 - parent: 6 - type: Transform - - uid: 3939 - components: - - pos: -52.5,-57.5 - parent: 6 - type: Transform - - uid: 3940 - components: - - pos: -53.5,-57.5 - parent: 6 - type: Transform - - uid: 3941 - components: - - pos: -55.5,-55.5 - parent: 6 - type: Transform - - uid: 3942 - components: - - pos: -55.5,-54.5 - parent: 6 - type: Transform - - uid: 3944 - components: - - pos: -56.5,-55.5 - parent: 6 - type: Transform - - uid: 3945 - components: - - pos: -56.5,-54.5 - parent: 6 - type: Transform - - uid: 3946 - components: - - pos: -56.5,-53.5 - parent: 6 - type: Transform - - uid: 3947 - components: - - pos: -57.5,-51.5 - parent: 6 - type: Transform - - uid: 3948 - components: - - pos: -56.5,-51.5 - parent: 6 - type: Transform - - uid: 3949 - components: - - pos: -55.5,-51.5 - parent: 6 - type: Transform - - uid: 3950 - components: - - pos: -55.5,-52.5 - parent: 6 - type: Transform - - uid: 3951 - components: - - pos: -56.5,-52.5 - parent: 6 - type: Transform - - uid: 3963 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-64.5 - parent: 6 - type: Transform - - uid: 3967 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-63.5 - parent: 6 - type: Transform - - uid: 3968 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-62.5 - parent: 6 - type: Transform - - uid: 3969 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-61.5 - parent: 6 - type: Transform - - uid: 3970 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-63.5 - parent: 6 - type: Transform - - uid: 3972 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-61.5 - parent: 6 - type: Transform - - uid: 3973 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-63.5 - parent: 6 - type: Transform - - uid: 3974 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-62.5 - parent: 6 - type: Transform - - uid: 3975 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-61.5 - parent: 6 - type: Transform - - uid: 3976 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-62.5 - parent: 6 - type: Transform - - uid: 3977 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-61.5 - parent: 6 - type: Transform - - uid: 4166 - components: - - pos: -59.5,-42.5 - parent: 6 - type: Transform - - uid: 4167 - components: - - pos: -59.5,-40.5 - parent: 6 - type: Transform - - uid: 4168 - components: - - pos: -61.5,-45.5 - parent: 6 - type: Transform - - uid: 4213 - components: - - pos: -59.5,-46.5 - parent: 6 - type: Transform - - uid: 4214 - components: - - pos: -60.5,-44.5 - parent: 6 - type: Transform - - uid: 4234 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-55.5 - parent: 6 - type: Transform - - uid: 4237 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-52.5 - parent: 6 - type: Transform - - uid: 4240 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-54.5 - parent: 6 - type: Transform - - uid: 4242 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-52.5 - parent: 6 - type: Transform - - uid: 4243 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-51.5 - parent: 6 - type: Transform - - uid: 4244 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-50.5 - parent: 6 - type: Transform - - uid: 4245 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-54.5 - parent: 6 - type: Transform - - uid: 4246 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-53.5 - parent: 6 - type: Transform - - uid: 4247 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-52.5 - parent: 6 - type: Transform - - uid: 4248 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-51.5 - parent: 6 - type: Transform - - uid: 4249 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-50.5 - parent: 6 - type: Transform - - uid: 4250 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-53.5 - parent: 6 - type: Transform - - uid: 4251 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-52.5 - parent: 6 - type: Transform - - uid: 4252 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-51.5 - parent: 6 - type: Transform - - uid: 4253 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-50.5 - parent: 6 - type: Transform - - uid: 4254 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-53.5 - parent: 6 - type: Transform - - uid: 4255 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-52.5 - parent: 6 - type: Transform - - uid: 4256 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-51.5 - parent: 6 - type: Transform - - uid: 4257 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-50.5 - parent: 6 - type: Transform - - uid: 4258 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-53.5 - parent: 6 - type: Transform - - uid: 4259 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-53.5 - parent: 6 - type: Transform - - uid: 4260 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-52.5 - parent: 6 - type: Transform - - uid: 4262 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-50.5 - parent: 6 - type: Transform - - uid: 4263 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-52.5 - parent: 6 - type: Transform - - uid: 4264 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-51.5 - parent: 6 - type: Transform - - uid: 4265 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-50.5 - parent: 6 - type: Transform - - uid: 4266 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-52.5 - parent: 6 - type: Transform - - uid: 4268 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-50.5 - parent: 6 - type: Transform - - uid: 4269 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-52.5 - parent: 6 - type: Transform - - uid: 4270 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-51.5 - parent: 6 - type: Transform - - uid: 4271 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-50.5 - parent: 6 - type: Transform - - uid: 4272 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-52.5 - parent: 6 - type: Transform - - uid: 4273 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-51.5 - parent: 6 - type: Transform - - uid: 4274 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-50.5 - parent: 6 - type: Transform - - uid: 4275 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-52.5 - parent: 6 - type: Transform - - uid: 4276 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-51.5 - parent: 6 - type: Transform - - uid: 4277 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-50.5 - parent: 6 - type: Transform - - uid: 4278 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-50.5 - parent: 6 - type: Transform - - uid: 4279 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-49.5 - parent: 6 - type: Transform - - uid: 4280 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-51.5 - parent: 6 - type: Transform - - uid: 4281 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-50.5 - parent: 6 - type: Transform - - uid: 4282 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-49.5 - parent: 6 - type: Transform - - uid: 4283 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-50.5 - parent: 6 - type: Transform - - uid: 4284 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-49.5 - parent: 6 - type: Transform - - uid: 4285 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-48.5 - parent: 6 - type: Transform - - uid: 4286 - components: - - pos: 21.5,-47.5 - parent: 6 - type: Transform - - uid: 4287 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-46.5 - parent: 6 - type: Transform - - uid: 4288 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-45.5 - parent: 6 - type: Transform - - uid: 4289 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-46.5 - parent: 6 - type: Transform - - uid: 4290 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-45.5 - parent: 6 - type: Transform - - uid: 4291 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-44.5 - parent: 6 - type: Transform - - uid: 4292 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-43.5 - parent: 6 - type: Transform - - uid: 4293 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-42.5 - parent: 6 - type: Transform - - uid: 4294 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-41.5 - parent: 6 - type: Transform - - uid: 4296 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-43.5 - parent: 6 - type: Transform - - uid: 4297 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-42.5 - parent: 6 - type: Transform - - uid: 4298 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-41.5 - parent: 6 - type: Transform - - uid: 4301 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-40.5 - parent: 6 - type: Transform - - uid: 4302 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-32.5 - parent: 6 - type: Transform - - uid: 4304 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-31.5 - parent: 6 - type: Transform - - uid: 4305 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-30.5 - parent: 6 - type: Transform - - uid: 4306 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-29.5 - parent: 6 - type: Transform - - uid: 4307 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-28.5 - parent: 6 - type: Transform - - uid: 4308 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-27.5 - parent: 6 - type: Transform - - uid: 4311 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-30.5 - parent: 6 - type: Transform - - uid: 4314 - components: - - pos: -12.5,12.5 - parent: 6 - type: Transform - - uid: 4315 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-26.5 - parent: 6 - type: Transform - - uid: 4316 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-25.5 - parent: 6 - type: Transform - - uid: 4317 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-24.5 - parent: 6 - type: Transform - - uid: 4320 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-24.5 - parent: 6 - type: Transform - - uid: 4321 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-18.5 - parent: 6 - type: Transform - - uid: 4322 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-17.5 - parent: 6 - type: Transform - - uid: 4323 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-16.5 - parent: 6 - type: Transform - - uid: 4325 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-18.5 - parent: 6 - type: Transform - - uid: 4326 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 - parent: 6 - type: Transform - - uid: 4327 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-16.5 - parent: 6 - type: Transform - - uid: 4328 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-15.5 - parent: 6 - type: Transform - - uid: 4329 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-17.5 - parent: 6 - type: Transform - - uid: 4330 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-16.5 - parent: 6 - type: Transform - - uid: 4331 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-15.5 - parent: 6 - type: Transform - - uid: 4332 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-14.5 - parent: 6 - type: Transform - - uid: 4333 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-16.5 - parent: 6 - type: Transform - - uid: 4334 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-15.5 - parent: 6 - type: Transform - - uid: 4335 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-14.5 - parent: 6 - type: Transform - - uid: 4336 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-14.5 - parent: 6 - type: Transform - - uid: 4337 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-14.5 - parent: 6 - type: Transform - - uid: 4338 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-14.5 - parent: 6 - type: Transform - - uid: 4339 - components: - - pos: 15.5,24.5 - parent: 6 - type: Transform - - uid: 4340 - components: - - pos: 16.5,24.5 - parent: 6 - type: Transform - - uid: 4341 - components: - - pos: 17.5,24.5 - parent: 6 - type: Transform - - uid: 4342 - components: - - pos: 18.5,24.5 - parent: 6 - type: Transform - - uid: 4349 - components: - - pos: 19.5,24.5 - parent: 6 - type: Transform - - uid: 4381 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,12.5 - parent: 6 - type: Transform - - uid: 4403 - components: - - pos: -19.5,12.5 - parent: 6 - type: Transform - - uid: 4455 - components: - - pos: 22.5,24.5 - parent: 6 - type: Transform - - uid: 4483 - components: - - pos: -20.5,12.5 - parent: 6 - type: Transform - - uid: 4525 - components: - - pos: -47.5,-4.5 - parent: 6 - type: Transform - - uid: 4526 - components: - - pos: -47.5,-5.5 - parent: 6 - type: Transform - - uid: 4527 - components: - - pos: -48.5,-5.5 - parent: 6 - type: Transform - - uid: 4595 - components: - - pos: -11.5,12.5 - parent: 6 - type: Transform - - uid: 4921 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,10.5 - parent: 6 - type: Transform - - uid: 4922 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,10.5 - parent: 6 - type: Transform - - uid: 4926 - components: - - pos: -21.5,9.5 - parent: 6 - type: Transform - - uid: 4931 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,9.5 - parent: 6 - type: Transform - - uid: 4932 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,10.5 - parent: 6 - type: Transform - - uid: 4939 - components: - - pos: 3.5,11.5 - parent: 6 - type: Transform - - uid: 4942 - components: - - pos: -20.5,9.5 - parent: 6 - type: Transform - - uid: 5177 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-74.5 - parent: 6 - type: Transform - - uid: 5449 - components: - - pos: -59.5,-48.5 - parent: 6 - type: Transform - - uid: 5450 - components: - - pos: -59.5,-47.5 - parent: 6 - type: Transform - - uid: 5451 - components: - - pos: -60.5,-26.5 - parent: 6 - type: Transform - - uid: 5452 - components: - - pos: -60.5,-41.5 - parent: 6 - type: Transform - - uid: 5453 - components: - - pos: -59.5,-25.5 - parent: 6 - type: Transform - - uid: 5465 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-75.5 - parent: 6 - type: Transform - - uid: 5561 - components: - - pos: -68.5,-6.5 - parent: 6 - type: Transform - - uid: 5562 - components: - - pos: -54.5,-6.5 - parent: 6 - type: Transform - - uid: 5721 - components: - - pos: 27.5,12.5 - parent: 6 - type: Transform - - uid: 5722 - components: - - pos: 26.5,12.5 - parent: 6 - type: Transform - - uid: 5723 - components: - - pos: 28.5,11.5 - parent: 6 - type: Transform - - uid: 5728 - components: - - pos: 25.5,12.5 - parent: 6 - type: Transform - - uid: 6181 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-63.5 - parent: 6 - type: Transform - - uid: 6182 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-63.5 - parent: 6 - type: Transform - - uid: 6183 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-63.5 - parent: 6 - type: Transform - - uid: 6460 - components: - - pos: -28.5,22.5 - parent: 6 - type: Transform - - uid: 6461 - components: - - pos: -28.5,21.5 - parent: 6 - type: Transform - - uid: 6462 - components: - - pos: -27.5,22.5 - parent: 6 - type: Transform - - uid: 6463 - components: - - pos: -27.5,21.5 - parent: 6 - type: Transform - - uid: 6464 - components: - - pos: -27.5,20.5 - parent: 6 - type: Transform - - uid: 6465 - components: - - pos: -28.5,20.5 - parent: 6 - type: Transform - - uid: 6466 - components: - - pos: -28.5,19.5 - parent: 6 - type: Transform - - uid: 6467 - components: - - pos: -34.5,30.5 - parent: 6 - type: Transform - - uid: 6468 - components: - - pos: -33.5,30.5 - parent: 6 - type: Transform - - uid: 6469 - components: - - pos: -29.5,27.5 - parent: 6 - type: Transform - - uid: 6470 - components: - - pos: -40.5,25.5 - parent: 6 - type: Transform - - uid: 6471 - components: - - pos: -40.5,24.5 - parent: 6 - type: Transform - - uid: 6472 - components: - - pos: -33.5,32.5 - parent: 6 - type: Transform - - uid: 6473 - components: - - pos: -34.5,32.5 - parent: 6 - type: Transform - - uid: 6474 - components: - - pos: -35.5,32.5 - parent: 6 - type: Transform - - uid: 6475 - components: - - pos: -36.5,32.5 - parent: 6 - type: Transform - - uid: 6606 - components: - - rot: 3.141592653589793 rad - pos: -28.5,-64.5 - parent: 6 - type: Transform - - uid: 6607 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-64.5 - parent: 6 - type: Transform - - uid: 7845 - components: - - pos: -38.5,-62.5 - parent: 6 - type: Transform - - uid: 7847 - components: - - pos: -37.5,-62.5 - parent: 6 - type: Transform - - uid: 7849 - components: - - pos: -36.5,-62.5 - parent: 6 - type: Transform - - uid: 7850 - components: - - pos: -29.5,-63.5 - parent: 6 - type: Transform - - uid: 7853 - components: - - pos: -26.5,-63.5 - parent: 6 - type: Transform - - uid: 7854 - components: - - pos: -27.5,-64.5 - parent: 6 - type: Transform - - uid: 8023 - components: - - pos: -54.5,-24.5 - parent: 6 - type: Transform - - uid: 8024 - components: - - pos: -54.5,-25.5 - parent: 6 - type: Transform - - uid: 8025 - components: - - pos: -54.5,-26.5 - parent: 6 - type: Transform - - uid: 8026 - components: - - pos: -54.5,-27.5 - parent: 6 - type: Transform - - uid: 8027 - components: - - pos: -54.5,-28.5 - parent: 6 - type: Transform - - uid: 8028 - components: - - pos: -54.5,-29.5 - parent: 6 - type: Transform - - uid: 8029 - components: - - pos: -55.5,-24.5 - parent: 6 - type: Transform - - uid: 8030 - components: - - pos: -55.5,-25.5 - parent: 6 - type: Transform - - uid: 8031 - components: - - pos: -55.5,-26.5 - parent: 6 - type: Transform - - uid: 8033 - components: - - pos: -55.5,-28.5 - parent: 6 - type: Transform - - uid: 8034 - components: - - pos: -55.5,-29.5 - parent: 6 - type: Transform - - uid: 8035 - components: - - pos: -56.5,-28.5 - parent: 6 - type: Transform - - uid: 8036 - components: - - pos: -57.5,-28.5 - parent: 6 - type: Transform - - uid: 8037 - components: - - pos: -57.5,-27.5 - parent: 6 - type: Transform - - uid: 8038 - components: - - pos: -56.5,-27.5 - parent: 6 - type: Transform - - uid: 8039 - components: - - pos: -56.5,-26.5 - parent: 6 - type: Transform - - uid: 8040 - components: - - pos: -56.5,-25.5 - parent: 6 - type: Transform - - uid: 8041 - components: - - pos: -56.5,-24.5 - parent: 6 - type: Transform - - uid: 8042 - components: - - pos: -57.5,-26.5 - parent: 6 - type: Transform - - uid: 8044 - components: - - pos: -57.5,-24.5 - parent: 6 - type: Transform - - uid: 8045 - components: - - pos: -58.5,-26.5 - parent: 6 - type: Transform - - uid: 8046 - components: - - pos: -58.5,-25.5 - parent: 6 - type: Transform - - uid: 8047 - components: - - pos: -58.5,-24.5 - parent: 6 - type: Transform - - uid: 8048 - components: - - pos: -59.5,-24.5 - parent: 6 - type: Transform - - uid: 8049 - components: - - pos: -59.5,-23.5 - parent: 6 - type: Transform - - uid: 8050 - components: - - pos: -59.5,-22.5 - parent: 6 - type: Transform - - uid: 8056 - components: - - pos: -20.5,10.5 - parent: 6 - type: Transform - - uid: 8058 - components: - - pos: -18.5,10.5 - parent: 6 - type: Transform - - uid: 8059 - components: - - pos: -18.5,11.5 - parent: 6 - type: Transform - - uid: 8065 - components: - - pos: -12.5,11.5 - parent: 6 - type: Transform - - uid: 8066 - components: - - pos: -12.5,10.5 - parent: 6 - type: Transform - - uid: 8068 - components: - - pos: -11.5,11.5 - parent: 6 - type: Transform - - uid: 8069 - components: - - pos: -10.5,11.5 - parent: 6 - type: Transform - - uid: 8070 - components: - - pos: -10.5,10.5 - parent: 6 - type: Transform - - uid: 8072 - components: - - pos: 1.5,11.5 - parent: 6 - type: Transform - - uid: 8077 - components: - - pos: -19.5,11.5 - parent: 6 - type: Transform - - uid: 8078 - components: - - pos: -20.5,11.5 - parent: 6 - type: Transform - - uid: 8079 - components: - - pos: -21.5,11.5 - parent: 6 - type: Transform - - uid: 8278 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,12.5 - parent: 6 - type: Transform - - uid: 8279 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,12.5 - parent: 6 - type: Transform - - uid: 8280 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,12.5 - parent: 6 - type: Transform - - uid: 8281 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,12.5 - parent: 6 - type: Transform - - uid: 8282 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,11.5 - parent: 6 - type: Transform - - uid: 8284 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,11.5 - parent: 6 - type: Transform - - uid: 8286 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,11.5 - parent: 6 - type: Transform - - uid: 10019 - components: - - pos: 3.5,-8.5 - parent: 10465 - type: Transform - - uid: 10196 - components: - - pos: 4.5,-10.5 - parent: 10465 - type: Transform - - uid: 10466 - components: - - pos: 2.5,-10.5 - parent: 10465 - type: Transform - - uid: 11176 - components: - - pos: 3.5,-9.5 - parent: 10465 - type: Transform - - uid: 11177 - components: - - pos: 1.5,-9.5 - parent: 10465 - type: Transform - - uid: 11996 - components: - - pos: -60.5,-25.5 - parent: 6 - type: Transform - - uid: 11999 - components: - - pos: -59.5,-26.5 - parent: 6 - type: Transform - - uid: 12670 - components: - - pos: 1.5,-8.5 - parent: 10465 - type: Transform - - uid: 12671 - components: - - pos: 1.5,-6.5 - parent: 10465 - type: Transform - - uid: 12729 - components: - - pos: 2.5,-2.5 - parent: 10465 - type: Transform - - uid: 13299 - components: - - pos: -61.5,-44.5 - parent: 6 - type: Transform - - uid: 13317 - components: - - pos: 8.5,-2.5 - parent: 10465 - type: Transform - - uid: 13318 - components: - - pos: 6.5,-1.5 - parent: 10465 - type: Transform - - uid: 13319 - components: - - pos: 2.5,-8.5 - parent: 10465 - type: Transform - - uid: 13406 - components: - - pos: 7.5,-2.5 - parent: 10465 - type: Transform - - uid: 13407 - components: - - pos: 2.5,-9.5 - parent: 10465 - type: Transform - - uid: 13408 - components: - - pos: 3.5,-4.5 - parent: 10465 - type: Transform - - uid: 13409 - components: - - pos: 2.5,-6.5 - parent: 10465 - type: Transform - - uid: 13450 - components: - - pos: 6.5,-3.5 - parent: 10465 - type: Transform - - uid: 13471 - components: - - pos: -1.5,-64.5 - parent: 6 - type: Transform - - uid: 13478 - components: - - pos: 6.5,-2.5 - parent: 10465 - type: Transform - - uid: 13514 - components: - - pos: 3.5,-6.5 - parent: 10465 - type: Transform - - uid: 13561 - components: - - pos: 3.5,-5.5 - parent: 10465 - type: Transform - - uid: 13578 - components: - - pos: 2.5,-4.5 - parent: 10465 - type: Transform - - uid: 13582 - components: - - pos: 5.5,-3.5 - parent: 10465 - type: Transform - - uid: 13583 - components: - - pos: 5.5,-2.5 - parent: 10465 - type: Transform - - uid: 13584 - components: - - pos: 10.5,-8.5 - parent: 10465 - type: Transform - - uid: 13585 - components: - - pos: 3.5,-7.5 - parent: 10465 - type: Transform - - uid: 13586 - components: - - pos: 0.5,-6.5 - parent: 10465 - type: Transform - - uid: 13587 - components: - - pos: 5.5,-1.5 - parent: 10465 - type: Transform - - uid: 13588 - components: - - pos: 4.5,-2.5 - parent: 10465 - type: Transform - - uid: 13589 - components: - - pos: 10.5,-6.5 - parent: 10465 - type: Transform - - uid: 13590 - components: - - pos: 10.5,-7.5 - parent: 10465 - type: Transform - - uid: 13591 - components: - - pos: 1.5,-3.5 - parent: 10465 - type: Transform - - uid: 13592 - components: - - pos: 3.5,-3.5 - parent: 10465 - type: Transform - - uid: 13593 - components: - - pos: 3.5,-2.5 - parent: 10465 - type: Transform - - uid: 13594 - components: - - pos: 4.5,-1.5 - parent: 10465 - type: Transform - - uid: 13595 - components: - - pos: 2.5,-3.5 - parent: 10465 - type: Transform - - uid: 13596 - components: - - pos: 0.5,-5.5 - parent: 10465 - type: Transform - - uid: 13597 - components: - - pos: 3.5,-10.5 - parent: 10465 - type: Transform - - uid: 13598 - components: - - pos: 2.5,-5.5 - parent: 10465 - type: Transform - - uid: 13600 - components: - - pos: 11.5,-7.5 - parent: 10465 - type: Transform - - uid: 13601 - components: - - pos: 11.5,-6.5 - parent: 10465 - type: Transform - - uid: 13602 - components: - - pos: 11.5,-5.5 - parent: 10465 - type: Transform - - uid: 13603 - components: - - pos: 11.5,-4.5 - parent: 10465 - type: Transform - - uid: 13604 - components: - - pos: 11.5,-3.5 - parent: 10465 - type: Transform - - uid: 13605 - components: - - pos: 12.5,-2.5 - parent: 10465 - type: Transform - - uid: 13606 - components: - - pos: 12.5,-3.5 - parent: 10465 - type: Transform - - uid: 13607 - components: - - pos: 12.5,-4.5 - parent: 10465 - type: Transform - - uid: 13608 - components: - - pos: 12.5,-5.5 - parent: 10465 - type: Transform - - uid: 13609 - components: - - pos: 7.5,-1.5 - parent: 10465 - type: Transform - - uid: 13610 - components: - - pos: 1.5,-7.5 - parent: 10465 - type: Transform - - uid: 13611 - components: - - pos: 1.5,-4.5 - parent: 10465 - type: Transform - - uid: 13618 - components: - - pos: 6.5,-0.5 - parent: 10465 - type: Transform - - uid: 13619 - components: - - pos: 7.5,-0.5 - parent: 10465 - type: Transform - - uid: 13620 - components: - - pos: 8.5,-0.5 - parent: 10465 - type: Transform - - uid: 13621 - components: - - pos: 9.5,-0.5 - parent: 10465 - type: Transform - - uid: 13622 - components: - - pos: 9.5,-1.5 - parent: 10465 - type: Transform - - uid: 13623 - components: - - pos: 10.5,-1.5 - parent: 10465 - type: Transform - - uid: 13624 - components: - - pos: 11.5,-1.5 - parent: 10465 - type: Transform - - uid: 13625 - components: - - pos: 11.5,-2.5 - parent: 10465 - type: Transform - - uid: 13636 - components: - - pos: 1.5,-2.5 - parent: 10465 - type: Transform - - uid: 13637 - components: - - pos: 2.5,-1.5 - parent: 10465 - type: Transform - - uid: 13681 - components: - - pos: -0.5,3.5 - parent: 13645 - type: Transform - - uid: 13682 - components: - - pos: -0.5,4.5 - parent: 13645 - type: Transform - - uid: 13683 - components: - - pos: -1.5,4.5 - parent: 13645 - type: Transform - - uid: 13684 - components: - - pos: -1.5,5.5 - parent: 13645 - type: Transform - - uid: 13685 - components: - - pos: 6.5,5.5 - parent: 13645 - type: Transform - - uid: 13686 - components: - - pos: 6.5,6.5 - parent: 13645 - type: Transform - - uid: 13687 - components: - - pos: 6.5,7.5 - parent: 13645 - type: Transform - - uid: 13688 - components: - - pos: 5.5,7.5 - parent: 13645 - type: Transform - - uid: 13689 - components: - - pos: 5.5,8.5 - parent: 13645 - type: Transform - - uid: 13690 - components: - - pos: 5.5,9.5 - parent: 13645 - type: Transform - - uid: 13691 - components: - - pos: 4.5,9.5 - parent: 13645 - type: Transform - - uid: 13692 - components: - - pos: 3.5,9.5 - parent: 13645 - type: Transform - - uid: 13693 - components: - - pos: 3.5,10.5 - parent: 13645 - type: Transform - - uid: 13694 - components: - - pos: 2.5,10.5 - parent: 13645 - type: Transform - - uid: 13695 - components: - - pos: 1.5,10.5 - parent: 13645 - type: Transform - - uid: 13696 - components: - - pos: 0.5,10.5 - parent: 13645 - type: Transform - - uid: 13697 - components: - - pos: -0.5,10.5 - parent: 13645 - type: Transform - - uid: 13698 - components: - - pos: -1.5,9.5 - parent: 13645 - type: Transform - - uid: 13699 - components: - - pos: -0.5,9.5 - parent: 13645 - type: Transform - - uid: 13700 - components: - - pos: -1.5,8.5 - parent: 13645 - type: Transform - - uid: 13701 - components: - - pos: -2.5,8.5 - parent: 13645 - type: Transform - - uid: 13702 - components: - - pos: -3.5,8.5 - parent: 13645 - type: Transform - - uid: 13703 - components: - - pos: -3.5,7.5 - parent: 13645 - type: Transform - - uid: 13704 - components: - - pos: -2.5,7.5 - parent: 13645 - type: Transform - - uid: 13705 - components: - - pos: -1.5,7.5 - parent: 13645 - type: Transform - - uid: 13706 - components: - - pos: -0.5,8.5 - parent: 13645 - type: Transform - - uid: 13707 - components: - - pos: 0.5,9.5 - parent: 13645 - type: Transform - - uid: 13708 - components: - - pos: 0.5,8.5 - parent: 13645 - type: Transform - - uid: 13709 - components: - - pos: 1.5,9.5 - parent: 13645 - type: Transform - - uid: 13710 - components: - - pos: 1.5,8.5 - parent: 13645 - type: Transform - - uid: 13711 - components: - - pos: 2.5,9.5 - parent: 13645 - type: Transform - - uid: 13712 - components: - - pos: 2.5,8.5 - parent: 13645 - type: Transform - - uid: 13713 - components: - - pos: 3.5,8.5 - parent: 13645 - type: Transform - - uid: 13714 - components: - - pos: 3.5,7.5 - parent: 13645 - type: Transform - - uid: 13715 - components: - - pos: 3.5,6.5 - parent: 13645 - type: Transform - - uid: 13716 - components: - - pos: 4.5,8.5 - parent: 13645 - type: Transform - - uid: 13717 - components: - - pos: 4.5,7.5 - parent: 13645 - type: Transform - - uid: 13718 - components: - - pos: 4.5,6.5 - parent: 13645 - type: Transform - - uid: 13719 - components: - - pos: 5.5,6.5 - parent: 13645 - type: Transform - - uid: 13720 - components: - - pos: -1.5,6.5 - parent: 13645 - type: Transform - - uid: 13721 - components: - - pos: -1.5,3.5 - parent: 13645 - type: Transform - - uid: 13722 - components: - - pos: -2.5,6.5 - parent: 13645 - type: Transform - - uid: 13723 - components: - - pos: -0.5,7.5 - parent: 13645 - type: Transform - - uid: 13724 - components: - - pos: -0.5,5.5 - parent: 13645 - type: Transform - - uid: 13725 - components: - - pos: -0.5,6.5 - parent: 13645 - type: Transform - - uid: 13726 - components: - - pos: 2.5,6.5 - parent: 13645 - type: Transform - - uid: 13727 - components: - - pos: -2.5,5.5 - parent: 13645 - type: Transform - - uid: 13728 - components: - - pos: -2.5,4.5 - parent: 13645 - type: Transform - - uid: 13729 - components: - - pos: -3.5,4.5 - parent: 13645 - type: Transform - - uid: 13730 - components: - - pos: -3.5,3.5 - parent: 13645 - type: Transform - - uid: 13731 - components: - - pos: -2.5,3.5 - parent: 13645 - type: Transform - - uid: 13732 - components: - - pos: -3.5,2.5 - parent: 13645 - type: Transform - - uid: 13733 - components: - - pos: -2.5,1.5 - parent: 13645 - type: Transform - - uid: 13734 - components: - - pos: -0.5,1.5 - parent: 13645 - type: Transform - - uid: 13735 - components: - - pos: -2.5,2.5 - parent: 13645 - type: Transform - - uid: 13736 - components: - - pos: -1.5,1.5 - parent: 13645 - type: Transform - - uid: 13737 - components: - - pos: -0.5,0.5 - parent: 13645 - type: Transform - - uid: 13738 - components: - - pos: -1.5,0.5 - parent: 13645 - type: Transform - - uid: 13739 - components: - - pos: -2.5,0.5 - parent: 13645 - type: Transform - - uid: 13740 - components: - - pos: -1.5,-0.5 - parent: 13645 - type: Transform - - uid: 13741 - components: - - pos: -0.5,-0.5 - parent: 13645 - type: Transform - - uid: 14054 - components: - - pos: -60.5,-43.5 - parent: 6 - type: Transform - - uid: 14237 - components: - - pos: -60.5,-42.5 - parent: 6 - type: Transform -- proto: AtmosDeviceFanTiny - entities: - - uid: 524 - components: - - pos: 42.5,-4.5 - parent: 6 - type: Transform - - uid: 651 - components: - - pos: 32.5,-4.5 - parent: 6 - type: Transform - - uid: 664 - components: - - pos: 32.5,2.5 - parent: 6 - type: Transform - - uid: 698 - components: - - pos: 42.5,2.5 - parent: 6 - type: Transform - - uid: 5606 - components: - - pos: 23.5,-35.5 - parent: 6 - type: Transform - - uid: 5607 - components: - - pos: 23.5,-37.5 - parent: 6 - type: Transform - - uid: 10842 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-6.5 - parent: 6 - type: Transform - - uid: 10843 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-6.5 - parent: 6 - type: Transform - - uid: 10844 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,-6.5 - parent: 6 - type: Transform - - uid: 10845 - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-6.5 - parent: 6 - type: Transform -- proto: AtmosFixBlockerMarker - entities: - - uid: 10340 - components: - - pos: -44.5,13.5 - parent: 6 - type: Transform - - uid: 10341 - components: - - pos: -43.5,13.5 - parent: 6 - type: Transform - - uid: 10342 - components: - - pos: -42.5,13.5 - parent: 6 - type: Transform - - uid: 10343 - components: - - pos: -44.5,15.5 - parent: 6 - type: Transform - - uid: 10344 - components: - - pos: -43.5,15.5 - parent: 6 - type: Transform - - uid: 10345 - components: - - pos: -42.5,15.5 - parent: 6 - type: Transform - - uid: 10346 - components: - - pos: -44.5,19.5 - parent: 6 - type: Transform - - uid: 10347 - components: - - pos: -43.5,19.5 - parent: 6 - type: Transform - - uid: 10348 - components: - - pos: -42.5,19.5 - parent: 6 - type: Transform - - uid: 10349 - components: - - pos: -35.5,26.5 - parent: 6 - type: Transform - - uid: 10350 - components: - - pos: -34.5,26.5 - parent: 6 - type: Transform - - uid: 10351 - components: - - pos: -33.5,26.5 - parent: 6 - type: Transform -- proto: AtmosFixNitrogenMarker - entities: - - uid: 10331 - components: - - pos: -44.5,9.5 - parent: 6 - type: Transform - - uid: 10332 - components: - - pos: -43.5,9.5 - parent: 6 - type: Transform - - uid: 10333 - components: - - pos: -42.5,9.5 - parent: 6 - type: Transform -- proto: AtmosFixOxygenMarker - entities: - - uid: 10334 - components: - - pos: -44.5,11.5 - parent: 6 - type: Transform - - uid: 10335 - components: - - pos: -43.5,11.5 - parent: 6 - type: Transform - - uid: 10336 - components: - - pos: -42.5,11.5 - parent: 6 - type: Transform -- proto: AtmosFixPlasmaMarker - entities: - - uid: 10337 - components: - - pos: -44.5,17.5 - parent: 6 - type: Transform - - uid: 10338 - components: - - pos: -43.5,17.5 - parent: 6 - type: Transform - - uid: 10339 - components: - - pos: -42.5,17.5 - parent: 6 - type: Transform -- proto: Autolathe - entities: - - uid: 4478 - components: - - pos: -9.5,-50.5 - parent: 6 - type: Transform -- proto: BananaPhoneInstrument - entities: - - uid: 14279 - components: - - pos: 14.567757,-18.423681 - parent: 6 - type: Transform -- proto: BananaSeeds - entities: - - uid: 6344 - components: - - pos: 4.2892423,7.513359 - parent: 6 - type: Transform -- proto: BannerCargo - entities: - - uid: 5595 - components: - - pos: 11.5,-41.5 - parent: 6 - type: Transform -- proto: Barricade - entities: - - uid: 5727 - components: - - pos: 26.5,7.5 - parent: 6 - type: Transform - - uid: 5964 - components: - - pos: -40.5,-25.5 - parent: 6 - type: Transform - - uid: 5970 - components: - - pos: -24.5,-50.5 - parent: 6 - type: Transform - - uid: 6762 - components: - - pos: -43.5,-53.5 - parent: 6 - type: Transform - - uid: 6763 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-51.5 - parent: 6 - type: Transform - - uid: 6764 - components: - - rot: 3.141592653589793 rad - pos: -46.5,-52.5 - parent: 6 - type: Transform - - uid: 6765 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-49.5 - parent: 6 - type: Transform - - uid: 6769 - components: - - pos: -42.5,-47.5 - parent: 6 - type: Transform - - uid: 7643 - components: - - pos: 26.5,-0.5 - parent: 6 - type: Transform - - uid: 7838 - components: - - pos: 27.5,-2.5 - parent: 6 - type: Transform -- proto: BarSignRobustaCafe - entities: - - uid: 468 - components: - - pos: 1.5,-13.5 - parent: 6 - type: Transform -- proto: BarSignTheCoderbus - entities: - - uid: 6772 - components: - - pos: -42.5,-48.5 - parent: 6 - type: Transform -- proto: BaseBallBat - entities: - - uid: 5914 - components: - - pos: 11.488698,18.472113 - parent: 6 - type: Transform - - nextAttack: 2458.7068358 - type: MeleeWeapon -- proto: BassGuitarInstrument - entities: - - uid: 3971 - components: - - pos: -0.5216835,-62.522614 - parent: 6 - type: Transform -- proto: Bed - entities: - - uid: 1697 - components: - - pos: 8.5,-1.5 - parent: 6 - type: Transform - - uid: 1698 - components: - - pos: 8.5,4.5 - parent: 6 - type: Transform - - uid: 4384 - components: - - pos: -8.5,-1.5 - parent: 6 - type: Transform - - uid: 4628 - components: - - pos: -3.5,-17.5 - parent: 6 - type: Transform - - uid: 5097 - components: - - pos: 3.5,-7.5 - parent: 6 - type: Transform - - uid: 5405 - components: - - pos: -25.5,-39.5 - parent: 6 - type: Transform - - uid: 5423 - components: - - pos: -40.5,-36.5 - parent: 6 - type: Transform - - uid: 5424 - components: - - pos: -47.5,-37.5 - parent: 6 - type: Transform - - uid: 5426 - components: - - pos: -45.5,-29.5 - parent: 6 - type: Transform - - uid: 5429 - components: - - pos: -40.5,-31.5 - parent: 6 - type: Transform - - uid: 5857 - components: - - pos: -41.5,-27.5 - parent: 6 - type: Transform - - uid: 5862 - components: - - pos: -26.5,-56.5 - parent: 6 - type: Transform - - uid: 5885 - components: - - pos: -26.5,-48.5 - parent: 6 - type: Transform - - uid: 5957 - components: - - pos: -37.5,-26.5 - parent: 6 - type: Transform - - uid: 5963 - components: - - pos: -39.5,-26.5 - parent: 6 - type: Transform - - uid: 6035 - components: - - pos: 10.5,18.5 - parent: 6 - type: Transform - - uid: 6036 - components: - - pos: 11.5,18.5 - parent: 6 - type: Transform - - uid: 6037 - components: - - pos: 12.5,18.5 - parent: 6 - type: Transform - - uid: 6204 - components: - - pos: -38.5,-41.5 - parent: 6 - type: Transform - - uid: 6235 - components: - - pos: -47.5,-41.5 - parent: 6 - type: Transform - - uid: 13613 - components: - - pos: 8.5,-7.5 - parent: 10465 - type: Transform -- proto: BedsheetBlack - entities: - - uid: 5884 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-48.5 - parent: 6 - type: Transform - - uid: 6246 - components: - - pos: -40.5,-36.5 - parent: 6 - type: Transform -- proto: BedsheetBlue - entities: - - uid: 5853 - components: - - pos: -39.5,-26.5 - parent: 6 - type: Transform -- proto: BedsheetCaptain - entities: - - uid: 4385 - components: - - pos: -8.5,-1.5 - parent: 6 - type: Transform -- proto: BedsheetClown - entities: - - uid: 6247 - components: - - pos: -40.5,-31.5 - parent: 6 - type: Transform -- proto: BedsheetCosmos - entities: - - uid: 6248 - components: - - pos: -47.5,-37.5 - parent: 6 - type: Transform - - uid: 13612 - components: - - pos: 8.5,-7.5 - parent: 10465 - type: Transform -- proto: BedsheetCult - entities: - - uid: 5863 - components: - - pos: -26.5,-56.5 - parent: 6 - type: Transform -- proto: BedsheetGreen - entities: - - uid: 6249 - components: - - pos: -47.5,-41.5 - parent: 6 - type: Transform -- proto: BedsheetHOP - entities: - - uid: 4398 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 6 - type: Transform -- proto: BedsheetMedical - entities: - - uid: 6439 - components: - - pos: -26.5,-32.5 - parent: 6 - type: Transform - - uid: 6440 - components: - - pos: -26.5,-30.5 - parent: 6 - type: Transform - - uid: 6441 - components: - - pos: -26.5,-28.5 - parent: 6 - type: Transform -- proto: BedsheetRed - entities: - - uid: 5959 - components: - - pos: -41.5,-27.5 - parent: 6 - type: Transform -- proto: BedsheetSpawner - entities: - - uid: 4630 - components: - - pos: -3.5,-17.5 - parent: 6 - type: Transform - - uid: 5406 - components: - - pos: -25.5,-39.5 - parent: 6 - type: Transform - - uid: 6244 - components: - - pos: -45.5,-29.5 - parent: 6 - type: Transform - - uid: 6245 - components: - - pos: -38.5,-41.5 - parent: 6 - type: Transform -- proto: BedsheetSyndie - entities: - - uid: 5913 - components: - - rot: 3.141592653589793 rad - pos: 10.5,18.5 - parent: 6 - type: Transform -- proto: BedsheetYellow - entities: - - uid: 5911 - components: - - pos: 12.5,18.5 - parent: 6 - type: Transform - - uid: 5912 - components: - - pos: 11.5,18.5 - parent: 6 - type: Transform -- proto: Bible - entities: - - uid: 5878 - components: - - pos: -27.580711,-47.42463 - parent: 6 - type: Transform -- proto: BikeHorn - entities: - - uid: 7624 - components: - - pos: -40.551613,-31.217503 - parent: 6 - type: Transform -- proto: BiomassReclaimer - entities: - - uid: 700 - components: - - pos: -30.5,-27.5 - parent: 6 - type: Transform -- proto: BiomassReclaimerMachineCircuitboard - entities: - - uid: 14046 - components: - - pos: -28.399426,-14.302165 - parent: 6 - type: Transform -- proto: BlastDoor - entities: - - uid: 1264 - components: - - pos: 23.5,-34.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5600 - type: SignalReceiver - - uid: 1265 - components: - - pos: 23.5,-38.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5601 - type: SignalReceiver - - uid: 1266 - components: - - pos: 20.5,-38.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5601 - type: SignalReceiver - - uid: 1267 - components: - - pos: 20.5,-34.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5600 - type: SignalReceiver - - uid: 2968 - components: - - pos: -55.5,-34.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13052 - type: SignalReceiver - - uid: 3511 - components: - - pos: 48.5,-4.5 - parent: 6 - type: Transform - - uid: 3512 - components: - - pos: 48.5,-7.5 - parent: 6 - type: Transform - - uid: 3513 - components: - - pos: 48.5,4.5 - parent: 6 - type: Transform - - uid: 3514 - components: - - pos: 48.5,1.5 - parent: 6 - type: Transform - - uid: 3674 - components: - - pos: 2.5,-69.5 - parent: 6 - type: Transform - - uid: 3675 - components: - - pos: 2.5,-73.5 - parent: 6 - type: Transform - - uid: 3676 - components: - - pos: -0.5,-73.5 - parent: 6 - type: Transform - - uid: 3677 - components: - - pos: -0.5,-69.5 - parent: 6 - type: Transform - - uid: 3696 - components: - - pos: -7.5,-65.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3656 - - port: Pressed - uid: 3655 - type: SignalReceiver - - uid: 3697 - components: - - pos: -7.5,-66.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3656 - - port: Pressed - uid: 3655 - type: SignalReceiver - - uid: 3698 - components: - - pos: -7.5,-67.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3656 - - port: Pressed - uid: 3655 - type: SignalReceiver - - uid: 3699 - components: - - pos: -4.5,-65.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3656 - - port: Pressed - uid: 3655 - type: SignalReceiver - - uid: 3700 - components: - - pos: -4.5,-66.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3656 - - port: Pressed - uid: 3655 - type: SignalReceiver - - uid: 3702 - components: - - pos: -4.5,-67.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3656 - - port: Pressed - uid: 3655 - type: SignalReceiver - - uid: 4908 - components: - - pos: -34.5,27.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4909 - - port: Pressed - uid: 4910 - type: SignalReceiver - - uid: 6386 - components: - - pos: -6.5,-82.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6388 - type: SignalReceiver - - uid: 6387 - components: - - pos: -2.5,-82.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6389 - type: SignalReceiver -- proto: BodyBag_Folded - entities: - - uid: 7443 - components: - - pos: -28.553457,-54.1594 - parent: 6 - 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: BookAtmosAirAlarms - entities: - - uid: 14038 - components: - - pos: -36.673004,22.602575 - parent: 6 - type: Transform -- proto: BookAtmosDistro - entities: - - uid: 14091 - components: - - pos: -32.38544,1.2801145 - parent: 6 - type: Transform -- proto: BookAtmosVentsMore - entities: - - uid: 14034 - components: - - pos: -29.473429,26.508703 - parent: 6 - type: Transform -- proto: BookAtmosWaste - entities: - - uid: 14090 - components: - - pos: -32.656277,1.5092815 - parent: 6 - type: Transform -- proto: BookRandom - entities: - - uid: 7747 - components: - - rot: -1.5707963267948966 rad - pos: -20.602465,-40.948807 - parent: 6 - type: Transform - - uid: 7748 - components: - - rot: 3.141592653589793 rad - pos: -22.560797,-39.53214 - parent: 6 - type: Transform - - uid: 7749 - components: - - rot: -1.5707963267948966 rad - pos: -19.477465,-37.448807 - parent: 6 - type: Transform -- proto: Bookshelf - entities: - - uid: 4467 - components: - - pos: -17.5,-37.5 - parent: 6 - type: Transform - - uid: 4468 - components: - - pos: -17.5,-39.5 - parent: 6 - type: Transform - - uid: 4469 - components: - - pos: -18.5,-37.5 - parent: 6 - type: Transform - - uid: 4470 - components: - - pos: -18.5,-39.5 - parent: 6 - type: Transform - - uid: 4473 - components: - - pos: -17.5,-41.5 - parent: 6 - type: Transform - - uid: 4474 - components: - - pos: -18.5,-41.5 - parent: 6 - type: Transform -- proto: BoozeDispenser - entities: - - uid: 3201 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,23.5 - parent: 6 - type: Transform - - uid: 4618 - components: - - pos: 0.5,-14.5 - parent: 6 - type: Transform - - uid: 7597 - components: - - pos: -40.5,-49.5 - parent: 6 - type: Transform -- proto: BoxBeanbag - entities: - - uid: 4633 - components: - - pos: -2.472492,-14.333556 - parent: 6 - type: Transform - - uid: 4724 - components: - - pos: 18.352304,8.423914 - parent: 6 - type: Transform -- proto: BoxBodyBag - entities: - - uid: 6421 - components: - - pos: -30.517078,-25.484154 - parent: 6 - type: Transform -- proto: BoxBottle - entities: - - uid: 6176 - components: - - pos: -22.60391,-17.312326 - parent: 6 - type: Transform -- proto: BoxFlashbang - entities: - - uid: 6484 - components: - - pos: 14.355699,-1.7388198 - parent: 6 - type: Transform -- proto: BoxFolderBase - entities: - - uid: 3375 - components: - - pos: -39.619896,-20.376669 - parent: 6 - type: Transform -- proto: BoxFolderBlack - entities: - - uid: 6090 - components: - - rot: 3.141592653589793 rad - pos: -4.4231286,-78.39979 - parent: 6 - type: Transform - - uid: 7805 - components: - - rot: 3.141592653589793 rad - pos: 8.591546,-16.343054 - parent: 6 - type: Transform -- proto: BoxFolderBlue - entities: - - uid: 14272 - components: - - rot: 1.5707963267948966 rad - pos: 16.539167,-15.910117 - parent: 6 - type: Transform -- proto: BoxFolderGrey - entities: - - uid: 7804 - components: - - rot: 3.141592653589793 rad - pos: 8.820713,-16.488886 - parent: 6 - type: Transform - - uid: 14274 - components: - - rot: -1.5707963267948966 rad - pos: 13.427196,-16.410116 - parent: 6 - type: Transform -- proto: BoxFolderRed - entities: - - uid: 5185 - components: - - pos: -1.3838615,-1.3363643 - parent: 6 - type: Transform - - uid: 7613 - components: - - rot: -1.5707963267948966 rad - pos: -50.580124,-48.47779 - parent: 6 - type: Transform - - uid: 14271 - components: - - rot: 1.5707963267948966 rad - pos: 16.539167,-15.514284 - parent: 6 - type: Transform -- proto: BoxFolderYellow - entities: - - uid: 3329 - components: - - rot: -1.5707963267948966 rad - pos: 9.411796,-32.499554 - parent: 6 - type: Transform - - uid: 14273 - components: - - rot: -1.5707963267948966 rad - pos: 13.489696,-15.618451 - parent: 6 - type: Transform -- proto: BoxHandcuff - entities: - - uid: 6482 - components: - - pos: 14.298904,-1.2705129 - parent: 6 - type: Transform -- proto: BoxLatexGloves - entities: - - uid: 6428 - components: - - pos: -17.489386,-27.400482 - parent: 6 - type: Transform -- proto: BoxLethalshot - entities: - - uid: 4723 - components: - - pos: 18.465895,8.750309 - parent: 6 - type: Transform -- proto: BoxMouthSwab - entities: - - uid: 6430 - components: - - pos: -26.390043,-26.41122 - parent: 6 - type: Transform -- proto: BoxNitrileGloves - entities: - - uid: 14053 - components: - - pos: -30.352308,-25.786364 - parent: 6 - type: Transform -- proto: BoxSterileMask - entities: - - uid: 6427 - components: - - pos: -17.815956,-27.25857 - parent: 6 - type: Transform -- proto: BoxTrashbag - entities: - - uid: 7639 - components: - - pos: 27.3286,3.4105222 - parent: 6 - type: Transform -- proto: BoxZiptie - entities: - - uid: 6483 - components: - - pos: 14.653873,-1.4549974 - parent: 6 - type: Transform -- proto: BrbSign - entities: - - uid: 5106 - components: - - pos: -2.4108074,-7.547946 - parent: 6 - type: Transform -- proto: Bucket - entities: - - uid: 3796 - components: - - pos: -32.62809,-62.42377 - parent: 6 - type: Transform - - uid: 5227 - components: - - pos: -10.262668,-18.813303 - parent: 6 - type: Transform - - uid: 6342 - components: - - pos: 4.4534793,6.4413085 - parent: 6 - type: Transform - - uid: 13489 - components: - - pos: 17.304811,18.71929 - parent: 6 - type: Transform -- proto: CableApcExtension - entities: - - uid: 1427 - components: - - pos: 5.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1428 - components: - - pos: 6.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1429 - components: - - pos: 7.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1438 - components: - - pos: -39.5,-22.5 - parent: 6 - type: Transform - - uid: 1467 - components: - - pos: -9.5,-71.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2934 - components: - - pos: 3.5,-57.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2935 - components: - - pos: 4.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2983 - components: - - pos: -25.5,14.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4920 - components: - - pos: -23.5,14.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4940 - components: - - pos: -41.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5047 - components: - - pos: -24.5,14.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5048 - components: - - pos: 4.5,-4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5049 - components: - - pos: 1.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5113 - components: - - pos: 1.5,-1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5116 - components: - - pos: 1.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5182 - components: - - pos: -40.5,-22.5 - parent: 6 - type: Transform - - uid: 5240 - components: - - pos: 26.5,0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5287 - components: - - pos: 3.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5360 - components: - - pos: 3.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5519 - components: - - pos: 3.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6047 - components: - - pos: 16.5,17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6048 - components: - - pos: 15.5,17.5 - parent: 6 - type: Transform - - uid: 6049 - components: - - pos: 14.5,17.5 - parent: 6 - type: Transform - - uid: 6050 - components: - - pos: 13.5,17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6051 - components: - - pos: 12.5,17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6052 - components: - - pos: 11.5,17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6053 - components: - - pos: 10.5,17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6054 - components: - - pos: 9.5,17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6055 - components: - - pos: 9.5,18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6056 - components: - - pos: 9.5,19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6057 - components: - - pos: 9.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6058 - components: - - pos: 9.5,21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6059 - components: - - pos: 9.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6060 - components: - - pos: 10.5,22.5 - parent: 6 - type: Transform - - uid: 6061 - components: - - pos: 11.5,22.5 - parent: 6 - type: Transform - - uid: 6062 - components: - - pos: 12.5,22.5 - parent: 6 - type: Transform - - uid: 6063 - components: - - pos: 13.5,22.5 - parent: 6 - type: Transform - - uid: 6064 - components: - - pos: 14.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6065 - components: - - pos: 15.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6066 - components: - - pos: 16.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6067 - components: - - pos: 17.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6068 - components: - - pos: 18.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6069 - components: - - pos: 19.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6070 - components: - - pos: 20.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6071 - components: - - pos: 20.5,21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6072 - components: - - pos: 20.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6073 - components: - - pos: 20.5,19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6074 - components: - - pos: 20.5,18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6075 - components: - - pos: 20.5,17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6076 - components: - - pos: 19.5,17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6077 - components: - - pos: 18.5,17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6078 - components: - - pos: 17.5,17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6079 - components: - - pos: 13.5,18.5 - parent: 6 - type: Transform - - uid: 6080 - components: - - pos: 13.5,19.5 - parent: 6 - type: Transform - - uid: 6081 - components: - - pos: 13.5,20.5 - parent: 6 - type: Transform - - uid: 6082 - components: - - pos: 13.5,21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6083 - components: - - pos: 16.5,18.5 - parent: 6 - type: Transform - - uid: 6084 - components: - - pos: 16.5,19.5 - parent: 6 - type: Transform - - uid: 6085 - components: - - pos: 16.5,20.5 - parent: 6 - type: Transform - - uid: 6086 - components: - - pos: 16.5,21.5 - parent: 6 - type: Transform - - uid: 6628 - components: - - pos: 46.5,-6.5 - parent: 6 - type: Transform - - uid: 6629 - components: - - pos: 45.5,-6.5 - parent: 6 - type: Transform - - uid: 6630 - components: - - pos: 44.5,3.5 - parent: 6 - type: Transform - - uid: 6651 - components: - - pos: 44.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6710 - components: - - pos: -83.5,-47.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6711 - components: - - pos: -83.5,-46.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6712 - components: - - pos: -83.5,-45.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6713 - components: - - pos: -81.5,-38.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6714 - components: - - pos: -82.5,-38.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6715 - components: - - pos: -82.5,-39.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6716 - components: - - pos: -80.5,-38.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6717 - components: - - pos: -79.5,-38.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6718 - components: - - pos: -76.5,-38.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6719 - components: - - pos: -75.5,-38.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6720 - components: - - pos: -76.5,-39.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6721 - components: - - pos: -76.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6722 - components: - - pos: -77.5,-38.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6723 - components: - - pos: -76.5,-47.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6724 - components: - - pos: -76.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6725 - components: - - pos: -76.5,-49.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6726 - components: - - pos: -78.5,-50.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6727 - components: - - pos: -79.5,-50.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6728 - components: - - pos: -80.5,-50.5 - parent: 6 - type: Transform - - uid: 6729 - components: - - pos: -81.5,-50.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6730 - components: - - pos: -82.5,-50.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6774 - components: - - pos: -44.5,-49.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6775 - components: - - pos: -44.5,-50.5 - parent: 6 - type: Transform - - uid: 6776 - components: - - pos: -44.5,-51.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6777 - components: - - pos: -44.5,-52.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6781 - components: - - pos: -50.5,-45.5 - parent: 6 - type: Transform - - uid: 6782 - components: - - pos: 45.5,3.5 - parent: 6 - type: Transform - - uid: 6783 - components: - - pos: -44.5,-53.5 - parent: 6 - type: Transform - - uid: 6784 - components: - - pos: -43.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6785 - components: - - pos: -42.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6786 - components: - - pos: -42.5,-52.5 - parent: 6 - type: Transform - - uid: 6787 - components: - - pos: -42.5,-51.5 - parent: 6 - type: Transform - - uid: 6788 - components: - - pos: -42.5,-50.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6789 - components: - - pos: -41.5,-50.5 - parent: 6 - type: Transform - - uid: 6790 - components: - - pos: -40.5,-47.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6791 - components: - - pos: -39.5,-47.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6792 - components: - - pos: -38.5,-47.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6793 - components: - - pos: -38.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6794 - components: - - pos: -38.5,-49.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6795 - components: - - pos: -38.5,-50.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6796 - components: - - pos: -38.5,-51.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6797 - components: - - pos: -38.5,-52.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6798 - components: - - pos: -38.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7362 - components: - - pos: 46.5,3.5 - parent: 6 - type: Transform - - uid: 7373 - components: - - pos: 13.5,-0.5 - parent: 6 - type: Transform - - uid: 7383 - components: - - pos: 12.5,-0.5 - parent: 6 - type: Transform - - uid: 7384 - components: - - pos: 11.5,-0.5 - parent: 6 - type: Transform - - uid: 7388 - components: - - pos: 11.5,0.5 - parent: 6 - type: Transform - - uid: 7389 - components: - - pos: 11.5,1.5 - parent: 6 - type: Transform - - uid: 7593 - components: - - pos: 11.5,2.5 - parent: 6 - type: Transform - - uid: 7673 - components: - - pos: 11.5,3.5 - parent: 6 - type: Transform - - uid: 7677 - components: - - pos: -11.5,-71.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7829 - components: - - pos: 12.5,3.5 - parent: 6 - type: Transform - - uid: 7846 - components: - - pos: 13.5,3.5 - parent: 6 - type: Transform - - uid: 8192 - components: - - pos: -17.5,-38.5 - parent: 6 - type: Transform - - uid: 8207 - components: - - pos: -15.5,-43.5 - parent: 6 - type: Transform - - uid: 8208 - components: - - pos: -15.5,-42.5 - parent: 6 - type: Transform - - uid: 8209 - components: - - pos: -15.5,-41.5 - parent: 6 - type: Transform - - uid: 8210 - components: - - pos: -15.5,-40.5 - parent: 6 - type: Transform - - uid: 8211 - components: - - pos: -26.5,0.5 - parent: 6 - type: Transform - - uid: 8212 - components: - - pos: -26.5,-0.5 - parent: 6 - type: Transform - - uid: 8213 - components: - - pos: -26.5,-1.5 - parent: 6 - type: Transform - - uid: 8214 - components: - - pos: -25.5,5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8393 - components: - - pos: 31.5,-10.5 - parent: 6 - type: Transform - - uid: 8483 - components: - - pos: -6.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8484 - components: - - pos: -0.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8485 - components: - - pos: -10.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8487 - components: - - pos: -3.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8488 - components: - - pos: 0.5,-38.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8552 - components: - - pos: -29.5,14.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8553 - components: - - pos: -29.5,14.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8554 - components: - - pos: -30.5,14.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8555 - components: - - pos: -30.5,15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8556 - components: - - pos: -30.5,16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8557 - components: - - pos: -30.5,17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8558 - components: - - pos: -30.5,18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8559 - components: - - pos: -30.5,19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8560 - components: - - pos: -30.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8561 - components: - - pos: -30.5,21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8562 - components: - - pos: -30.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8563 - components: - - pos: -30.5,23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8564 - components: - - pos: -30.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8565 - components: - - pos: -29.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8566 - components: - - pos: -28.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8567 - components: - - pos: -27.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8568 - components: - - pos: -26.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8569 - components: - - pos: -25.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8570 - components: - - pos: -25.5,23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8571 - components: - - pos: -25.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8572 - components: - - pos: -25.5,21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8573 - components: - - pos: -25.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8574 - components: - - pos: -25.5,19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8575 - components: - - pos: -25.5,18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8576 - components: - - pos: -25.5,17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8577 - components: - - pos: -25.5,16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8578 - components: - - pos: -25.5,15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8583 - components: - - pos: -30.5,13.5 - parent: 6 - type: Transform - - uid: 8584 - components: - - pos: -30.5,12.5 - parent: 6 - type: Transform - - uid: 8585 - components: - - pos: -30.5,11.5 - parent: 6 - type: Transform - - uid: 8586 - components: - - pos: -30.5,10.5 - parent: 6 - type: Transform - - uid: 8587 - components: - - pos: -30.5,9.5 - parent: 6 - type: Transform - - uid: 8588 - components: - - pos: -31.5,9.5 - parent: 6 - type: Transform - - uid: 8589 - components: - - pos: -32.5,9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8590 - components: - - pos: -33.5,9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8591 - components: - - pos: -34.5,9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8592 - components: - - pos: -35.5,9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8593 - components: - - pos: -36.5,9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8594 - components: - - pos: -37.5,9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8595 - components: - - pos: -38.5,9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8596 - components: - - pos: -38.5,8.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8597 - components: - - pos: -38.5,10.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8598 - components: - - pos: -38.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8599 - components: - - pos: -38.5,12.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8600 - components: - - pos: -38.5,13.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8601 - components: - - pos: -38.5,14.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8602 - components: - - pos: -38.5,15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8603 - components: - - pos: -38.5,16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8604 - components: - - pos: -38.5,17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8605 - components: - - pos: -38.5,18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8606 - components: - - pos: -38.5,19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8607 - components: - - pos: -38.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8608 - components: - - pos: -38.5,21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8609 - components: - - pos: -38.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8610 - components: - - pos: -39.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8611 - components: - - pos: -40.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8612 - components: - - pos: -41.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8613 - components: - - pos: -42.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8614 - components: - - pos: -43.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8615 - components: - - pos: -44.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8616 - components: - - pos: -45.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8617 - components: - - pos: -45.5,19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8618 - components: - - pos: -45.5,18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8619 - components: - - pos: -45.5,17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8620 - components: - - pos: -45.5,16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8621 - components: - - pos: -45.5,15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8622 - components: - - pos: -45.5,14.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8623 - components: - - pos: -45.5,13.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8624 - components: - - pos: -45.5,12.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8625 - components: - - pos: -45.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8626 - components: - - pos: -45.5,10.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8627 - components: - - pos: -45.5,9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8628 - components: - - pos: -45.5,8.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8629 - components: - - pos: -44.5,8.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8630 - components: - - pos: -43.5,8.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8631 - components: - - pos: -42.5,8.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8632 - components: - - pos: -41.5,8.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8633 - components: - - pos: -40.5,8.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8634 - components: - - pos: -39.5,8.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8635 - components: - - pos: -38.5,8.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8651 - components: - - pos: -36.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8652 - components: - - pos: -36.5,25.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8653 - components: - - pos: -36.5,26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8654 - components: - - pos: -36.5,27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8655 - components: - - pos: -35.5,27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8656 - components: - - pos: -34.5,27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8657 - components: - - pos: -33.5,27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8658 - components: - - pos: -32.5,27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8659 - components: - - pos: -32.5,26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8660 - components: - - pos: -32.5,25.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8661 - components: - - pos: -32.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8662 - components: - - pos: -33.5,23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8663 - components: - - pos: -32.5,23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8664 - components: - - pos: -34.5,23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8665 - components: - - pos: -35.5,23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8666 - components: - - pos: -36.5,23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8667 - components: - - pos: -31.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8669 - components: - - pos: -33.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8670 - components: - - pos: -34.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8671 - components: - - pos: -35.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8672 - components: - - pos: -36.5,-0.5 - parent: 6 - type: Transform - - uid: 8673 - components: - - pos: -37.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8674 - components: - - pos: -38.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8675 - components: - - pos: -33.5,0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8676 - components: - - pos: -33.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8677 - components: - - pos: -33.5,2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8678 - components: - - pos: -33.5,3.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8679 - components: - - pos: -33.5,4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8680 - components: - - pos: -34.5,4.5 - parent: 6 - type: Transform - - uid: 8681 - components: - - pos: -35.5,4.5 - parent: 6 - type: Transform - - uid: 8682 - components: - - pos: -36.5,4.5 - parent: 6 - type: Transform - - uid: 8683 - components: - - pos: -37.5,4.5 - parent: 6 - type: Transform - - uid: 8684 - components: - - pos: -38.5,4.5 - parent: 6 - type: Transform - - uid: 8685 - components: - - pos: -38.5,3.5 - parent: 6 - type: Transform - - uid: 8686 - components: - - pos: -38.5,2.5 - parent: 6 - type: Transform - - uid: 8687 - components: - - pos: -38.5,1.5 - parent: 6 - type: Transform - - uid: 8688 - components: - - pos: -38.5,0.5 - parent: 6 - type: Transform - - uid: 8689 - components: - - pos: -33.5,-1.5 - parent: 6 - type: Transform - - uid: 8690 - components: - - pos: -33.5,-2.5 - parent: 6 - type: Transform - - uid: 8691 - components: - - pos: -33.5,-3.5 - parent: 6 - type: Transform - - uid: 8692 - components: - - pos: -34.5,-3.5 - parent: 6 - type: Transform - - uid: 8693 - components: - - pos: -35.5,-3.5 - parent: 6 - type: Transform - - uid: 8694 - components: - - pos: -36.5,-3.5 - parent: 6 - type: Transform - - uid: 8695 - components: - - pos: -37.5,-3.5 - parent: 6 - type: Transform - - uid: 8696 - components: - - pos: -38.5,-3.5 - parent: 6 - type: Transform - - uid: 8697 - components: - - pos: -37.5,-4.5 - parent: 6 - type: Transform - - uid: 8698 - components: - - pos: -37.5,-5.5 - parent: 6 - type: Transform - - uid: 8699 - components: - - pos: -37.5,-6.5 - parent: 6 - type: Transform - - uid: 8700 - components: - - pos: -37.5,-7.5 - parent: 6 - type: Transform - - uid: 8701 - components: - - pos: -37.5,-8.5 - parent: 6 - type: Transform - - uid: 8702 - components: - - pos: -36.5,-7.5 - parent: 6 - type: Transform - - uid: 8703 - components: - - pos: -35.5,-7.5 - parent: 6 - type: Transform - - uid: 8704 - components: - - pos: -34.5,-7.5 - parent: 6 - type: Transform - - uid: 8705 - components: - - pos: -33.5,-7.5 - parent: 6 - type: Transform - - uid: 8706 - components: - - pos: -32.5,-7.5 - parent: 6 - type: Transform - - uid: 8707 - components: - - pos: -31.5,-7.5 - parent: 6 - type: Transform - - uid: 8708 - components: - - pos: -30.5,-7.5 - parent: 6 - type: Transform - - uid: 8709 - components: - - pos: -29.5,-7.5 - parent: 6 - type: Transform - - uid: 8710 - components: - - pos: -29.5,-6.5 - parent: 6 - type: Transform - - uid: 8711 - components: - - pos: -29.5,-5.5 - parent: 6 - type: Transform - - uid: 8712 - components: - - pos: -29.5,-4.5 - parent: 6 - type: Transform - - uid: 8713 - components: - - pos: -29.5,-3.5 - parent: 6 - type: Transform - - uid: 8714 - components: - - pos: -29.5,-2.5 - parent: 6 - type: Transform - - uid: 8715 - components: - - pos: -29.5,-1.5 - parent: 6 - type: Transform - - uid: 8716 - components: - - pos: -30.5,-1.5 - parent: 6 - type: Transform - - uid: 8717 - components: - - pos: -31.5,-1.5 - parent: 6 - type: Transform - - uid: 8718 - components: - - pos: -32.5,-1.5 - parent: 6 - type: Transform - - uid: 8720 - components: - - pos: -29.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8721 - components: - - pos: -28.5,1.5 - parent: 6 - type: Transform - - uid: 8722 - components: - - pos: -27.5,1.5 - parent: 6 - type: Transform - - uid: 8723 - components: - - pos: -26.5,1.5 - parent: 6 - type: Transform - - uid: 8724 - components: - - pos: -25.5,1.5 - parent: 6 - type: Transform - - uid: 8725 - components: - - pos: -24.5,1.5 - parent: 6 - type: Transform - - uid: 8726 - components: - - pos: -24.5,2.5 - parent: 6 - type: Transform - - uid: 8727 - components: - - pos: -24.5,3.5 - parent: 6 - type: Transform - - uid: 8728 - components: - - pos: -24.5,4.5 - parent: 6 - type: Transform - - uid: 8729 - components: - - pos: -25.5,4.5 - parent: 6 - type: Transform - - uid: 8730 - components: - - pos: -26.5,4.5 - parent: 6 - type: Transform - - uid: 8731 - components: - - pos: -27.5,4.5 - parent: 6 - type: Transform - - uid: 8732 - components: - - pos: -28.5,4.5 - parent: 6 - type: Transform - - uid: 8733 - components: - - pos: -23.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8734 - components: - - pos: -22.5,1.5 - parent: 6 - type: Transform - - uid: 8735 - components: - - pos: -21.5,1.5 - parent: 6 - type: Transform - - uid: 8736 - components: - - pos: -20.5,1.5 - parent: 6 - type: Transform - - uid: 8737 - components: - - pos: -19.5,1.5 - parent: 6 - type: Transform - - uid: 8738 - components: - - pos: -18.5,1.5 - parent: 6 - type: Transform - - uid: 8739 - components: - - pos: -18.5,2.5 - parent: 6 - type: Transform - - uid: 8740 - components: - - pos: -18.5,3.5 - parent: 6 - type: Transform - - uid: 8741 - components: - - pos: -18.5,4.5 - parent: 6 - type: Transform - - uid: 8742 - components: - - pos: -19.5,4.5 - parent: 6 - type: Transform - - uid: 8743 - components: - - pos: -20.5,4.5 - parent: 6 - type: Transform - - uid: 8744 - components: - - pos: -21.5,4.5 - parent: 6 - type: Transform - - uid: 8745 - components: - - pos: -22.5,4.5 - parent: 6 - type: Transform - - uid: 8746 - components: - - pos: -22.5,3.5 - parent: 6 - type: Transform - - uid: 8747 - components: - - pos: -22.5,2.5 - parent: 6 - type: Transform - - uid: 8748 - components: - - pos: -20.5,0.5 - parent: 6 - type: Transform - - uid: 8749 - components: - - pos: -20.5,-0.5 - parent: 6 - type: Transform - - uid: 8750 - components: - - pos: -21.5,-0.5 - parent: 6 - type: Transform - - uid: 8751 - components: - - pos: -22.5,-0.5 - parent: 6 - type: Transform - - uid: 8752 - components: - - pos: -19.5,-0.5 - parent: 6 - type: Transform - - uid: 8753 - components: - - pos: -18.5,-0.5 - parent: 6 - type: Transform - - uid: 8754 - components: - - pos: -17.5,-0.5 - parent: 6 - type: Transform - - uid: 8755 - components: - - pos: -28.5,-6.5 - parent: 6 - type: Transform - - uid: 8756 - components: - - pos: -27.5,-6.5 - parent: 6 - type: Transform - - uid: 8757 - components: - - pos: -26.5,-6.5 - parent: 6 - type: Transform - - uid: 8758 - components: - - pos: -25.5,-6.5 - parent: 6 - type: Transform - - uid: 8759 - components: - - pos: -24.5,-6.5 - parent: 6 - type: Transform - - uid: 8760 - components: - - pos: -24.5,-5.5 - parent: 6 - type: Transform - - uid: 8761 - components: - - pos: -23.5,-5.5 - parent: 6 - type: Transform - - uid: 8762 - components: - - pos: -22.5,-5.5 - parent: 6 - type: Transform - - uid: 8763 - components: - - pos: -21.5,-5.5 - parent: 6 - type: Transform - - uid: 8764 - components: - - pos: -20.5,-5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8765 - components: - - pos: -20.5,-4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8766 - components: - - pos: -33.5,-8.5 - parent: 6 - type: Transform - - uid: 8767 - components: - - pos: -33.5,-9.5 - parent: 6 - type: Transform - - uid: 8768 - components: - - pos: -33.5,-10.5 - parent: 6 - type: Transform - - uid: 8770 - components: - - pos: -55.5,-15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8771 - components: - - pos: -54.5,-15.5 - parent: 6 - type: Transform - - uid: 8772 - components: - - pos: -53.5,-15.5 - parent: 6 - type: Transform - - uid: 8773 - components: - - pos: -52.5,-15.5 - parent: 6 - type: Transform - - uid: 8774 - components: - - pos: -51.5,-15.5 - parent: 6 - type: Transform - - uid: 8775 - components: - - pos: -50.5,-15.5 - parent: 6 - type: Transform - - uid: 8776 - components: - - pos: -49.5,-15.5 - parent: 6 - type: Transform - - uid: 8777 - components: - - pos: -49.5,-16.5 - parent: 6 - type: Transform - - uid: 8778 - components: - - pos: -49.5,-17.5 - parent: 6 - type: Transform - - uid: 8779 - components: - - pos: -49.5,-18.5 - parent: 6 - type: Transform - - uid: 8780 - components: - - pos: -49.5,-19.5 - parent: 6 - type: Transform - - uid: 8781 - components: - - pos: -50.5,-19.5 - parent: 6 - type: Transform - - uid: 8782 - components: - - pos: -51.5,-19.5 - parent: 6 - type: Transform - - uid: 8783 - components: - - pos: -52.5,-19.5 - parent: 6 - type: Transform - - uid: 8784 - components: - - pos: -53.5,-19.5 - parent: 6 - type: Transform - - uid: 8785 - components: - - pos: -54.5,-19.5 - parent: 6 - type: Transform - - uid: 8786 - components: - - pos: -54.5,-18.5 - parent: 6 - type: Transform - - uid: 8787 - components: - - pos: -54.5,-17.5 - parent: 6 - type: Transform - - uid: 8788 - components: - - pos: -54.5,-16.5 - parent: 6 - type: Transform - - uid: 8789 - components: - - pos: -53.5,-14.5 - parent: 6 - type: Transform - - uid: 8790 - components: - - pos: -53.5,-13.5 - parent: 6 - type: Transform - - uid: 8791 - components: - - pos: -53.5,-12.5 - parent: 6 - type: Transform - - uid: 8792 - components: - - pos: -53.5,-11.5 - parent: 6 - type: Transform - - uid: 8793 - components: - - pos: -53.5,-10.5 - parent: 6 - type: Transform - - uid: 8794 - components: - - pos: -54.5,-10.5 - parent: 6 - type: Transform - - uid: 8795 - components: - - pos: -55.5,-10.5 - parent: 6 - type: Transform - - uid: 8796 - components: - - pos: -56.5,-10.5 - parent: 6 - type: Transform - - uid: 8797 - components: - - pos: -57.5,-10.5 - parent: 6 - type: Transform - - uid: 8798 - components: - - pos: -58.5,-10.5 - parent: 6 - type: Transform - - uid: 8799 - components: - - pos: -59.5,-10.5 - parent: 6 - type: Transform - - uid: 8800 - components: - - pos: -60.5,-10.5 - parent: 6 - type: Transform - - uid: 8801 - components: - - pos: -61.5,-10.5 - parent: 6 - type: Transform - - uid: 8802 - components: - - pos: -62.5,-10.5 - parent: 6 - type: Transform - - uid: 8803 - components: - - pos: -63.5,-10.5 - parent: 6 - type: Transform - - uid: 8804 - components: - - pos: -64.5,-10.5 - parent: 6 - type: Transform - - uid: 8805 - components: - - pos: -64.5,-11.5 - parent: 6 - type: Transform - - uid: 8806 - components: - - pos: -64.5,-12.5 - parent: 6 - type: Transform - - uid: 8807 - components: - - pos: -64.5,-13.5 - parent: 6 - type: Transform - - uid: 8808 - components: - - pos: -64.5,-14.5 - parent: 6 - type: Transform - - uid: 8809 - components: - - pos: -64.5,-15.5 - parent: 6 - type: Transform - - uid: 8810 - components: - - pos: -64.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8811 - components: - - pos: -63.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8812 - components: - - pos: -62.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8813 - components: - - pos: -61.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8814 - components: - - pos: -60.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8815 - components: - - pos: -59.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8816 - components: - - pos: -58.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8817 - components: - - pos: -57.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8818 - components: - - pos: -56.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8819 - components: - - pos: -55.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8820 - components: - - pos: -56.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8821 - components: - - pos: -56.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8822 - components: - - pos: -56.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8823 - components: - - pos: -56.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8824 - components: - - pos: -56.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8825 - components: - - pos: -60.5,-17.5 - parent: 6 - type: Transform - - uid: 8826 - components: - - pos: -60.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8827 - components: - - pos: -60.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8828 - components: - - pos: -60.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8829 - components: - - pos: -60.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8831 - components: - - pos: -53.5,-20.5 - parent: 6 - type: Transform - - uid: 8832 - components: - - pos: -53.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8833 - components: - - pos: -54.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8834 - components: - - pos: -55.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8835 - components: - - pos: -52.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8836 - components: - - pos: -51.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8837 - components: - - pos: -50.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8838 - components: - - pos: -49.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8839 - components: - - pos: -48.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8840 - components: - - pos: -47.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8841 - components: - - pos: -47.5,-22.5 - parent: 6 - type: Transform - - uid: 8842 - components: - - pos: -47.5,-23.5 - parent: 6 - type: Transform - - uid: 8843 - components: - - pos: -47.5,-24.5 - parent: 6 - type: Transform - - uid: 8844 - components: - - pos: -46.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8845 - components: - - pos: -45.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8846 - components: - - pos: -44.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8847 - components: - - pos: -43.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8848 - components: - - pos: -43.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8849 - components: - - pos: -42.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8850 - components: - - pos: -41.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8851 - components: - - pos: -41.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8852 - components: - - pos: -41.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8853 - components: - - pos: -41.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8854 - components: - - pos: -41.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8855 - components: - - pos: -41.5,-15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8856 - components: - - pos: -41.5,-14.5 - parent: 6 - type: Transform - - uid: 8857 - components: - - pos: -41.5,-13.5 - parent: 6 - type: Transform - - uid: 8858 - components: - - pos: -41.5,-12.5 - parent: 6 - type: Transform - - uid: 8859 - components: - - pos: -41.5,-11.5 - parent: 6 - type: Transform - - uid: 8860 - components: - - pos: -41.5,-10.5 - parent: 6 - type: Transform - - uid: 8861 - components: - - pos: -41.5,-9.5 - parent: 6 - type: Transform - - uid: 8862 - components: - - pos: -41.5,-8.5 - parent: 6 - type: Transform - - uid: 8863 - components: - - pos: -41.5,-7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8864 - components: - - pos: -41.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8865 - components: - - pos: -41.5,-5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8866 - components: - - pos: -41.5,-4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8867 - components: - - pos: -40.5,-10.5 - parent: 6 - type: Transform - - uid: 8868 - components: - - pos: -39.5,-10.5 - parent: 6 - type: Transform - - uid: 8869 - components: - - pos: -38.5,-10.5 - parent: 6 - type: Transform - - uid: 8870 - components: - - pos: -37.5,-10.5 - parent: 6 - type: Transform - - uid: 8871 - components: - - pos: -36.5,-10.5 - parent: 6 - type: Transform - - uid: 8872 - components: - - pos: -35.5,-10.5 - parent: 6 - type: Transform - - uid: 8873 - components: - - pos: -39.5,-11.5 - parent: 6 - type: Transform - - uid: 8874 - components: - - pos: -39.5,-12.5 - parent: 6 - type: Transform - - uid: 8875 - components: - - pos: -39.5,-13.5 - parent: 6 - type: Transform - - uid: 8876 - components: - - pos: -39.5,-14.5 - parent: 6 - type: Transform - - uid: 8877 - components: - - pos: -38.5,-14.5 - parent: 6 - type: Transform - - uid: 8878 - components: - - pos: -37.5,-14.5 - parent: 6 - type: Transform - - uid: 8879 - components: - - pos: -36.5,-14.5 - parent: 6 - type: Transform - - uid: 8880 - components: - - pos: -36.5,-13.5 - parent: 6 - type: Transform - - uid: 8881 - components: - - pos: -36.5,-12.5 - parent: 6 - type: Transform - - uid: 8882 - components: - - pos: -36.5,-11.5 - parent: 6 - type: Transform - - uid: 8883 - components: - - pos: -42.5,-10.5 - parent: 6 - type: Transform - - uid: 8884 - components: - - pos: -43.5,-10.5 - parent: 6 - type: Transform - - uid: 8885 - components: - - pos: -44.5,-10.5 - parent: 6 - type: Transform - - uid: 8886 - components: - - pos: -45.5,-10.5 - parent: 6 - type: Transform - - uid: 8887 - components: - - pos: -45.5,-11.5 - parent: 6 - type: Transform - - uid: 8888 - components: - - pos: -45.5,-12.5 - parent: 6 - type: Transform - - uid: 8889 - components: - - pos: -45.5,-13.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8890 - components: - - pos: -45.5,-14.5 - parent: 6 - type: Transform - - uid: 8891 - components: - - pos: -45.5,-15.5 - parent: 6 - type: Transform - - uid: 8892 - components: - - pos: -45.5,-16.5 - parent: 6 - type: Transform - - uid: 8893 - components: - - pos: -45.5,-17.5 - parent: 6 - type: Transform - - uid: 8894 - components: - - pos: -46.5,-10.5 - parent: 6 - type: Transform - - uid: 8895 - components: - - pos: -47.5,-10.5 - parent: 6 - type: Transform - - uid: 8896 - components: - - pos: -48.5,-10.5 - parent: 6 - type: Transform - - uid: 8897 - components: - - pos: -49.5,-10.5 - parent: 6 - type: Transform - - uid: 8898 - components: - - pos: -50.5,-10.5 - parent: 6 - type: Transform - - uid: 8899 - components: - - pos: -51.5,-10.5 - parent: 6 - type: Transform - - uid: 8900 - components: - - pos: -52.5,-10.5 - parent: 6 - type: Transform - - uid: 8901 - components: - - pos: -49.5,-11.5 - parent: 6 - type: Transform - - uid: 8902 - components: - - pos: -49.5,-12.5 - parent: 6 - type: Transform - - uid: 8903 - components: - - pos: -58.5,-9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8904 - components: - - pos: -58.5,-8.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8905 - components: - - pos: -56.5,-9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8906 - components: - - pos: -56.5,-8.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8907 - components: - - pos: -64.5,-9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8908 - components: - - pos: -64.5,-8.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8909 - components: - - pos: -65.5,-12.5 - parent: 6 - type: Transform - - uid: 8910 - components: - - pos: -66.5,-12.5 - parent: 6 - type: Transform - - uid: 8911 - components: - - pos: -66.5,-11.5 - parent: 6 - type: Transform - - uid: 8912 - components: - - pos: -66.5,-10.5 - parent: 6 - type: Transform - - uid: 8913 - components: - - pos: -66.5,-9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8914 - components: - - pos: -66.5,-8.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8916 - components: - - pos: -6.5,5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8917 - components: - - pos: -7.5,5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8918 - components: - - pos: -8.5,5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8919 - components: - - pos: -9.5,5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8920 - components: - - pos: -5.5,5.5 - parent: 6 - type: Transform - - uid: 8921 - components: - - pos: -4.5,5.5 - parent: 6 - type: Transform - - uid: 8922 - components: - - pos: -3.5,5.5 - parent: 6 - type: Transform - - uid: 8923 - components: - - pos: -2.5,5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8924 - components: - - pos: -1.5,5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8925 - components: - - pos: -0.5,5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8926 - components: - - pos: 0.5,5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8927 - components: - - pos: 0.5,6.5 - parent: 6 - type: Transform - - uid: 8928 - components: - - pos: 0.5,7.5 - parent: 6 - type: Transform - - uid: 8929 - components: - - pos: 0.5,8.5 - parent: 6 - type: Transform - - uid: 8930 - components: - - pos: 0.5,9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8931 - components: - - pos: 0.5,10.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8932 - components: - - pos: 0.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8933 - components: - - pos: -0.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8934 - components: - - pos: -1.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8935 - components: - - pos: -2.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8936 - components: - - pos: -3.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8937 - components: - - pos: -4.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8938 - components: - - pos: -5.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8939 - components: - - pos: -6.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8940 - components: - - pos: -7.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8941 - components: - - pos: -8.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8942 - components: - - pos: -9.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8943 - components: - - pos: -9.5,10.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8944 - components: - - pos: -9.5,9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8945 - components: - - pos: -9.5,8.5 - parent: 6 - type: Transform - - uid: 8946 - components: - - pos: -9.5,7.5 - parent: 6 - type: Transform - - uid: 8947 - components: - - pos: -9.5,6.5 - parent: 6 - type: Transform - - uid: 8948 - components: - - pos: -4.5,4.5 - parent: 6 - type: Transform - - uid: 8949 - components: - - pos: -4.5,3.5 - parent: 6 - type: Transform - - uid: 8950 - components: - - pos: -5.5,3.5 - parent: 6 - type: Transform - - uid: 8951 - components: - - pos: -6.5,3.5 - parent: 6 - type: Transform - - uid: 8952 - components: - - pos: -7.5,3.5 - parent: 6 - type: Transform - - uid: 8953 - components: - - pos: -8.5,3.5 - parent: 6 - type: Transform - - uid: 8954 - components: - - pos: -9.5,3.5 - parent: 6 - type: Transform - - uid: 8955 - components: - - pos: -10.5,3.5 - parent: 6 - type: Transform - - uid: 8956 - components: - - pos: -11.5,3.5 - parent: 6 - type: Transform - - uid: 8957 - components: - - pos: -12.5,3.5 - parent: 6 - type: Transform - - uid: 8958 - components: - - pos: -13.5,3.5 - parent: 6 - type: Transform - - uid: 8959 - components: - - pos: -14.5,3.5 - parent: 6 - type: Transform - - uid: 8960 - components: - - pos: -14.5,4.5 - parent: 6 - type: Transform - - uid: 8961 - components: - - pos: -14.5,5.5 - parent: 6 - type: Transform - - uid: 8962 - components: - - pos: -14.5,6.5 - parent: 6 - type: Transform - - uid: 8963 - components: - - pos: -14.5,7.5 - parent: 6 - type: Transform - - uid: 8964 - components: - - pos: -15.5,7.5 - parent: 6 - type: Transform - - uid: 8965 - components: - - pos: -16.5,7.5 - parent: 6 - type: Transform - - uid: 8966 - components: - - pos: -17.5,7.5 - parent: 6 - type: Transform - - uid: 8967 - components: - - pos: -31.5,7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8968 - components: - - pos: -31.5,8.5 - parent: 6 - type: Transform - - uid: 8969 - components: - - pos: -31.5,6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8970 - components: - - pos: -30.5,6.5 - parent: 6 - type: Transform - - uid: 8971 - components: - - pos: -32.5,6.5 - parent: 6 - type: Transform - - uid: 8972 - components: - - pos: -18.5,7.5 - parent: 6 - type: Transform - - uid: 8973 - components: - - pos: -14.5,2.5 - parent: 6 - type: Transform - - uid: 8974 - components: - - pos: -14.5,1.5 - parent: 6 - type: Transform - - uid: 8975 - components: - - pos: -14.5,0.5 - parent: 6 - type: Transform - - uid: 8976 - components: - - pos: -14.5,-0.5 - parent: 6 - type: Transform - - uid: 8977 - components: - - pos: -14.5,-1.5 - parent: 6 - type: Transform - - uid: 8978 - components: - - pos: -14.5,-2.5 - parent: 6 - type: Transform - - uid: 8979 - components: - - pos: -14.5,-3.5 - parent: 6 - type: Transform - - uid: 8980 - components: - - pos: -14.5,-4.5 - parent: 6 - type: Transform - - uid: 8981 - components: - - pos: -14.5,-5.5 - parent: 6 - type: Transform - - uid: 8982 - components: - - pos: -14.5,-6.5 - parent: 6 - type: Transform - - uid: 8983 - components: - - pos: -14.5,-7.5 - parent: 6 - type: Transform - - uid: 8984 - components: - - pos: -4.5,6.5 - parent: 6 - type: Transform - - uid: 8985 - components: - - pos: -4.5,7.5 - parent: 6 - type: Transform - - uid: 8986 - components: - - pos: -4.5,8.5 - parent: 6 - type: Transform - - uid: 8987 - components: - - pos: -4.5,9.5 - parent: 6 - type: Transform - - uid: 8988 - components: - - pos: -3.5,3.5 - parent: 6 - type: Transform - - uid: 8989 - components: - - pos: -2.5,3.5 - parent: 6 - type: Transform - - uid: 8990 - components: - - pos: -1.5,3.5 - parent: 6 - type: Transform - - uid: 8991 - components: - - pos: -0.5,3.5 - parent: 6 - type: Transform - - uid: 8992 - components: - - pos: 0.5,3.5 - parent: 6 - type: Transform - - uid: 8993 - components: - - pos: 1.5,3.5 - parent: 6 - type: Transform - - uid: 8994 - components: - - pos: 2.5,3.5 - parent: 6 - type: Transform - - uid: 8995 - components: - - pos: 3.5,3.5 - parent: 6 - type: Transform - - uid: 8997 - components: - - pos: -3.5,-4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8998 - components: - - pos: -3.5,-3.5 - parent: 6 - type: Transform - - uid: 8999 - components: - - pos: -3.5,-2.5 - parent: 6 - type: Transform - - uid: 9000 - components: - - pos: -3.5,-1.5 - parent: 6 - type: Transform - - uid: 9001 - components: - - pos: -3.5,-0.5 - parent: 6 - type: Transform - - uid: 9002 - components: - - pos: -3.5,0.5 - parent: 6 - type: Transform - - uid: 9003 - components: - - pos: -4.5,0.5 - parent: 6 - type: Transform - - uid: 9004 - components: - - pos: -5.5,0.5 - parent: 6 - type: Transform - - uid: 9005 - components: - - pos: -6.5,0.5 - parent: 6 - type: Transform - - uid: 9006 - components: - - pos: -7.5,0.5 - parent: 6 - type: Transform - - uid: 9007 - components: - - pos: -7.5,-0.5 - parent: 6 - type: Transform - - uid: 9008 - components: - - pos: -7.5,-1.5 - parent: 6 - type: Transform - - uid: 9009 - components: - - pos: -7.5,-2.5 - parent: 6 - type: Transform - - uid: 9010 - components: - - pos: -7.5,-3.5 - parent: 6 - type: Transform - - uid: 9011 - components: - - pos: -8.5,-3.5 - parent: 6 - type: Transform - - uid: 9012 - components: - - pos: -9.5,-3.5 - parent: 6 - type: Transform - - uid: 9013 - components: - - pos: -4.5,-2.5 - parent: 6 - type: Transform - - uid: 9014 - components: - - pos: -5.5,-2.5 - parent: 6 - type: Transform - - uid: 9015 - components: - - pos: -5.5,-3.5 - parent: 6 - type: Transform - - uid: 9016 - components: - - pos: -5.5,-4.5 - parent: 6 - type: Transform - - uid: 9017 - components: - - pos: -5.5,-5.5 - parent: 6 - type: Transform - - uid: 9018 - components: - - pos: -5.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9019 - components: - - pos: -6.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9020 - components: - - pos: -6.5,-7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9021 - components: - - pos: -6.5,-8.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9022 - components: - - pos: -4.5,-5.5 - parent: 6 - type: Transform - - uid: 9023 - components: - - pos: -3.5,-5.5 - parent: 6 - type: Transform - - uid: 9024 - components: - - pos: -2.5,-5.5 - parent: 6 - type: Transform - - uid: 9025 - components: - - pos: -1.5,-5.5 - parent: 6 - type: Transform - - uid: 9026 - components: - - pos: -0.5,-5.5 - parent: 6 - type: Transform - - uid: 9027 - components: - - pos: -0.5,-6.5 - parent: 6 - type: Transform - - uid: 9028 - components: - - pos: 0.5,-6.5 - parent: 6 - type: Transform - - uid: 9029 - components: - - pos: 1.5,-6.5 - parent: 6 - type: Transform - - uid: 9030 - components: - - pos: 2.5,-6.5 - parent: 6 - type: Transform - - uid: 9031 - components: - - pos: 3.5,-6.5 - parent: 6 - type: Transform - - uid: 9032 - components: - - pos: 3.5,-5.5 - parent: 6 - type: Transform - - uid: 9033 - components: - - pos: 3.5,-4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9040 - components: - - pos: 1.5,0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9041 - components: - - pos: 0.5,0.5 - parent: 6 - type: Transform - - uid: 9042 - components: - - pos: -0.5,0.5 - parent: 6 - type: Transform - - uid: 9043 - components: - - pos: -1.5,0.5 - parent: 6 - type: Transform - - uid: 9044 - components: - - pos: -2.5,0.5 - parent: 6 - type: Transform - - uid: 9045 - components: - - pos: 4.5,0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9046 - components: - - pos: 4.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9047 - components: - - pos: 4.5,-1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9048 - components: - - pos: 4.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9049 - components: - - pos: 5.5,0.5 - parent: 6 - type: Transform - - uid: 9050 - components: - - pos: 5.5,1.5 - parent: 6 - type: Transform - - uid: 9051 - components: - - pos: 5.5,2.5 - parent: 6 - type: Transform - - uid: 9052 - components: - - pos: 5.5,3.5 - parent: 6 - type: Transform - - uid: 9053 - components: - - pos: 5.5,4.5 - parent: 6 - type: Transform - - uid: 9054 - components: - - pos: 5.5,5.5 - parent: 6 - type: Transform - - uid: 9055 - components: - - pos: 5.5,6.5 - parent: 6 - type: Transform - - uid: 9056 - components: - - pos: 5.5,7.5 - parent: 6 - type: Transform - - uid: 9057 - components: - - pos: 6.5,7.5 - parent: 6 - type: Transform - - uid: 9058 - components: - - pos: 7.5,7.5 - parent: 6 - type: Transform - - uid: 9059 - components: - - pos: 8.5,7.5 - parent: 6 - type: Transform - - uid: 9060 - components: - - pos: 5.5,-0.5 - parent: 6 - type: Transform - - uid: 9061 - components: - - pos: 5.5,-1.5 - parent: 6 - type: Transform - - uid: 9062 - components: - - pos: 5.5,-2.5 - parent: 6 - type: Transform - - uid: 9063 - components: - - pos: 5.5,-3.5 - parent: 6 - type: Transform - - uid: 9064 - components: - - pos: 5.5,-4.5 - parent: 6 - type: Transform - - uid: 9065 - components: - - pos: 5.5,-5.5 - parent: 6 - type: Transform - - uid: 9066 - components: - - pos: 5.5,-6.5 - parent: 6 - type: Transform - - uid: 9067 - components: - - pos: 5.5,-7.5 - parent: 6 - type: Transform - - uid: 9068 - components: - - pos: 5.5,-8.5 - parent: 6 - type: Transform - - uid: 9069 - components: - - pos: -14.5,-8.5 - parent: 6 - type: Transform - - uid: 9070 - components: - - pos: -13.5,1.5 - parent: 6 - type: Transform - - uid: 9071 - components: - - pos: -12.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9072 - components: - - pos: -11.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9073 - components: - - pos: -10.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9074 - components: - - pos: -10.5,0.5 - parent: 6 - type: Transform - - uid: 9075 - components: - - pos: -10.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9076 - components: - - pos: -12.5,0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9077 - components: - - pos: -12.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9078 - components: - - pos: -12.5,-1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9079 - components: - - pos: -12.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9080 - components: - - pos: -12.5,-3.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9081 - components: - - pos: -12.5,-4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9082 - components: - - pos: -12.5,-5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9083 - components: - - pos: -12.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9084 - components: - - pos: -11.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9085 - components: - - pos: -10.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9087 - components: - - pos: 7.5,-6.5 - parent: 6 - type: Transform - - uid: 9088 - components: - - pos: 8.5,-6.5 - parent: 6 - type: Transform - - uid: 9089 - components: - - pos: 9.5,-6.5 - parent: 6 - type: Transform - - uid: 9090 - components: - - pos: 10.5,-6.5 - parent: 6 - type: Transform - - uid: 9091 - components: - - pos: 11.5,-6.5 - parent: 6 - type: Transform - - uid: 9092 - components: - - pos: 12.5,-6.5 - parent: 6 - type: Transform - - uid: 9093 - components: - - pos: 13.5,-6.5 - parent: 6 - type: Transform - - uid: 9094 - components: - - pos: 14.5,-6.5 - parent: 6 - type: Transform - - uid: 9095 - components: - - pos: 7.5,-7.5 - parent: 6 - type: Transform - - uid: 9096 - components: - - pos: 7.5,-8.5 - parent: 6 - type: Transform - - uid: 9097 - components: - - pos: 7.5,-9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9098 - components: - - pos: 7.5,-10.5 - parent: 6 - type: Transform - - uid: 9099 - components: - - pos: 8.5,-9.5 - parent: 6 - type: Transform - - uid: 9100 - components: - - pos: 9.5,-9.5 - parent: 6 - type: Transform - - uid: 9101 - components: - - pos: 10.5,-9.5 - parent: 6 - type: Transform - - uid: 9102 - components: - - pos: 11.5,-9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9103 - components: - - pos: 12.5,-9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9104 - components: - - pos: 13.5,-9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9105 - components: - - pos: 14.5,-9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9106 - components: - - pos: 15.5,-9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9107 - components: - - pos: 16.5,-9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9108 - components: - - pos: 17.5,-9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9109 - components: - - pos: 18.5,-9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9110 - components: - - pos: 19.5,-9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9111 - components: - - pos: 7.5,-5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9112 - components: - - pos: 7.5,-4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9113 - components: - - pos: 7.5,-3.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9114 - components: - - pos: 7.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9115 - components: - - pos: 7.5,-1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9116 - components: - - pos: 7.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9117 - components: - - pos: 7.5,0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9118 - components: - - pos: 7.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9119 - components: - - pos: 7.5,2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9120 - components: - - pos: 7.5,3.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9121 - components: - - pos: 7.5,4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9122 - components: - - pos: 14.5,-5.5 - parent: 6 - type: Transform - - uid: 9123 - components: - - pos: 14.5,-4.5 - parent: 6 - type: Transform - - uid: 9124 - components: - - pos: 14.5,-3.5 - parent: 6 - type: Transform - - uid: 9125 - components: - - pos: 14.5,-2.5 - parent: 6 - type: Transform - - uid: 9126 - components: - - pos: 14.5,-1.5 - parent: 6 - type: Transform - - uid: 9127 - components: - - pos: 14.5,-0.5 - parent: 6 - type: Transform - - uid: 9128 - components: - - pos: 14.5,0.5 - parent: 6 - type: Transform - - uid: 9129 - components: - - pos: 14.5,1.5 - parent: 6 - type: Transform - - uid: 9130 - components: - - pos: 14.5,2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9131 - components: - - pos: 14.5,3.5 - parent: 6 - type: Transform - - uid: 9132 - components: - - pos: 14.5,4.5 - parent: 6 - type: Transform - - uid: 9133 - components: - - pos: 14.5,5.5 - parent: 6 - type: Transform - - uid: 9134 - components: - - pos: 14.5,6.5 - parent: 6 - type: Transform - - uid: 9135 - components: - - pos: 14.5,7.5 - parent: 6 - type: Transform - - uid: 9136 - components: - - pos: 14.5,8.5 - parent: 6 - type: Transform - - uid: 9137 - components: - - pos: 14.5,9.5 - parent: 6 - type: Transform - - uid: 9138 - components: - - pos: 14.5,10.5 - parent: 6 - type: Transform - - uid: 9139 - components: - - pos: 14.5,11.5 - parent: 6 - type: Transform - - uid: 9140 - components: - - pos: 13.5,11.5 - parent: 6 - type: Transform - - uid: 9141 - components: - - pos: 12.5,11.5 - parent: 6 - type: Transform - - uid: 9142 - components: - - pos: 11.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9143 - components: - - pos: 10.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9144 - components: - - pos: 9.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9145 - components: - - pos: 8.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9146 - components: - - pos: 15.5,11.5 - parent: 6 - type: Transform - - uid: 9147 - components: - - pos: 16.5,11.5 - parent: 6 - type: Transform - - uid: 9148 - components: - - pos: 17.5,11.5 - parent: 6 - type: Transform - - uid: 9149 - components: - - pos: 18.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9150 - components: - - pos: 19.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9151 - components: - - pos: 20.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9152 - components: - - pos: 21.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9153 - components: - - pos: 22.5,11.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9154 - components: - - pos: 15.5,6.5 - parent: 6 - type: Transform - - uid: 9155 - components: - - pos: 16.5,6.5 - parent: 6 - type: Transform - - uid: 9156 - components: - - pos: 17.5,6.5 - parent: 6 - type: Transform - - uid: 9157 - components: - - pos: 18.5,6.5 - parent: 6 - type: Transform - - uid: 9158 - components: - - pos: 19.5,6.5 - parent: 6 - type: Transform - - uid: 9159 - components: - - pos: 14.5,12.5 - parent: 6 - type: Transform - - uid: 9160 - components: - - pos: 14.5,13.5 - parent: 6 - type: Transform - - uid: 9161 - components: - - pos: 14.5,14.5 - parent: 6 - type: Transform - - uid: 9162 - components: - - pos: 14.5,15.5 - parent: 6 - type: Transform - - uid: 9163 - components: - - pos: 14.5,-7.5 - parent: 6 - type: Transform - - uid: 9164 - components: - - pos: 15.5,-7.5 - parent: 6 - type: Transform - - uid: 9165 - components: - - pos: 16.5,-7.5 - parent: 6 - type: Transform - - uid: 9166 - components: - - pos: 17.5,-7.5 - parent: 6 - type: Transform - - uid: 9167 - components: - - pos: 18.5,-7.5 - parent: 6 - type: Transform - - uid: 9168 - components: - - pos: 19.5,-7.5 - parent: 6 - type: Transform - - uid: 9169 - components: - - pos: 15.5,-0.5 - parent: 6 - type: Transform - - uid: 9170 - components: - - pos: 16.5,-0.5 - parent: 6 - type: Transform - - uid: 9173 - components: - - pos: 25.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9174 - components: - - pos: 25.5,2.5 - parent: 6 - type: Transform - - uid: 9175 - components: - - pos: 25.5,3.5 - parent: 6 - type: Transform - - uid: 9176 - components: - - pos: 25.5,4.5 - parent: 6 - type: Transform - - uid: 9177 - components: - - pos: 25.5,5.5 - parent: 6 - type: Transform - - uid: 9178 - components: - - pos: 26.5,5.5 - parent: 6 - type: Transform - - uid: 9179 - components: - - pos: 27.5,5.5 - parent: 6 - type: Transform - - uid: 9180 - components: - - pos: 28.5,5.5 - parent: 6 - type: Transform - - uid: 9181 - components: - - pos: 29.5,5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9182 - components: - - pos: 30.5,5.5 - parent: 6 - type: Transform - - uid: 9183 - components: - - pos: 30.5,6.5 - parent: 6 - type: Transform - - uid: 9184 - components: - - pos: 30.5,7.5 - parent: 6 - type: Transform - - uid: 9185 - components: - - pos: 30.5,8.5 - parent: 6 - type: Transform - - uid: 9186 - components: - - pos: 30.5,9.5 - parent: 6 - type: Transform - - uid: 9187 - components: - - pos: 29.5,8.5 - parent: 6 - type: Transform - - uid: 9188 - components: - - pos: 28.5,8.5 - parent: 6 - type: Transform - - uid: 9189 - components: - - pos: 27.5,8.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9190 - components: - - pos: 27.5,9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9191 - components: - - pos: 26.5,9.5 - parent: 6 - type: Transform - - uid: 9192 - components: - - pos: 25.5,9.5 - parent: 6 - type: Transform - - uid: 9193 - components: - - pos: 24.5,9.5 - parent: 6 - type: Transform - - uid: 9194 - components: - - pos: 23.5,9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9195 - components: - - pos: 22.5,9.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9196 - components: - - pos: 22.5,8.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9197 - components: - - pos: 22.5,7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9198 - components: - - pos: 22.5,6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9199 - components: - - pos: 22.5,5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9200 - components: - - pos: 22.5,4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9201 - components: - - pos: 22.5,3.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9202 - components: - - pos: 22.5,2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9203 - components: - - pos: 22.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9204 - components: - - pos: 21.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9205 - components: - - pos: 20.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9206 - components: - - pos: 19.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9207 - components: - - pos: 15.5,-4.5 - parent: 6 - type: Transform - - uid: 9208 - components: - - pos: 17.5,-4.5 - parent: 6 - type: Transform - - uid: 9209 - components: - - pos: 16.5,-4.5 - parent: 6 - type: Transform - - uid: 9210 - components: - - pos: 19.5,0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9211 - components: - - pos: 19.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9212 - components: - - pos: 19.5,-1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9213 - components: - - pos: 19.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9214 - components: - - pos: 20.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9215 - components: - - pos: 21.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9216 - components: - - pos: 22.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9217 - components: - - pos: 21.5,-3.5 - parent: 6 - type: Transform - - uid: 9218 - components: - - pos: 21.5,-4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9219 - components: - - pos: 23.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9220 - components: - - pos: 24.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9221 - components: - - pos: 24.5,-3.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9222 - components: - - pos: 24.5,-4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9223 - components: - - pos: 24.5,-5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9224 - components: - - pos: 24.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9225 - components: - - pos: 24.5,-7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9226 - components: - - pos: 23.5,-7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9227 - components: - - pos: 22.5,-7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9228 - components: - - pos: 21.5,-7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9229 - components: - - pos: 21.5,-8.5 - parent: 6 - type: Transform - - uid: 9230 - components: - - pos: 21.5,-9.5 - parent: 6 - type: Transform - - uid: 9231 - components: - - pos: 21.5,-10.5 - parent: 6 - type: Transform - - uid: 9232 - components: - - pos: 22.5,-10.5 - parent: 6 - type: Transform - - uid: 9233 - components: - - pos: 23.5,-10.5 - parent: 6 - type: Transform - - uid: 9234 - components: - - pos: 24.5,-10.5 - parent: 6 - type: Transform - - uid: 9235 - components: - - pos: 25.5,-10.5 - parent: 6 - type: Transform - - uid: 9236 - components: - - pos: 26.5,-10.5 - parent: 6 - type: Transform - - uid: 9237 - components: - - pos: 27.5,-10.5 - parent: 6 - type: Transform - - uid: 9238 - components: - - pos: 28.5,-10.5 - parent: 6 - type: Transform - - uid: 9239 - components: - - pos: 29.5,-10.5 - parent: 6 - type: Transform - - uid: 9240 - components: - - pos: 30.5,-10.5 - parent: 6 - type: Transform - - uid: 9241 - components: - - pos: 27.5,-9.5 - parent: 6 - type: Transform - - uid: 9242 - components: - - pos: 27.5,-8.5 - parent: 6 - type: Transform - - uid: 9243 - components: - - pos: 27.5,-7.5 - parent: 6 - type: Transform - - uid: 9244 - components: - - pos: 27.5,-6.5 - parent: 6 - type: Transform - - uid: 9245 - components: - - pos: 27.5,-5.5 - parent: 6 - type: Transform - - uid: 9246 - components: - - pos: 32.5,-10.5 - parent: 6 - type: Transform - - uid: 9247 - components: - - pos: 33.5,-10.5 - parent: 6 - type: Transform - - uid: 9248 - components: - - pos: 34.5,-10.5 - parent: 6 - type: Transform - - uid: 9249 - components: - - pos: 35.5,-10.5 - parent: 6 - type: Transform - - uid: 9250 - components: - - pos: 36.5,-10.5 - parent: 6 - type: Transform - - uid: 9251 - components: - - pos: 37.5,-10.5 - parent: 6 - type: Transform - - uid: 9252 - components: - - pos: 38.5,-10.5 - parent: 6 - type: Transform - - uid: 9253 - components: - - pos: 39.5,-10.5 - parent: 6 - type: Transform - - uid: 9254 - components: - - pos: 40.5,-10.5 - parent: 6 - type: Transform - - uid: 9255 - components: - - pos: 41.5,-10.5 - parent: 6 - type: Transform - - uid: 9256 - components: - - pos: 42.5,-10.5 - parent: 6 - type: Transform - - uid: 9257 - components: - - pos: 43.5,-10.5 - parent: 6 - type: Transform - - uid: 9258 - components: - - pos: 43.5,-9.5 - parent: 6 - type: Transform - - uid: 9259 - components: - - pos: 43.5,-8.5 - parent: 6 - type: Transform - - uid: 9260 - components: - - pos: 43.5,-7.5 - parent: 6 - type: Transform - - uid: 9261 - components: - - pos: 43.5,-6.5 - parent: 6 - type: Transform - - uid: 9262 - components: - - pos: 43.5,-5.5 - parent: 6 - type: Transform - - uid: 9263 - components: - - pos: 43.5,-4.5 - parent: 6 - type: Transform - - uid: 9264 - components: - - pos: 43.5,-3.5 - parent: 6 - type: Transform - - uid: 9265 - components: - - pos: 43.5,-2.5 - parent: 6 - type: Transform - - uid: 9266 - components: - - pos: 43.5,-1.5 - parent: 6 - type: Transform - - uid: 9267 - components: - - pos: 43.5,-0.5 - parent: 6 - type: Transform - - uid: 9268 - components: - - pos: 43.5,0.5 - parent: 6 - type: Transform - - uid: 9269 - components: - - pos: 43.5,1.5 - parent: 6 - type: Transform - - uid: 9270 - components: - - pos: 43.5,2.5 - parent: 6 - type: Transform - - uid: 9271 - components: - - pos: 43.5,3.5 - parent: 6 - type: Transform - - uid: 9272 - components: - - pos: 43.5,4.5 - parent: 6 - type: Transform - - uid: 9273 - components: - - pos: 43.5,5.5 - parent: 6 - type: Transform - - uid: 9274 - components: - - pos: 43.5,6.5 - parent: 6 - type: Transform - - uid: 9275 - components: - - pos: 43.5,7.5 - parent: 6 - type: Transform - - uid: 9276 - components: - - pos: 43.5,8.5 - parent: 6 - type: Transform - - uid: 9277 - components: - - pos: 25.5,0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9278 - components: - - pos: 25.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9279 - components: - - pos: 24.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9280 - components: - - pos: 23.5,-0.5 - parent: 6 - type: Transform - - uid: 9281 - components: - - pos: 23.5,-1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9283 - components: - - pos: 11.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9284 - components: - - pos: 12.5,-19.5 - parent: 6 - type: Transform - - uid: 9285 - components: - - pos: 13.5,-19.5 - parent: 6 - type: Transform - - uid: 9286 - components: - - pos: 14.5,-19.5 - parent: 6 - type: Transform - - uid: 9287 - components: - - pos: 15.5,-19.5 - parent: 6 - type: Transform - - uid: 9288 - components: - - pos: 16.5,-19.5 - parent: 6 - type: Transform - - uid: 9289 - components: - - pos: 17.5,-19.5 - parent: 6 - type: Transform - - uid: 9290 - components: - - pos: 18.5,-19.5 - parent: 6 - type: Transform - - uid: 9291 - components: - - pos: 19.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9292 - components: - - pos: 19.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9293 - components: - - pos: 19.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9294 - components: - - pos: 19.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9295 - components: - - pos: 19.5,-15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9296 - components: - - pos: 19.5,-14.5 - parent: 6 - type: Transform - - uid: 9297 - components: - - pos: 19.5,-13.5 - parent: 6 - type: Transform - - uid: 9298 - components: - - pos: 19.5,-12.5 - parent: 6 - type: Transform - - uid: 9299 - components: - - pos: 18.5,-12.5 - parent: 6 - type: Transform - - uid: 9300 - components: - - pos: 17.5,-12.5 - parent: 6 - type: Transform - - uid: 9301 - components: - - pos: 16.5,-12.5 - parent: 6 - type: Transform - - uid: 9302 - components: - - pos: 15.5,-12.5 - parent: 6 - type: Transform - - uid: 9303 - components: - - pos: 14.5,-12.5 - parent: 6 - type: Transform - - uid: 9304 - components: - - pos: 13.5,-12.5 - parent: 6 - type: Transform - - uid: 9305 - components: - - pos: 12.5,-12.5 - parent: 6 - type: Transform - - uid: 9306 - components: - - pos: 11.5,-12.5 - parent: 6 - type: Transform - - uid: 9307 - components: - - pos: 10.5,-12.5 - parent: 6 - type: Transform - - uid: 9308 - components: - - pos: 9.5,-12.5 - parent: 6 - type: Transform - - uid: 9309 - components: - - pos: 8.5,-12.5 - parent: 6 - type: Transform - - uid: 9310 - components: - - pos: 7.5,-12.5 - parent: 6 - type: Transform - - uid: 9311 - components: - - pos: 6.5,-12.5 - parent: 6 - type: Transform - - uid: 9312 - components: - - pos: -3.5,-6.5 - parent: 6 - type: Transform - - uid: 9313 - components: - - pos: -3.5,-7.5 - parent: 6 - type: Transform - - uid: 9314 - components: - - pos: -2.5,-7.5 - parent: 6 - type: Transform - - uid: 9315 - components: - - pos: -1.5,-7.5 - parent: 6 - type: Transform - - uid: 9316 - components: - - pos: -0.5,-7.5 - parent: 6 - type: Transform - - uid: 9317 - components: - - pos: -0.5,-8.5 - parent: 6 - type: Transform - - uid: 9318 - components: - - pos: -0.5,-9.5 - parent: 6 - type: Transform - - uid: 9319 - components: - - pos: -0.5,-10.5 - parent: 6 - type: Transform - - uid: 9320 - components: - - pos: 0.5,-10.5 - parent: 6 - type: Transform - - uid: 9321 - components: - - pos: 1.5,-10.5 - parent: 6 - type: Transform - - uid: 9322 - components: - - pos: 2.5,-10.5 - parent: 6 - type: Transform - - uid: 9323 - components: - - pos: 3.5,-10.5 - parent: 6 - type: Transform - - uid: 9324 - components: - - pos: 3.5,-11.5 - parent: 6 - type: Transform - - uid: 9325 - components: - - pos: -1.5,-10.5 - parent: 6 - type: Transform - - uid: 9326 - components: - - pos: -2.5,-10.5 - parent: 6 - type: Transform - - uid: 9327 - components: - - pos: -3.5,-10.5 - parent: 6 - type: Transform - - uid: 9328 - components: - - pos: -4.5,-10.5 - parent: 6 - type: Transform - - uid: 9329 - components: - - pos: -5.5,-10.5 - parent: 6 - type: Transform - - uid: 9330 - components: - - pos: -6.5,-10.5 - parent: 6 - type: Transform - - uid: 9331 - components: - - pos: -7.5,-10.5 - parent: 6 - type: Transform - - uid: 9332 - components: - - pos: -8.5,-10.5 - parent: 6 - type: Transform - - uid: 9333 - components: - - pos: -9.5,-10.5 - parent: 6 - type: Transform - - uid: 9334 - components: - - pos: -10.5,-10.5 - parent: 6 - type: Transform - - uid: 9335 - components: - - pos: -11.5,-10.5 - parent: 6 - type: Transform - - uid: 9336 - components: - - pos: -12.5,-10.5 - parent: 6 - type: Transform - - uid: 9337 - components: - - pos: -6.5,-9.5 - parent: 6 - type: Transform - - uid: 9338 - components: - - pos: 17.5,-18.5 - parent: 6 - type: Transform - - uid: 9339 - components: - - pos: 17.5,-17.5 - parent: 6 - type: Transform - - uid: 9340 - components: - - pos: 17.5,-16.5 - parent: 6 - type: Transform - - uid: 9341 - components: - - pos: 17.5,-15.5 - parent: 6 - type: Transform - - uid: 9342 - components: - - pos: 12.5,-18.5 - parent: 6 - type: Transform - - uid: 9343 - components: - - pos: 12.5,-17.5 - parent: 6 - type: Transform - - uid: 9344 - components: - - pos: 12.5,-16.5 - parent: 6 - type: Transform - - uid: 9345 - components: - - pos: 12.5,-15.5 - parent: 6 - type: Transform - - uid: 9346 - components: - - pos: 11.5,-16.5 - parent: 6 - type: Transform - - uid: 9347 - components: - - pos: 10.5,-16.5 - parent: 6 - type: Transform - - uid: 9348 - components: - - pos: 9.5,-16.5 - parent: 6 - type: Transform - - uid: 9349 - components: - - pos: 8.5,-16.5 - parent: 6 - type: Transform - - uid: 9350 - components: - - pos: 10.5,-19.5 - parent: 6 - type: Transform - - uid: 9351 - components: - - pos: 10.5,-20.5 - parent: 6 - type: Transform - - uid: 9352 - components: - - pos: 10.5,-21.5 - parent: 6 - type: Transform - - uid: 9353 - components: - - pos: 10.5,-22.5 - parent: 6 - type: Transform - - uid: 9354 - components: - - pos: 10.5,-23.5 - parent: 6 - type: Transform - - uid: 9355 - components: - - pos: 10.5,-24.5 - parent: 6 - type: Transform - - uid: 9356 - components: - - pos: 10.5,-25.5 - parent: 6 - type: Transform - - uid: 9357 - components: - - pos: 10.5,-26.5 - parent: 6 - type: Transform - - uid: 9358 - components: - - pos: 11.5,-22.5 - parent: 6 - type: Transform - - uid: 9359 - components: - - pos: 12.5,-22.5 - parent: 6 - type: Transform - - uid: 9360 - components: - - pos: 13.5,-22.5 - parent: 6 - type: Transform - - uid: 9361 - components: - - pos: 14.5,-22.5 - parent: 6 - type: Transform - - uid: 9362 - components: - - pos: 15.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9363 - components: - - pos: 16.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9364 - components: - - pos: 17.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9365 - components: - - pos: 18.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9366 - components: - - pos: 19.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9367 - components: - - pos: 19.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9368 - components: - - pos: 19.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9369 - components: - - pos: 16.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9370 - components: - - pos: 16.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9371 - components: - - pos: 17.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9372 - components: - - pos: 18.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9373 - components: - - pos: 19.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9374 - components: - - pos: 16.5,-25.5 - parent: 6 - type: Transform - - uid: 9375 - components: - - pos: 16.5,-26.5 - parent: 6 - type: Transform - - uid: 9376 - components: - - pos: 16.5,-27.5 - parent: 6 - type: Transform - - uid: 9377 - components: - - pos: 15.5,-26.5 - parent: 6 - type: Transform - - uid: 9378 - components: - - pos: 14.5,-26.5 - parent: 6 - type: Transform - - uid: 9379 - components: - - pos: 13.5,-26.5 - parent: 6 - type: Transform - - uid: 9380 - components: - - pos: 12.5,-26.5 - parent: 6 - type: Transform - - uid: 9381 - components: - - pos: 11.5,-26.5 - parent: 6 - type: Transform - - uid: 9382 - components: - - pos: 19.5,-25.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9383 - components: - - pos: 19.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9384 - components: - - pos: 19.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9385 - components: - - pos: 19.5,-28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9386 - components: - - pos: 19.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9387 - components: - - pos: 19.5,-30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9388 - components: - - pos: 18.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9389 - components: - - pos: 17.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9390 - components: - - pos: 16.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9391 - components: - - pos: 15.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9392 - components: - - pos: 14.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9393 - components: - - pos: 13.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9394 - components: - - pos: 12.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9395 - components: - - pos: 12.5,-30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9396 - components: - - pos: 12.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9397 - components: - - pos: 11.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9398 - components: - - pos: 10.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9399 - components: - - pos: 9.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9400 - components: - - pos: 8.5,-29.5 - parent: 6 - type: Transform - - uid: 9401 - components: - - pos: 7.5,-29.5 - parent: 6 - type: Transform - - uid: 9402 - components: - - pos: 6.5,-29.5 - parent: 6 - type: Transform - - uid: 9403 - components: - - pos: 6.5,-30.5 - parent: 6 - type: Transform - - uid: 9404 - components: - - pos: 6.5,-31.5 - parent: 6 - type: Transform - - uid: 9405 - components: - - pos: 6.5,-32.5 - parent: 6 - type: Transform - - uid: 9406 - components: - - pos: 6.5,-33.5 - parent: 6 - type: Transform - - uid: 9407 - components: - - pos: 6.5,-34.5 - parent: 6 - type: Transform - - uid: 9408 - components: - - pos: 6.5,-35.5 - parent: 6 - type: Transform - - uid: 9409 - components: - - pos: 6.5,-36.5 - parent: 6 - type: Transform - - uid: 9410 - components: - - pos: 6.5,-37.5 - parent: 6 - type: Transform - - uid: 9411 - components: - - pos: 6.5,-38.5 - parent: 6 - type: Transform - - uid: 9412 - components: - - pos: 6.5,-39.5 - parent: 6 - type: Transform - - uid: 9413 - components: - - pos: 6.5,-40.5 - parent: 6 - type: Transform - - uid: 9414 - components: - - pos: 6.5,-41.5 - parent: 6 - type: Transform - - uid: 9415 - components: - - pos: 6.5,-42.5 - parent: 6 - type: Transform - - uid: 9416 - components: - - pos: 6.5,-43.5 - parent: 6 - type: Transform - - uid: 9417 - components: - - pos: 6.5,-44.5 - parent: 6 - type: Transform - - uid: 9418 - components: - - pos: 7.5,-44.5 - parent: 6 - type: Transform - - uid: 9419 - components: - - pos: 8.5,-44.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9420 - components: - - pos: 9.5,-44.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9421 - components: - - pos: 9.5,-43.5 - parent: 6 - type: Transform - - uid: 9422 - components: - - pos: 9.5,-42.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9423 - components: - - pos: 7.5,-40.5 - parent: 6 - type: Transform - - uid: 9424 - components: - - pos: 8.5,-40.5 - parent: 6 - type: Transform - - uid: 9425 - components: - - pos: 9.5,-40.5 - parent: 6 - type: Transform - - uid: 9426 - components: - - pos: 10.5,-40.5 - parent: 6 - type: Transform - - uid: 9427 - components: - - pos: 11.5,-40.5 - parent: 6 - type: Transform - - uid: 9428 - components: - - pos: 12.5,-40.5 - parent: 6 - type: Transform - - uid: 9429 - components: - - pos: 13.5,-40.5 - parent: 6 - type: Transform - - uid: 9430 - components: - - pos: 14.5,-40.5 - parent: 6 - type: Transform - - uid: 9431 - components: - - pos: 14.5,-39.5 - parent: 6 - type: Transform - - uid: 9432 - components: - - pos: 14.5,-38.5 - parent: 6 - type: Transform - - uid: 9433 - components: - - pos: 14.5,-37.5 - parent: 6 - type: Transform - - uid: 9434 - components: - - pos: 14.5,-36.5 - parent: 6 - type: Transform - - uid: 9435 - components: - - pos: 14.5,-35.5 - parent: 6 - type: Transform - - uid: 9436 - components: - - pos: 14.5,-34.5 - parent: 6 - type: Transform - - uid: 9437 - components: - - pos: 15.5,-34.5 - parent: 6 - type: Transform - - uid: 9438 - components: - - pos: 16.5,-34.5 - parent: 6 - type: Transform - - uid: 9439 - components: - - pos: 16.5,-33.5 - parent: 6 - type: Transform - - uid: 9440 - components: - - pos: 16.5,-32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9441 - components: - - pos: 17.5,-34.5 - parent: 6 - type: Transform - - uid: 9442 - components: - - pos: 18.5,-34.5 - parent: 6 - type: Transform - - uid: 9443 - components: - - pos: 19.5,-34.5 - parent: 6 - type: Transform - - uid: 9444 - components: - - pos: 20.5,-34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9445 - components: - - pos: 21.5,-34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9446 - components: - - pos: 22.5,-34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9447 - components: - - pos: 19.5,-35.5 - parent: 6 - type: Transform - - uid: 9448 - components: - - pos: 19.5,-36.5 - parent: 6 - type: Transform - - uid: 9449 - components: - - pos: 19.5,-37.5 - parent: 6 - type: Transform - - uid: 9450 - components: - - pos: 19.5,-38.5 - parent: 6 - type: Transform - - uid: 9451 - components: - - pos: 20.5,-38.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9452 - components: - - pos: 21.5,-38.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9453 - components: - - pos: 22.5,-38.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9454 - components: - - pos: 18.5,-38.5 - parent: 6 - type: Transform - - uid: 9455 - components: - - pos: 18.5,-39.5 - parent: 6 - type: Transform - - uid: 9456 - components: - - pos: 18.5,-40.5 - parent: 6 - type: Transform - - uid: 9457 - components: - - pos: 18.5,-41.5 - parent: 6 - type: Transform - - uid: 9458 - components: - - pos: 18.5,-42.5 - parent: 6 - type: Transform - - uid: 9459 - components: - - pos: 18.5,-43.5 - parent: 6 - type: Transform - - uid: 9460 - components: - - pos: 18.5,-44.5 - parent: 6 - type: Transform - - uid: 9461 - components: - - pos: 18.5,-45.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9462 - components: - - pos: 17.5,-45.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9463 - components: - - pos: 16.5,-45.5 - parent: 6 - type: Transform - - uid: 9464 - components: - - pos: 15.5,-45.5 - parent: 6 - type: Transform - - uid: 9465 - components: - - pos: 14.5,-45.5 - parent: 6 - type: Transform - - uid: 9466 - components: - - pos: 13.5,-45.5 - parent: 6 - type: Transform - - uid: 9467 - components: - - pos: 12.5,-45.5 - parent: 6 - type: Transform - - uid: 9468 - components: - - pos: 11.5,-45.5 - parent: 6 - type: Transform - - uid: 9469 - components: - - pos: 10.5,-45.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9470 - components: - - pos: 9.5,-45.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9471 - components: - - pos: 13.5,-35.5 - parent: 6 - type: Transform - - uid: 9472 - components: - - pos: 12.5,-35.5 - parent: 6 - type: Transform - - uid: 9473 - components: - - pos: 11.5,-35.5 - parent: 6 - type: Transform - - uid: 9474 - components: - - pos: 10.5,-35.5 - parent: 6 - type: Transform - - uid: 9475 - components: - - pos: 9.5,-35.5 - parent: 6 - type: Transform - - uid: 9476 - components: - - pos: 8.5,-35.5 - parent: 6 - type: Transform - - uid: 9477 - components: - - pos: 8.5,-34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9478 - components: - - pos: 9.5,-34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9479 - components: - - pos: 8.5,-33.5 - parent: 6 - type: Transform - - uid: 9480 - components: - - pos: 8.5,-32.5 - parent: 6 - type: Transform - - uid: 9481 - components: - - pos: 17.5,-33.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9484 - components: - - pos: 7.5,-46.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9485 - components: - - pos: 7.5,-47.5 - parent: 6 - type: Transform - - uid: 9486 - components: - - pos: 7.5,-48.5 - parent: 6 - type: Transform - - uid: 9487 - components: - - pos: 6.5,-48.5 - parent: 6 - type: Transform - - uid: 9488 - components: - - pos: 6.5,-49.5 - parent: 6 - type: Transform - - uid: 9489 - components: - - pos: 6.5,-50.5 - parent: 6 - type: Transform - - uid: 9490 - components: - - pos: 6.5,-51.5 - parent: 6 - type: Transform - - uid: 9491 - components: - - pos: 6.5,-52.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9492 - components: - - pos: 6.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9493 - components: - - pos: 5.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9494 - components: - - pos: 4.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9495 - components: - - pos: 3.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9496 - components: - - pos: 3.5,-54.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9497 - components: - - pos: 3.5,-55.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9505 - components: - - pos: 2.5,-48.5 - parent: 6 - type: Transform - - uid: 9506 - components: - - pos: 2.5,-47.5 - parent: 6 - type: Transform - - uid: 9507 - components: - - pos: 2.5,-46.5 - parent: 6 - type: Transform - - uid: 9508 - components: - - pos: 2.5,-45.5 - parent: 6 - type: Transform - - uid: 9509 - components: - - pos: 2.5,-44.5 - parent: 6 - type: Transform - - uid: 9510 - components: - - pos: 1.5,-48.5 - parent: 6 - type: Transform - - uid: 9511 - components: - - pos: 0.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9512 - components: - - pos: -0.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9513 - components: - - pos: -1.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9514 - components: - - pos: -2.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9515 - components: - - pos: -3.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9516 - components: - - pos: -4.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9517 - components: - - pos: -5.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9518 - components: - - pos: -5.5,-47.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9519 - components: - - pos: -5.5,-46.5 - parent: 6 - type: Transform - - uid: 9520 - components: - - pos: -5.5,-45.5 - parent: 6 - type: Transform - - uid: 9521 - components: - - pos: -5.5,-44.5 - parent: 6 - type: Transform - - uid: 9522 - components: - - pos: -5.5,-43.5 - parent: 6 - type: Transform - - uid: 9523 - components: - - pos: -4.5,-43.5 - parent: 6 - type: Transform - - uid: 9524 - components: - - pos: -3.5,-43.5 - parent: 6 - type: Transform - - uid: 9525 - components: - - pos: -2.5,-43.5 - parent: 6 - type: Transform - - uid: 9526 - components: - - pos: -1.5,-43.5 - parent: 6 - type: Transform - - uid: 9527 - components: - - pos: -0.5,-43.5 - parent: 6 - type: Transform - - uid: 9528 - components: - - pos: 0.5,-43.5 - parent: 6 - type: Transform - - uid: 9529 - components: - - pos: 1.5,-43.5 - parent: 6 - type: Transform - - uid: 9530 - components: - - pos: 2.5,-43.5 - parent: 6 - type: Transform - - uid: 9531 - components: - - pos: 3.5,-47.5 - parent: 6 - type: Transform - - uid: 9532 - components: - - pos: 4.5,-47.5 - parent: 6 - type: Transform - - uid: 9533 - components: - - pos: 5.5,-47.5 - parent: 6 - type: Transform - - uid: 9534 - components: - - pos: 6.5,-47.5 - parent: 6 - type: Transform - - uid: 9536 - components: - - pos: -5.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9537 - components: - - pos: -5.5,-54.5 - parent: 6 - type: Transform - - uid: 9538 - components: - - pos: -6.5,-54.5 - parent: 6 - type: Transform - - uid: 9539 - components: - - pos: -7.5,-54.5 - parent: 6 - type: Transform - - uid: 9540 - components: - - pos: -7.5,-53.5 - parent: 6 - type: Transform - - uid: 9541 - components: - - pos: -7.5,-52.5 - parent: 6 - type: Transform - - uid: 9542 - components: - - pos: -7.5,-51.5 - parent: 6 - type: Transform - - uid: 9543 - components: - - pos: -7.5,-50.5 - parent: 6 - type: Transform - - uid: 9544 - components: - - pos: -7.5,-49.5 - parent: 6 - type: Transform - - uid: 9545 - components: - - pos: -7.5,-48.5 - parent: 6 - type: Transform - - uid: 9546 - components: - - pos: -7.5,-47.5 - parent: 6 - type: Transform - - uid: 9547 - components: - - pos: -8.5,-47.5 - parent: 6 - type: Transform - - uid: 9548 - components: - - pos: -9.5,-47.5 - parent: 6 - type: Transform - - uid: 9549 - components: - - pos: -10.5,-47.5 - parent: 6 - type: Transform - - uid: 9550 - components: - - pos: -11.5,-47.5 - parent: 6 - type: Transform - - uid: 9551 - components: - - pos: -12.5,-47.5 - parent: 6 - type: Transform - - uid: 9552 - components: - - pos: -12.5,-48.5 - parent: 6 - type: Transform - - uid: 9553 - components: - - pos: -12.5,-49.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9554 - components: - - pos: -12.5,-50.5 - parent: 6 - type: Transform - - uid: 9555 - components: - - pos: -12.5,-51.5 - parent: 6 - type: Transform - - uid: 9556 - components: - - pos: -12.5,-52.5 - parent: 6 - type: Transform - - uid: 9557 - components: - - pos: -12.5,-53.5 - parent: 6 - type: Transform - - uid: 9558 - components: - - pos: -12.5,-54.5 - parent: 6 - type: Transform - - uid: 9559 - components: - - pos: -12.5,-55.5 - parent: 6 - type: Transform - - uid: 9560 - components: - - pos: -12.5,-56.5 - parent: 6 - type: Transform - - uid: 9561 - components: - - pos: -11.5,-52.5 - parent: 6 - type: Transform - - uid: 9562 - components: - - pos: -10.5,-52.5 - parent: 6 - type: Transform - - uid: 9563 - components: - - pos: -11.5,-56.5 - parent: 6 - type: Transform - - uid: 9564 - components: - - pos: -10.5,-56.5 - parent: 6 - type: Transform - - uid: 9565 - components: - - pos: -9.5,-56.5 - parent: 6 - type: Transform - - uid: 9566 - components: - - pos: -8.5,-56.5 - parent: 6 - type: Transform - - uid: 9567 - components: - - pos: -7.5,-56.5 - parent: 6 - type: Transform - - uid: 9568 - components: - - pos: -7.5,-55.5 - parent: 6 - type: Transform - - uid: 9569 - components: - - pos: -6.5,-56.5 - parent: 6 - type: Transform - - uid: 9570 - components: - - pos: -6.5,-57.5 - parent: 6 - type: Transform - - uid: 9571 - components: - - pos: -6.5,-58.5 - parent: 6 - type: Transform - - uid: 9572 - components: - - pos: -6.5,-59.5 - parent: 6 - type: Transform - - uid: 9573 - components: - - pos: -6.5,-60.5 - parent: 6 - type: Transform - - uid: 9574 - components: - - pos: -6.5,-61.5 - parent: 6 - type: Transform - - uid: 9575 - components: - - pos: -6.5,-62.5 - parent: 6 - type: Transform - - uid: 9576 - components: - - pos: -6.5,-63.5 - parent: 6 - type: Transform - - uid: 9577 - components: - - pos: -7.5,-58.5 - parent: 6 - type: Transform - - uid: 9578 - components: - - pos: -8.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9579 - components: - - pos: -9.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9580 - components: - - pos: -10.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9581 - components: - - pos: -11.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9582 - components: - - pos: -12.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9583 - components: - - pos: -13.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9584 - components: - - pos: -14.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9585 - components: - - pos: -14.5,-57.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9586 - components: - - pos: -14.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9587 - components: - - pos: -15.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9588 - components: - - pos: -16.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9589 - components: - - pos: -17.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9590 - components: - - pos: -18.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9591 - components: - - pos: -19.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9592 - components: - - pos: -19.5,-55.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9593 - components: - - pos: -19.5,-54.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9594 - components: - - pos: -19.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9595 - components: - - pos: -18.5,-53.5 - parent: 6 - type: Transform - - uid: 9596 - components: - - pos: -17.5,-53.5 - parent: 6 - type: Transform - - uid: 9597 - components: - - pos: -16.5,-53.5 - parent: 6 - type: Transform - - uid: 9598 - components: - - pos: -15.5,-53.5 - parent: 6 - type: Transform - - uid: 9599 - components: - - pos: -14.5,-53.5 - parent: 6 - type: Transform - - uid: 9600 - components: - - pos: -13.5,-53.5 - parent: 6 - type: Transform - - uid: 9601 - components: - - pos: -15.5,-52.5 - parent: 6 - type: Transform - - uid: 9602 - components: - - pos: -15.5,-51.5 - parent: 6 - type: Transform - - uid: 9603 - components: - - pos: -15.5,-50.5 - parent: 6 - type: Transform - - uid: 9604 - components: - - pos: -15.5,-49.5 - parent: 6 - type: Transform - - uid: 9605 - components: - - pos: -15.5,-48.5 - parent: 6 - type: Transform - - uid: 9606 - components: - - pos: -15.5,-47.5 - parent: 6 - type: Transform - - uid: 9607 - components: - - pos: -12.5,-46.5 - parent: 6 - type: Transform - - uid: 9608 - components: - - pos: -12.5,-45.5 - parent: 6 - type: Transform - - uid: 9609 - components: - - pos: -12.5,-44.5 - parent: 6 - type: Transform - - uid: 9610 - components: - - pos: -12.5,-43.5 - parent: 6 - type: Transform - - uid: 9611 - components: - - pos: -4.5,-54.5 - parent: 6 - type: Transform - - uid: 9612 - components: - - pos: -3.5,-54.5 - parent: 6 - type: Transform - - uid: 9613 - components: - - pos: -2.5,-54.5 - parent: 6 - type: Transform - - uid: 9614 - components: - - pos: -1.5,-54.5 - parent: 6 - type: Transform - - uid: 9615 - components: - - pos: -1.5,-53.5 - parent: 6 - type: Transform - - uid: 9616 - components: - - pos: -1.5,-52.5 - parent: 6 - type: Transform - - uid: 9617 - components: - - pos: -1.5,-51.5 - parent: 6 - type: Transform - - uid: 9618 - components: - - pos: -5.5,-58.5 - parent: 6 - type: Transform - - uid: 9619 - components: - - pos: -4.5,-58.5 - parent: 6 - type: Transform - - uid: 9620 - components: - - pos: -3.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9621 - components: - - pos: -2.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9622 - components: - - pos: -1.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9623 - components: - - pos: -0.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9624 - components: - - pos: 0.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9625 - components: - - pos: 0.5,-57.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9626 - components: - - pos: 0.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9627 - components: - - pos: 0.5,-55.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9628 - components: - - pos: 0.5,-54.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9629 - components: - - pos: 0.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9631 - components: - - pos: -3.5,-70.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9632 - components: - - pos: -4.5,-70.5 - parent: 6 - type: Transform - - uid: 9633 - components: - - pos: -5.5,-70.5 - parent: 6 - type: Transform - - uid: 9634 - components: - - pos: -6.5,-70.5 - parent: 6 - type: Transform - - uid: 9635 - components: - - pos: -6.5,-69.5 - parent: 6 - type: Transform - - uid: 9636 - components: - - pos: -6.5,-71.5 - parent: 6 - type: Transform - - uid: 9637 - components: - - pos: -6.5,-72.5 - parent: 6 - type: Transform - - uid: 9638 - components: - - pos: -6.5,-73.5 - parent: 6 - type: Transform - - uid: 9639 - components: - - pos: -6.5,-74.5 - parent: 6 - type: Transform - - uid: 9640 - components: - - pos: -6.5,-75.5 - parent: 6 - type: Transform - - uid: 9641 - components: - - pos: -6.5,-76.5 - parent: 6 - type: Transform - - uid: 9642 - components: - - pos: -6.5,-77.5 - parent: 6 - type: Transform - - uid: 9643 - components: - - pos: -6.5,-78.5 - parent: 6 - type: Transform - - uid: 9644 - components: - - pos: -5.5,-78.5 - parent: 6 - type: Transform - - uid: 9645 - components: - - pos: -4.5,-78.5 - parent: 6 - type: Transform - - uid: 9646 - components: - - pos: -3.5,-78.5 - parent: 6 - type: Transform - - uid: 9647 - components: - - pos: -2.5,-78.5 - parent: 6 - type: Transform - - uid: 9648 - components: - - pos: -1.5,-78.5 - parent: 6 - type: Transform - - uid: 9649 - components: - - pos: -1.5,-77.5 - parent: 6 - type: Transform - - uid: 9650 - components: - - pos: -1.5,-76.5 - parent: 6 - type: Transform - - uid: 9651 - components: - - pos: -1.5,-75.5 - parent: 6 - type: Transform - - uid: 9652 - components: - - pos: -1.5,-74.5 - parent: 6 - type: Transform - - uid: 9653 - components: - - pos: -1.5,-73.5 - parent: 6 - type: Transform - - uid: 9654 - components: - - pos: -1.5,-72.5 - parent: 6 - type: Transform - - uid: 9655 - components: - - pos: -1.5,-71.5 - parent: 6 - type: Transform - - uid: 9656 - components: - - pos: -1.5,-70.5 - parent: 6 - type: Transform - - uid: 9657 - components: - - pos: -1.5,-69.5 - parent: 6 - type: Transform - - uid: 9658 - components: - - pos: -2.5,-70.5 - parent: 6 - type: Transform - - uid: 9659 - components: - - pos: -0.5,-70.5 - parent: 6 - type: Transform - - uid: 9660 - components: - - pos: 0.5,-70.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9661 - components: - - pos: 1.5,-70.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9662 - components: - - pos: -0.5,-72.5 - parent: 6 - type: Transform - - uid: 9663 - components: - - pos: 0.5,-72.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9664 - components: - - pos: 1.5,-72.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9665 - components: - - pos: -0.5,-77.5 - parent: 6 - type: Transform - - uid: 9666 - components: - - pos: 0.5,-77.5 - parent: 6 - type: Transform - - uid: 9667 - components: - - pos: 1.5,-77.5 - parent: 6 - type: Transform - - uid: 9668 - components: - - pos: 1.5,-78.5 - parent: 6 - type: Transform - - uid: 9669 - components: - - pos: 1.5,-79.5 - parent: 6 - type: Transform - - uid: 9670 - components: - - pos: 1.5,-80.5 - parent: 6 - type: Transform - - uid: 9671 - components: - - pos: 1.5,-81.5 - parent: 6 - type: Transform - - uid: 9672 - components: - - pos: 0.5,-81.5 - parent: 6 - type: Transform - - uid: 9673 - components: - - pos: -0.5,-81.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9674 - components: - - pos: -1.5,-81.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9675 - components: - - pos: -2.5,-81.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9676 - components: - - pos: -3.5,-81.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9677 - components: - - pos: -4.5,-81.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9678 - components: - - pos: -5.5,-81.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9679 - components: - - pos: -6.5,-81.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9680 - components: - - pos: -7.5,-81.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9684 - components: - - pos: -7.5,-74.5 - parent: 6 - type: Transform - - uid: 9686 - components: - - pos: -8.5,-74.5 - parent: 6 - type: Transform - - uid: 9687 - components: - - pos: -9.5,-74.5 - parent: 6 - type: Transform - - uid: 9688 - components: - - pos: -10.5,-74.5 - parent: 6 - type: Transform - - uid: 9689 - components: - - pos: -11.5,-74.5 - parent: 6 - type: Transform - - uid: 9690 - components: - - pos: -10.5,-75.5 - parent: 6 - type: Transform - - uid: 9691 - components: - - pos: -12.5,-74.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9692 - components: - - pos: -12.5,-75.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9693 - components: - - pos: -10.5,-73.5 - parent: 6 - type: Transform - - uid: 9694 - components: - - pos: -10.5,-72.5 - parent: 6 - type: Transform - - uid: 9695 - components: - - pos: -10.5,-71.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9697 - components: - - pos: -10.5,-76.5 - parent: 6 - type: Transform - - uid: 9698 - components: - - pos: -11.5,-77.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9699 - components: - - pos: -10.5,-77.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9700 - components: - - pos: -9.5,-77.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9702 - components: - - pos: 3.5,-36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9703 - components: - - pos: 2.5,-36.5 - parent: 6 - type: Transform - - uid: 9704 - components: - - pos: 1.5,-36.5 - parent: 6 - type: Transform - - uid: 9705 - components: - - pos: 1.5,-35.5 - parent: 6 - type: Transform - - uid: 9706 - components: - - pos: 0.5,-35.5 - parent: 6 - type: Transform - - uid: 9707 - components: - - pos: -5.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9708 - components: - - pos: -4.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9709 - components: - - pos: -3.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9710 - components: - - pos: -2.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9716 - components: - - pos: 0.5,-32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9717 - components: - - pos: 0.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9718 - components: - - pos: 0.5,-30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9719 - components: - - pos: 0.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9720 - components: - - pos: -1.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9721 - components: - - pos: -5.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9722 - components: - - pos: -7.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9723 - components: - - pos: -8.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9724 - components: - - pos: -9.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9725 - components: - - pos: -10.5,-32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9726 - components: - - pos: -10.5,-33.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9727 - components: - - pos: -10.5,-34.5 - parent: 6 - type: Transform - - uid: 9728 - components: - - pos: -10.5,-35.5 - parent: 6 - type: Transform - - uid: 9729 - components: - - pos: -10.5,-36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9730 - components: - - pos: -10.5,-37.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9731 - components: - - pos: -10.5,-38.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9732 - components: - - pos: -2.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9733 - components: - - pos: 0.5,-39.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9734 - components: - - pos: 0.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9735 - components: - - pos: -0.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9736 - components: - - pos: -1.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9737 - components: - - pos: -10.5,-39.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9738 - components: - - pos: -9.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9739 - components: - - pos: -8.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9740 - components: - - pos: -7.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9741 - components: - - pos: -6.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9742 - components: - - pos: -10.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9743 - components: - - pos: -10.5,-34.5 - parent: 6 - type: Transform - - uid: 9744 - components: - - pos: -11.5,-34.5 - parent: 6 - type: Transform - - uid: 9745 - components: - - pos: -12.5,-34.5 - parent: 6 - type: Transform - - uid: 9746 - components: - - pos: 1.5,-34.5 - parent: 6 - type: Transform - - uid: 9747 - components: - - pos: 1.5,-33.5 - parent: 6 - type: Transform - - uid: 9748 - components: - - pos: 1.5,-32.5 - parent: 6 - type: Transform - - uid: 9749 - components: - - pos: 1.5,-37.5 - parent: 6 - type: Transform - - uid: 9750 - components: - - pos: -10.5,-30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9751 - components: - - pos: -10.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9752 - components: - - pos: -4.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9753 - components: - - pos: 0.5,-36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9754 - components: - - pos: 0.5,-33.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9755 - components: - - pos: 0.5,-37.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9761 - components: - - pos: -1.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9762 - components: - - pos: -0.5,-18.5 - parent: 6 - type: Transform - - uid: 9763 - components: - - pos: -0.5,-17.5 - parent: 6 - type: Transform - - uid: 9764 - components: - - pos: -0.5,-16.5 - parent: 6 - type: Transform - - uid: 9765 - components: - - pos: -0.5,-15.5 - parent: 6 - type: Transform - - uid: 9766 - components: - - pos: -1.5,-15.5 - parent: 6 - type: Transform - - uid: 9767 - components: - - pos: -2.5,-15.5 - parent: 6 - type: Transform - - uid: 9768 - components: - - pos: -3.5,-15.5 - parent: 6 - type: Transform - - uid: 9769 - components: - - pos: -4.5,-15.5 - parent: 6 - type: Transform - - uid: 9770 - components: - - pos: -5.5,-15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9771 - components: - - pos: -6.5,-15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9772 - components: - - pos: -6.5,-14.5 - parent: 6 - type: Transform - - uid: 9773 - components: - - pos: -6.5,-13.5 - parent: 6 - type: Transform - - uid: 9774 - components: - - pos: -2.5,-14.5 - parent: 6 - type: Transform - - uid: 9775 - components: - - pos: -2.5,-16.5 - parent: 6 - type: Transform - - uid: 9776 - components: - - pos: 0.5,-15.5 - parent: 6 - type: Transform - - uid: 9777 - components: - - pos: 1.5,-15.5 - parent: 6 - type: Transform - - uid: 9778 - components: - - pos: 2.5,-15.5 - parent: 6 - type: Transform - - uid: 9779 - components: - - pos: 3.5,-15.5 - parent: 6 - type: Transform - - uid: 9780 - components: - - pos: 4.5,-15.5 - parent: 6 - type: Transform - - uid: 9781 - components: - - pos: 5.5,-15.5 - parent: 6 - type: Transform - - uid: 9782 - components: - - pos: 5.5,-16.5 - parent: 6 - type: Transform - - uid: 9783 - components: - - pos: 5.5,-17.5 - parent: 6 - type: Transform - - uid: 9784 - components: - - pos: 5.5,-18.5 - parent: 6 - type: Transform - - uid: 9785 - components: - - pos: 5.5,-19.5 - parent: 6 - type: Transform - - uid: 9786 - components: - - pos: 5.5,-20.5 - parent: 6 - type: Transform - - uid: 9787 - components: - - pos: 5.5,-21.5 - parent: 6 - type: Transform - - uid: 9788 - components: - - pos: 4.5,-21.5 - parent: 6 - type: Transform - - uid: 9789 - components: - - pos: 3.5,-21.5 - parent: 6 - type: Transform - - uid: 9790 - components: - - pos: 2.5,-21.5 - parent: 6 - type: Transform - - uid: 9791 - components: - - pos: 1.5,-21.5 - parent: 6 - type: Transform - - uid: 9792 - components: - - pos: 0.5,-21.5 - parent: 6 - type: Transform - - uid: 9793 - components: - - pos: -0.5,-21.5 - parent: 6 - type: Transform - - uid: 9794 - components: - - pos: -1.5,-21.5 - parent: 6 - type: Transform - - uid: 9795 - components: - - pos: -2.5,-21.5 - parent: 6 - type: Transform - - uid: 9796 - components: - - pos: -3.5,-21.5 - parent: 6 - type: Transform - - uid: 9797 - components: - - pos: -3.5,-22.5 - parent: 6 - type: Transform - - uid: 9798 - components: - - pos: -3.5,-23.5 - parent: 6 - type: Transform - - uid: 9799 - components: - - pos: -3.5,-24.5 - parent: 6 - type: Transform - - uid: 9800 - components: - - pos: -3.5,-25.5 - parent: 6 - type: Transform - - uid: 9801 - components: - - pos: -3.5,-26.5 - parent: 6 - type: Transform - - uid: 9802 - components: - - pos: -2.5,-26.5 - parent: 6 - type: Transform - - uid: 9803 - components: - - pos: -1.5,-26.5 - parent: 6 - type: Transform - - uid: 9804 - components: - - pos: -0.5,-26.5 - parent: 6 - type: Transform - - uid: 9805 - components: - - pos: 0.5,-26.5 - parent: 6 - type: Transform - - uid: 9806 - components: - - pos: 1.5,-26.5 - parent: 6 - type: Transform - - uid: 9807 - components: - - pos: 1.5,-25.5 - parent: 6 - type: Transform - - uid: 9808 - components: - - pos: 1.5,-24.5 - parent: 6 - type: Transform - - uid: 9809 - components: - - pos: 2.5,-24.5 - parent: 6 - type: Transform - - uid: 9810 - components: - - pos: 3.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9811 - components: - - pos: 4.5,-24.5 - parent: 6 - type: Transform - - uid: 9812 - components: - - pos: 5.5,-24.5 - parent: 6 - type: Transform - - uid: 9813 - components: - - pos: 5.5,-23.5 - parent: 6 - type: Transform - - uid: 9814 - components: - - pos: 5.5,-22.5 - parent: 6 - type: Transform - - uid: 9815 - components: - - pos: -6.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9816 - components: - - pos: -6.5,-21.5 - parent: 6 - type: Transform - - uid: 9817 - components: - - pos: -6.5,-20.5 - parent: 6 - type: Transform - - uid: 9819 - components: - - pos: -6.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9820 - components: - - pos: -6.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9821 - components: - - pos: -6.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9822 - components: - - pos: -6.5,-23.5 - parent: 6 - type: Transform - - uid: 9823 - components: - - pos: -6.5,-24.5 - parent: 6 - type: Transform - - uid: 9824 - components: - - pos: -6.5,-25.5 - parent: 6 - type: Transform - - uid: 9825 - components: - - pos: -6.5,-26.5 - parent: 6 - type: Transform - - uid: 9826 - components: - - pos: -7.5,-26.5 - parent: 6 - type: Transform - - uid: 9827 - components: - - pos: -8.5,-26.5 - parent: 6 - type: Transform - - uid: 9828 - components: - - pos: -9.5,-26.5 - parent: 6 - type: Transform - - uid: 9829 - components: - - pos: -10.5,-26.5 - parent: 6 - type: Transform - - uid: 9830 - components: - - pos: -11.5,-26.5 - parent: 6 - type: Transform - - uid: 9831 - components: - - pos: -11.5,-25.5 - parent: 6 - type: Transform - - uid: 9832 - components: - - pos: -11.5,-24.5 - parent: 6 - type: Transform - - uid: 9833 - components: - - pos: -11.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9834 - components: - - pos: -11.5,-22.5 - parent: 6 - type: Transform - - uid: 9835 - components: - - pos: -11.5,-21.5 - parent: 6 - type: Transform - - uid: 9836 - components: - - pos: -11.5,-20.5 - parent: 6 - type: Transform - - uid: 9837 - components: - - pos: -11.5,-19.5 - parent: 6 - type: Transform - - uid: 9838 - components: - - pos: -11.5,-18.5 - parent: 6 - type: Transform - - uid: 9839 - components: - - pos: -11.5,-17.5 - parent: 6 - type: Transform - - uid: 9840 - components: - - pos: -11.5,-16.5 - parent: 6 - type: Transform - - uid: 9841 - components: - - pos: -11.5,-15.5 - parent: 6 - type: Transform - - uid: 9842 - components: - - pos: -11.5,-14.5 - parent: 6 - type: Transform - - uid: 9843 - components: - - pos: -10.5,-14.5 - parent: 6 - type: Transform - - uid: 9844 - components: - - pos: -9.5,-14.5 - parent: 6 - type: Transform - - uid: 9845 - components: - - pos: -8.5,-14.5 - parent: 6 - type: Transform - - uid: 9846 - components: - - pos: -8.5,-15.5 - parent: 6 - type: Transform - - uid: 9847 - components: - - pos: -8.5,-16.5 - parent: 6 - type: Transform - - uid: 9848 - components: - - pos: -8.5,-17.5 - parent: 6 - type: Transform - - uid: 9849 - components: - - pos: -8.5,-18.5 - parent: 6 - type: Transform - - uid: 9850 - components: - - pos: -12.5,-20.5 - parent: 6 - type: Transform - - uid: 9851 - components: - - pos: -13.5,-20.5 - parent: 6 - type: Transform - - uid: 9852 - components: - - pos: -13.5,-21.5 - parent: 6 - type: Transform - - uid: 9853 - components: - - pos: -13.5,-22.5 - parent: 6 - type: Transform - - uid: 9854 - components: - - pos: -13.5,-23.5 - parent: 6 - type: Transform - - uid: 9855 - components: - - pos: -13.5,-24.5 - parent: 6 - type: Transform - - uid: 9856 - components: - - pos: -13.5,-25.5 - parent: 6 - type: Transform - - uid: 9857 - components: - - pos: -12.5,-25.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9858 - components: - - pos: -13.5,-26.5 - parent: 6 - type: Transform - - uid: 9859 - components: - - pos: -13.5,-27.5 - parent: 6 - type: Transform - - uid: 9860 - components: - - pos: -13.5,-28.5 - parent: 6 - type: Transform - - uid: 9861 - components: - - pos: -13.5,-29.5 - parent: 6 - type: Transform - - uid: 9862 - components: - - pos: -13.5,-30.5 - parent: 6 - type: Transform - - uid: 9863 - components: - - pos: -13.5,-31.5 - parent: 6 - type: Transform - - uid: 9864 - components: - - pos: -13.5,-32.5 - parent: 6 - type: Transform - - uid: 9866 - components: - - pos: -25.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9867 - components: - - pos: -25.5,-18.5 - parent: 6 - type: Transform - - uid: 9868 - components: - - pos: -25.5,-17.5 - parent: 6 - type: Transform - - uid: 9869 - components: - - pos: -25.5,-16.5 - parent: 6 - type: Transform - - uid: 9870 - components: - - pos: -25.5,-15.5 - parent: 6 - type: Transform - - uid: 9871 - components: - - pos: -25.5,-14.5 - parent: 6 - type: Transform - - uid: 9872 - components: - - pos: -24.5,-14.5 - parent: 6 - type: Transform - - uid: 9873 - components: - - pos: -23.5,-14.5 - parent: 6 - type: Transform - - uid: 9874 - components: - - pos: -22.5,-14.5 - parent: 6 - type: Transform - - uid: 9875 - components: - - pos: -21.5,-14.5 - parent: 6 - type: Transform - - uid: 9876 - components: - - pos: -21.5,-15.5 - parent: 6 - type: Transform - - uid: 9877 - components: - - pos: -21.5,-16.5 - parent: 6 - type: Transform - - uid: 9878 - components: - - pos: -21.5,-17.5 - parent: 6 - type: Transform - - uid: 9879 - components: - - pos: -21.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9880 - components: - - pos: -21.5,-19.5 - parent: 6 - type: Transform - - uid: 9881 - components: - - pos: -21.5,-20.5 - parent: 6 - type: Transform - - uid: 9882 - components: - - pos: -21.5,-21.5 - parent: 6 - type: Transform - - uid: 9883 - components: - - pos: -20.5,-20.5 - parent: 6 - type: Transform - - uid: 9884 - components: - - pos: -19.5,-20.5 - parent: 6 - type: Transform - - uid: 9885 - components: - - pos: -18.5,-20.5 - parent: 6 - type: Transform - - uid: 9886 - components: - - pos: -17.5,-20.5 - parent: 6 - type: Transform - - uid: 9887 - components: - - pos: -17.5,-19.5 - parent: 6 - type: Transform - - uid: 9888 - components: - - pos: -17.5,-18.5 - parent: 6 - type: Transform - - uid: 9889 - components: - - pos: -17.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9890 - components: - - pos: -17.5,-16.5 - parent: 6 - type: Transform - - uid: 9891 - components: - - pos: -17.5,-15.5 - parent: 6 - type: Transform - - uid: 9892 - components: - - pos: -17.5,-14.5 - parent: 6 - type: Transform - - uid: 9893 - components: - - pos: -17.5,-13.5 - parent: 6 - type: Transform - - uid: 9894 - components: - - pos: -17.5,-12.5 - parent: 6 - type: Transform - - uid: 9895 - components: - - pos: -17.5,-11.5 - parent: 6 - type: Transform - - uid: 9896 - components: - - pos: -18.5,-11.5 - parent: 6 - type: Transform - - uid: 9897 - components: - - pos: -19.5,-11.5 - parent: 6 - type: Transform - - uid: 9898 - components: - - pos: -20.5,-11.5 - parent: 6 - type: Transform - - uid: 9899 - components: - - pos: -21.5,-11.5 - parent: 6 - type: Transform - - uid: 9900 - components: - - pos: -22.5,-11.5 - parent: 6 - type: Transform - - uid: 9901 - components: - - pos: -23.5,-11.5 - parent: 6 - type: Transform - - uid: 9902 - components: - - pos: -24.5,-11.5 - parent: 6 - type: Transform - - uid: 9903 - components: - - pos: -25.5,-11.5 - parent: 6 - type: Transform - - uid: 9904 - components: - - pos: -26.5,-11.5 - parent: 6 - type: Transform - - uid: 9905 - components: - - pos: -21.5,-22.5 - parent: 6 - type: Transform - - uid: 9906 - components: - - pos: -21.5,-23.5 - parent: 6 - type: Transform - - uid: 9907 - components: - - pos: -20.5,-23.5 - parent: 6 - type: Transform - - uid: 9908 - components: - - pos: -19.5,-23.5 - parent: 6 - type: Transform - - uid: 9909 - components: - - pos: -18.5,-23.5 - parent: 6 - type: Transform - - uid: 9910 - components: - - pos: -17.5,-23.5 - parent: 6 - type: Transform - - uid: 9911 - components: - - pos: -17.5,-24.5 - parent: 6 - type: Transform - - uid: 9912 - components: - - pos: -17.5,-25.5 - parent: 6 - type: Transform - - uid: 9913 - components: - - pos: -17.5,-26.5 - parent: 6 - type: Transform - - uid: 9914 - components: - - pos: -18.5,-26.5 - parent: 6 - type: Transform - - uid: 9915 - components: - - pos: -19.5,-26.5 - parent: 6 - type: Transform - - uid: 9916 - components: - - pos: -20.5,-26.5 - parent: 6 - type: Transform - - uid: 9917 - components: - - pos: -25.5,-20.5 - parent: 6 - type: Transform - - uid: 9918 - components: - - pos: -25.5,-21.5 - parent: 6 - type: Transform - - uid: 9919 - components: - - pos: -25.5,-22.5 - parent: 6 - type: Transform - - uid: 9920 - components: - - pos: -26.5,-22.5 - parent: 6 - type: Transform - - uid: 9921 - components: - - pos: -27.5,-22.5 - parent: 6 - type: Transform - - uid: 9922 - components: - - pos: -28.5,-22.5 - parent: 6 - type: Transform - - uid: 9923 - components: - - pos: -29.5,-22.5 - parent: 6 - type: Transform - - uid: 9924 - components: - - pos: -30.5,-22.5 - parent: 6 - type: Transform - - uid: 9925 - components: - - pos: -30.5,-21.5 - parent: 6 - type: Transform - - uid: 9926 - components: - - pos: -30.5,-20.5 - parent: 6 - type: Transform - - uid: 9927 - components: - - pos: -29.5,-20.5 - parent: 6 - type: Transform - - uid: 9928 - components: - - pos: -29.5,-19.5 - parent: 6 - type: Transform - - uid: 9929 - components: - - pos: -29.5,-18.5 - parent: 6 - type: Transform - - uid: 9930 - components: - - pos: -29.5,-17.5 - parent: 6 - type: Transform - - uid: 9931 - components: - - pos: -29.5,-16.5 - parent: 6 - type: Transform - - uid: 9932 - components: - - pos: -29.5,-15.5 - parent: 6 - type: Transform - - uid: 9933 - components: - - pos: -27.5,-11.5 - parent: 6 - type: Transform - - uid: 9934 - components: - - pos: -28.5,-11.5 - parent: 6 - type: Transform - - uid: 9935 - components: - - pos: -29.5,-11.5 - parent: 6 - type: Transform - - uid: 9937 - components: - - pos: -21.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9938 - components: - - pos: -22.5,-31.5 - parent: 6 - type: Transform - - uid: 9939 - components: - - pos: -23.5,-31.5 - parent: 6 - type: Transform - - uid: 9940 - components: - - pos: -23.5,-32.5 - parent: 6 - type: Transform - - uid: 9941 - components: - - pos: -23.5,-33.5 - parent: 6 - type: Transform - - uid: 9942 - components: - - pos: -23.5,-34.5 - parent: 6 - type: Transform - - uid: 9943 - components: - - pos: -23.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9944 - components: - - pos: -22.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9945 - components: - - pos: -21.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9946 - components: - - pos: -20.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9947 - components: - - pos: -19.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9948 - components: - - pos: -18.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9949 - components: - - pos: -17.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9950 - components: - - pos: -16.5,-35.5 - parent: 6 - type: Transform - - uid: 9951 - components: - - pos: -15.5,-35.5 - parent: 6 - type: Transform - - uid: 9952 - components: - - pos: -15.5,-34.5 - parent: 6 - type: Transform - - uid: 9953 - components: - - pos: -15.5,-33.5 - parent: 6 - type: Transform - - uid: 9954 - components: - - pos: -15.5,-32.5 - parent: 6 - type: Transform - - uid: 9955 - components: - - pos: -16.5,-32.5 - parent: 6 - type: Transform - - uid: 9956 - components: - - pos: -17.5,-32.5 - parent: 6 - type: Transform - - uid: 9957 - components: - - pos: -18.5,-32.5 - parent: 6 - type: Transform - - uid: 9958 - components: - - pos: -18.5,-31.5 - parent: 6 - type: Transform - - uid: 9959 - components: - - pos: -18.5,-30.5 - parent: 6 - type: Transform - - uid: 9960 - components: - - pos: -19.5,-30.5 - parent: 6 - type: Transform - - uid: 9961 - components: - - pos: -20.5,-30.5 - parent: 6 - type: Transform - - uid: 9962 - components: - - pos: -21.5,-30.5 - parent: 6 - type: Transform - - uid: 9963 - components: - - pos: -24.5,-31.5 - parent: 6 - type: Transform - - uid: 9964 - components: - - pos: -25.5,-31.5 - parent: 6 - type: Transform - - uid: 9965 - components: - - pos: -26.5,-31.5 - parent: 6 - type: Transform - - uid: 9966 - components: - - pos: -26.5,-33.5 - parent: 6 - type: Transform - - uid: 9967 - components: - - pos: -26.5,-32.5 - parent: 6 - type: Transform - - uid: 9968 - components: - - pos: -26.5,-30.5 - parent: 6 - type: Transform - - uid: 9969 - components: - - pos: -26.5,-29.5 - parent: 6 - type: Transform - - uid: 9970 - components: - - pos: -26.5,-28.5 - parent: 6 - type: Transform - - uid: 9971 - components: - - pos: -26.5,-27.5 - parent: 6 - type: Transform - - uid: 9972 - components: - - pos: -26.5,-26.5 - parent: 6 - type: Transform - - uid: 9973 - components: - - pos: -26.5,-25.5 - parent: 6 - type: Transform - - uid: 9974 - components: - - pos: -26.5,-24.5 - parent: 6 - type: Transform - - uid: 9975 - components: - - pos: -25.5,-24.5 - parent: 6 - type: Transform - - uid: 9976 - components: - - pos: -23.5,-24.5 - parent: 6 - type: Transform - - uid: 9977 - components: - - pos: -24.5,-24.5 - parent: 6 - type: Transform - - uid: 9978 - components: - - pos: -23.5,-25.5 - parent: 6 - type: Transform - - uid: 9979 - components: - - pos: -23.5,-26.5 - parent: 6 - type: Transform - - uid: 9980 - components: - - pos: -23.5,-27.5 - parent: 6 - type: Transform - - uid: 9981 - components: - - pos: -23.5,-28.5 - parent: 6 - type: Transform - - uid: 9982 - components: - - pos: -23.5,-29.5 - parent: 6 - type: Transform - - uid: 9983 - components: - - pos: -23.5,-30.5 - parent: 6 - type: Transform - - uid: 9984 - components: - - pos: -24.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9985 - components: - - pos: -25.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9986 - components: - - pos: -26.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9987 - components: - - pos: -27.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9988 - components: - - pos: -28.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9989 - components: - - pos: -29.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9990 - components: - - pos: -29.5,-34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9991 - components: - - pos: -29.5,-33.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9992 - components: - - pos: -29.5,-32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9993 - components: - - pos: -29.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9994 - components: - - pos: -29.5,-30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9995 - components: - - pos: -29.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9996 - components: - - pos: -29.5,-28.5 - parent: 6 - type: Transform - - uid: 9997 - components: - - pos: -29.5,-27.5 - parent: 6 - type: Transform - - uid: 9998 - components: - - pos: -29.5,-26.5 - parent: 6 - type: Transform - - uid: 9999 - components: - - pos: -29.5,-25.5 - parent: 6 - type: Transform - - uid: 10000 - components: - - pos: -29.5,-24.5 - parent: 6 - type: Transform - - uid: 10001 - components: - - pos: -30.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10002 - components: - - pos: -31.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10003 - components: - - pos: -31.5,-30.5 - parent: 6 - type: Transform - - uid: 10005 - components: - - pos: -35.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10006 - components: - - pos: -36.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10007 - components: - - pos: -37.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10008 - components: - - pos: -38.5,-19.5 - parent: 6 - type: Transform - - uid: 10009 - components: - - pos: -38.5,-18.5 - parent: 6 - type: Transform - - uid: 10010 - components: - - pos: -38.5,-17.5 - parent: 6 - type: Transform - - uid: 10011 - components: - - pos: -38.5,-20.5 - parent: 6 - type: Transform - - uid: 10012 - components: - - pos: -38.5,-21.5 - parent: 6 - type: Transform - - uid: 10013 - components: - - pos: -38.5,-22.5 - parent: 6 - type: Transform - - uid: 10014 - components: - - pos: -37.5,-22.5 - parent: 6 - type: Transform - - uid: 10015 - components: - - pos: -36.5,-22.5 - parent: 6 - type: Transform - - uid: 10016 - components: - - pos: -35.5,-22.5 - parent: 6 - type: Transform - - uid: 10017 - components: - - pos: -34.5,-22.5 - parent: 6 - type: Transform - - uid: 10018 - components: - - pos: -33.5,-22.5 - parent: 6 - type: Transform - - uid: 10020 - components: - - pos: -33.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10021 - components: - - pos: -33.5,-25.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10022 - components: - - pos: -33.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10023 - components: - - pos: -33.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10024 - components: - - pos: -33.5,-28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10025 - components: - - pos: -34.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10026 - components: - - pos: -35.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10027 - components: - - pos: -36.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10028 - components: - - pos: -37.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10029 - components: - - pos: -38.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10030 - components: - - pos: -39.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10031 - components: - - pos: -40.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10032 - components: - - pos: -41.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10033 - components: - - pos: -41.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10034 - components: - - pos: -33.5,-21.5 - parent: 6 - type: Transform - - uid: 10035 - components: - - pos: -33.5,-20.5 - parent: 6 - type: Transform - - uid: 10036 - components: - - pos: -33.5,-19.5 - parent: 6 - type: Transform - - uid: 10037 - components: - - pos: -33.5,-18.5 - parent: 6 - type: Transform - - uid: 10038 - components: - - pos: -33.5,-17.5 - parent: 6 - type: Transform - - uid: 10039 - components: - - pos: -33.5,-16.5 - parent: 6 - type: Transform - - uid: 10040 - components: - - pos: -33.5,-15.5 - parent: 6 - type: Transform - - uid: 10041 - components: - - pos: -67.5,-12.5 - parent: 6 - type: Transform - - uid: 10042 - components: - - pos: -68.5,-12.5 - parent: 6 - type: Transform - - uid: 10043 - components: - - pos: -69.5,-12.5 - parent: 6 - type: Transform - - uid: 10044 - components: - - pos: -70.5,-12.5 - parent: 6 - type: Transform - - uid: 10046 - components: - - pos: -44.5,-32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10047 - components: - - pos: -43.5,-32.5 - parent: 6 - type: Transform - - uid: 10048 - components: - - pos: -43.5,-31.5 - parent: 6 - type: Transform - - uid: 10049 - components: - - pos: -43.5,-30.5 - parent: 6 - type: Transform - - uid: 10050 - components: - - pos: -43.5,-29.5 - parent: 6 - type: Transform - - uid: 10051 - components: - - pos: -43.5,-28.5 - parent: 6 - type: Transform - - uid: 10052 - components: - - pos: -43.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10053 - components: - - pos: -43.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10054 - components: - - pos: -43.5,-25.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10055 - components: - - pos: -43.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10056 - components: - - pos: -43.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10057 - components: - - pos: -44.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10058 - components: - - pos: -45.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10059 - components: - - pos: -46.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10060 - components: - - pos: -47.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10061 - components: - - pos: -48.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10062 - components: - - pos: -49.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10063 - components: - - pos: -50.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10064 - components: - - pos: -51.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10065 - components: - - pos: -51.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10066 - components: - - pos: -51.5,-25.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10067 - components: - - pos: -51.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10068 - components: - - pos: -51.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10069 - components: - - pos: -49.5,-28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10070 - components: - - pos: -49.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10071 - components: - - pos: -49.5,-30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10072 - components: - - pos: -49.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10073 - components: - - pos: -49.5,-32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10074 - components: - - pos: -49.5,-33.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10075 - components: - - pos: -49.5,-34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10076 - components: - - pos: -49.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10077 - components: - - pos: -49.5,-36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10078 - components: - - pos: -49.5,-37.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10079 - components: - - pos: -49.5,-38.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10080 - components: - - pos: -49.5,-39.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10081 - components: - - pos: -49.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10082 - components: - - pos: -49.5,-41.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10083 - components: - - pos: -49.5,-42.5 - parent: 6 - type: Transform - - uid: 10084 - components: - - pos: -49.5,-43.5 - parent: 6 - type: Transform - - uid: 10085 - components: - - pos: -48.5,-43.5 - parent: 6 - type: Transform - - uid: 10086 - components: - - pos: -47.5,-43.5 - parent: 6 - type: Transform - - uid: 10087 - components: - - pos: -46.5,-43.5 - parent: 6 - type: Transform - - uid: 10088 - components: - - pos: -45.5,-43.5 - parent: 6 - type: Transform - - uid: 10089 - components: - - pos: -44.5,-43.5 - parent: 6 - type: Transform - - uid: 10090 - components: - - pos: -43.5,-43.5 - parent: 6 - type: Transform - - uid: 10091 - components: - - pos: -43.5,-42.5 - parent: 6 - type: Transform - - uid: 10092 - components: - - pos: -43.5,-41.5 - parent: 6 - type: Transform - - uid: 10093 - components: - - pos: -43.5,-40.5 - parent: 6 - type: Transform - - uid: 10094 - components: - - pos: -43.5,-39.5 - parent: 6 - type: Transform - - uid: 10095 - components: - - pos: -43.5,-38.5 - parent: 6 - type: Transform - - uid: 10096 - components: - - pos: -43.5,-37.5 - parent: 6 - type: Transform - - uid: 10097 - components: - - pos: -43.5,-36.5 - parent: 6 - type: Transform - - uid: 10098 - components: - - pos: -43.5,-35.5 - parent: 6 - type: Transform - - uid: 10099 - components: - - pos: -43.5,-34.5 - parent: 6 - type: Transform - - uid: 10100 - components: - - pos: -43.5,-33.5 - parent: 6 - type: Transform - - uid: 10101 - components: - - pos: -44.5,-35.5 - parent: 6 - type: Transform - - uid: 10102 - components: - - pos: -45.5,-35.5 - parent: 6 - type: Transform - - uid: 10103 - components: - - pos: -46.5,-35.5 - parent: 6 - type: Transform - - uid: 10104 - components: - - pos: -42.5,-29.5 - parent: 6 - type: Transform - - uid: 10105 - components: - - pos: -41.5,-29.5 - parent: 6 - type: Transform - - uid: 10106 - components: - - pos: -40.5,-29.5 - parent: 6 - type: Transform - - uid: 10107 - components: - - pos: -39.5,-29.5 - parent: 6 - type: Transform - - uid: 10108 - components: - - pos: -42.5,-40.5 - parent: 6 - type: Transform - - uid: 10109 - components: - - pos: -41.5,-40.5 - parent: 6 - type: Transform - - uid: 10110 - components: - - pos: -40.5,-40.5 - parent: 6 - type: Transform - - uid: 10111 - components: - - pos: -39.5,-40.5 - parent: 6 - type: Transform - - uid: 10112 - components: - - pos: -44.5,-39.5 - parent: 6 - type: Transform - - uid: 10113 - components: - - pos: -45.5,-39.5 - parent: 6 - type: Transform - - uid: 10114 - components: - - pos: -46.5,-39.5 - parent: 6 - type: Transform - - uid: 10115 - components: - - pos: -42.5,-43.5 - parent: 6 - type: Transform - - uid: 10116 - components: - - pos: -41.5,-43.5 - parent: 6 - type: Transform - - uid: 10117 - components: - - pos: -40.5,-43.5 - parent: 6 - type: Transform - - uid: 10118 - components: - - pos: -39.5,-43.5 - parent: 6 - type: Transform - - uid: 10119 - components: - - pos: -38.5,-43.5 - parent: 6 - type: Transform - - uid: 10120 - components: - - pos: -37.5,-43.5 - parent: 6 - type: Transform - - uid: 10121 - components: - - pos: -36.5,-43.5 - parent: 6 - type: Transform - - uid: 10122 - components: - - pos: -35.5,-43.5 - parent: 6 - type: Transform - - uid: 10123 - components: - - pos: -34.5,-43.5 - parent: 6 - type: Transform - - uid: 10124 - components: - - pos: -33.5,-43.5 - parent: 6 - type: Transform - - uid: 10125 - components: - - pos: -33.5,-42.5 - parent: 6 - type: Transform - - uid: 10126 - components: - - pos: -33.5,-41.5 - parent: 6 - type: Transform - - uid: 10127 - components: - - pos: -33.5,-40.5 - parent: 6 - type: Transform - - uid: 10128 - components: - - pos: -33.5,-39.5 - parent: 6 - type: Transform - - uid: 10129 - components: - - pos: -33.5,-38.5 - parent: 6 - type: Transform - - uid: 10130 - components: - - pos: -33.5,-37.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10131 - components: - - pos: -34.5,-37.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10132 - components: - - pos: -35.5,-37.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10133 - components: - - pos: -36.5,-37.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10134 - components: - - pos: -36.5,-36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10135 - components: - - pos: -36.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10136 - components: - - pos: -36.5,-34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10137 - components: - - pos: -36.5,-33.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10138 - components: - - pos: -36.5,-32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10139 - components: - - pos: -36.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10140 - components: - - pos: -36.5,-30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10141 - components: - - pos: -36.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10142 - components: - - pos: -33.5,-36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10143 - components: - - pos: -33.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10144 - components: - - pos: -33.5,-34.5 - parent: 6 - type: Transform - - uid: 10145 - components: - - pos: -32.5,-34.5 - parent: 6 - type: Transform - - uid: 10146 - components: - - pos: -35.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10147 - components: - - pos: -34.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10148 - components: - - pos: -32.5,-37.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10149 - components: - - pos: -31.5,-37.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10150 - components: - - pos: -30.5,-37.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10151 - components: - - pos: -29.5,-37.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10152 - components: - - pos: -28.5,-37.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10153 - components: - - pos: -28.5,-38.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10154 - components: - - pos: -28.5,-39.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10155 - components: - - pos: -28.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10156 - components: - - pos: -28.5,-41.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10157 - components: - - pos: -27.5,-41.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10158 - components: - - pos: -26.5,-41.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10159 - components: - - pos: -25.5,-41.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10160 - components: - - pos: -24.5,-41.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10161 - components: - - pos: -23.5,-41.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10162 - components: - - pos: -24.5,-42.5 - parent: 6 - type: Transform - - uid: 10163 - components: - - pos: -24.5,-43.5 - parent: 6 - type: Transform - - uid: 10164 - components: - - pos: -23.5,-43.5 - parent: 6 - type: Transform - - uid: 10165 - components: - - pos: -22.5,-43.5 - parent: 6 - type: Transform - - uid: 10166 - components: - - pos: -21.5,-43.5 - parent: 6 - type: Transform - - uid: 10167 - components: - - pos: -20.5,-43.5 - parent: 6 - type: Transform - - uid: 10168 - components: - - pos: -19.5,-43.5 - parent: 6 - type: Transform - - uid: 10169 - components: - - pos: -18.5,-43.5 - parent: 6 - type: Transform - - uid: 10170 - components: - - pos: -17.5,-43.5 - parent: 6 - type: Transform - - uid: 10171 - components: - - pos: -16.5,-43.5 - parent: 6 - type: Transform - - uid: 10172 - components: - - pos: -19.5,-42.5 - parent: 6 - type: Transform - - uid: 10173 - components: - - pos: -19.5,-41.5 - parent: 6 - type: Transform - - uid: 10174 - components: - - pos: -19.5,-40.5 - parent: 6 - type: Transform - - uid: 10175 - components: - - pos: -19.5,-39.5 - parent: 6 - type: Transform - - uid: 10176 - components: - - pos: -19.5,-38.5 - parent: 6 - type: Transform - - uid: 10177 - components: - - pos: -20.5,-38.5 - parent: 6 - type: Transform - - uid: 10178 - components: - - pos: -21.5,-38.5 - parent: 6 - type: Transform - - uid: 10179 - components: - - pos: -18.5,-38.5 - parent: 6 - type: Transform - - uid: 10180 - components: - - pos: -50.5,-32.5 - parent: 6 - type: Transform - - uid: 10181 - components: - - pos: -51.5,-32.5 - parent: 6 - type: Transform - - uid: 10182 - components: - - pos: -52.5,-32.5 - parent: 6 - type: Transform - - uid: 10183 - components: - - pos: -53.5,-32.5 - parent: 6 - type: Transform - - uid: 10184 - components: - - pos: -54.5,-32.5 - parent: 6 - type: Transform - - uid: 10185 - components: - - pos: -54.5,-33.5 - parent: 6 - type: Transform - - uid: 10186 - components: - - pos: -54.5,-34.5 - parent: 6 - type: Transform - - uid: 10187 - components: - - pos: -54.5,-35.5 - parent: 6 - type: Transform - - uid: 10188 - components: - - pos: -55.5,-34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10189 - components: - - pos: -56.5,-34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10190 - components: - - pos: -57.5,-34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10191 - components: - - pos: -51.5,-33.5 - parent: 6 - type: Transform - - uid: 10192 - components: - - pos: -51.5,-34.5 - parent: 6 - type: Transform - - uid: 10193 - components: - - pos: -51.5,-35.5 - parent: 6 - type: Transform - - uid: 10194 - components: - - pos: -51.5,-31.5 - parent: 6 - type: Transform - - uid: 10195 - components: - - pos: -51.5,-30.5 - parent: 6 - type: Transform - - uid: 10197 - components: - - pos: -50.5,-43.5 - parent: 6 - type: Transform - - uid: 10212 - components: - - pos: -49.5,-47.5 - parent: 6 - type: Transform - - uid: 10213 - components: - - pos: -50.5,-44.5 - parent: 6 - type: Transform - - uid: 10215 - components: - - pos: -36.5,-51.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10216 - components: - - pos: -37.5,-51.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10217 - components: - - pos: -37.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10218 - components: - - pos: -37.5,-54.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10219 - components: - - pos: -39.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10220 - components: - - pos: -39.5,-54.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10221 - components: - - pos: -39.5,-55.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10222 - components: - - pos: -39.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10223 - components: - - pos: -39.5,-57.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10224 - components: - - pos: -39.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10225 - components: - - pos: -39.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10226 - components: - - pos: -38.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10227 - components: - - pos: -37.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10228 - components: - - pos: -36.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10229 - components: - - pos: -35.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10230 - components: - - pos: -34.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10231 - components: - - pos: -33.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10232 - components: - - pos: -32.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10233 - components: - - pos: -31.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10234 - components: - - pos: -30.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10235 - components: - - pos: -29.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10236 - components: - - pos: -28.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10237 - components: - - pos: -27.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10238 - components: - - pos: -26.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10239 - components: - - pos: -25.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10240 - components: - - pos: -24.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10241 - components: - - pos: -23.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10242 - components: - - pos: -23.5,-60.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10243 - components: - - pos: -23.5,-61.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10244 - components: - - pos: -23.5,-62.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10245 - components: - - pos: -23.5,-63.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10246 - components: - - pos: -23.5,-64.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10247 - components: - - pos: -23.5,-65.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10249 - components: - - pos: -22.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10250 - components: - - pos: -21.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10251 - components: - - pos: -20.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10252 - components: - - pos: -31.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10253 - components: - - pos: -31.5,-57.5 - parent: 6 - type: Transform - - uid: 10254 - components: - - pos: -31.5,-56.5 - parent: 6 - type: Transform - - uid: 10255 - components: - - pos: -31.5,-55.5 - parent: 6 - type: Transform - - uid: 10256 - components: - - pos: -31.5,-54.5 - parent: 6 - type: Transform - - uid: 10257 - components: - - pos: -31.5,-53.5 - parent: 6 - type: Transform - - uid: 10258 - components: - - pos: -31.5,-52.5 - parent: 6 - type: Transform - - uid: 10259 - components: - - pos: -31.5,-51.5 - parent: 6 - type: Transform - - uid: 10260 - components: - - pos: -31.5,-50.5 - parent: 6 - type: Transform - - uid: 10261 - components: - - pos: -31.5,-49.5 - parent: 6 - type: Transform - - uid: 10262 - components: - - pos: -31.5,-48.5 - parent: 6 - type: Transform - - uid: 10263 - components: - - pos: -31.5,-47.5 - parent: 6 - type: Transform - - uid: 10264 - components: - - pos: -30.5,-47.5 - parent: 6 - type: Transform - - uid: 10265 - components: - - pos: -29.5,-47.5 - parent: 6 - type: Transform - - uid: 10266 - components: - - pos: -28.5,-47.5 - parent: 6 - type: Transform - - uid: 10267 - components: - - pos: -27.5,-47.5 - parent: 6 - type: Transform - - uid: 10268 - components: - - pos: -26.5,-47.5 - parent: 6 - type: Transform - - uid: 10269 - components: - - pos: -28.5,-48.5 - parent: 6 - type: Transform - - uid: 10270 - components: - - pos: -28.5,-49.5 - parent: 6 - type: Transform - - uid: 10271 - components: - - pos: -28.5,-50.5 - parent: 6 - type: Transform - - uid: 10272 - components: - - pos: -28.5,-51.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10273 - components: - - pos: -28.5,-52.5 - parent: 6 - type: Transform - - uid: 10274 - components: - - pos: -29.5,-52.5 - parent: 6 - type: Transform - - uid: 10275 - components: - - pos: -30.5,-52.5 - parent: 6 - type: Transform - - uid: 10276 - components: - - pos: -32.5,-47.5 - parent: 6 - type: Transform - - uid: 10277 - components: - - pos: -33.5,-47.5 - parent: 6 - type: Transform - - uid: 10278 - components: - - pos: -34.5,-47.5 - parent: 6 - type: Transform - - uid: 10279 - components: - - pos: -35.5,-47.5 - parent: 6 - type: Transform - - uid: 10280 - components: - - pos: -35.5,-48.5 - parent: 6 - type: Transform - - uid: 10281 - components: - - pos: -35.5,-49.5 - parent: 6 - type: Transform - - uid: 10282 - components: - - pos: -35.5,-50.5 - parent: 6 - type: Transform - - uid: 10283 - components: - - pos: -35.5,-51.5 - parent: 6 - type: Transform - - uid: 10284 - components: - - pos: -35.5,-52.5 - parent: 6 - type: Transform - - uid: 10285 - components: - - pos: -35.5,-53.5 - parent: 6 - type: Transform - - uid: 10286 - components: - - pos: -35.5,-54.5 - parent: 6 - type: Transform - - uid: 10287 - components: - - pos: -35.5,-55.5 - parent: 6 - type: Transform - - uid: 10288 - components: - - pos: -35.5,-56.5 - parent: 6 - type: Transform - - uid: 10289 - components: - - pos: -34.5,-46.5 - parent: 6 - type: Transform - - uid: 10290 - components: - - pos: -34.5,-45.5 - parent: 6 - type: Transform - - uid: 10291 - components: - - pos: -35.5,-45.5 - parent: 6 - type: Transform - - uid: 10292 - components: - - pos: -36.5,-45.5 - parent: 6 - type: Transform - - uid: 10293 - components: - - pos: -37.5,-45.5 - parent: 6 - type: Transform - - uid: 10294 - components: - - pos: -38.5,-45.5 - parent: 6 - type: Transform - - uid: 10295 - components: - - pos: -39.5,-45.5 - parent: 6 - type: Transform - - uid: 10296 - components: - - pos: -40.5,-45.5 - parent: 6 - type: Transform - - uid: 10297 - components: - - pos: -41.5,-45.5 - parent: 6 - type: Transform - - uid: 10298 - components: - - pos: -42.5,-45.5 - parent: 6 - type: Transform - - uid: 10299 - components: - - pos: -43.5,-45.5 - parent: 6 - type: Transform - - uid: 10300 - components: - - pos: -44.5,-45.5 - parent: 6 - type: Transform - - uid: 10301 - components: - - pos: -45.5,-45.5 - parent: 6 - type: Transform - - uid: 10302 - components: - - pos: -46.5,-45.5 - parent: 6 - type: Transform - - uid: 10303 - components: - - pos: -47.5,-45.5 - parent: 6 - type: Transform - - uid: 10304 - components: - - pos: -48.5,-45.5 - parent: 6 - type: Transform - - uid: 10305 - components: - - pos: -49.5,-45.5 - parent: 6 - type: Transform - - uid: 10306 - components: - - pos: -49.5,-46.5 - parent: 6 - type: Transform - - uid: 10307 - components: - - pos: -49.5,-48.5 - parent: 6 - type: Transform - - uid: 10308 - components: - - pos: -49.5,-49.5 - parent: 6 - type: Transform - - uid: 10309 - components: - - pos: -49.5,-50.5 - parent: 6 - type: Transform - - uid: 10310 - components: - - pos: -49.5,-51.5 - parent: 6 - type: Transform - - uid: 10311 - components: - - pos: -50.5,-51.5 - parent: 6 - type: Transform - - uid: 10312 - components: - - pos: -51.5,-51.5 - parent: 6 - type: Transform - - uid: 10313 - components: - - pos: -48.5,-51.5 - parent: 6 - type: Transform - - uid: 10314 - components: - - pos: -16.5,-57.5 - parent: 6 - type: Transform - - uid: 10315 - components: - - pos: -16.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10316 - components: - - pos: 30.5,4.5 - parent: 6 - type: Transform - - uid: 10317 - components: - - pos: 30.5,3.5 - parent: 6 - type: Transform - - uid: 10318 - components: - - pos: 30.5,2.5 - parent: 6 - type: Transform - - uid: 10319 - components: - - pos: 30.5,1.5 - parent: 6 - type: Transform - - uid: 10320 - components: - - pos: 30.5,0.5 - parent: 6 - type: Transform - - uid: 10321 - components: - - pos: 30.5,-0.5 - parent: 6 - type: Transform - - uid: 10322 - components: - - pos: 30.5,-1.5 - parent: 6 - type: Transform - - uid: 10323 - components: - - pos: 30.5,-2.5 - parent: 6 - type: Transform - - uid: 10324 - components: - - pos: 30.5,-3.5 - parent: 6 - type: Transform - - uid: 10325 - components: - - pos: 30.5,-4.5 - parent: 6 - type: Transform - - uid: 10326 - components: - - pos: 30.5,-5.5 - parent: 6 - type: Transform - - uid: 10327 - components: - - pos: 30.5,-6.5 - parent: 6 - type: Transform - - uid: 10328 - components: - - pos: 30.5,-7.5 - parent: 6 - type: Transform - - uid: 10329 - components: - - pos: 30.5,-8.5 - parent: 6 - type: Transform - - uid: 10330 - components: - - pos: 30.5,-9.5 - parent: 6 - type: Transform - - uid: 10520 - components: - - pos: 20.5,-12.5 - parent: 6 - type: Transform - - uid: 10521 - components: - - pos: 21.5,-12.5 - parent: 6 - type: Transform - - uid: 10626 - components: - - pos: -19.5,-52.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10627 - components: - - pos: -19.5,-51.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10628 - components: - - pos: -19.5,-50.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10629 - components: - - pos: -19.5,-49.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10630 - components: - - pos: -19.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10631 - components: - - pos: -20.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10632 - components: - - pos: -21.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10633 - components: - - pos: -22.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10634 - components: - - pos: -23.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10635 - components: - - pos: -24.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10636 - components: - - pos: -24.5,-47.5 - parent: 6 - type: Transform - - uid: 10637 - components: - - pos: -24.5,-46.5 - parent: 6 - type: Transform - - uid: 10731 - components: - - pos: -35.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10732 - components: - - pos: -35.5,-20.5 - parent: 6 - type: Transform - - uid: 10733 - components: - - pos: -35.5,-21.5 - parent: 6 - type: Transform - - uid: 10783 - components: - - pos: 13.5,-3.5 - parent: 6 - type: Transform - - uid: 10790 - components: - - pos: 20.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10791 - components: - - pos: 21.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10792 - components: - - pos: 22.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10793 - components: - - pos: 23.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10794 - components: - - pos: 24.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10795 - components: - - pos: 25.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10796 - components: - - pos: 26.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10797 - components: - - pos: 26.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10818 - components: - - pos: -30.5,-55.5 - parent: 6 - type: Transform - - uid: 10819 - components: - - pos: -29.5,-55.5 - parent: 6 - type: Transform - - uid: 13752 - components: - - pos: 3.5,0.5 - parent: 13645 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13753 - components: - - pos: 3.5,1.5 - parent: 13645 - type: Transform - - uid: 13754 - components: - - pos: 3.5,2.5 - parent: 13645 - type: Transform - - uid: 13755 - components: - - pos: 3.5,3.5 - parent: 13645 - type: Transform - - uid: 14149 - components: - - pos: 12.5,-3.5 - parent: 6 - type: Transform - - uid: 14150 - components: - - pos: 11.5,-3.5 - parent: 6 - type: Transform - - uid: 14151 - components: - - pos: 10.5,-3.5 - parent: 6 - type: Transform - - uid: 14152 - components: - - pos: 9.5,-3.5 - parent: 6 - type: Transform - - uid: 14254 - components: - - pos: -56.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14255 - components: - - pos: -56.5,-41.5 - parent: 6 - type: Transform - - uid: 14256 - components: - - pos: -56.5,-42.5 - parent: 6 - type: Transform - - uid: 14257 - components: - - pos: -56.5,-43.5 - parent: 6 - type: Transform - - uid: 14258 - components: - - pos: -56.5,-44.5 - parent: 6 - type: Transform - - uid: 14259 - components: - - pos: -56.5,-45.5 - parent: 6 - type: Transform - - uid: 14260 - components: - - pos: -56.5,-46.5 - parent: 6 - type: Transform - - uid: 14261 - components: - - pos: -56.5,-47.5 - parent: 6 - type: Transform - - uid: 14262 - components: - - pos: -55.5,-47.5 - parent: 6 - type: Transform - - uid: 14263 - components: - - pos: -54.5,-47.5 - parent: 6 - type: Transform - - uid: 14264 - components: - - pos: -53.5,-47.5 - parent: 6 - type: Transform - - uid: 14265 - components: - - pos: -55.5,-41.5 - parent: 6 - type: Transform - - uid: 14266 - components: - - pos: -54.5,-41.5 - parent: 6 - type: Transform - - uid: 14267 - components: - - pos: -53.5,-41.5 - parent: 6 - type: Transform - - uid: 14268 - components: - - pos: -57.5,-44.5 - parent: 6 - type: Transform - - uid: 14286 - components: - - pos: -55.5,-44.5 - parent: 6 - type: Transform - - uid: 14287 - components: - - pos: -54.5,-44.5 - parent: 6 - type: Transform - - uid: 14288 - components: - - pos: -53.5,-44.5 - parent: 6 - type: Transform - - uid: 14289 - components: - - pos: -52.5,-44.5 - parent: 6 - type: Transform -- proto: CableApcStack - entities: - - uid: 5352 - components: - - pos: 3.8964598,-51.449 - parent: 6 - type: Transform - - uid: 5382 - components: - - pos: -11.759497,-56.48735 - parent: 6 - type: Transform - - uid: 6406 - components: - - pos: -48.891544,-25.577776 - parent: 6 - type: Transform - - uid: 13403 - components: - - pos: 28.312565,1.7252973 - parent: 6 - type: Transform -- proto: CableApcStack1 - entities: - - uid: 4769 - components: - - pos: -84.300026,-39.537045 - parent: 6 - type: Transform - - uid: 4770 - components: - - rot: 1.5707963267948966 rad - pos: -82.05662,-39.50866 - parent: 6 - type: Transform - - uid: 4771 - components: - - rot: 1.5707963267948966 rad - pos: -82.89435,-40.38851 - parent: 6 - type: Transform - - uid: 6731 - components: - - pos: -75.5152,-41.325874 - parent: 6 - type: Transform - - uid: 6732 - components: - - pos: -76.06895,-50.265915 - parent: 6 - type: Transform - - uid: 6733 - components: - - pos: -83.083145,-48.832615 - parent: 6 - type: Transform - - uid: 6773 - components: - - pos: -44.481865,-48.474968 - parent: 6 - type: Transform - - uid: 7420 - components: - - pos: -17.502695,-51.34945 - parent: 6 - type: Transform - - count: 6 - type: Stack - - uid: 10825 - components: - - pos: -41.502197,-47.490105 - parent: 6 - type: Transform - - uid: 10826 - components: - - pos: -40.377197,-51.44844 - parent: 6 - type: Transform - - uid: 10827 - components: - - pos: -41.418865,-51.406773 - parent: 6 - type: Transform - - uid: 10828 - components: - - pos: -40.689697,-50.531773 - parent: 6 - type: Transform - - uid: 13756 - components: - - rot: 3.141592653589793 rad - pos: 3.239975,4.444168 - parent: 13645 - type: Transform - - uid: 13757 - components: - - rot: 3.141592653589793 rad - pos: 1.9066315,4.23584 - parent: 13645 - type: Transform -- proto: CableHV - entities: - - uid: 2982 - components: - - pos: -25.5,14.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2984 - components: - - pos: -80.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2985 - components: - - pos: -80.5,-32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2986 - components: - - pos: -80.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2988 - components: - - pos: -80.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2989 - components: - - pos: -82.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2990 - components: - - pos: -82.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2991 - components: - - pos: -80.5,-30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2992 - components: - - pos: -80.5,-28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2993 - components: - - pos: -80.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3003 - components: - - pos: -82.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3005 - components: - - pos: -82.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3016 - components: - - pos: -82.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3017 - components: - - pos: -82.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3018 - components: - - pos: -82.5,-28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3019 - components: - - pos: -82.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3020 - components: - - pos: -82.5,-30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3021 - components: - - pos: -82.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3022 - components: - - pos: -82.5,-32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3041 - components: - - pos: -80.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3048 - components: - - pos: -80.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3049 - components: - - pos: -80.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3052 - components: - - pos: -82.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3184 - components: - - pos: -73.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3185 - components: - - pos: -81.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4093 - components: - - pos: -32.5,-68.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4094 - components: - - pos: -31.5,-68.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4095 - components: - - pos: -30.5,-68.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4096 - components: - - pos: -29.5,-68.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4097 - components: - - pos: -28.5,-68.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4098 - components: - - pos: -27.5,-68.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4099 - components: - - pos: -26.5,-68.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4100 - components: - - pos: -25.5,-68.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4101 - components: - - pos: -25.5,-69.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4102 - components: - - pos: -32.5,-70.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4103 - components: - - pos: -31.5,-70.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4104 - components: - - pos: -30.5,-70.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4105 - components: - - pos: -29.5,-70.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4106 - components: - - pos: -28.5,-70.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4107 - components: - - pos: -27.5,-70.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4108 - components: - - pos: -26.5,-70.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4109 - components: - - pos: -25.5,-70.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4110 - components: - - pos: -32.5,-72.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4111 - components: - - pos: -31.5,-72.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4112 - components: - - pos: -30.5,-72.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4113 - components: - - pos: -29.5,-72.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4114 - components: - - pos: -28.5,-72.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4115 - components: - - pos: -27.5,-72.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4116 - components: - - pos: -26.5,-72.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4117 - components: - - pos: -25.5,-72.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4118 - components: - - pos: -25.5,-73.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4119 - components: - - pos: -32.5,-74.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4120 - components: - - pos: -31.5,-74.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4121 - components: - - pos: -30.5,-74.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4122 - components: - - pos: -29.5,-74.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4123 - components: - - pos: -28.5,-74.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4124 - components: - - pos: -27.5,-74.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4125 - components: - - pos: -26.5,-74.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4126 - components: - - pos: -25.5,-74.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4127 - components: - - pos: -32.5,-76.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4128 - components: - - pos: -31.5,-76.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4129 - components: - - pos: -30.5,-76.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4130 - components: - - pos: -29.5,-76.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4131 - components: - - pos: -28.5,-76.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4132 - components: - - pos: -27.5,-76.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4133 - components: - - pos: -26.5,-76.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4134 - components: - - pos: -25.5,-76.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4135 - components: - - pos: -25.5,-77.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4136 - components: - - pos: -32.5,-78.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4137 - components: - - pos: -31.5,-78.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4138 - components: - - pos: -30.5,-78.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4139 - components: - - pos: -29.5,-78.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4140 - components: - - pos: -28.5,-78.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4141 - components: - - pos: -27.5,-78.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4142 - components: - - pos: -26.5,-78.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4143 - components: - - pos: -25.5,-78.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4144 - components: - - pos: -32.5,-80.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4145 - components: - - pos: -31.5,-80.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4146 - components: - - pos: -30.5,-80.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4147 - components: - - pos: -29.5,-80.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4148 - components: - - pos: -28.5,-80.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4149 - components: - - pos: -27.5,-80.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4150 - components: - - pos: -26.5,-80.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4151 - components: - - pos: -25.5,-80.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4152 - components: - - pos: -25.5,-81.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4153 - components: - - pos: -32.5,-82.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4154 - components: - - pos: -31.5,-82.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4155 - components: - - pos: -30.5,-82.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4156 - components: - - pos: -29.5,-82.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4157 - components: - - pos: -28.5,-82.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4158 - components: - - pos: -27.5,-82.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4159 - components: - - pos: -26.5,-82.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4160 - components: - - pos: -25.5,-82.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4161 - components: - - pos: -24.5,-81.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4162 - components: - - pos: -23.5,-81.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4163 - components: - - pos: -23.5,-82.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4164 - components: - - pos: -23.5,-83.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4165 - components: - - pos: -23.5,-84.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4380 - components: - - pos: -19.5,7.5 - parent: 6 - type: Transform - - uid: 4519 - components: - - pos: -27.5,-3.5 - parent: 6 - type: Transform - - uid: 4832 - components: - - pos: -50.5,-43.5 - parent: 6 - type: Transform - - uid: 4838 - components: - - pos: -23.5,14.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4916 - components: - - pos: -25.5,16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4917 - components: - - pos: -25.5,15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4928 - components: - - pos: -15.5,27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4951 - components: - - pos: -24.5,16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4952 - components: - - pos: -24.5,17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4953 - components: - - pos: -24.5,18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4954 - components: - - pos: -25.5,18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4955 - components: - - pos: -25.5,19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4956 - components: - - pos: -25.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4957 - components: - - pos: -25.5,21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4958 - components: - - pos: -25.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4959 - components: - - pos: -25.5,23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4960 - components: - - pos: -25.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4961 - components: - - pos: -26.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4962 - components: - - pos: -27.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4963 - components: - - pos: -28.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4964 - components: - - pos: -29.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4965 - components: - - pos: -30.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4966 - components: - - pos: -30.5,23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4967 - components: - - pos: -30.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4968 - components: - - pos: -30.5,21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4969 - components: - - pos: -30.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4970 - components: - - pos: -30.5,19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4971 - components: - - pos: -30.5,18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4972 - components: - - pos: -30.5,17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4973 - components: - - pos: -30.5,16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4974 - components: - - pos: -30.5,15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4975 - components: - - pos: -30.5,14.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4976 - components: - - pos: -30.5,13.5 - parent: 6 - type: Transform - - uid: 4977 - components: - - pos: -30.5,12.5 - parent: 6 - type: Transform - - uid: 4978 - components: - - pos: -30.5,11.5 - parent: 6 - type: Transform - - uid: 4979 - components: - - pos: -30.5,10.5 - parent: 6 - type: Transform - - uid: 4980 - components: - - pos: -30.5,9.5 - parent: 6 - type: Transform - - uid: 4981 - components: - - pos: -31.5,9.5 - parent: 6 - type: Transform - - uid: 4982 - components: - - pos: -31.5,8.5 - parent: 6 - type: Transform - - uid: 4983 - components: - - pos: -31.5,7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4984 - components: - - pos: -31.5,6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4985 - components: - - pos: -31.5,5.5 - parent: 6 - type: Transform - - uid: 4986 - components: - - pos: -31.5,4.5 - parent: 6 - type: Transform - - uid: 4987 - components: - - pos: -31.5,3.5 - parent: 6 - type: Transform - - uid: 4988 - components: - - pos: -31.5,2.5 - parent: 6 - type: Transform - - uid: 4989 - components: - - pos: -31.5,1.5 - parent: 6 - type: Transform - - uid: 4990 - components: - - pos: -31.5,0.5 - parent: 6 - type: Transform - - uid: 4991 - components: - - pos: -31.5,-0.5 - parent: 6 - type: Transform - - uid: 4992 - components: - - pos: -31.5,-1.5 - parent: 6 - type: Transform - - uid: 4993 - components: - - pos: -32.5,-1.5 - parent: 6 - type: Transform - - uid: 4994 - components: - - pos: -33.5,-1.5 - parent: 6 - type: Transform - - uid: 4995 - components: - - pos: -34.5,-1.5 - parent: 6 - type: Transform - - uid: 4996 - components: - - pos: -35.5,-1.5 - parent: 6 - type: Transform - - uid: 4997 - components: - - pos: -36.5,-1.5 - parent: 6 - type: Transform - - uid: 4998 - components: - - pos: -36.5,-0.5 - parent: 6 - type: Transform - - uid: 4999 - components: - - pos: -36.5,0.5 - parent: 6 - type: Transform - - uid: 5000 - components: - - pos: -36.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5001 - components: - - pos: -36.5,2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5002 - components: - - pos: -36.5,3.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5003 - components: - - pos: -35.5,3.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5004 - components: - - pos: -37.5,3.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5007 - components: - - pos: -30.5,-1.5 - parent: 6 - type: Transform - - uid: 5008 - components: - - pos: -29.5,-1.5 - parent: 6 - type: Transform - - uid: 5009 - components: - - pos: -28.5,-1.5 - parent: 6 - type: Transform - - uid: 5010 - components: - - pos: -27.5,-1.5 - parent: 6 - type: Transform - - uid: 5011 - components: - - pos: -26.5,-1.5 - parent: 6 - type: Transform - - uid: 5012 - components: - - pos: -26.5,-2.5 - parent: 6 - type: Transform - - uid: 5016 - components: - - pos: -26.5,-3.5 - parent: 6 - type: Transform - - uid: 5017 - components: - - pos: -25.5,-3.5 - parent: 6 - type: Transform - - uid: 5018 - components: - - pos: -24.5,-3.5 - parent: 6 - type: Transform - - uid: 5019 - components: - - pos: -24.5,-2.5 - parent: 6 - type: Transform - - uid: 5020 - components: - - pos: -24.5,-1.5 - parent: 6 - type: Transform - - uid: 5021 - components: - - pos: -23.5,-1.5 - parent: 6 - type: Transform - - uid: 5022 - components: - - pos: -22.5,-1.5 - parent: 6 - type: Transform - - uid: 5023 - components: - - pos: -21.5,-1.5 - parent: 6 - type: Transform - - uid: 5024 - components: - - pos: -20.5,-1.5 - parent: 6 - type: Transform - - uid: 5025 - components: - - pos: -19.5,-1.5 - parent: 6 - type: Transform - - uid: 5026 - components: - - pos: -18.5,-1.5 - parent: 6 - type: Transform - - uid: 5027 - components: - - pos: -17.5,-1.5 - parent: 6 - type: Transform - - uid: 5028 - components: - - pos: -16.5,-1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5029 - components: - - pos: -15.5,-1.5 - parent: 6 - type: Transform - - uid: 5033 - components: - - pos: -26.5,-4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5034 - components: - - pos: -26.5,-5.5 - parent: 6 - type: Transform - - uid: 5035 - components: - - pos: -27.5,-5.5 - parent: 6 - type: Transform - - uid: 5036 - components: - - pos: -30.5,2.5 - parent: 6 - type: Transform - - uid: 5038 - components: - - pos: -30.5,1.5 - parent: 6 - type: Transform - - uid: 5046 - components: - - pos: -24.5,14.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5190 - components: - - pos: -18.5,7.5 - parent: 6 - type: Transform - - uid: 5441 - components: - - pos: -52.5,-43.5 - parent: 6 - type: Transform - - uid: 5454 - components: - - pos: -53.5,-43.5 - parent: 6 - type: Transform - - uid: 5455 - components: - - pos: -51.5,-43.5 - parent: 6 - type: Transform - - uid: 5506 - components: - - pos: -56.5,-47.5 - parent: 6 - type: Transform - - uid: 5516 - components: - - pos: -80.5,-15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5518 - components: - - pos: -80.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5532 - components: - - pos: -82.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5533 - components: - - pos: -80.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5553 - components: - - pos: -80.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5554 - components: - - pos: -80.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5564 - components: - - pos: -60.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5565 - components: - - pos: -61.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5566 - components: - - pos: -61.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5567 - components: - - pos: -60.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5570 - components: - - pos: -59.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5571 - components: - - pos: -59.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5572 - components: - - pos: -59.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5573 - components: - - pos: -60.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5574 - components: - - pos: -60.5,-17.5 - parent: 6 - type: Transform - - uid: 5724 - components: - - pos: -77.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6098 - components: - - pos: 30.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6099 - components: - - pos: 30.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6100 - components: - - pos: 30.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6101 - components: - - pos: 30.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6102 - components: - - pos: 30.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6103 - components: - - pos: 30.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6104 - components: - - pos: 30.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6105 - components: - - pos: 30.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6106 - components: - - pos: 32.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6107 - components: - - pos: 32.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6108 - components: - - pos: 32.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6109 - components: - - pos: 32.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6110 - components: - - pos: 32.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6111 - components: - - pos: 32.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6112 - components: - - pos: 32.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6113 - components: - - pos: 32.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6114 - components: - - pos: 31.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6115 - components: - - pos: 34.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6116 - components: - - pos: 34.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6117 - components: - - pos: 34.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6118 - components: - - pos: 34.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6119 - components: - - pos: 34.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6120 - components: - - pos: 34.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6121 - components: - - pos: 34.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6122 - components: - - pos: 34.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6123 - components: - - pos: 36.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6124 - components: - - pos: 36.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6125 - components: - - pos: 36.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6126 - components: - - pos: 36.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6127 - components: - - pos: 36.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6128 - components: - - pos: 36.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6129 - components: - - pos: 36.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6130 - components: - - pos: 36.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6131 - components: - - pos: 35.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6132 - components: - - pos: 38.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6133 - components: - - pos: 38.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6134 - components: - - pos: 38.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6135 - components: - - pos: 38.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6136 - components: - - pos: 38.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6137 - components: - - pos: 38.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6138 - components: - - pos: 38.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6139 - components: - - pos: 38.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6140 - components: - - pos: 40.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6141 - components: - - pos: 40.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6142 - components: - - pos: 40.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6143 - components: - - pos: 40.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6144 - components: - - pos: 40.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6145 - components: - - pos: 40.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6146 - components: - - pos: 40.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6147 - components: - - pos: 40.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6148 - components: - - pos: 39.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6149 - components: - - pos: 42.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6150 - components: - - pos: 42.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6151 - components: - - pos: 42.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6152 - components: - - pos: 42.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6153 - components: - - pos: 42.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6154 - components: - - pos: 42.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6155 - components: - - pos: 42.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6156 - components: - - pos: 42.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6157 - components: - - pos: 44.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6158 - components: - - pos: 44.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6159 - components: - - pos: 44.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6160 - components: - - pos: 44.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6161 - components: - - pos: 44.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6162 - components: - - pos: 44.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6163 - components: - - pos: 44.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6164 - components: - - pos: 44.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6165 - components: - - pos: 43.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6184 - components: - - pos: -27.5,-4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6197 - components: - - pos: -57.5,-47.5 - parent: 6 - type: Transform - - uid: 6667 - components: - - pos: -23.5,-63.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6668 - components: - - pos: -23.5,-64.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6669 - components: - - pos: -23.5,-65.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6670 - components: - - pos: -22.5,-63.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6671 - components: - - pos: -22.5,-62.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6672 - components: - - pos: -22.5,-61.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6673 - components: - - pos: -23.5,-61.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6675 - components: - - pos: -23.5,-60.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6676 - components: - - pos: -23.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6697 - components: - - pos: -80.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6698 - components: - - pos: -79.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6699 - components: - - pos: -78.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6799 - components: - - pos: -15.5,-0.5 - parent: 6 - type: Transform - - uid: 6800 - components: - - pos: -15.5,0.5 - parent: 6 - type: Transform - - uid: 6801 - components: - - pos: -15.5,1.5 - parent: 6 - type: Transform - - uid: 6802 - components: - - pos: -14.5,1.5 - parent: 6 - type: Transform - - uid: 6803 - components: - - pos: -13.5,1.5 - parent: 6 - type: Transform - - uid: 6804 - components: - - pos: -12.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6805 - components: - - pos: -11.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6806 - components: - - pos: -10.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6807 - components: - - pos: -10.5,0.5 - parent: 6 - type: Transform - - uid: 6808 - components: - - pos: -10.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6809 - components: - - pos: -10.5,-1.5 - parent: 6 - type: Transform - - uid: 6810 - components: - - pos: -15.5,-2.5 - parent: 6 - type: Transform - - uid: 6811 - components: - - pos: -15.5,-3.5 - parent: 6 - type: Transform - - uid: 6812 - components: - - pos: -15.5,-4.5 - parent: 6 - type: Transform - - uid: 6813 - components: - - pos: -15.5,-5.5 - parent: 6 - type: Transform - - uid: 6814 - components: - - pos: -15.5,-6.5 - parent: 6 - type: Transform - - uid: 6815 - components: - - pos: -15.5,-7.5 - parent: 6 - type: Transform - - uid: 6816 - components: - - pos: -15.5,-8.5 - parent: 6 - type: Transform - - uid: 6817 - components: - - pos: -15.5,-9.5 - parent: 6 - type: Transform - - uid: 6818 - components: - - pos: -15.5,-10.5 - parent: 6 - type: Transform - - uid: 6819 - components: - - pos: -14.5,-10.5 - parent: 6 - type: Transform - - uid: 6820 - components: - - pos: -13.5,-10.5 - parent: 6 - type: Transform - - uid: 6821 - components: - - pos: -12.5,-10.5 - parent: 6 - type: Transform - - uid: 6822 - components: - - pos: -11.5,-10.5 - parent: 6 - type: Transform - - uid: 6823 - components: - - pos: -10.5,-10.5 - parent: 6 - type: Transform - - uid: 6824 - components: - - pos: -9.5,-10.5 - parent: 6 - type: Transform - - uid: 6825 - components: - - pos: -8.5,-10.5 - parent: 6 - type: Transform - - uid: 6826 - components: - - pos: -7.5,-10.5 - parent: 6 - type: Transform - - uid: 6827 - components: - - pos: -6.5,-10.5 - parent: 6 - type: Transform - - uid: 6828 - components: - - pos: -6.5,-9.5 - parent: 6 - type: Transform - - uid: 6829 - components: - - pos: -6.5,-8.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6830 - components: - - pos: -6.5,-7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6831 - components: - - pos: -6.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6832 - components: - - pos: -7.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6833 - components: - - pos: -8.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6834 - components: - - pos: -9.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6835 - components: - - pos: -10.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6836 - components: - - pos: -11.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6837 - components: - - pos: -12.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6838 - components: - - pos: -12.5,-5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6839 - components: - - pos: -12.5,-4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6840 - components: - - pos: -12.5,-3.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6841 - components: - - pos: -12.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6842 - components: - - pos: -12.5,-1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6843 - components: - - pos: -12.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6844 - components: - - pos: -12.5,0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6845 - components: - - pos: -16.5,-10.5 - parent: 6 - type: Transform - - uid: 6846 - components: - - pos: -17.5,-10.5 - parent: 6 - type: Transform - - uid: 6847 - components: - - pos: -18.5,-10.5 - parent: 6 - type: Transform - - uid: 6848 - components: - - pos: -19.5,-10.5 - parent: 6 - type: Transform - - uid: 6849 - components: - - pos: -20.5,-10.5 - parent: 6 - type: Transform - - uid: 6850 - components: - - pos: -21.5,-10.5 - parent: 6 - type: Transform - - uid: 6851 - components: - - pos: -22.5,-10.5 - parent: 6 - type: Transform - - uid: 6852 - components: - - pos: -23.5,-10.5 - parent: 6 - type: Transform - - uid: 6853 - components: - - pos: -24.5,-10.5 - parent: 6 - type: Transform - - uid: 6854 - components: - - pos: -25.5,-10.5 - parent: 6 - type: Transform - - uid: 6855 - components: - - pos: -26.5,-10.5 - parent: 6 - type: Transform - - uid: 6856 - components: - - pos: -27.5,-10.5 - parent: 6 - type: Transform - - uid: 6857 - components: - - pos: -28.5,-10.5 - parent: 6 - type: Transform - - uid: 6858 - components: - - pos: -29.5,-10.5 - parent: 6 - type: Transform - - uid: 6859 - components: - - pos: -30.5,-10.5 - parent: 6 - type: Transform - - uid: 6860 - components: - - pos: -31.5,-10.5 - parent: 6 - type: Transform - - uid: 6861 - components: - - pos: -32.5,-10.5 - parent: 6 - type: Transform - - uid: 6862 - components: - - pos: -33.5,-10.5 - parent: 6 - type: Transform - - uid: 6863 - components: - - pos: -34.5,-10.5 - parent: 6 - type: Transform - - uid: 6864 - components: - - pos: -35.5,-10.5 - parent: 6 - type: Transform - - uid: 6865 - components: - - pos: -36.5,-10.5 - parent: 6 - type: Transform - - uid: 6866 - components: - - pos: -37.5,-10.5 - parent: 6 - type: Transform - - uid: 6867 - components: - - pos: -38.5,-10.5 - parent: 6 - type: Transform - - uid: 6868 - components: - - pos: -39.5,-10.5 - parent: 6 - type: Transform - - uid: 6869 - components: - - pos: -40.5,-10.5 - parent: 6 - type: Transform - - uid: 6870 - components: - - pos: -41.5,-10.5 - parent: 6 - type: Transform - - uid: 6871 - components: - - pos: -42.5,-10.5 - parent: 6 - type: Transform - - uid: 6872 - components: - - pos: -43.5,-10.5 - parent: 6 - type: Transform - - uid: 6873 - components: - - pos: -44.5,-10.5 - parent: 6 - type: Transform - - uid: 6874 - components: - - pos: -45.5,-10.5 - parent: 6 - type: Transform - - uid: 6875 - components: - - pos: -46.5,-10.5 - parent: 6 - type: Transform - - uid: 6876 - components: - - pos: -47.5,-10.5 - parent: 6 - type: Transform - - uid: 6877 - components: - - pos: -48.5,-10.5 - parent: 6 - type: Transform - - uid: 6878 - components: - - pos: -49.5,-10.5 - parent: 6 - type: Transform - - uid: 6879 - components: - - pos: -50.5,-10.5 - parent: 6 - type: Transform - - uid: 6880 - components: - - pos: -51.5,-10.5 - parent: 6 - type: Transform - - uid: 6881 - components: - - pos: -52.5,-10.5 - parent: 6 - type: Transform - - uid: 6882 - components: - - pos: -53.5,-10.5 - parent: 6 - type: Transform - - uid: 6883 - components: - - pos: -54.5,-10.5 - parent: 6 - type: Transform - - uid: 6884 - components: - - pos: -55.5,-10.5 - parent: 6 - type: Transform - - uid: 6885 - components: - - pos: -56.5,-10.5 - parent: 6 - type: Transform - - uid: 6886 - components: - - pos: -57.5,-10.5 - parent: 6 - type: Transform - - uid: 6887 - components: - - pos: -58.5,-10.5 - parent: 6 - type: Transform - - uid: 6888 - components: - - pos: -59.5,-10.5 - parent: 6 - type: Transform - - uid: 6889 - components: - - pos: -60.5,-10.5 - parent: 6 - type: Transform - - uid: 6890 - components: - - pos: -61.5,-10.5 - parent: 6 - type: Transform - - uid: 6891 - components: - - pos: -62.5,-10.5 - parent: 6 - type: Transform - - uid: 6892 - components: - - pos: -63.5,-10.5 - parent: 6 - type: Transform - - uid: 6893 - components: - - pos: -64.5,-10.5 - parent: 6 - type: Transform - - uid: 6894 - components: - - pos: -64.5,-11.5 - parent: 6 - type: Transform - - uid: 6895 - components: - - pos: -64.5,-12.5 - parent: 6 - type: Transform - - uid: 6896 - components: - - pos: -64.5,-13.5 - parent: 6 - type: Transform - - uid: 6897 - components: - - pos: -64.5,-14.5 - parent: 6 - type: Transform - - uid: 6898 - components: - - pos: -64.5,-15.5 - parent: 6 - type: Transform - - uid: 6899 - components: - - pos: -64.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6900 - components: - - pos: -63.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6901 - components: - - pos: -62.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6902 - components: - - pos: -61.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6903 - components: - - pos: -60.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6904 - components: - - pos: -59.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6905 - components: - - pos: -58.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6906 - components: - - pos: -57.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6907 - components: - - pos: -56.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6908 - components: - - pos: -56.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6909 - components: - - pos: -56.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6910 - components: - - pos: -56.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6911 - components: - - pos: -56.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6912 - components: - - pos: -56.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6913 - components: - - pos: -55.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6914 - components: - - pos: -54.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6915 - components: - - pos: -53.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6916 - components: - - pos: -52.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6917 - components: - - pos: -51.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6918 - components: - - pos: -50.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6919 - components: - - pos: -49.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6920 - components: - - pos: -48.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6921 - components: - - pos: -47.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6922 - components: - - pos: -46.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6923 - components: - - pos: -45.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6924 - components: - - pos: -44.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6925 - components: - - pos: -43.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6926 - components: - - pos: -43.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6927 - components: - - pos: -42.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6928 - components: - - pos: -41.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6929 - components: - - pos: -41.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6930 - components: - - pos: -41.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6931 - components: - - pos: -41.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6932 - components: - - pos: -41.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6933 - components: - - pos: -41.5,-15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6934 - components: - - pos: -41.5,-14.5 - parent: 6 - type: Transform - - uid: 6935 - components: - - pos: -41.5,-13.5 - parent: 6 - type: Transform - - uid: 6936 - components: - - pos: -41.5,-12.5 - parent: 6 - type: Transform - - uid: 6937 - components: - - pos: -41.5,-11.5 - parent: 6 - type: Transform - - uid: 6938 - components: - - pos: -41.5,-9.5 - parent: 6 - type: Transform - - uid: 6939 - components: - - pos: -41.5,-8.5 - parent: 6 - type: Transform - - uid: 6940 - components: - - pos: -41.5,-7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6941 - components: - - pos: -41.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6942 - components: - - pos: -41.5,-5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6943 - components: - - pos: -41.5,-4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6944 - components: - - pos: -41.5,-3.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6945 - components: - - pos: -41.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6946 - components: - - pos: -41.5,-1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6947 - components: - - pos: -41.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6948 - components: - - pos: -41.5,0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6949 - components: - - pos: -41.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6950 - components: - - pos: -41.5,2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6951 - components: - - pos: -41.5,3.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6952 - components: - - pos: -51.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6953 - components: - - pos: -51.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6954 - components: - - pos: -51.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6955 - components: - - pos: -51.5,-25.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6956 - components: - - pos: -51.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6957 - components: - - pos: -51.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6958 - components: - - pos: -50.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6959 - components: - - pos: -49.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6960 - components: - - pos: -48.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6961 - components: - - pos: -47.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6962 - components: - - pos: -46.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6963 - components: - - pos: -45.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6964 - components: - - pos: -44.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6965 - components: - - pos: -43.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6966 - components: - - pos: -43.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6967 - components: - - pos: -43.5,-25.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6968 - components: - - pos: -43.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6969 - components: - - pos: -43.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6970 - components: - - pos: -42.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6971 - components: - - pos: -41.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6972 - components: - - pos: -41.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6973 - components: - - pos: -41.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6974 - components: - - pos: -49.5,-28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6975 - components: - - pos: -49.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6976 - components: - - pos: -49.5,-30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6977 - components: - - pos: -49.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6978 - components: - - pos: -49.5,-32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6979 - components: - - pos: -49.5,-33.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6980 - components: - - pos: -49.5,-34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6981 - components: - - pos: -49.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6982 - components: - - pos: -49.5,-36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6983 - components: - - pos: -49.5,-37.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6984 - components: - - pos: -49.5,-38.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6985 - components: - - pos: -49.5,-39.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6986 - components: - - pos: -49.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6987 - components: - - pos: -49.5,-41.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6988 - components: - - pos: -49.5,-42.5 - parent: 6 - type: Transform - - uid: 6989 - components: - - pos: -49.5,-43.5 - parent: 6 - type: Transform - - uid: 6990 - components: - - pos: 5.5,-43.5 - parent: 6 - type: Transform - - uid: 6991 - components: - - pos: 6.5,-43.5 - parent: 6 - type: Transform - - uid: 6992 - components: - - pos: -48.5,-43.5 - parent: 6 - type: Transform - - uid: 6993 - components: - - pos: -47.5,-43.5 - parent: 6 - type: Transform - - uid: 6994 - components: - - pos: -46.5,-43.5 - parent: 6 - type: Transform - - uid: 6995 - components: - - pos: -45.5,-43.5 - parent: 6 - type: Transform - - uid: 6996 - components: - - pos: -44.5,-43.5 - parent: 6 - type: Transform - - uid: 6997 - components: - - pos: -43.5,-43.5 - parent: 6 - type: Transform - - uid: 6998 - components: - - pos: -42.5,-43.5 - parent: 6 - type: Transform - - uid: 6999 - components: - - pos: -41.5,-43.5 - parent: 6 - type: Transform - - uid: 7000 - components: - - pos: -40.5,-43.5 - parent: 6 - type: Transform - - uid: 7001 - components: - - pos: -39.5,-43.5 - parent: 6 - type: Transform - - uid: 7002 - components: - - pos: -38.5,-43.5 - parent: 6 - type: Transform - - uid: 7003 - components: - - pos: -37.5,-43.5 - parent: 6 - type: Transform - - uid: 7004 - components: - - pos: -36.5,-43.5 - parent: 6 - type: Transform - - uid: 7005 - components: - - pos: -35.5,-43.5 - parent: 6 - type: Transform - - uid: 7006 - components: - - pos: -34.5,-43.5 - parent: 6 - type: Transform - - uid: 7007 - components: - - pos: -33.5,-43.5 - parent: 6 - type: Transform - - uid: 7008 - components: - - pos: -32.5,-43.5 - parent: 6 - type: Transform - - uid: 7009 - components: - - pos: -31.5,-43.5 - parent: 6 - type: Transform - - uid: 7010 - components: - - pos: -30.5,-43.5 - parent: 6 - type: Transform - - uid: 7011 - components: - - pos: -29.5,-43.5 - parent: 6 - type: Transform - - uid: 7012 - components: - - pos: -28.5,-43.5 - parent: 6 - type: Transform - - uid: 7013 - components: - - pos: -27.5,-43.5 - parent: 6 - type: Transform - - uid: 7014 - components: - - pos: -26.5,-43.5 - parent: 6 - type: Transform - - uid: 7015 - components: - - pos: -25.5,-43.5 - parent: 6 - type: Transform - - uid: 7016 - components: - - pos: -24.5,-43.5 - parent: 6 - type: Transform - - uid: 7017 - components: - - pos: -23.5,-43.5 - parent: 6 - type: Transform - - uid: 7018 - components: - - pos: -22.5,-43.5 - parent: 6 - type: Transform - - uid: 7019 - components: - - pos: -21.5,-43.5 - parent: 6 - type: Transform - - uid: 7020 - components: - - pos: -20.5,-43.5 - parent: 6 - type: Transform - - uid: 7021 - components: - - pos: -19.5,-43.5 - parent: 6 - type: Transform - - uid: 7022 - components: - - pos: -18.5,-43.5 - parent: 6 - type: Transform - - uid: 7023 - components: - - pos: -17.5,-43.5 - parent: 6 - type: Transform - - uid: 7024 - components: - - pos: -16.5,-43.5 - parent: 6 - type: Transform - - uid: 7025 - components: - - pos: -15.5,-43.5 - parent: 6 - type: Transform - - uid: 7026 - components: - - pos: -14.5,-43.5 - parent: 6 - type: Transform - - uid: 7027 - components: - - pos: -13.5,-43.5 - parent: 6 - type: Transform - - uid: 7028 - components: - - pos: -12.5,-43.5 - parent: 6 - type: Transform - - uid: 7029 - components: - - pos: -11.5,-43.5 - parent: 6 - type: Transform - - uid: 7030 - components: - - pos: -10.5,-43.5 - parent: 6 - type: Transform - - uid: 7031 - components: - - pos: -9.5,-43.5 - parent: 6 - type: Transform - - uid: 7032 - components: - - pos: -8.5,-43.5 - parent: 6 - type: Transform - - uid: 7033 - components: - - pos: -7.5,-43.5 - parent: 6 - type: Transform - - uid: 7034 - components: - - pos: -6.5,-43.5 - parent: 6 - type: Transform - - uid: 7035 - components: - - pos: -5.5,-43.5 - parent: 6 - type: Transform - - uid: 7036 - components: - - pos: -4.5,-43.5 - parent: 6 - type: Transform - - uid: 7037 - components: - - pos: -3.5,-43.5 - parent: 6 - type: Transform - - uid: 7038 - components: - - pos: -2.5,-43.5 - parent: 6 - type: Transform - - uid: 7039 - components: - - pos: -1.5,-43.5 - parent: 6 - type: Transform - - uid: 7040 - components: - - pos: -0.5,-43.5 - parent: 6 - type: Transform - - uid: 7041 - components: - - pos: 0.5,-43.5 - parent: 6 - type: Transform - - uid: 7042 - components: - - pos: 1.5,-43.5 - parent: 6 - type: Transform - - uid: 7043 - components: - - pos: 2.5,-43.5 - parent: 6 - type: Transform - - uid: 7044 - components: - - pos: 3.5,-43.5 - parent: 6 - type: Transform - - uid: 7045 - components: - - pos: 4.5,-43.5 - parent: 6 - type: Transform - - uid: 7046 - components: - - pos: 6.5,-44.5 - parent: 6 - type: Transform - - uid: 7047 - components: - - pos: 7.5,-44.5 - parent: 6 - type: Transform - - uid: 7048 - components: - - pos: 8.5,-44.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7049 - components: - - pos: 9.5,-44.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7050 - components: - - pos: 9.5,-43.5 - parent: 6 - type: Transform - - uid: 7051 - components: - - pos: 9.5,-42.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7052 - components: - - pos: 8.5,-42.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7053 - components: - - pos: -5.5,-44.5 - parent: 6 - type: Transform - - uid: 7054 - components: - - pos: -5.5,-45.5 - parent: 6 - type: Transform - - uid: 7055 - components: - - pos: -5.5,-46.5 - parent: 6 - type: Transform - - uid: 7056 - components: - - pos: -5.5,-47.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7057 - components: - - pos: -5.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7058 - components: - - pos: -4.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7059 - components: - - pos: -3.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7060 - components: - - pos: -2.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7061 - components: - - pos: -1.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7062 - components: - - pos: -0.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7063 - components: - - pos: 0.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7064 - components: - - pos: 0.5,-49.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7065 - components: - - pos: 0.5,-50.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7066 - components: - - pos: 0.5,-51.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7067 - components: - - pos: 0.5,-52.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7068 - components: - - pos: 0.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7069 - components: - - pos: 0.5,-54.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7070 - components: - - pos: 0.5,-55.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7071 - components: - - pos: 0.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7072 - components: - - pos: 0.5,-57.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7073 - components: - - pos: 0.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7074 - components: - - pos: -0.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7075 - components: - - pos: -1.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7076 - components: - - pos: -2.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7077 - components: - - pos: -3.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7078 - components: - - pos: -4.5,-58.5 - parent: 6 - type: Transform - - uid: 7079 - components: - - pos: -5.5,-58.5 - parent: 6 - type: Transform - - uid: 7080 - components: - - pos: -6.5,-58.5 - parent: 6 - type: Transform - - uid: 7081 - components: - - pos: -7.5,-58.5 - parent: 6 - type: Transform - - uid: 7082 - components: - - pos: -8.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7083 - components: - - pos: -9.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7084 - components: - - pos: -10.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7085 - components: - - pos: -11.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7086 - components: - - pos: -12.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7087 - components: - - pos: -13.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7088 - components: - - pos: -14.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7089 - components: - - pos: -14.5,-57.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7090 - components: - - pos: -14.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7091 - components: - - pos: -15.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7092 - components: - - pos: -17.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7093 - components: - - pos: -16.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7094 - components: - - pos: -16.5,-57.5 - parent: 6 - type: Transform - - uid: 7095 - components: - - pos: -16.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7096 - components: - - pos: -17.5,-58.5 - parent: 6 - type: Transform - - uid: 7097 - components: - - pos: -18.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7098 - components: - - pos: -19.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7099 - components: - - pos: -19.5,-55.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7100 - components: - - pos: -19.5,-54.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7101 - components: - - pos: -19.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7102 - components: - - pos: -19.5,-52.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7103 - components: - - pos: -19.5,-51.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7104 - components: - - pos: -19.5,-50.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7105 - components: - - pos: -19.5,-49.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7106 - components: - - pos: -19.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7107 - components: - - pos: -20.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7108 - components: - - pos: -21.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7109 - components: - - pos: -22.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7110 - components: - - pos: -23.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7111 - components: - - pos: -24.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7112 - components: - - pos: -24.5,-47.5 - parent: 6 - type: Transform - - uid: 7113 - components: - - pos: -24.5,-46.5 - parent: 6 - type: Transform - - uid: 7114 - components: - - pos: -24.5,-45.5 - parent: 6 - type: Transform - - uid: 7115 - components: - - pos: -24.5,-44.5 - parent: 6 - type: Transform - - uid: 7116 - components: - - pos: -22.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7117 - components: - - pos: -21.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7118 - components: - - pos: -20.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7119 - components: - - pos: -19.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7120 - components: - - pos: -19.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7121 - components: - - pos: -19.5,-57.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7122 - components: - - pos: -24.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7123 - components: - - pos: -25.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7124 - components: - - pos: -26.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7125 - components: - - pos: -27.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7126 - components: - - pos: -28.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7127 - components: - - pos: -29.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7128 - components: - - pos: -30.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7129 - components: - - pos: -31.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7130 - components: - - pos: -32.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7131 - components: - - pos: -33.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7132 - components: - - pos: -34.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7133 - components: - - pos: -35.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7134 - components: - - pos: -36.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7135 - components: - - pos: -37.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7136 - components: - - pos: -38.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7137 - components: - - pos: -39.5,-59.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7138 - components: - - pos: -39.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7139 - components: - - pos: -39.5,-57.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7140 - components: - - pos: -39.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7141 - components: - - pos: -39.5,-55.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7142 - components: - - pos: -39.5,-54.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7143 - components: - - pos: -39.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7144 - components: - - pos: -38.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7145 - components: - - pos: -38.5,-52.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7146 - components: - - pos: -38.5,-51.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7147 - components: - - pos: -38.5,-50.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7148 - components: - - pos: -38.5,-49.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7149 - components: - - pos: -38.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7150 - components: - - pos: -38.5,-47.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7151 - components: - - pos: -39.5,-47.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7152 - components: - - pos: -40.5,-47.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7153 - components: - - pos: -40.5,-46.5 - parent: 6 - type: Transform - - uid: 7154 - components: - - pos: -40.5,-45.5 - parent: 6 - type: Transform - - uid: 7155 - components: - - pos: -40.5,-44.5 - parent: 6 - type: Transform - - uid: 7156 - components: - - pos: 4.5,-42.5 - parent: 6 - type: Transform - - uid: 7157 - components: - - pos: 4.5,-41.5 - parent: 6 - type: Transform - - uid: 7158 - components: - - pos: 4.5,-40.5 - parent: 6 - type: Transform - - uid: 7159 - components: - - pos: 4.5,-39.5 - parent: 6 - type: Transform - - uid: 7160 - components: - - pos: 4.5,-38.5 - parent: 6 - type: Transform - - uid: 7161 - components: - - pos: 4.5,-37.5 - parent: 6 - type: Transform - - uid: 7162 - components: - - pos: 4.5,-36.5 - parent: 6 - type: Transform - - uid: 7163 - components: - - pos: 4.5,-35.5 - parent: 6 - type: Transform - - uid: 7164 - components: - - pos: 4.5,-34.5 - parent: 6 - type: Transform - - uid: 7165 - components: - - pos: 4.5,-33.5 - parent: 6 - type: Transform - - uid: 7166 - components: - - pos: 4.5,-32.5 - parent: 6 - type: Transform - - uid: 7167 - components: - - pos: 4.5,-31.5 - parent: 6 - type: Transform - - uid: 7168 - components: - - pos: 4.5,-30.5 - parent: 6 - type: Transform - - uid: 7169 - components: - - pos: 4.5,-29.5 - parent: 6 - type: Transform - - uid: 7170 - components: - - pos: 4.5,-28.5 - parent: 6 - type: Transform - - uid: 7171 - components: - - pos: 4.5,-27.5 - parent: 6 - type: Transform - - uid: 7172 - components: - - pos: 4.5,-26.5 - parent: 6 - type: Transform - - uid: 7173 - components: - - pos: 5.5,-29.5 - parent: 6 - type: Transform - - uid: 7174 - components: - - pos: 6.5,-29.5 - parent: 6 - type: Transform - - uid: 7175 - components: - - pos: 7.5,-29.5 - parent: 6 - type: Transform - - uid: 7176 - components: - - pos: 8.5,-29.5 - parent: 6 - type: Transform - - uid: 7177 - components: - - pos: 9.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7178 - components: - - pos: 10.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7179 - components: - - pos: 11.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7180 - components: - - pos: 12.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7181 - components: - - pos: 12.5,-30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7182 - components: - - pos: 12.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7183 - components: - - pos: 13.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7184 - components: - - pos: 14.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7185 - components: - - pos: 15.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7186 - components: - - pos: 16.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7187 - components: - - pos: 17.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7188 - components: - - pos: 18.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7189 - components: - - pos: 19.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7190 - components: - - pos: 19.5,-30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7191 - components: - - pos: 19.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7192 - components: - - pos: 19.5,-28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7193 - components: - - pos: 19.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7194 - components: - - pos: 19.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7195 - components: - - pos: 19.5,-25.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7196 - components: - - pos: 19.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7197 - components: - - pos: 18.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7198 - components: - - pos: 17.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7199 - components: - - pos: 16.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7200 - components: - - pos: 16.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7201 - components: - - pos: 16.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7202 - components: - - pos: 17.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7203 - components: - - pos: 18.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7204 - components: - - pos: 19.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7205 - components: - - pos: 19.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7206 - components: - - pos: 20.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7207 - components: - - pos: 21.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7208 - components: - - pos: 19.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7209 - components: - - pos: 22.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7210 - components: - - pos: 22.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7211 - components: - - pos: 23.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7213 - components: - - pos: 24.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7214 - components: - - pos: 24.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7215 - components: - - pos: 25.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7216 - components: - - pos: 26.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7217 - components: - - pos: 26.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7227 - components: - - pos: 44.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7228 - components: - - pos: 45.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7229 - components: - - pos: 19.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7230 - components: - - pos: 19.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7231 - components: - - pos: 19.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7232 - components: - - pos: 19.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7233 - components: - - pos: 19.5,-15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7234 - components: - - pos: 19.5,-14.5 - parent: 6 - type: Transform - - uid: 7235 - components: - - pos: 19.5,-13.5 - parent: 6 - type: Transform - - uid: 7236 - components: - - pos: 19.5,-12.5 - parent: 6 - type: Transform - - uid: 7237 - components: - - pos: 19.5,-11.5 - parent: 6 - type: Transform - - uid: 7238 - components: - - pos: 19.5,-10.5 - parent: 6 - type: Transform - - uid: 7239 - components: - - pos: 20.5,-10.5 - parent: 6 - type: Transform - - uid: 7240 - components: - - pos: 21.5,-10.5 - parent: 6 - type: Transform - - uid: 7241 - components: - - pos: 21.5,-9.5 - parent: 6 - type: Transform - - uid: 7242 - components: - - pos: 21.5,-8.5 - parent: 6 - type: Transform - - uid: 7243 - components: - - pos: 21.5,-7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7244 - components: - - pos: 22.5,-7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7245 - components: - - pos: 23.5,-7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7246 - components: - - pos: 24.5,-7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7247 - components: - - pos: 24.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7248 - components: - - pos: 24.5,-5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7249 - components: - - pos: 24.5,-4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7250 - components: - - pos: 24.5,-3.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7251 - components: - - pos: 24.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7252 - components: - - pos: 23.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7253 - components: - - pos: 22.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7254 - components: - - pos: 21.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7255 - components: - - pos: 21.5,-3.5 - parent: 6 - type: Transform - - uid: 7256 - components: - - pos: 21.5,-4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7257 - components: - - pos: 22.5,-4.5 - parent: 6 - type: Transform - - uid: 7258 - components: - - pos: -5.5,-10.5 - parent: 6 - type: Transform - - uid: 7259 - components: - - pos: -4.5,-10.5 - parent: 6 - type: Transform - - uid: 7260 - components: - - pos: -3.5,-10.5 - parent: 6 - type: Transform - - uid: 7261 - components: - - pos: -2.5,-10.5 - parent: 6 - type: Transform - - uid: 7262 - components: - - pos: -1.5,-10.5 - parent: 6 - type: Transform - - uid: 7263 - components: - - pos: -0.5,-10.5 - parent: 6 - type: Transform - - uid: 7264 - components: - - pos: 0.5,-10.5 - parent: 6 - type: Transform - - uid: 7265 - components: - - pos: 1.5,-10.5 - parent: 6 - type: Transform - - uid: 7266 - components: - - pos: 2.5,-10.5 - parent: 6 - type: Transform - - uid: 7267 - components: - - pos: 3.5,-10.5 - parent: 6 - type: Transform - - uid: 7268 - components: - - pos: 4.5,-10.5 - parent: 6 - type: Transform - - uid: 7269 - components: - - pos: 5.5,-10.5 - parent: 6 - type: Transform - - uid: 7270 - components: - - pos: 6.5,-10.5 - parent: 6 - type: Transform - - uid: 7271 - components: - - pos: 7.5,-10.5 - parent: 6 - type: Transform - - uid: 7272 - components: - - pos: 8.5,-10.5 - parent: 6 - type: Transform - - uid: 7273 - components: - - pos: 9.5,-10.5 - parent: 6 - type: Transform - - uid: 7274 - components: - - pos: 10.5,-10.5 - parent: 6 - type: Transform - - uid: 7275 - components: - - pos: 11.5,-10.5 - parent: 6 - type: Transform - - uid: 7276 - components: - - pos: 12.5,-10.5 - parent: 6 - type: Transform - - uid: 7277 - components: - - pos: 13.5,-10.5 - parent: 6 - type: Transform - - uid: 7278 - components: - - pos: 14.5,-10.5 - parent: 6 - type: Transform - - uid: 7279 - components: - - pos: 15.5,-10.5 - parent: 6 - type: Transform - - uid: 7280 - components: - - pos: 16.5,-10.5 - parent: 6 - type: Transform - - uid: 7281 - components: - - pos: 17.5,-10.5 - parent: 6 - type: Transform - - uid: 7282 - components: - - pos: 18.5,-10.5 - parent: 6 - type: Transform - - uid: 7283 - components: - - pos: -41.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7284 - components: - - pos: -40.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7285 - components: - - pos: -39.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7286 - components: - - pos: -38.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7287 - components: - - pos: -37.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7288 - components: - - pos: -36.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7289 - components: - - pos: -35.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7290 - components: - - pos: -34.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7291 - components: - - pos: -33.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7292 - components: - - pos: -33.5,-25.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7293 - components: - - pos: -33.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7294 - components: - - pos: -33.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7295 - components: - - pos: -33.5,-28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7296 - components: - - pos: -33.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7297 - components: - - pos: -32.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7298 - components: - - pos: -31.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7299 - components: - - pos: -30.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7300 - components: - - pos: -29.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7301 - components: - - pos: -15.5,-35.5 - parent: 6 - type: Transform - - uid: 7302 - components: - - pos: -16.5,-35.5 - parent: 6 - type: Transform - - uid: 7303 - components: - - pos: -17.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7304 - components: - - pos: -18.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7305 - components: - - pos: -19.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7306 - components: - - pos: -20.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7307 - components: - - pos: -21.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7308 - components: - - pos: -22.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7309 - components: - - pos: -23.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7310 - components: - - pos: -24.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7311 - components: - - pos: -25.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7312 - components: - - pos: -26.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7313 - components: - - pos: -27.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7314 - components: - - pos: -28.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7315 - components: - - pos: -29.5,-35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7316 - components: - - pos: -29.5,-34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7317 - components: - - pos: -29.5,-33.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7318 - components: - - pos: -29.5,-32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7319 - components: - - pos: -29.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7320 - components: - - pos: -29.5,-30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7321 - components: - - pos: -31.5,-30.5 - parent: 6 - type: Transform - - uid: 7322 - components: - - pos: -31.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7323 - components: - - pos: -32.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7324 - components: - - pos: -15.5,-42.5 - parent: 6 - type: Transform - - uid: 7325 - components: - - pos: -15.5,-41.5 - parent: 6 - type: Transform - - uid: 7326 - components: - - pos: -15.5,-40.5 - parent: 6 - type: Transform - - uid: 7327 - components: - - pos: -15.5,-39.5 - parent: 6 - type: Transform - - uid: 7328 - components: - - pos: -15.5,-38.5 - parent: 6 - type: Transform - - uid: 7329 - components: - - pos: -15.5,-37.5 - parent: 6 - type: Transform - - uid: 7330 - components: - - pos: -15.5,-36.5 - parent: 6 - type: Transform - - uid: 7331 - components: - - pos: -15.5,-34.5 - parent: 6 - type: Transform - - uid: 7332 - components: - - pos: -15.5,-33.5 - parent: 6 - type: Transform - - uid: 7333 - components: - - pos: -15.5,-32.5 - parent: 6 - type: Transform - - uid: 7334 - components: - - pos: -15.5,-31.5 - parent: 6 - type: Transform - - uid: 7335 - components: - - pos: -15.5,-30.5 - parent: 6 - type: Transform - - uid: 7336 - components: - - pos: -15.5,-29.5 - parent: 6 - type: Transform - - uid: 7337 - components: - - pos: -15.5,-28.5 - parent: 6 - type: Transform - - uid: 7338 - components: - - pos: -15.5,-27.5 - parent: 6 - type: Transform - - uid: 7339 - components: - - pos: -15.5,-26.5 - parent: 6 - type: Transform - - uid: 7340 - components: - - pos: -15.5,-25.5 - parent: 6 - type: Transform - - uid: 7341 - components: - - pos: -15.5,-24.5 - parent: 6 - type: Transform - - uid: 7342 - components: - - pos: -15.5,-23.5 - parent: 6 - type: Transform - - uid: 7343 - components: - - pos: -15.5,-22.5 - parent: 6 - type: Transform - - uid: 7344 - components: - - pos: -15.5,-21.5 - parent: 6 - type: Transform - - uid: 7345 - components: - - pos: -15.5,-20.5 - parent: 6 - type: Transform - - uid: 7346 - components: - - pos: -15.5,-19.5 - parent: 6 - type: Transform - - uid: 7347 - components: - - pos: -15.5,-18.5 - parent: 6 - type: Transform - - uid: 7348 - components: - - pos: -15.5,-17.5 - parent: 6 - type: Transform - - uid: 7349 - components: - - pos: -15.5,-16.5 - parent: 6 - type: Transform - - uid: 7350 - components: - - pos: -15.5,-15.5 - parent: 6 - type: Transform - - uid: 7351 - components: - - pos: -15.5,-14.5 - parent: 6 - type: Transform - - uid: 7352 - components: - - pos: -15.5,-13.5 - parent: 6 - type: Transform - - uid: 7353 - components: - - pos: -15.5,-12.5 - parent: 6 - type: Transform - - uid: 7354 - components: - - pos: -15.5,-11.5 - parent: 6 - type: Transform - - uid: 7355 - components: - - pos: -37.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7356 - components: - - pos: -37.5,-54.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7357 - components: - - pos: -37.5,-55.5 - parent: 6 - type: Transform - - uid: 7358 - components: - - pos: -37.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7855 - components: - - pos: -82.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7856 - components: - - pos: -82.5,-15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7857 - components: - - pos: -81.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7858 - components: - - pos: -78.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7859 - components: - - pos: -78.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7860 - components: - - pos: -78.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7861 - components: - - pos: -78.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7862 - components: - - pos: -78.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7863 - components: - - pos: -78.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7864 - components: - - pos: -78.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7865 - components: - - pos: -78.5,-15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7866 - components: - - pos: -76.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7867 - components: - - pos: -76.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7868 - components: - - pos: -76.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7869 - components: - - pos: -76.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7870 - components: - - pos: -76.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7871 - components: - - pos: -76.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7872 - components: - - pos: -76.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7873 - components: - - pos: -76.5,-15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7874 - components: - - pos: -77.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7876 - components: - - pos: -78.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7877 - components: - - pos: -78.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7878 - components: - - pos: -78.5,-28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7879 - components: - - pos: -78.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7880 - components: - - pos: -78.5,-30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7881 - components: - - pos: -78.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7882 - components: - - pos: -78.5,-32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7884 - components: - - pos: -76.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7885 - components: - - pos: -76.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7886 - components: - - pos: -76.5,-28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7887 - components: - - pos: -76.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7888 - components: - - pos: -76.5,-30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7889 - components: - - pos: -76.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7890 - components: - - pos: -76.5,-32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7893 - components: - - pos: -74.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7894 - components: - - pos: -74.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7895 - components: - - pos: -74.5,-28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7896 - components: - - pos: -74.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7897 - components: - - pos: -74.5,-30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7898 - components: - - pos: -74.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7899 - components: - - pos: -74.5,-32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7901 - components: - - pos: -72.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7902 - components: - - pos: -72.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7903 - components: - - pos: -72.5,-28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7904 - components: - - pos: -72.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7905 - components: - - pos: -72.5,-30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7906 - components: - - pos: -72.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7907 - components: - - pos: -72.5,-32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7934 - components: - - pos: -88.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8130 - components: - - pos: -19.5,28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8131 - components: - - pos: -18.5,28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8132 - components: - - pos: -17.5,28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8133 - components: - - pos: -16.5,28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8134 - components: - - pos: -15.5,28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8137 - components: - - pos: -19.5,26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8138 - components: - - pos: -18.5,26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8139 - components: - - pos: -17.5,26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8140 - components: - - pos: -16.5,26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8141 - components: - - pos: -15.5,26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8143 - components: - - pos: -11.5,26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8144 - components: - - pos: -10.5,26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8145 - components: - - pos: -9.5,26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8146 - components: - - pos: -8.5,26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8147 - components: - - pos: -7.5,26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8148 - components: - - pos: -6.5,26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8149 - components: - - pos: -11.5,27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8150 - components: - - pos: -11.5,28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8151 - components: - - pos: -10.5,28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8152 - components: - - pos: -9.5,28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8153 - components: - - pos: -8.5,28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8154 - components: - - pos: -7.5,28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8155 - components: - - pos: -6.5,28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8156 - components: - - pos: -11.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8157 - components: - - pos: -10.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8158 - components: - - pos: -9.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8159 - components: - - pos: -8.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8160 - components: - - pos: -7.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8161 - components: - - pos: -6.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8162 - components: - - pos: -11.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8163 - components: - - pos: -10.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8164 - components: - - pos: -9.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8165 - components: - - pos: -8.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8166 - components: - - pos: -7.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8167 - components: - - pos: -6.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8168 - components: - - pos: -11.5,23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8169 - components: - - pos: -11.5,18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8170 - components: - - pos: -10.5,18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8171 - components: - - pos: -9.5,18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8172 - components: - - pos: -8.5,18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8173 - components: - - pos: -7.5,18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8174 - components: - - pos: -6.5,18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8176 - components: - - pos: -11.5,19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8177 - components: - - pos: -11.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8178 - components: - - pos: -10.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8179 - components: - - pos: -9.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8180 - components: - - pos: -8.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8181 - components: - - pos: -7.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8182 - components: - - pos: -6.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8346 - components: - - pos: 5.5,-13.5 - parent: 6 - type: Transform - - uid: 8348 - components: - - pos: -41.5,4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8349 - components: - - pos: -41.5,5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8350 - components: - - pos: -41.5,6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8351 - components: - - pos: -40.5,6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8352 - components: - - pos: -39.5,6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8353 - components: - - pos: -38.5,6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8354 - components: - - pos: -37.5,6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8355 - components: - - pos: -36.5,6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8356 - components: - - pos: -35.5,6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8357 - components: - - pos: -34.5,6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8358 - components: - - pos: -33.5,6.5 - parent: 6 - type: Transform - - uid: 8360 - components: - - pos: -31.5,6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8362 - components: - - pos: -29.5,6.5 - parent: 6 - type: Transform - - uid: 8363 - components: - - pos: -28.5,6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8364 - components: - - pos: -27.5,6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8365 - components: - - pos: -26.5,6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8366 - components: - - pos: -25.5,6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8367 - components: - - pos: -24.5,6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8368 - components: - - pos: 5.5,-12.5 - parent: 6 - type: Transform - - uid: 8372 - components: - - pos: -20.5,7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8373 - components: - - pos: -18.5,6.5 - parent: 6 - type: Transform - - uid: 8374 - components: - - pos: -17.5,6.5 - parent: 6 - type: Transform - - uid: 8375 - components: - - pos: -16.5,6.5 - parent: 6 - type: Transform - - uid: 8376 - components: - - pos: -15.5,6.5 - parent: 6 - type: Transform - - uid: 8377 - components: - - pos: -15.5,5.5 - parent: 6 - type: Transform - - uid: 8378 - components: - - pos: -15.5,4.5 - parent: 6 - type: Transform - - uid: 8379 - components: - - pos: -15.5,3.5 - parent: 6 - type: Transform - - uid: 8380 - components: - - pos: -15.5,2.5 - parent: 6 - type: Transform - - uid: 9499 - components: - - pos: -83.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9500 - components: - - pos: -82.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9501 - components: - - pos: -81.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9502 - components: - - pos: -81.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9503 - components: - - pos: -81.5,-25.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9756 - components: - - pos: 5.5,-11.5 - parent: 6 - type: Transform - - uid: 10199 - components: - - pos: -57.5,-46.5 - parent: 6 - type: Transform - - uid: 10200 - components: - - pos: -57.5,-45.5 - parent: 6 - type: Transform - - uid: 10201 - components: - - pos: -57.5,-43.5 - parent: 6 - type: Transform - - uid: 10202 - components: - - pos: -57.5,-44.5 - parent: 6 - type: Transform - - uid: 10203 - components: - - pos: -56.5,-43.5 - parent: 6 - type: Transform - - uid: 10207 - components: - - pos: -55.5,-43.5 - parent: 6 - type: Transform - - uid: 10208 - components: - - pos: -54.5,-43.5 - parent: 6 - type: Transform - - uid: 10848 - components: - - pos: -21.5,7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10849 - components: - - pos: -22.5,7.5 - parent: 6 - type: Transform - - uid: 10850 - components: - - pos: -23.5,7.5 - parent: 6 - type: Transform - - uid: 10851 - components: - - pos: -24.5,7.5 - parent: 6 - type: Transform - - uid: 10852 - components: - - pos: 5.5,-14.5 - parent: 6 - type: Transform - - uid: 10853 - components: - - pos: 5.5,-15.5 - parent: 6 - type: Transform - - uid: 10854 - components: - - pos: 5.5,-16.5 - parent: 6 - type: Transform - - uid: 10855 - components: - - pos: 5.5,-17.5 - parent: 6 - type: Transform - - uid: 10856 - components: - - pos: 5.5,-18.5 - parent: 6 - type: Transform - - uid: 10857 - components: - - pos: 5.5,-19.5 - parent: 6 - type: Transform - - uid: 10858 - components: - - pos: 4.5,-19.5 - parent: 6 - type: Transform - - uid: 10859 - components: - - pos: 4.5,-20.5 - parent: 6 - type: Transform - - uid: 10860 - components: - - pos: 4.5,-21.5 - parent: 6 - type: Transform - - uid: 10861 - components: - - pos: 4.5,-22.5 - parent: 6 - type: Transform - - uid: 10862 - components: - - pos: 4.5,-23.5 - parent: 6 - type: Transform - - uid: 10863 - components: - - pos: 4.5,-24.5 - parent: 6 - type: Transform - - uid: 10864 - components: - - pos: 4.5,-25.5 - parent: 6 - type: Transform - - uid: 13746 - components: - - pos: 1.5,0.5 - parent: 13645 - type: Transform - - uid: 13747 - components: - - pos: 1.5,1.5 - parent: 13645 - type: Transform - - uid: 13796 - components: - - pos: -84.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13797 - components: - - pos: -84.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13798 - components: - - pos: -84.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13806 - components: - - pos: -84.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13811 - components: - - pos: -27.5,-2.5 - parent: 6 - type: Transform - - uid: 13828 - components: - - pos: -84.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13829 - components: - - pos: -84.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13830 - components: - - pos: -84.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13831 - components: - - pos: -84.5,-15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13838 - components: - - pos: -86.5,-15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13839 - components: - - pos: -86.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13840 - components: - - pos: -86.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13841 - components: - - pos: -86.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13842 - components: - - pos: -86.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13843 - components: - - pos: -86.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13844 - components: - - pos: -86.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13845 - components: - - pos: -86.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13846 - components: - - pos: -84.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13847 - components: - - pos: -84.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13848 - components: - - pos: -84.5,-28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13849 - components: - - pos: -84.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13850 - components: - - pos: -84.5,-30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13851 - components: - - pos: -84.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13852 - components: - - pos: -84.5,-32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13853 - components: - - pos: -86.5,-32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13854 - components: - - pos: -86.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13855 - components: - - pos: -86.5,-30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13856 - components: - - pos: -86.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13857 - components: - - pos: -86.5,-28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13858 - components: - - pos: -86.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13859 - components: - - pos: -86.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13860 - components: - - pos: -85.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13861 - components: - - pos: -85.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13862 - components: - - pos: -80.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13863 - components: - - pos: -79.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13864 - components: - - pos: -61.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13865 - components: - - pos: -61.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13866 - components: - - pos: -62.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13867 - components: - - pos: -87.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13868 - components: - - pos: -86.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13869 - components: - - pos: -85.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13870 - components: - - pos: -85.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13871 - components: - - pos: -85.5,-25.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13872 - components: - - pos: -84.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13953 - components: - - pos: -6.5,30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13954 - components: - - pos: -7.5,30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13955 - components: - - pos: -8.5,30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13956 - components: - - pos: -9.5,30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13957 - components: - - pos: -10.5,30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13958 - components: - - pos: -11.5,30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13959 - components: - - pos: -6.5,32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13960 - components: - - pos: -7.5,32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13961 - components: - - pos: -8.5,32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13962 - components: - - pos: -9.5,32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13963 - components: - - pos: -10.5,32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13964 - components: - - pos: -11.5,32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13965 - components: - - pos: -11.5,31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13966 - components: - - pos: -19.5,30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13967 - components: - - pos: -18.5,30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13968 - components: - - pos: -17.5,30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13969 - components: - - pos: -16.5,30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13970 - components: - - pos: -15.5,30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13971 - components: - - pos: -19.5,32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13972 - components: - - pos: -18.5,32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13973 - components: - - pos: -17.5,32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13974 - components: - - pos: -16.5,32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13975 - components: - - pos: -15.5,32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13976 - components: - - pos: -15.5,31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13977 - components: - - pos: -19.5,36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13978 - components: - - pos: -18.5,36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13979 - components: - - pos: -17.5,36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13980 - components: - - pos: -16.5,36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13981 - components: - - pos: -15.5,36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13982 - components: - - pos: -19.5,34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13983 - components: - - pos: -18.5,34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13984 - components: - - pos: -17.5,34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13985 - components: - - pos: -16.5,34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13986 - components: - - pos: -15.5,34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13987 - components: - - pos: -15.5,35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13988 - components: - - pos: -11.5,36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13989 - components: - - pos: -10.5,36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13990 - components: - - pos: -9.5,36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13991 - components: - - pos: -8.5,36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13992 - components: - - pos: -7.5,36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13993 - components: - - pos: -6.5,36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13994 - components: - - pos: -6.5,34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13995 - components: - - pos: -7.5,34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13996 - components: - - pos: -8.5,34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13997 - components: - - pos: -9.5,34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13998 - components: - - pos: -10.5,34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 13999 - components: - - pos: -11.5,34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14000 - components: - - pos: -11.5,35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14001 - components: - - pos: -14.5,35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14002 - components: - - pos: -13.5,35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14003 - components: - - pos: -13.5,36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14004 - components: - - pos: -13.5,37.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14005 - components: - - pos: -13.5,38.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14006 - components: - - pos: -12.5,35.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14007 - components: - - pos: -13.5,34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14008 - components: - - pos: -13.5,33.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14009 - components: - - pos: -13.5,32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14010 - components: - - pos: -13.5,31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14011 - components: - - pos: -12.5,31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14012 - components: - - pos: -14.5,31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14026 - components: - - pos: -13.5,30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14027 - components: - - pos: -13.5,29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14028 - components: - - pos: -13.5,28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14029 - components: - - pos: -13.5,27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14030 - components: - - pos: -12.5,27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14031 - components: - - pos: -14.5,27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14215 - components: - - pos: -5.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14216 - components: - - pos: -4.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14217 - components: - - pos: -5.5,18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14218 - components: - - pos: -4.5,18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14219 - components: - - pos: -5.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14220 - components: - - pos: -4.5,22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14221 - components: - - pos: -5.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14222 - components: - - pos: -4.5,24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14223 - components: - - pos: -5.5,26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14224 - components: - - pos: -4.5,26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14225 - components: - - pos: -5.5,28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14226 - components: - - pos: -4.5,28.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14227 - components: - - pos: -5.5,30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14228 - components: - - pos: -4.5,30.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14229 - components: - - pos: -5.5,32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14230 - components: - - pos: -4.5,32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14231 - components: - - pos: -5.5,34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14232 - components: - - pos: -4.5,34.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14233 - components: - - pos: -5.5,36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14234 - components: - - pos: -4.5,36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound -- proto: CableHVStack - entities: - - uid: 5384 - components: - - pos: -11.858889,-56.331245 - parent: 6 - type: Transform - - uid: 6408 - components: - - pos: -48.474102,-25.220161 - parent: 6 - type: Transform - - uid: 6679 - components: - - pos: -22.593382,-61.335278 - parent: 6 - type: Transform - - uid: 13405 - components: - - pos: 28.687412,1.3960637 - parent: 6 - type: Transform -- proto: CableMV - entities: - - uid: 5239 - components: - - pos: 26.5,0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6700 - components: - - pos: -78.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6701 - components: - - pos: -78.5,-49.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6702 - components: - - pos: -78.5,-50.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6703 - components: - - pos: -77.5,-50.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6704 - components: - - pos: -79.5,-50.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6705 - components: - - pos: -83.5,-46.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6706 - components: - - pos: -83.5,-45.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6707 - components: - - pos: -83.5,-44.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6708 - components: - - pos: -83.5,-41.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6709 - components: - - pos: -83.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10352 - components: - - pos: -29.5,14.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10353 - components: - - pos: -30.5,14.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10354 - components: - - pos: -30.5,13.5 - parent: 6 - type: Transform - - uid: 10355 - components: - - pos: -30.5,12.5 - parent: 6 - type: Transform - - uid: 10356 - components: - - pos: -30.5,11.5 - parent: 6 - type: Transform - - uid: 10357 - components: - - pos: -30.5,10.5 - parent: 6 - type: Transform - - uid: 10358 - components: - - pos: -30.5,9.5 - parent: 6 - type: Transform - - uid: 10359 - components: - - pos: -31.5,9.5 - parent: 6 - type: Transform - - uid: 10360 - components: - - pos: -31.5,8.5 - parent: 6 - type: Transform - - uid: 10361 - components: - - pos: -31.5,7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10362 - components: - - pos: -31.5,6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10363 - components: - - pos: -31.5,5.5 - parent: 6 - type: Transform - - uid: 10364 - components: - - pos: -31.5,4.5 - parent: 6 - type: Transform - - uid: 10365 - components: - - pos: -31.5,3.5 - parent: 6 - type: Transform - - uid: 10366 - components: - - pos: -31.5,2.5 - parent: 6 - type: Transform - - uid: 10367 - components: - - pos: -31.5,1.5 - parent: 6 - type: Transform - - uid: 10368 - components: - - pos: -31.5,0.5 - parent: 6 - type: Transform - - uid: 10369 - components: - - pos: -31.5,-0.5 - parent: 6 - type: Transform - - uid: 10370 - components: - - pos: -31.5,-1.5 - parent: 6 - type: Transform - - uid: 10371 - components: - - pos: -30.5,-1.5 - parent: 6 - type: Transform - - uid: 10372 - components: - - pos: -29.5,-1.5 - parent: 6 - type: Transform - - uid: 10373 - components: - - pos: -28.5,-1.5 - parent: 6 - type: Transform - - uid: 10374 - components: - - pos: -27.5,-1.5 - parent: 6 - type: Transform - - uid: 10375 - components: - - pos: -26.5,-1.5 - parent: 6 - type: Transform - - uid: 10376 - components: - - pos: -25.5,-1.5 - parent: 6 - type: Transform - - uid: 10377 - components: - - pos: -25.5,-2.5 - parent: 6 - type: Transform - - uid: 10378 - components: - - pos: -25.5,-3.5 - parent: 6 - type: Transform - - uid: 10379 - components: - - pos: -24.5,-3.5 - parent: 6 - type: Transform - - uid: 10380 - components: - - pos: -30.5,1.5 - parent: 6 - type: Transform - - uid: 10381 - components: - - pos: -29.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10382 - components: - - pos: -32.5,-0.5 - parent: 6 - type: Transform - - uid: 10383 - components: - - pos: -33.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10384 - components: - - pos: -10.5,-1.5 - parent: 6 - type: Transform - - uid: 10385 - components: - - pos: -10.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10386 - components: - - pos: -10.5,0.5 - parent: 6 - type: Transform - - uid: 10387 - components: - - pos: -10.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10388 - components: - - pos: -11.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10389 - components: - - pos: -12.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10390 - components: - - pos: -12.5,0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10391 - components: - - pos: -12.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10392 - components: - - pos: -12.5,-1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10393 - components: - - pos: -12.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10394 - components: - - pos: -12.5,-3.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10395 - components: - - pos: -12.5,-4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10396 - components: - - pos: -12.5,-5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10397 - components: - - pos: -12.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10398 - components: - - pos: -11.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10399 - components: - - pos: -10.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10400 - components: - - pos: -9.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10401 - components: - - pos: -8.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10402 - components: - - pos: -7.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10403 - components: - - pos: -6.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10404 - components: - - pos: -5.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10405 - components: - - pos: -5.5,-5.5 - parent: 6 - type: Transform - - uid: 10406 - components: - - pos: -4.5,-5.5 - parent: 6 - type: Transform - - uid: 10407 - components: - - pos: -3.5,-5.5 - parent: 6 - type: Transform - - uid: 10408 - components: - - pos: -3.5,-4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10409 - components: - - pos: -13.5,1.5 - parent: 6 - type: Transform - - uid: 10410 - components: - - pos: -14.5,1.5 - parent: 6 - type: Transform - - uid: 10411 - components: - - pos: -14.5,2.5 - parent: 6 - type: Transform - - uid: 10412 - components: - - pos: -14.5,3.5 - parent: 6 - type: Transform - - uid: 10413 - components: - - pos: -13.5,3.5 - parent: 6 - type: Transform - - uid: 10414 - components: - - pos: -12.5,3.5 - parent: 6 - type: Transform - - uid: 10415 - components: - - pos: -11.5,3.5 - parent: 6 - type: Transform - - uid: 10416 - components: - - pos: -10.5,3.5 - parent: 6 - type: Transform - - uid: 10417 - components: - - pos: -9.5,3.5 - parent: 6 - type: Transform - - uid: 10418 - components: - - pos: -8.5,3.5 - parent: 6 - type: Transform - - uid: 10419 - components: - - pos: -7.5,3.5 - parent: 6 - type: Transform - - uid: 10420 - components: - - pos: -6.5,3.5 - parent: 6 - type: Transform - - uid: 10421 - components: - - pos: -6.5,4.5 - parent: 6 - type: Transform - - uid: 10422 - components: - - pos: -6.5,5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10423 - components: - - pos: -6.5,-7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10424 - components: - - pos: -6.5,-8.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10425 - components: - - pos: -6.5,-9.5 - parent: 6 - type: Transform - - uid: 10426 - components: - - pos: -6.5,-10.5 - parent: 6 - type: Transform - - uid: 10427 - components: - - pos: -6.5,-11.5 - parent: 6 - type: Transform - - uid: 10428 - components: - - pos: -6.5,-12.5 - parent: 6 - type: Transform - - uid: 10429 - components: - - pos: -6.5,-13.5 - parent: 6 - type: Transform - - uid: 10430 - components: - - pos: -6.5,-14.5 - parent: 6 - type: Transform - - uid: 10431 - components: - - pos: -6.5,-15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10432 - components: - - pos: -5.5,-15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10433 - components: - - pos: -4.5,-15.5 - parent: 6 - type: Transform - - uid: 10434 - components: - - pos: -3.5,-15.5 - parent: 6 - type: Transform - - uid: 10435 - components: - - pos: -2.5,-15.5 - parent: 6 - type: Transform - - uid: 10436 - components: - - pos: -1.5,-15.5 - parent: 6 - type: Transform - - uid: 10437 - components: - - pos: -0.5,-15.5 - parent: 6 - type: Transform - - uid: 10438 - components: - - pos: -0.5,-16.5 - parent: 6 - type: Transform - - uid: 10439 - components: - - pos: -0.5,-17.5 - parent: 6 - type: Transform - - uid: 10440 - components: - - pos: -0.5,-18.5 - parent: 6 - type: Transform - - uid: 10441 - components: - - pos: -0.5,-19.5 - parent: 6 - type: Transform - - uid: 10442 - components: - - pos: -0.5,-20.5 - parent: 6 - type: Transform - - uid: 10443 - components: - - pos: -0.5,-21.5 - parent: 6 - type: Transform - - uid: 10444 - components: - - pos: -0.5,-22.5 - parent: 6 - type: Transform - - uid: 10445 - components: - - pos: -0.5,-23.5 - parent: 6 - type: Transform - - uid: 10446 - components: - - pos: -1.5,-23.5 - parent: 6 - type: Transform - - uid: 10447 - components: - - pos: -2.5,-23.5 - parent: 6 - type: Transform - - uid: 10448 - components: - - pos: -3.5,-23.5 - parent: 6 - type: Transform - - uid: 10449 - components: - - pos: -4.5,-23.5 - parent: 6 - type: Transform - - uid: 10450 - components: - - pos: -5.5,-23.5 - parent: 6 - type: Transform - - uid: 10451 - components: - - pos: -6.5,-23.5 - parent: 6 - type: Transform - - uid: 10452 - components: - - pos: -6.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10453 - components: - - pos: -1.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10454 - components: - - pos: 22.5,-4.5 - parent: 6 - type: Transform - - uid: 10455 - components: - - pos: 21.5,-4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10456 - components: - - pos: 21.5,-3.5 - parent: 6 - type: Transform - - uid: 10457 - components: - - pos: 21.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10458 - components: - - pos: 22.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10459 - components: - - pos: 23.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10460 - components: - - pos: 23.5,-1.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10461 - components: - - pos: 23.5,-0.5 - parent: 6 - type: Transform - - uid: 10462 - components: - - pos: 24.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10463 - components: - - pos: 25.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10464 - components: - - pos: 25.5,0.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10467 - components: - - pos: 20.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10468 - components: - - pos: 19.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10469 - components: - - pos: 19.5,-3.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10470 - components: - - pos: 19.5,-4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10471 - components: - - pos: 18.5,-4.5 - parent: 6 - type: Transform - - uid: 10472 - components: - - pos: 17.5,-4.5 - parent: 6 - type: Transform - - uid: 10473 - components: - - pos: 16.5,-4.5 - parent: 6 - type: Transform - - uid: 10474 - components: - - pos: 15.5,-4.5 - parent: 6 - type: Transform - - uid: 10475 - components: - - pos: 14.5,-4.5 - parent: 6 - type: Transform - - uid: 10476 - components: - - pos: 14.5,-3.5 - parent: 6 - type: Transform - - uid: 10477 - components: - - pos: 14.5,-2.5 - parent: 6 - type: Transform - - uid: 10478 - components: - - pos: 14.5,-1.5 - parent: 6 - type: Transform - - uid: 10479 - components: - - pos: 14.5,-0.5 - parent: 6 - type: Transform - - uid: 10480 - components: - - pos: 14.5,0.5 - parent: 6 - type: Transform - - uid: 10481 - components: - - pos: 14.5,1.5 - parent: 6 - type: Transform - - uid: 10482 - components: - - pos: 14.5,2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10483 - components: - - pos: 14.5,3.5 - parent: 6 - type: Transform - - uid: 10484 - components: - - pos: 14.5,4.5 - parent: 6 - type: Transform - - uid: 10485 - components: - - pos: 14.5,5.5 - parent: 6 - type: Transform - - uid: 10486 - components: - - pos: 14.5,6.5 - parent: 6 - type: Transform - - uid: 10487 - components: - - pos: 14.5,7.5 - parent: 6 - type: Transform - - uid: 10488 - components: - - pos: 14.5,8.5 - parent: 6 - type: Transform - - uid: 10489 - components: - - pos: 14.5,9.5 - parent: 6 - type: Transform - - uid: 10490 - components: - - pos: 14.5,10.5 - parent: 6 - type: Transform - - uid: 10491 - components: - - pos: 14.5,11.5 - parent: 6 - type: Transform - - uid: 10492 - components: - - pos: 14.5,12.5 - parent: 6 - type: Transform - - uid: 10493 - components: - - pos: 14.5,13.5 - parent: 6 - type: Transform - - uid: 10494 - components: - - pos: 14.5,14.5 - parent: 6 - type: Transform - - uid: 10495 - components: - - pos: 14.5,15.5 - parent: 6 - type: Transform - - uid: 10496 - components: - - pos: 14.5,16.5 - parent: 6 - type: Transform - - uid: 10497 - components: - - pos: 14.5,17.5 - parent: 6 - type: Transform - - uid: 10498 - components: - - pos: 15.5,17.5 - parent: 6 - type: Transform - - uid: 10499 - components: - - pos: 16.5,17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10500 - components: - - pos: 24.5,-2.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10501 - components: - - pos: 24.5,-3.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10502 - components: - - pos: 24.5,-4.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10503 - components: - - pos: 24.5,-5.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10504 - components: - - pos: 24.5,-6.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10505 - components: - - pos: 24.5,-7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10506 - components: - - pos: 23.5,-7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10507 - components: - - pos: 22.5,-7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10508 - components: - - pos: 21.5,-7.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10509 - components: - - pos: 21.5,-8.5 - parent: 6 - type: Transform - - uid: 10510 - components: - - pos: 21.5,-9.5 - parent: 6 - type: Transform - - uid: 10511 - components: - - pos: 21.5,-10.5 - parent: 6 - type: Transform - - uid: 10512 - components: - - pos: 20.5,-10.5 - parent: 6 - type: Transform - - uid: 10513 - components: - - pos: 19.5,-10.5 - parent: 6 - type: Transform - - uid: 10514 - components: - - pos: 19.5,-11.5 - parent: 6 - type: Transform - - uid: 10515 - components: - - pos: 19.5,-12.5 - parent: 6 - type: Transform - - uid: 10516 - components: - - pos: 19.5,-13.5 - parent: 6 - type: Transform - - uid: 10517 - components: - - pos: 19.5,-14.5 - parent: 6 - type: Transform - - uid: 10518 - components: - - pos: 19.5,-15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10519 - components: - - pos: 19.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10522 - components: - - pos: 19.5,-17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10523 - components: - - pos: 19.5,-18.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10524 - components: - - pos: 19.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10525 - components: - - pos: 18.5,-19.5 - parent: 6 - type: Transform - - uid: 10526 - components: - - pos: 17.5,-19.5 - parent: 6 - type: Transform - - uid: 10527 - components: - - pos: 16.5,-19.5 - parent: 6 - type: Transform - - uid: 10528 - components: - - pos: 15.5,-19.5 - parent: 6 - type: Transform - - uid: 10529 - components: - - pos: 14.5,-19.5 - parent: 6 - type: Transform - - uid: 10530 - components: - - pos: 13.5,-19.5 - parent: 6 - type: Transform - - uid: 10531 - components: - - pos: 12.5,-19.5 - parent: 6 - type: Transform - - uid: 10532 - components: - - pos: 11.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10533 - components: - - pos: 8.5,-42.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10534 - components: - - pos: 9.5,-42.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10535 - components: - - pos: 9.5,-43.5 - parent: 6 - type: Transform - - uid: 10536 - components: - - pos: 9.5,-44.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10537 - components: - - pos: 8.5,-44.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10538 - components: - - pos: 7.5,-44.5 - parent: 6 - type: Transform - - uid: 10539 - components: - - pos: 6.5,-44.5 - parent: 6 - type: Transform - - uid: 10540 - components: - - pos: 6.5,-43.5 - parent: 6 - type: Transform - - uid: 10541 - components: - - pos: 5.5,-43.5 - parent: 6 - type: Transform - - uid: 10542 - components: - - pos: 4.5,-43.5 - parent: 6 - type: Transform - - uid: 10543 - components: - - pos: 4.5,-42.5 - parent: 6 - type: Transform - - uid: 10544 - components: - - pos: 4.5,-41.5 - parent: 6 - type: Transform - - uid: 10545 - components: - - pos: 4.5,-40.5 - parent: 6 - type: Transform - - uid: 10546 - components: - - pos: 4.5,-39.5 - parent: 6 - type: Transform - - uid: 10547 - components: - - pos: 4.5,-38.5 - parent: 6 - type: Transform - - uid: 10548 - components: - - pos: 4.5,-37.5 - parent: 6 - type: Transform - - uid: 10549 - components: - - pos: 4.5,-36.5 - parent: 6 - type: Transform - - uid: 10550 - components: - - pos: 3.5,-36.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10551 - components: - - pos: 9.5,-45.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10552 - components: - - pos: 10.5,-45.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10553 - components: - - pos: 11.5,-45.5 - parent: 6 - type: Transform - - uid: 10554 - components: - - pos: 12.5,-45.5 - parent: 6 - type: Transform - - uid: 10555 - components: - - pos: 13.5,-45.5 - parent: 6 - type: Transform - - uid: 10556 - components: - - pos: 14.5,-45.5 - parent: 6 - type: Transform - - uid: 10557 - components: - - pos: 15.5,-45.5 - parent: 6 - type: Transform - - uid: 10558 - components: - - pos: 16.5,-45.5 - parent: 6 - type: Transform - - uid: 10559 - components: - - pos: 17.5,-45.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10560 - components: - - pos: 18.5,-45.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10561 - components: - - pos: 18.5,-44.5 - parent: 6 - type: Transform - - uid: 10562 - components: - - pos: 18.5,-43.5 - parent: 6 - type: Transform - - uid: 10563 - components: - - pos: 18.5,-42.5 - parent: 6 - type: Transform - - uid: 10564 - components: - - pos: 18.5,-41.5 - parent: 6 - type: Transform - - uid: 10565 - components: - - pos: 18.5,-40.5 - parent: 6 - type: Transform - - uid: 10566 - components: - - pos: 18.5,-39.5 - parent: 6 - type: Transform - - uid: 10567 - components: - - pos: 18.5,-38.5 - parent: 6 - type: Transform - - uid: 10568 - components: - - pos: 18.5,-37.5 - parent: 6 - type: Transform - - uid: 10569 - components: - - pos: 18.5,-36.5 - parent: 6 - type: Transform - - uid: 10570 - components: - - pos: 18.5,-35.5 - parent: 6 - type: Transform - - uid: 10571 - components: - - pos: 18.5,-34.5 - parent: 6 - type: Transform - - uid: 10572 - components: - - pos: 17.5,-34.5 - parent: 6 - type: Transform - - uid: 10573 - components: - - pos: 17.5,-33.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10574 - components: - - pos: 9.5,-46.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10575 - components: - - pos: 9.5,-47.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10576 - components: - - pos: 8.5,-47.5 - parent: 6 - type: Transform - - uid: 10577 - components: - - pos: 7.5,-47.5 - parent: 6 - type: Transform - - uid: 10578 - components: - - pos: 7.5,-46.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10579 - components: - - pos: -17.5,-58.5 - parent: 6 - type: Transform - - uid: 10580 - components: - - pos: -16.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10581 - components: - - pos: -16.5,-57.5 - parent: 6 - type: Transform - - uid: 10582 - components: - - pos: -16.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10583 - components: - - pos: -17.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10584 - components: - - pos: -18.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10585 - components: - - pos: -19.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10586 - components: - - pos: -19.5,-55.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10587 - components: - - pos: -19.5,-54.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10588 - components: - - pos: -19.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10589 - components: - - pos: -18.5,-53.5 - parent: 6 - type: Transform - - uid: 10590 - components: - - pos: -17.5,-53.5 - parent: 6 - type: Transform - - uid: 10591 - components: - - pos: -16.5,-53.5 - parent: 6 - type: Transform - - uid: 10592 - components: - - pos: -15.5,-53.5 - parent: 6 - type: Transform - - uid: 10593 - components: - - pos: -14.5,-53.5 - parent: 6 - type: Transform - - uid: 10594 - components: - - pos: -13.5,-53.5 - parent: 6 - type: Transform - - uid: 10595 - components: - - pos: -12.5,-53.5 - parent: 6 - type: Transform - - uid: 10596 - components: - - pos: -12.5,-54.5 - parent: 6 - type: Transform - - uid: 10597 - components: - - pos: -12.5,-55.5 - parent: 6 - type: Transform - - uid: 10598 - components: - - pos: -12.5,-56.5 - parent: 6 - type: Transform - - uid: 10599 - components: - - pos: -11.5,-56.5 - parent: 6 - type: Transform - - uid: 10600 - components: - - pos: -10.5,-56.5 - parent: 6 - type: Transform - - uid: 10601 - components: - - pos: -9.5,-56.5 - parent: 6 - type: Transform - - uid: 10602 - components: - - pos: -8.5,-56.5 - parent: 6 - type: Transform - - uid: 10603 - components: - - pos: -7.5,-56.5 - parent: 6 - type: Transform - - uid: 10604 - components: - - pos: -6.5,-56.5 - parent: 6 - type: Transform - - uid: 10605 - components: - - pos: -5.5,-56.5 - parent: 6 - type: Transform - - uid: 10606 - components: - - pos: -5.5,-55.5 - parent: 6 - type: Transform - - uid: 10607 - components: - - pos: -5.5,-54.5 - parent: 6 - type: Transform - - uid: 10608 - components: - - pos: -5.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10609 - components: - - pos: -6.5,-57.5 - parent: 6 - type: Transform - - uid: 10610 - components: - - pos: -6.5,-58.5 - parent: 6 - type: Transform - - uid: 10611 - components: - - pos: -6.5,-59.5 - parent: 6 - type: Transform - - uid: 10612 - components: - - pos: -6.5,-60.5 - parent: 6 - type: Transform - - uid: 10613 - components: - - pos: -6.5,-61.5 - parent: 6 - type: Transform - - uid: 10614 - components: - - pos: -6.5,-62.5 - parent: 6 - type: Transform - - uid: 10615 - components: - - pos: -6.5,-63.5 - parent: 6 - type: Transform - - uid: 10616 - components: - - pos: -6.5,-64.5 - parent: 6 - type: Transform - - uid: 10617 - components: - - pos: -6.5,-65.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10618 - components: - - pos: -6.5,-66.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10619 - components: - - pos: -6.5,-67.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10620 - components: - - pos: -6.5,-68.5 - parent: 6 - type: Transform - - uid: 10621 - components: - - pos: -6.5,-69.5 - parent: 6 - type: Transform - - uid: 10622 - components: - - pos: -6.5,-70.5 - parent: 6 - type: Transform - - uid: 10623 - components: - - pos: -5.5,-70.5 - parent: 6 - type: Transform - - uid: 10624 - components: - - pos: -4.5,-70.5 - parent: 6 - type: Transform - - uid: 10625 - components: - - pos: -3.5,-70.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10638 - components: - - pos: -37.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10639 - components: - - pos: -37.5,-55.5 - parent: 6 - type: Transform - - uid: 10640 - components: - - pos: -37.5,-54.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10641 - components: - - pos: -37.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10642 - components: - - pos: -38.5,-53.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10643 - components: - - pos: -38.5,-52.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10644 - components: - - pos: -38.5,-51.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10645 - components: - - pos: -37.5,-51.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10646 - components: - - pos: -36.5,-51.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10647 - components: - - pos: -38.5,-50.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10648 - components: - - pos: -38.5,-49.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10649 - components: - - pos: -38.5,-48.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10650 - components: - - pos: -38.5,-47.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10651 - components: - - pos: -39.5,-47.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10652 - components: - - pos: -40.5,-47.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10653 - components: - - pos: -40.5,-46.5 - parent: 6 - type: Transform - - uid: 10654 - components: - - pos: -40.5,-45.5 - parent: 6 - type: Transform - - uid: 10655 - components: - - pos: -40.5,-44.5 - parent: 6 - type: Transform - - uid: 10656 - components: - - pos: -40.5,-43.5 - parent: 6 - type: Transform - - uid: 10657 - components: - - pos: -41.5,-43.5 - parent: 6 - type: Transform - - uid: 10658 - components: - - pos: -42.5,-43.5 - parent: 6 - type: Transform - - uid: 10659 - components: - - pos: -43.5,-43.5 - parent: 6 - type: Transform - - uid: 10660 - components: - - pos: -43.5,-42.5 - parent: 6 - type: Transform - - uid: 10661 - components: - - pos: -43.5,-41.5 - parent: 6 - type: Transform - - uid: 10662 - components: - - pos: -43.5,-40.5 - parent: 6 - type: Transform - - uid: 10663 - components: - - pos: -43.5,-39.5 - parent: 6 - type: Transform - - uid: 10664 - components: - - pos: -43.5,-38.5 - parent: 6 - type: Transform - - uid: 10665 - components: - - pos: -43.5,-37.5 - parent: 6 - type: Transform - - uid: 10666 - components: - - pos: -43.5,-36.5 - parent: 6 - type: Transform - - uid: 10667 - components: - - pos: -43.5,-35.5 - parent: 6 - type: Transform - - uid: 10668 - components: - - pos: -43.5,-34.5 - parent: 6 - type: Transform - - uid: 10669 - components: - - pos: -43.5,-33.5 - parent: 6 - type: Transform - - uid: 10670 - components: - - pos: -43.5,-32.5 - parent: 6 - type: Transform - - uid: 10671 - components: - - pos: -44.5,-32.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10672 - components: - - pos: -43.5,-31.5 - parent: 6 - type: Transform - - uid: 10673 - components: - - pos: -43.5,-30.5 - parent: 6 - type: Transform - - uid: 10674 - components: - - pos: -43.5,-29.5 - parent: 6 - type: Transform - - uid: 10675 - components: - - pos: -43.5,-28.5 - parent: 6 - type: Transform - - uid: 10676 - components: - - pos: -43.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10677 - components: - - pos: -44.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10678 - components: - - pos: -45.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10679 - components: - - pos: -46.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10680 - components: - - pos: -47.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10681 - components: - - pos: -48.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10682 - components: - - pos: -49.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10683 - components: - - pos: -50.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10684 - components: - - pos: -51.5,-27.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10685 - components: - - pos: -51.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10686 - components: - - pos: -51.5,-25.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10687 - components: - - pos: -51.5,-24.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10688 - components: - - pos: -51.5,-23.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10689 - components: - - pos: -51.5,-22.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10690 - components: - - pos: -51.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10691 - components: - - pos: -52.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10692 - components: - - pos: -53.5,-21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10693 - components: - - pos: -53.5,-20.5 - parent: 6 - type: Transform - - uid: 10694 - components: - - pos: -53.5,-19.5 - parent: 6 - type: Transform - - uid: 10695 - components: - - pos: -54.5,-19.5 - parent: 6 - type: Transform - - uid: 10696 - components: - - pos: -54.5,-18.5 - parent: 6 - type: Transform - - uid: 10697 - components: - - pos: -54.5,-17.5 - parent: 6 - type: Transform - - uid: 10698 - components: - - pos: -54.5,-16.5 - parent: 6 - type: Transform - - uid: 10699 - components: - - pos: -54.5,-15.5 - parent: 6 - type: Transform - - uid: 10700 - components: - - pos: -55.5,-15.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10701 - components: - - pos: -32.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10702 - components: - - pos: -31.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10703 - components: - - pos: -31.5,-30.5 - parent: 6 - type: Transform - - uid: 10704 - components: - - pos: -31.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10705 - components: - - pos: -30.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10706 - components: - - pos: -30.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10707 - components: - - pos: -29.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10708 - components: - - pos: -29.5,-28.5 - parent: 6 - type: Transform - - uid: 10709 - components: - - pos: -29.5,-27.5 - parent: 6 - type: Transform - - uid: 10710 - components: - - pos: -29.5,-26.5 - parent: 6 - type: Transform - - uid: 10711 - components: - - pos: -29.5,-25.5 - parent: 6 - type: Transform - - uid: 10712 - components: - - pos: -29.5,-24.5 - parent: 6 - type: Transform - - uid: 10713 - components: - - pos: -29.5,-23.5 - parent: 6 - type: Transform - - uid: 10714 - components: - - pos: -29.5,-22.5 - parent: 6 - type: Transform - - uid: 10715 - components: - - pos: -28.5,-22.5 - parent: 6 - type: Transform - - uid: 10716 - components: - - pos: -27.5,-22.5 - parent: 6 - type: Transform - - uid: 10717 - components: - - pos: -26.5,-22.5 - parent: 6 - type: Transform - - uid: 10718 - components: - - pos: -25.5,-22.5 - parent: 6 - type: Transform - - uid: 10719 - components: - - pos: -25.5,-21.5 - parent: 6 - type: Transform - - uid: 10720 - components: - - pos: -25.5,-20.5 - parent: 6 - type: Transform - - uid: 10721 - components: - - pos: -25.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10722 - components: - - pos: -30.5,-22.5 - parent: 6 - type: Transform - - uid: 10723 - components: - - pos: -31.5,-22.5 - parent: 6 - type: Transform - - uid: 10724 - components: - - pos: -32.5,-22.5 - parent: 6 - type: Transform - - uid: 10725 - components: - - pos: -33.5,-22.5 - parent: 6 - type: Transform - - uid: 10726 - components: - - pos: -34.5,-22.5 - parent: 6 - type: Transform - - uid: 10727 - components: - - pos: -35.5,-22.5 - parent: 6 - type: Transform - - uid: 10728 - components: - - pos: -35.5,-21.5 - parent: 6 - type: Transform - - uid: 10729 - components: - - pos: -35.5,-20.5 - parent: 6 - type: Transform - - uid: 10730 - components: - - pos: -35.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10734 - components: - - pos: -21.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10735 - components: - - pos: -22.5,-31.5 - parent: 6 - type: Transform - - uid: 10736 - components: - - pos: -23.5,-31.5 - parent: 6 - type: Transform - - uid: 10737 - components: - - pos: -24.5,-31.5 - parent: 6 - type: Transform - - uid: 10738 - components: - - pos: -25.5,-31.5 - parent: 6 - type: Transform - - uid: 10739 - components: - - pos: -26.5,-31.5 - parent: 6 - type: Transform - - uid: 10740 - components: - - pos: -26.5,-30.5 - parent: 6 - type: Transform - - uid: 10741 - components: - - pos: -26.5,-29.5 - parent: 6 - type: Transform - - uid: 10742 - components: - - pos: -26.5,-28.5 - parent: 6 - type: Transform - - uid: 10743 - components: - - pos: -26.5,-27.5 - parent: 6 - type: Transform - - uid: 10744 - components: - - pos: -26.5,-26.5 - parent: 6 - type: Transform - - uid: 10745 - components: - - pos: -26.5,-25.5 - parent: 6 - type: Transform - - uid: 10746 - components: - - pos: -26.5,-24.5 - parent: 6 - type: Transform - - uid: 10747 - components: - - pos: -25.5,-24.5 - parent: 6 - type: Transform - - uid: 10748 - components: - - pos: -25.5,-23.5 - parent: 6 - type: Transform - - uid: 13748 - components: - - pos: 1.5,1.5 - parent: 13645 - type: Transform - - uid: 13749 - components: - - pos: 3.5,1.5 - parent: 13645 - type: Transform - - uid: 13750 - components: - - pos: 2.5,1.5 - parent: 13645 - type: Transform - - uid: 13751 - components: - - pos: 3.5,0.5 - parent: 13645 - type: Transform - - enabled: True - type: AmbientSound - - uid: 14301 - components: - - pos: -56.5,-47.5 - parent: 6 - type: Transform - - uid: 14302 - components: - - pos: -56.5,-46.5 - parent: 6 - type: Transform - - uid: 14303 - components: - - pos: -56.5,-45.5 - parent: 6 - type: Transform - - uid: 14304 - components: - - pos: -56.5,-44.5 - parent: 6 - type: Transform - - uid: 14305 - components: - - pos: -56.5,-43.5 - parent: 6 - type: Transform - - uid: 14306 - components: - - pos: -56.5,-42.5 - parent: 6 - type: Transform - - uid: 14307 - components: - - pos: -56.5,-41.5 - parent: 6 - type: Transform - - uid: 14308 - components: - - pos: -56.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound -- proto: CableMVStack - entities: - - uid: 5383 - components: - - pos: -11.688504,-56.61507 - parent: 6 - type: Transform - - uid: 6407 - components: - - pos: -48.672882,-25.3791 - parent: 6 - type: Transform - - uid: 13404 - components: - - pos: 28.49431,1.5550042 - parent: 6 - type: Transform -- proto: CableMVStack1 - entities: - - uid: 6734 - components: - - pos: -82.89857,-47.11549 - parent: 6 - type: Transform - - uid: 6735 - components: - - pos: -82.44421,-41.488716 - parent: 6 - type: Transform - - uid: 6736 - components: - - pos: -77.772804,-39.431007 - parent: 6 - type: Transform - - uid: 6737 - components: - - pos: -75.64298,-42.893635 - parent: 6 - type: Transform -- proto: CableTerminal - entities: - - uid: 4950 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,16.5 - parent: 6 - type: Transform - - uid: 5014 - components: - - pos: -26.5,-2.5 - parent: 6 - type: Transform - - uid: 5015 - components: - - pos: -27.5,-2.5 - parent: 6 - type: Transform - - uid: 5569 - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-20.5 - parent: 6 - type: Transform - - uid: 6666 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-63.5 - parent: 6 - type: Transform - - uid: 7212 - components: - - pos: 24.5,-21.5 - parent: 6 - type: Transform - - uid: 10198 - components: - - pos: -57.5,-46.5 - parent: 6 - type: Transform -- proto: CannabisSeeds - entities: - - uid: 5915 - components: - - pos: 12.23354,18.268204 - parent: 6 - type: Transform -- proto: CaptainIDCard - entities: - - uid: 5202 - components: - - pos: -8.371432,0.39997122 - parent: 6 - type: Transform -- proto: CarbonDioxideCanister - entities: - - uid: 3462 - components: - - pos: -43.5,13.5 - parent: 6 - type: Transform -- proto: Carpet - entities: - - uid: 3345 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-50.5 - parent: 6 - type: Transform - - uid: 3346 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-49.5 - parent: 6 - type: Transform - - uid: 3348 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-53.5 - parent: 6 - type: Transform - - uid: 3350 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-53.5 - parent: 6 - type: Transform - - uid: 3354 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-52.5 - parent: 6 - type: Transform - - uid: 3359 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-52.5 - parent: 6 - type: Transform - - uid: 3360 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-50.5 - parent: 6 - type: Transform - - uid: 3361 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-47.5 - parent: 6 - type: Transform - - uid: 3362 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-49.5 - parent: 6 - type: Transform - - uid: 3363 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-47.5 - parent: 6 - type: Transform - - uid: 3596 - components: - - pos: -51.5,-48.5 - parent: 6 - type: Transform - - uid: 3597 - components: - - pos: -51.5,-49.5 - parent: 6 - type: Transform - - uid: 3598 - components: - - pos: -51.5,-50.5 - parent: 6 - type: Transform - - uid: 3599 - components: - - pos: -50.5,-48.5 - parent: 6 - type: Transform - - uid: 3600 - components: - - pos: -50.5,-49.5 - parent: 6 - type: Transform - - uid: 3601 - components: - - pos: -50.5,-50.5 - parent: 6 - type: Transform - - uid: 5261 - components: - - pos: -1.5,-21.5 - parent: 6 - type: Transform - - uid: 5262 - components: - - pos: -1.5,-22.5 - parent: 6 - type: Transform - - uid: 5263 - components: - - pos: -2.5,-20.5 - parent: 6 - type: Transform - - uid: 5264 - components: - - pos: -1.5,-20.5 - parent: 6 - type: Transform - - uid: 5265 - components: - - pos: -1.5,-23.5 - parent: 6 - type: Transform - - uid: 5266 - components: - - pos: -2.5,-23.5 - parent: 6 - type: Transform - - uid: 5267 - components: - - pos: 0.5,-22.5 - parent: 6 - type: Transform - - uid: 5268 - components: - - pos: 0.5,-23.5 - parent: 6 - type: Transform - - uid: 5269 - components: - - pos: 1.5,-23.5 - parent: 6 - type: Transform - - uid: 5270 - components: - - pos: 2.5,-23.5 - parent: 6 - type: Transform - - uid: 5271 - components: - - pos: 2.5,-22.5 - parent: 6 - type: Transform - - uid: 5272 - components: - - pos: 1.5,-22.5 - parent: 6 - type: Transform - - uid: 6013 - components: - - pos: -2.5,-21.5 - parent: 6 - type: Transform - - uid: 6016 - components: - - pos: -2.5,-22.5 - parent: 6 - type: Transform - - uid: 7426 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-54.5 - parent: 6 - type: Transform - - uid: 7427 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-54.5 - parent: 6 - type: Transform - - uid: 7428 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-54.5 - parent: 6 - type: Transform - - uid: 7429 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-53.5 - parent: 6 - type: Transform - - uid: 7430 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-52.5 - parent: 6 - type: Transform - - uid: 7431 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-51.5 - parent: 6 - type: Transform - - uid: 7432 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-50.5 - parent: 6 - type: Transform - - uid: 7433 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-49.5 - parent: 6 - type: Transform - - uid: 7434 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-48.5 - parent: 6 - type: Transform - - uid: 7435 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-48.5 - parent: 6 - type: Transform - - uid: 7436 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-48.5 - parent: 6 - type: Transform - - uid: 7437 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-51.5 - parent: 6 - type: Transform - - uid: 7438 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-51.5 - parent: 6 - type: Transform - - uid: 7439 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-55.5 - parent: 6 - type: Transform - - uid: 7440 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-47.5 - parent: 6 - type: Transform - - uid: 7787 - components: - - pos: 13.5,-15.5 - parent: 6 - type: Transform - - uid: 7788 - components: - - pos: 13.5,-16.5 - parent: 6 - type: Transform - - uid: 7789 - components: - - pos: 12.5,-15.5 - parent: 6 - type: Transform - - uid: 7790 - components: - - pos: 12.5,-16.5 - parent: 6 - type: Transform -- proto: CarpetBlack - entities: - - uid: 6227 - components: - - pos: -39.5,-33.5 - parent: 6 - type: Transform - - uid: 6228 - components: - - pos: -39.5,-34.5 - parent: 6 - type: Transform - - uid: 6229 - components: - - pos: -38.5,-33.5 - parent: 6 - type: Transform - - uid: 6230 - components: - - pos: -38.5,-34.5 - parent: 6 - type: Transform - - uid: 7795 - components: - - pos: 12.5,-19.5 - parent: 6 - type: Transform -- proto: CarpetBlue - entities: - - uid: 4388 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 6 - type: Transform - - uid: 4389 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 6 - type: Transform - - uid: 4390 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 6 - type: Transform - - uid: 4391 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 6 - type: Transform - - uid: 4392 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,0.5 - parent: 6 - type: Transform - - uid: 4393 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 6 - type: Transform - - uid: 4394 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 6 - type: Transform - - uid: 4395 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 6 - type: Transform - - uid: 4396 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,0.5 - parent: 6 - type: Transform - - uid: 4397 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,1.5 - parent: 6 - type: Transform - - uid: 5541 - components: - - pos: -8.5,-32.5 - parent: 6 - type: Transform - - uid: 5589 - components: - - pos: -8.5,-31.5 - parent: 6 - type: Transform -- proto: CarpetChapel - entities: - - uid: 3347 - components: - - pos: -32.5,-56.5 - parent: 6 - type: Transform - - uid: 3349 - components: - - rot: 3.141592653589793 rad - pos: -31.5,-55.5 - parent: 6 - type: Transform - - uid: 3351 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-56.5 - parent: 6 - type: Transform - - uid: 3352 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-55.5 - parent: 6 - type: Transform - - uid: 3355 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-55.5 - parent: 6 - type: Transform - - uid: 3356 - components: - - rot: 3.141592653589793 rad - pos: -34.5,-55.5 - parent: 6 - type: Transform - - uid: 3357 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-56.5 - parent: 6 - type: Transform - - uid: 3358 - components: - - pos: -35.5,-56.5 - parent: 6 - type: Transform -- proto: CarpetGreen - entities: - - uid: 5590 - components: - - pos: -5.5,-31.5 - parent: 6 - type: Transform - - uid: 6231 - components: - - pos: -47.5,-41.5 - parent: 6 - type: Transform - - uid: 6232 - components: - - pos: -47.5,-40.5 - parent: 6 - type: Transform - - uid: 6233 - components: - - pos: -46.5,-41.5 - parent: 6 - type: Transform - - uid: 6234 - components: - - pos: -46.5,-40.5 - parent: 6 - type: Transform - - uid: 6345 - components: - - pos: -5.5,-30.5 - parent: 6 - type: Transform -- proto: CarpetOrange - entities: - - uid: 6346 - components: - - pos: -2.5,-32.5 - parent: 6 - type: Transform - - uid: 7732 - components: - - pos: -20.5,-41.5 - parent: 6 - type: Transform - - uid: 7733 - components: - - pos: -20.5,-40.5 - parent: 6 - type: Transform - - uid: 7734 - components: - - pos: -21.5,-41.5 - parent: 6 - type: Transform - - uid: 7735 - components: - - pos: -21.5,-40.5 - parent: 6 - type: Transform - - uid: 7736 - components: - - pos: -21.5,-39.5 - parent: 6 - type: Transform - - uid: 7737 - components: - - pos: -20.5,-39.5 - parent: 6 - type: Transform - - uid: 7791 - components: - - pos: 16.5,-15.5 - parent: 6 - type: Transform - - uid: 7792 - components: - - pos: 16.5,-16.5 - parent: 6 - type: Transform - - uid: 7793 - components: - - pos: 17.5,-15.5 - parent: 6 - type: Transform - - uid: 7794 - components: - - pos: 17.5,-16.5 - parent: 6 - type: Transform - - uid: 8481 - components: - - pos: -2.5,-31.5 - parent: 6 - type: Transform -- proto: CarpetPink - entities: - - uid: 7738 - components: - - pos: -25.5,-39.5 - parent: 6 - type: Transform - - uid: 7739 - components: - - pos: -25.5,-38.5 - parent: 6 - type: Transform - - uid: 7740 - components: - - pos: -24.5,-38.5 - parent: 6 - type: Transform - - uid: 7741 - components: - - pos: -24.5,-39.5 - parent: 6 - type: Transform -- proto: CarpetPurple - entities: - - uid: 5918 - components: - - pos: 2.5,-25.5 - parent: 6 - type: Transform - - uid: 5919 - components: - - pos: 1.5,-26.5 - parent: 6 - type: Transform - - uid: 5920 - components: - - pos: 2.5,-26.5 - parent: 6 - type: Transform - - uid: 5976 - components: - - pos: 1.5,-25.5 - parent: 6 - type: Transform - - uid: 6219 - components: - - pos: -39.5,-40.5 - parent: 6 - type: Transform - - uid: 6224 - components: - - pos: -39.5,-41.5 - parent: 6 - type: Transform - - uid: 6225 - components: - - pos: -38.5,-40.5 - parent: 6 - type: Transform - - uid: 6226 - components: - - pos: -38.5,-41.5 - parent: 6 - type: Transform - - uid: 7783 - components: - - pos: 14.5,-18.5 - parent: 6 - type: Transform - - uid: 7784 - components: - - pos: 14.5,-19.5 - parent: 6 - type: Transform - - uid: 7785 - components: - - pos: 15.5,-18.5 - parent: 6 - type: Transform - - uid: 7786 - components: - - pos: 15.5,-19.5 - parent: 6 - type: Transform -- proto: CarpetSBlue - entities: - - uid: 14045 - components: - - pos: 3.5,-7.5 - parent: 6 - type: Transform - - uid: 14057 - components: - - pos: 2.5,-7.5 - parent: 6 - type: Transform - - uid: 14269 - components: - - pos: 2.5,-6.5 - parent: 6 - type: Transform - - uid: 14270 - components: - - pos: 3.5,-6.5 - parent: 6 - type: Transform -- proto: Catwalk - entities: - - uid: 1513 - components: - - pos: -77.5,-25.5 - parent: 6 - type: Transform - - uid: 1616 - components: - - pos: -71.5,-24.5 - parent: 6 - type: Transform - - uid: 1617 - components: - - pos: -81.5,-25.5 - parent: 6 - type: Transform - - uid: 1773 - components: - - pos: -81.5,-23.5 - parent: 6 - type: Transform - - uid: 2105 - components: - - pos: -37.5,3.5 - parent: 6 - type: Transform - - uid: 2106 - components: - - pos: -36.5,3.5 - parent: 6 - type: Transform - - uid: 2107 - components: - - pos: -35.5,3.5 - parent: 6 - type: Transform - - uid: 2108 - components: - - pos: -36.5,2.5 - parent: 6 - type: Transform - - uid: 2109 - components: - - pos: -36.5,1.5 - parent: 6 - type: Transform - - uid: 2638 - components: - - pos: -77.5,-23.5 - parent: 6 - type: Transform - - uid: 3000 - components: - - pos: -76.5,-24.5 - parent: 6 - type: Transform - - uid: 3004 - components: - - pos: -81.5,-24.5 - parent: 6 - type: Transform - - uid: 3006 - components: - - pos: -78.5,-24.5 - parent: 6 - type: Transform - - uid: 3007 - components: - - pos: -77.5,-24.5 - parent: 6 - type: Transform - - uid: 3008 - components: - - pos: -75.5,-24.5 - parent: 6 - type: Transform - - uid: 3012 - components: - - pos: -81.5,-22.5 - parent: 6 - type: Transform - - uid: 3013 - components: - - pos: -81.5,-19.5 - parent: 6 - type: Transform - - uid: 3024 - components: - - pos: -81.5,-18.5 - parent: 6 - type: Transform - - uid: 3025 - components: - - pos: -81.5,-15.5 - parent: 6 - type: Transform - - uid: 3026 - components: - - pos: -73.5,-24.5 - parent: 6 - type: Transform - - uid: 3030 - components: - - pos: -81.5,-21.5 - parent: 6 - type: Transform - - uid: 3031 - components: - - pos: -81.5,-17.5 - parent: 6 - type: Transform - - uid: 3032 - components: - - pos: -81.5,-16.5 - parent: 6 - type: Transform - - uid: 3033 - components: - - pos: -77.5,-15.5 - parent: 6 - type: Transform - - uid: 3035 - components: - - pos: -77.5,-21.5 - parent: 6 - type: Transform - - uid: 3036 - components: - - pos: -77.5,-22.5 - parent: 6 - type: Transform - - uid: 3038 - components: - - pos: -81.5,-26.5 - parent: 6 - type: Transform - - uid: 3039 - components: - - pos: -81.5,-27.5 - parent: 6 - type: Transform - - uid: 3040 - components: - - pos: -81.5,-28.5 - parent: 6 - type: Transform - - uid: 3042 - components: - - pos: -79.5,-24.5 - parent: 6 - type: Transform - - uid: 3044 - components: - - pos: -72.5,-24.5 - parent: 6 - type: Transform - - uid: 3046 - components: - - pos: -74.5,-24.5 - parent: 6 - type: Transform - - uid: 3047 - components: - - pos: -81.5,-20.5 - parent: 6 - type: Transform - - uid: 3050 - components: - - pos: -73.5,-29.5 - parent: 6 - type: Transform - - uid: 3051 - components: - - pos: -80.5,-24.5 - parent: 6 - type: Transform - - uid: 3053 - components: - - pos: -77.5,-16.5 - parent: 6 - type: Transform - - uid: 3054 - components: - - pos: -77.5,-17.5 - parent: 6 - type: Transform - - uid: 3055 - components: - - pos: -77.5,-18.5 - parent: 6 - type: Transform - - uid: 3056 - components: - - pos: -77.5,-19.5 - parent: 6 - type: Transform - - uid: 3057 - components: - - pos: -77.5,-20.5 - parent: 6 - type: Transform - - uid: 3058 - components: - - pos: -73.5,-30.5 - parent: 6 - type: Transform - - uid: 3069 - components: - - pos: 26.5,-21.5 - parent: 6 - type: Transform - - uid: 3070 - components: - - pos: 26.5,-22.5 - parent: 6 - type: Transform - - uid: 3071 - components: - - pos: 26.5,-23.5 - parent: 6 - type: Transform - - uid: 3072 - components: - - pos: 26.5,-24.5 - parent: 6 - type: Transform - - uid: 3073 - components: - - pos: 27.5,-24.5 - parent: 6 - type: Transform - - uid: 3074 - components: - - pos: 28.5,-24.5 - parent: 6 - type: Transform - - uid: 3075 - components: - - pos: 29.5,-24.5 - parent: 6 - type: Transform - - uid: 3076 - components: - - pos: 30.5,-24.5 - parent: 6 - type: Transform - - uid: 3077 - components: - - pos: 31.5,-24.5 - parent: 6 - type: Transform - - uid: 3078 - components: - - pos: 32.5,-24.5 - parent: 6 - type: Transform - - uid: 3079 - components: - - pos: 33.5,-24.5 - parent: 6 - type: Transform - - uid: 3080 - components: - - pos: 34.5,-24.5 - parent: 6 - type: Transform - - uid: 3081 - components: - - pos: 35.5,-24.5 - parent: 6 - type: Transform - - uid: 3082 - components: - - pos: 36.5,-24.5 - parent: 6 - type: Transform - - uid: 3083 - components: - - pos: 37.5,-24.5 - parent: 6 - type: Transform - - uid: 3084 - components: - - pos: 38.5,-24.5 - parent: 6 - type: Transform - - uid: 3085 - components: - - pos: 39.5,-24.5 - parent: 6 - type: Transform - - uid: 3086 - components: - - pos: 40.5,-24.5 - parent: 6 - type: Transform - - uid: 3087 - components: - - pos: 41.5,-24.5 - parent: 6 - type: Transform - - uid: 3088 - components: - - pos: 42.5,-24.5 - parent: 6 - type: Transform - - uid: 3089 - components: - - pos: 43.5,-24.5 - parent: 6 - type: Transform - - uid: 3090 - components: - - pos: 44.5,-24.5 - parent: 6 - type: Transform - - uid: 3091 - components: - - pos: 43.5,-23.5 - parent: 6 - type: Transform - - uid: 3092 - components: - - pos: 43.5,-22.5 - parent: 6 - type: Transform - - uid: 3093 - components: - - pos: 43.5,-21.5 - parent: 6 - type: Transform - - uid: 3094 - components: - - pos: 43.5,-20.5 - parent: 6 - type: Transform - - uid: 3095 - components: - - pos: 43.5,-19.5 - parent: 6 - type: Transform - - uid: 3096 - components: - - pos: 43.5,-18.5 - parent: 6 - type: Transform - - uid: 3097 - components: - - pos: 43.5,-17.5 - parent: 6 - type: Transform - - uid: 3098 - components: - - pos: 43.5,-16.5 - parent: 6 - type: Transform - - uid: 3099 - components: - - pos: 39.5,-23.5 - parent: 6 - type: Transform - - uid: 3100 - components: - - pos: 39.5,-22.5 - parent: 6 - type: Transform - - uid: 3101 - components: - - pos: 39.5,-21.5 - parent: 6 - type: Transform - - uid: 3102 - components: - - pos: 39.5,-20.5 - parent: 6 - type: Transform - - uid: 3103 - components: - - pos: 39.5,-19.5 - parent: 6 - type: Transform - - uid: 3104 - components: - - pos: 39.5,-18.5 - parent: 6 - type: Transform - - uid: 3105 - components: - - pos: 39.5,-17.5 - parent: 6 - type: Transform - - uid: 3106 - components: - - pos: 39.5,-16.5 - parent: 6 - type: Transform - - uid: 3107 - components: - - pos: 35.5,-23.5 - parent: 6 - type: Transform - - uid: 3108 - components: - - pos: 35.5,-22.5 - parent: 6 - type: Transform - - uid: 3109 - components: - - pos: 35.5,-21.5 - parent: 6 - type: Transform - - uid: 3110 - components: - - pos: 35.5,-20.5 - parent: 6 - type: Transform - - uid: 3111 - components: - - pos: 35.5,-19.5 - parent: 6 - type: Transform - - uid: 3112 - components: - - pos: 35.5,-18.5 - parent: 6 - type: Transform - - uid: 3113 - components: - - pos: 35.5,-17.5 - parent: 6 - type: Transform - - uid: 3114 - components: - - pos: 35.5,-16.5 - parent: 6 - type: Transform - - uid: 3115 - components: - - pos: 31.5,-23.5 - parent: 6 - type: Transform - - uid: 3116 - components: - - pos: 31.5,-22.5 - parent: 6 - type: Transform - - uid: 3117 - components: - - pos: 31.5,-21.5 - parent: 6 - type: Transform - - uid: 3118 - components: - - pos: 31.5,-20.5 - parent: 6 - type: Transform - - uid: 3119 - components: - - pos: 31.5,-19.5 - parent: 6 - type: Transform - - uid: 3120 - components: - - pos: 31.5,-18.5 - parent: 6 - type: Transform - - uid: 3121 - components: - - pos: 31.5,-17.5 - parent: 6 - type: Transform - - uid: 3122 - components: - - pos: 31.5,-16.5 - parent: 6 - type: Transform - - uid: 3123 - components: - - pos: 26.5,-20.5 - parent: 6 - type: Transform - - uid: 3170 - components: - - pos: -30.5,24.5 - parent: 6 - type: Transform - - uid: 3171 - components: - - pos: -29.5,24.5 - parent: 6 - type: Transform - - uid: 3172 - components: - - pos: -28.5,24.5 - parent: 6 - type: Transform - - uid: 3173 - components: - - pos: -27.5,24.5 - parent: 6 - type: Transform - - uid: 3174 - components: - - pos: -26.5,24.5 - parent: 6 - type: Transform - - uid: 3175 - components: - - pos: -25.5,24.5 - parent: 6 - type: Transform - - uid: 3176 - components: - - pos: -25.5,23.5 - parent: 6 - type: Transform - - uid: 3177 - components: - - pos: -25.5,22.5 - parent: 6 - type: Transform - - uid: 3178 - components: - - pos: -25.5,21.5 - parent: 6 - type: Transform - - uid: 3179 - components: - - pos: -25.5,20.5 - parent: 6 - type: Transform - - uid: 3183 - components: - - pos: -70.5,-24.5 - parent: 6 - type: Transform - - uid: 3186 - components: - - pos: -73.5,-25.5 - parent: 6 - type: Transform - - uid: 3437 - components: - - pos: -31.5,24.5 - parent: 6 - type: Transform - - uid: 3438 - components: - - pos: -32.5,24.5 - parent: 6 - type: Transform - - uid: 3439 - components: - - pos: -33.5,24.5 - parent: 6 - type: Transform - - uid: 3440 - components: - - pos: -34.5,24.5 - parent: 6 - type: Transform - - uid: 3441 - components: - - pos: -35.5,24.5 - parent: 6 - type: Transform - - uid: 3442 - components: - - pos: -36.5,24.5 - parent: 6 - type: Transform - - uid: 3443 - components: - - pos: -37.5,24.5 - parent: 6 - type: Transform - - uid: 3444 - components: - - pos: -37.5,25.5 - parent: 6 - type: Transform - - uid: 3445 - components: - - pos: -37.5,26.5 - parent: 6 - type: Transform - - uid: 3446 - components: - - pos: -37.5,27.5 - parent: 6 - type: Transform - - uid: 3447 - components: - - pos: -37.5,28.5 - parent: 6 - type: Transform - - uid: 3448 - components: - - pos: -36.5,28.5 - parent: 6 - type: Transform - - uid: 3449 - components: - - pos: -35.5,28.5 - parent: 6 - type: Transform - - uid: 3450 - components: - - pos: -34.5,28.5 - parent: 6 - type: Transform - - uid: 3451 - components: - - pos: -33.5,28.5 - parent: 6 - type: Transform - - uid: 3452 - components: - - pos: -32.5,28.5 - parent: 6 - type: Transform - - uid: 3453 - components: - - pos: -31.5,28.5 - parent: 6 - type: Transform - - uid: 3454 - components: - - pos: -31.5,27.5 - parent: 6 - type: Transform - - uid: 3455 - components: - - pos: -31.5,26.5 - parent: 6 - type: Transform - - uid: 3456 - components: - - pos: -31.5,25.5 - parent: 6 - type: Transform - - uid: 3701 - components: - - pos: -6.5,-67.5 - parent: 6 - type: Transform - - uid: 3703 - components: - - pos: -6.5,-66.5 - parent: 6 - type: Transform - - uid: 3704 - components: - - pos: -6.5,-65.5 - parent: 6 - type: Transform - - uid: 3705 - components: - - pos: -5.5,-67.5 - parent: 6 - type: Transform - - uid: 3706 - components: - - pos: -5.5,-66.5 - parent: 6 - type: Transform - - uid: 3707 - components: - - pos: -5.5,-65.5 - parent: 6 - type: Transform - - uid: 3708 - components: - - pos: -6.5,-83.5 - parent: 6 - type: Transform - - uid: 3709 - components: - - pos: -5.5,-83.5 - parent: 6 - type: Transform - - uid: 3710 - components: - - pos: -4.5,-83.5 - parent: 6 - type: Transform - - uid: 3711 - components: - - pos: -3.5,-83.5 - parent: 6 - type: Transform - - uid: 3712 - components: - - pos: -2.5,-83.5 - parent: 6 - type: Transform - - uid: 3713 - components: - - pos: -1.5,-83.5 - parent: 6 - type: Transform - - uid: 3714 - components: - - pos: -7.5,-83.5 - parent: 6 - type: Transform - - uid: 3763 - components: - - pos: -23.5,-65.5 - parent: 6 - type: Transform - - uid: 3771 - components: - - pos: -23.5,-67.5 - parent: 6 - type: Transform - - uid: 3774 - components: - - pos: -23.5,-66.5 - parent: 6 - type: Transform - - uid: 3978 - components: - - pos: -23.5,-68.5 - parent: 6 - type: Transform - - uid: 3979 - components: - - pos: -23.5,-69.5 - parent: 6 - type: Transform - - uid: 3980 - components: - - pos: -23.5,-70.5 - parent: 6 - type: Transform - - uid: 3981 - components: - - pos: -23.5,-71.5 - parent: 6 - type: Transform - - uid: 3982 - components: - - pos: -23.5,-72.5 - parent: 6 - type: Transform - - uid: 3983 - components: - - pos: -23.5,-73.5 - parent: 6 - type: Transform - - uid: 3984 - components: - - pos: -23.5,-74.5 - parent: 6 - type: Transform - - uid: 3985 - components: - - pos: -23.5,-75.5 - parent: 6 - type: Transform - - uid: 3986 - components: - - pos: -23.5,-76.5 - parent: 6 - type: Transform - - uid: 3987 - components: - - pos: -23.5,-77.5 - parent: 6 - type: Transform - - uid: 3988 - components: - - pos: -23.5,-78.5 - parent: 6 - type: Transform - - uid: 3989 - components: - - pos: -23.5,-79.5 - parent: 6 - type: Transform - - uid: 3990 - components: - - pos: -23.5,-80.5 - parent: 6 - type: Transform - - uid: 3991 - components: - - pos: -23.5,-81.5 - parent: 6 - type: Transform - - uid: 3992 - components: - - pos: -23.5,-82.5 - parent: 6 - type: Transform - - uid: 3993 - components: - - pos: -24.5,-81.5 - parent: 6 - type: Transform - - uid: 3994 - components: - - pos: -25.5,-81.5 - parent: 6 - type: Transform - - uid: 3995 - components: - - pos: -26.5,-81.5 - parent: 6 - type: Transform - - uid: 3996 - components: - - pos: -27.5,-81.5 - parent: 6 - type: Transform - - uid: 3997 - components: - - pos: -28.5,-81.5 - parent: 6 - type: Transform - - uid: 3998 - components: - - pos: -29.5,-81.5 - parent: 6 - type: Transform - - uid: 3999 - components: - - pos: -30.5,-81.5 - parent: 6 - type: Transform - - uid: 4000 - components: - - pos: -31.5,-81.5 - parent: 6 - type: Transform - - uid: 4001 - components: - - pos: -32.5,-81.5 - parent: 6 - type: Transform - - uid: 4002 - components: - - pos: -24.5,-77.5 - parent: 6 - type: Transform - - uid: 4003 - components: - - pos: -25.5,-77.5 - parent: 6 - type: Transform - - uid: 4004 - components: - - pos: -26.5,-77.5 - parent: 6 - type: Transform - - uid: 4005 - components: - - pos: -27.5,-77.5 - parent: 6 - type: Transform - - uid: 4006 - components: - - pos: -28.5,-77.5 - parent: 6 - type: Transform - - uid: 4007 - components: - - pos: -29.5,-77.5 - parent: 6 - type: Transform - - uid: 4008 - components: - - pos: -30.5,-77.5 - parent: 6 - type: Transform - - uid: 4009 - components: - - pos: -31.5,-77.5 - parent: 6 - type: Transform - - uid: 4010 - components: - - pos: -32.5,-77.5 - parent: 6 - type: Transform - - uid: 4011 - components: - - pos: -24.5,-73.5 - parent: 6 - type: Transform - - uid: 4012 - components: - - pos: -25.5,-73.5 - parent: 6 - type: Transform - - uid: 4013 - components: - - pos: -26.5,-73.5 - parent: 6 - type: Transform - - uid: 4014 - components: - - pos: -27.5,-73.5 - parent: 6 - type: Transform - - uid: 4015 - components: - - pos: -28.5,-73.5 - parent: 6 - type: Transform - - uid: 4016 - components: - - pos: -29.5,-73.5 - parent: 6 - type: Transform - - uid: 4017 - components: - - pos: -30.5,-73.5 - parent: 6 - type: Transform - - uid: 4018 - components: - - pos: -31.5,-73.5 - parent: 6 - type: Transform - - uid: 4019 - components: - - pos: -32.5,-73.5 - parent: 6 - type: Transform - - uid: 4020 - components: - - pos: -24.5,-69.5 - parent: 6 - type: Transform - - uid: 4021 - components: - - pos: -25.5,-69.5 - parent: 6 - type: Transform - - uid: 4022 - components: - - pos: -26.5,-69.5 - parent: 6 - type: Transform - - uid: 4023 - components: - - pos: -27.5,-69.5 - parent: 6 - type: Transform - - uid: 4024 - components: - - pos: -28.5,-69.5 - parent: 6 - type: Transform - - uid: 4025 - components: - - pos: -29.5,-69.5 - parent: 6 - type: Transform - - uid: 4026 - components: - - pos: -30.5,-69.5 - parent: 6 - type: Transform - - uid: 4027 - components: - - pos: -31.5,-69.5 - parent: 6 - type: Transform - - uid: 4028 - components: - - pos: -32.5,-69.5 - parent: 6 - type: Transform - - uid: 4169 - components: - - pos: -62.5,-43.5 - parent: 6 - type: Transform - - uid: 4170 - components: - - pos: -63.5,-43.5 - parent: 6 - type: Transform - - uid: 4171 - components: - - pos: -64.5,-43.5 - parent: 6 - type: Transform - - uid: 4172 - components: - - pos: -65.5,-43.5 - parent: 6 - type: Transform - - uid: 4173 - components: - - pos: -66.5,-43.5 - parent: 6 - type: Transform - - uid: 4174 - components: - - pos: -67.5,-43.5 - parent: 6 - type: Transform - - uid: 4175 - components: - - pos: -68.5,-43.5 - parent: 6 - type: Transform - - uid: 4176 - components: - - pos: -69.5,-43.5 - parent: 6 - type: Transform - - uid: 4177 - components: - - pos: -70.5,-43.5 - parent: 6 - type: Transform - - uid: 4178 - components: - - pos: -71.5,-43.5 - parent: 6 - type: Transform - - uid: 4179 - components: - - pos: -72.5,-43.5 - parent: 6 - type: Transform - - uid: 4180 - components: - - pos: -73.5,-43.5 - parent: 6 - type: Transform - - uid: 4201 - components: - - pos: -73.5,-45.5 - parent: 6 - type: Transform - - uid: 4202 - components: - - pos: -72.5,-45.5 - parent: 6 - type: Transform - - uid: 4203 - components: - - pos: -71.5,-45.5 - parent: 6 - type: Transform - - uid: 4204 - components: - - pos: -70.5,-45.5 - parent: 6 - type: Transform - - uid: 4205 - components: - - pos: -69.5,-45.5 - parent: 6 - type: Transform - - uid: 4206 - components: - - pos: -68.5,-45.5 - parent: 6 - type: Transform - - uid: 4207 - components: - - pos: -67.5,-45.5 - parent: 6 - type: Transform - - uid: 4208 - components: - - pos: -66.5,-45.5 - parent: 6 - type: Transform - - uid: 4209 - components: - - pos: -65.5,-45.5 - parent: 6 - type: Transform - - uid: 4210 - components: - - pos: -64.5,-45.5 - parent: 6 - type: Transform - - uid: 4211 - components: - - pos: -63.5,-45.5 - parent: 6 - type: Transform - - uid: 4212 - components: - - pos: -62.5,-45.5 - parent: 6 - type: Transform - - uid: 4837 - components: - - pos: -14.5,27.5 - parent: 6 - type: Transform - - uid: 4854 - components: - - pos: -33.5,9.5 - parent: 6 - type: Transform - - uid: 4862 - components: - - pos: -33.5,10.5 - parent: 6 - type: Transform - - uid: 4863 - components: - - pos: -33.5,11.5 - parent: 6 - type: Transform - - uid: 4864 - components: - - pos: -33.5,12.5 - parent: 6 - type: Transform - - uid: 4865 - components: - - pos: -33.5,13.5 - parent: 6 - type: Transform - - uid: 4866 - components: - - pos: -32.5,9.5 - parent: 6 - type: Transform - - uid: 4867 - components: - - pos: -32.5,10.5 - parent: 6 - type: Transform - - uid: 4868 - components: - - pos: -32.5,11.5 - parent: 6 - type: Transform - - uid: 4869 - components: - - pos: -32.5,12.5 - parent: 6 - type: Transform - - uid: 4870 - components: - - pos: -32.5,13.5 - parent: 6 - type: Transform - - uid: 4930 - components: - - pos: -12.5,19.5 - parent: 6 - type: Transform - - uid: 4934 - components: - - pos: -12.5,23.5 - parent: 6 - type: Transform - - uid: 4935 - components: - - pos: -12.5,27.5 - parent: 6 - type: Transform - - uid: 4936 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,35.5 - parent: 6 - type: Transform - - uid: 4937 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,35.5 - parent: 6 - type: Transform - - uid: 4938 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,31.5 - parent: 6 - type: Transform - - uid: 5315 - components: - - pos: 9.5,-48.5 - parent: 6 - type: Transform - - uid: 5316 - components: - - pos: 9.5,-47.5 - parent: 6 - type: Transform - - uid: 5317 - components: - - pos: 9.5,-46.5 - parent: 6 - type: Transform - - uid: 5318 - components: - - pos: 10.5,-48.5 - parent: 6 - type: Transform - - uid: 5319 - components: - - pos: 10.5,-47.5 - parent: 6 - type: Transform - - uid: 5320 - components: - - pos: 10.5,-46.5 - parent: 6 - type: Transform - - uid: 5321 - components: - - pos: 11.5,-46.5 - parent: 6 - type: Transform - - uid: 5322 - components: - - pos: 11.5,-47.5 - parent: 6 - type: Transform - - uid: 5323 - components: - - pos: 12.5,-46.5 - parent: 6 - type: Transform - - uid: 5324 - components: - - pos: 12.5,-47.5 - parent: 6 - type: Transform - - uid: 5325 - components: - - pos: 13.5,-46.5 - parent: 6 - type: Transform - - uid: 5326 - components: - - pos: 13.5,-47.5 - parent: 6 - type: Transform - - uid: 5327 - components: - - pos: 14.5,-46.5 - parent: 6 - type: Transform - - uid: 5328 - components: - - pos: 14.5,-47.5 - parent: 6 - type: Transform - - uid: 5329 - components: - - pos: 15.5,-46.5 - parent: 6 - type: Transform - - uid: 5330 - components: - - pos: 15.5,-47.5 - parent: 6 - type: Transform - - uid: 5331 - components: - - pos: 16.5,-46.5 - parent: 6 - type: Transform - - uid: 5332 - components: - - pos: 16.5,-47.5 - parent: 6 - type: Transform - - uid: 5333 - components: - - pos: 17.5,-46.5 - parent: 6 - type: Transform - - uid: 5334 - components: - - pos: 17.5,-47.5 - parent: 6 - type: Transform - - uid: 5335 - components: - - pos: 18.5,-46.5 - parent: 6 - type: Transform - - uid: 5336 - components: - - pos: 18.5,-47.5 - parent: 6 - type: Transform - - uid: 5337 - components: - - pos: 17.5,-45.5 - parent: 6 - type: Transform - - uid: 5338 - components: - - pos: 18.5,-45.5 - parent: 6 - type: Transform - - uid: 5517 - components: - - pos: -82.5,-24.5 - parent: 6 - type: Transform - - uid: 5521 - components: - - pos: -81.5,-29.5 - parent: 6 - type: Transform - - uid: 5522 - components: - - pos: -81.5,-30.5 - parent: 6 - type: Transform - - uid: 5523 - components: - - pos: -81.5,-31.5 - parent: 6 - type: Transform - - uid: 5524 - components: - - pos: -81.5,-32.5 - parent: 6 - type: Transform - - uid: 5525 - components: - - pos: -77.5,-26.5 - parent: 6 - type: Transform - - uid: 5526 - components: - - pos: -77.5,-27.5 - parent: 6 - type: Transform - - uid: 5527 - components: - - pos: -77.5,-28.5 - parent: 6 - type: Transform - - uid: 5528 - components: - - pos: -77.5,-29.5 - parent: 6 - type: Transform - - uid: 5529 - components: - - pos: -77.5,-30.5 - parent: 6 - type: Transform - - uid: 5530 - components: - - pos: -77.5,-31.5 - parent: 6 - type: Transform - - uid: 5545 - components: - - pos: -73.5,-31.5 - parent: 6 - type: Transform - - uid: 5546 - components: - - pos: -73.5,-32.5 - parent: 6 - type: Transform - - uid: 5547 - components: - - pos: -77.5,-32.5 - parent: 6 - type: Transform - - uid: 5550 - components: - - pos: -73.5,-26.5 - parent: 6 - type: Transform - - uid: 5551 - components: - - pos: -73.5,-27.5 - parent: 6 - type: Transform - - uid: 5552 - components: - - pos: -73.5,-28.5 - parent: 6 - type: Transform - - uid: 6289 - components: - - pos: -31.5,7.5 - parent: 6 - type: Transform - - uid: 6290 - components: - - pos: -31.5,6.5 - parent: 6 - type: Transform - - uid: 6488 - components: - - pos: 19.5,-15.5 - parent: 6 - type: Transform - - uid: 7394 - components: - - pos: -2.5,-58.5 - parent: 6 - type: Transform - - uid: 7395 - components: - - pos: -1.5,-58.5 - parent: 6 - type: Transform - - uid: 7396 - components: - - pos: -0.5,-58.5 - parent: 6 - type: Transform - - uid: 7397 - components: - - pos: -9.5,-58.5 - parent: 6 - type: Transform - - uid: 7398 - components: - - pos: -10.5,-58.5 - parent: 6 - type: Transform - - uid: 7399 - components: - - pos: -11.5,-58.5 - parent: 6 - type: Transform - - uid: 7400 - components: - - pos: 0.5,-57.5 - parent: 6 - type: Transform - - uid: 7401 - components: - - pos: 0.5,-56.5 - parent: 6 - type: Transform - - uid: 7402 - components: - - pos: 0.5,-55.5 - parent: 6 - type: Transform - - uid: 7403 - components: - - pos: 0.5,-54.5 - parent: 6 - type: Transform - - uid: 7404 - components: - - pos: 0.5,-53.5 - parent: 6 - type: Transform - - uid: 7405 - components: - - pos: 0.5,-52.5 - parent: 6 - type: Transform - - uid: 7406 - components: - - pos: 0.5,-51.5 - parent: 6 - type: Transform - - uid: 7407 - components: - - pos: 0.5,-50.5 - parent: 6 - type: Transform - - uid: 7408 - components: - - pos: 0.5,-49.5 - parent: 6 - type: Transform - - uid: 7409 - components: - - pos: -0.5,-48.5 - parent: 6 - type: Transform - - uid: 7410 - components: - - pos: -1.5,-48.5 - parent: 6 - type: Transform - - uid: 7411 - components: - - pos: -2.5,-48.5 - parent: 6 - type: Transform - - uid: 7412 - components: - - pos: -3.5,-48.5 - parent: 6 - type: Transform - - uid: 7454 - components: - - pos: -43.5,-24.5 - parent: 6 - type: Transform - - uid: 7455 - components: - - pos: -43.5,-25.5 - parent: 6 - type: Transform - - uid: 7456 - components: - - pos: -43.5,-26.5 - parent: 6 - type: Transform - - uid: 7457 - components: - - pos: -41.5,-22.5 - parent: 6 - type: Transform - - uid: 7458 - components: - - pos: -41.5,-21.5 - parent: 6 - type: Transform - - uid: 7459 - components: - - pos: -41.5,-19.5 - parent: 6 - type: Transform - - uid: 7460 - components: - - pos: -41.5,-18.5 - parent: 6 - type: Transform - - uid: 7461 - components: - - pos: -41.5,-17.5 - parent: 6 - type: Transform - - uid: 7462 - components: - - pos: -41.5,-16.5 - parent: 6 - type: Transform - - uid: 7463 - components: - - pos: -41.5,-15.5 - parent: 6 - type: Transform - - uid: 7465 - components: - - pos: -40.5,-24.5 - parent: 6 - type: Transform - - uid: 7466 - components: - - pos: -39.5,-24.5 - parent: 6 - type: Transform - - uid: 7467 - components: - - pos: -38.5,-24.5 - parent: 6 - type: Transform - - uid: 7468 - components: - - pos: -37.5,-24.5 - parent: 6 - type: Transform - - uid: 7469 - components: - - pos: -36.5,-24.5 - parent: 6 - type: Transform - - uid: 7470 - components: - - pos: -35.5,-24.5 - parent: 6 - type: Transform - - uid: 7471 - components: - - pos: -34.5,-24.5 - parent: 6 - type: Transform - - uid: 7472 - components: - - pos: -33.5,-25.5 - parent: 6 - type: Transform - - uid: 7473 - components: - - pos: -33.5,-26.5 - parent: 6 - type: Transform - - uid: 7474 - components: - - pos: -33.5,-27.5 - parent: 6 - type: Transform - - uid: 7475 - components: - - pos: -33.5,-28.5 - parent: 6 - type: Transform - - uid: 7476 - components: - - pos: -29.5,-30.5 - parent: 6 - type: Transform - - uid: 7477 - components: - - pos: -29.5,-31.5 - parent: 6 - type: Transform - - uid: 7478 - components: - - pos: -29.5,-32.5 - parent: 6 - type: Transform - - uid: 7479 - components: - - pos: -29.5,-33.5 - parent: 6 - type: Transform - - uid: 7480 - components: - - pos: -29.5,-34.5 - parent: 6 - type: Transform - - uid: 7481 - components: - - pos: -28.5,-35.5 - parent: 6 - type: Transform - - uid: 7482 - components: - - pos: -27.5,-35.5 - parent: 6 - type: Transform - - uid: 7483 - components: - - pos: -26.5,-35.5 - parent: 6 - type: Transform - - uid: 7484 - components: - - pos: -25.5,-35.5 - parent: 6 - type: Transform - - uid: 7485 - components: - - pos: -24.5,-35.5 - parent: 6 - type: Transform - - uid: 7486 - components: - - pos: -23.5,-35.5 - parent: 6 - type: Transform - - uid: 7487 - components: - - pos: -22.5,-35.5 - parent: 6 - type: Transform - - uid: 7488 - components: - - pos: -21.5,-35.5 - parent: 6 - type: Transform - - uid: 7489 - components: - - pos: -20.5,-35.5 - parent: 6 - type: Transform - - uid: 7490 - components: - - pos: -19.5,-35.5 - parent: 6 - type: Transform - - uid: 7491 - components: - - pos: -18.5,-35.5 - parent: 6 - type: Transform - - uid: 7492 - components: - - pos: -17.5,-35.5 - parent: 6 - type: Transform - - uid: 7493 - components: - - pos: -44.5,-21.5 - parent: 6 - type: Transform - - uid: 7494 - components: - - pos: -45.5,-21.5 - parent: 6 - type: Transform - - uid: 7495 - components: - - pos: -46.5,-21.5 - parent: 6 - type: Transform - - uid: 7496 - components: - - pos: -47.5,-21.5 - parent: 6 - type: Transform - - uid: 7497 - components: - - pos: -48.5,-21.5 - parent: 6 - type: Transform - - uid: 7498 - components: - - pos: -49.5,-21.5 - parent: 6 - type: Transform - - uid: 7499 - components: - - pos: -52.5,-21.5 - parent: 6 - type: Transform - - uid: 7500 - components: - - pos: -53.5,-21.5 - parent: 6 - type: Transform - - uid: 7501 - components: - - pos: -54.5,-21.5 - parent: 6 - type: Transform - - uid: 7502 - components: - - pos: -55.5,-21.5 - parent: 6 - type: Transform - - uid: 7503 - components: - - pos: -51.5,-22.5 - parent: 6 - type: Transform - - uid: 7504 - components: - - pos: -51.5,-23.5 - parent: 6 - type: Transform - - uid: 7505 - components: - - pos: -51.5,-24.5 - parent: 6 - type: Transform - - uid: 7506 - components: - - pos: -51.5,-25.5 - parent: 6 - type: Transform - - uid: 7507 - components: - - pos: -51.5,-26.5 - parent: 6 - type: Transform - - uid: 7508 - components: - - pos: -49.5,-28.5 - parent: 6 - type: Transform - - uid: 7509 - components: - - pos: -49.5,-29.5 - parent: 6 - type: Transform - - uid: 7510 - components: - - pos: -49.5,-30.5 - parent: 6 - type: Transform - - uid: 7511 - components: - - pos: -49.5,-31.5 - parent: 6 - type: Transform - - uid: 7512 - components: - - pos: -49.5,-32.5 - parent: 6 - type: Transform - - uid: 7513 - components: - - pos: -49.5,-33.5 - parent: 6 - type: Transform - - uid: 7514 - components: - - pos: -49.5,-34.5 - parent: 6 - type: Transform - - uid: 7515 - components: - - pos: -49.5,-35.5 - parent: 6 - type: Transform - - uid: 7516 - components: - - pos: -49.5,-36.5 - parent: 6 - type: Transform - - uid: 7517 - components: - - pos: -49.5,-37.5 - parent: 6 - type: Transform - - uid: 7518 - components: - - pos: -49.5,-38.5 - parent: 6 - type: Transform - - uid: 7519 - components: - - pos: -49.5,-39.5 - parent: 6 - type: Transform - - uid: 7520 - components: - - pos: -49.5,-40.5 - parent: 6 - type: Transform - - uid: 7521 - components: - - pos: -49.5,-41.5 - parent: 6 - type: Transform - - uid: 7522 - components: - - pos: -48.5,-27.5 - parent: 6 - type: Transform - - uid: 7523 - components: - - pos: -47.5,-27.5 - parent: 6 - type: Transform - - uid: 7524 - components: - - pos: -46.5,-27.5 - parent: 6 - type: Transform - - uid: 7525 - components: - - pos: -45.5,-27.5 - parent: 6 - type: Transform - - uid: 7526 - components: - - pos: -44.5,-27.5 - parent: 6 - type: Transform - - uid: 7527 - components: - - pos: -56.5,-20.5 - parent: 6 - type: Transform - - uid: 7528 - components: - - pos: -56.5,-19.5 - parent: 6 - type: Transform - - uid: 7529 - components: - - pos: -56.5,-18.5 - parent: 6 - type: Transform - - uid: 7530 - components: - - pos: -56.5,-17.5 - parent: 6 - type: Transform - - uid: 7531 - components: - - pos: -57.5,-16.5 - parent: 6 - type: Transform - - uid: 7532 - components: - - pos: -58.5,-16.5 - parent: 6 - type: Transform - - uid: 7533 - components: - - pos: -59.5,-16.5 - parent: 6 - type: Transform - - uid: 7534 - components: - - pos: -61.5,-16.5 - parent: 6 - type: Transform - - uid: 7535 - components: - - pos: -62.5,-16.5 - parent: 6 - type: Transform - - uid: 7536 - components: - - pos: -63.5,-16.5 - parent: 6 - type: Transform - - uid: 7538 - components: - - pos: -41.5,-7.5 - parent: 6 - type: Transform - - uid: 7539 - components: - - pos: -41.5,-6.5 - parent: 6 - type: Transform - - uid: 7540 - components: - - pos: -41.5,-5.5 - parent: 6 - type: Transform - - uid: 7541 - components: - - pos: -41.5,-4.5 - parent: 6 - type: Transform - - uid: 7542 - components: - - pos: -41.5,-3.5 - parent: 6 - type: Transform - - uid: 7543 - components: - - pos: -41.5,-2.5 - parent: 6 - type: Transform - - uid: 7544 - components: - - pos: -41.5,-1.5 - parent: 6 - type: Transform - - uid: 7545 - components: - - pos: -41.5,-0.5 - parent: 6 - type: Transform - - uid: 7546 - components: - - pos: -41.5,0.5 - parent: 6 - type: Transform - - uid: 7547 - components: - - pos: -41.5,1.5 - parent: 6 - type: Transform - - uid: 7548 - components: - - pos: -41.5,2.5 - parent: 6 - type: Transform - - uid: 7549 - components: - - pos: -41.5,3.5 - parent: 6 - type: Transform - - uid: 7550 - components: - - pos: -38.5,-48.5 - parent: 6 - type: Transform - - uid: 7551 - components: - - pos: -38.5,-49.5 - parent: 6 - type: Transform - - uid: 7552 - components: - - pos: -38.5,-50.5 - parent: 6 - type: Transform - - uid: 7553 - components: - - pos: -38.5,-51.5 - parent: 6 - type: Transform - - uid: 7554 - components: - - pos: -38.5,-52.5 - parent: 6 - type: Transform - - uid: 7555 - components: - - pos: -39.5,-54.5 - parent: 6 - type: Transform - - uid: 7556 - components: - - pos: -39.5,-55.5 - parent: 6 - type: Transform - - uid: 7557 - components: - - pos: -39.5,-56.5 - parent: 6 - type: Transform - - uid: 7558 - components: - - pos: -39.5,-57.5 - parent: 6 - type: Transform - - uid: 7559 - components: - - pos: -39.5,-58.5 - parent: 6 - type: Transform - - uid: 7560 - components: - - pos: -38.5,-59.5 - parent: 6 - type: Transform - - uid: 7561 - components: - - pos: -37.5,-59.5 - parent: 6 - type: Transform - - uid: 7562 - components: - - pos: -36.5,-59.5 - parent: 6 - type: Transform - - uid: 7563 - components: - - pos: -35.5,-59.5 - parent: 6 - type: Transform - - uid: 7564 - components: - - pos: -34.5,-59.5 - parent: 6 - type: Transform - - uid: 7565 - components: - - pos: -33.5,-59.5 - parent: 6 - type: Transform - - uid: 7566 - components: - - pos: -32.5,-59.5 - parent: 6 - type: Transform - - uid: 7567 - components: - - pos: -31.5,-59.5 - parent: 6 - type: Transform - - uid: 7568 - components: - - pos: -30.5,-59.5 - parent: 6 - type: Transform - - uid: 7569 - components: - - pos: -29.5,-59.5 - parent: 6 - type: Transform - - uid: 7570 - components: - - pos: -28.5,-59.5 - parent: 6 - type: Transform - - uid: 7571 - components: - - pos: -27.5,-59.5 - parent: 6 - type: Transform - - uid: 7572 - components: - - pos: -26.5,-59.5 - parent: 6 - type: Transform - - uid: 7573 - components: - - pos: -25.5,-59.5 - parent: 6 - type: Transform - - uid: 7574 - components: - - pos: -24.5,-59.5 - parent: 6 - type: Transform - - uid: 7575 - components: - - pos: -22.5,-59.5 - parent: 6 - type: Transform - - uid: 7576 - components: - - pos: -21.5,-59.5 - parent: 6 - type: Transform - - uid: 7577 - components: - - pos: -20.5,-59.5 - parent: 6 - type: Transform - - uid: 7578 - components: - - pos: -19.5,-55.5 - parent: 6 - type: Transform - - uid: 7579 - components: - - pos: -19.5,-54.5 - parent: 6 - type: Transform - - uid: 7580 - components: - - pos: -19.5,-53.5 - parent: 6 - type: Transform - - uid: 7581 - components: - - pos: -19.5,-52.5 - parent: 6 - type: Transform - - uid: 7582 - components: - - pos: -19.5,-51.5 - parent: 6 - type: Transform - - uid: 7583 - components: - - pos: -19.5,-50.5 - parent: 6 - type: Transform - - uid: 7584 - components: - - pos: -19.5,-49.5 - parent: 6 - type: Transform - - uid: 7585 - components: - - pos: -20.5,-48.5 - parent: 6 - type: Transform - - uid: 7586 - components: - - pos: -21.5,-48.5 - parent: 6 - type: Transform - - uid: 7587 - components: - - pos: -22.5,-48.5 - parent: 6 - type: Transform - - uid: 7588 - components: - - pos: -23.5,-48.5 - parent: 6 - type: Transform - - uid: 7589 - components: - - pos: -13.5,-58.5 - parent: 6 - type: Transform - - uid: 7590 - components: - - pos: -12.5,-58.5 - parent: 6 - type: Transform - - uid: 7591 - components: - - pos: -4.5,-48.5 - parent: 6 - type: Transform - - uid: 7674 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-15.5 - parent: 6 - type: Transform - - uid: 7675 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-16.5 - parent: 6 - type: Transform - - uid: 7678 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-6.5 - parent: 6 - type: Transform - - uid: 7679 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-6.5 - parent: 6 - type: Transform - - uid: 7680 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-6.5 - parent: 6 - type: Transform - - uid: 7681 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-6.5 - parent: 6 - type: Transform - - uid: 7682 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-5.5 - parent: 6 - type: Transform - - uid: 7683 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-4.5 - parent: 6 - type: Transform - - uid: 7684 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-3.5 - parent: 6 - type: Transform - - uid: 7685 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 6 - type: Transform - - uid: 7686 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-1.5 - parent: 6 - type: Transform - - uid: 7687 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 6 - type: Transform - - uid: 7688 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,0.5 - parent: 6 - type: Transform - - uid: 7695 - components: - - pos: 19.5,-16.5 - parent: 6 - type: Transform - - uid: 7696 - components: - - pos: 19.5,-17.5 - parent: 6 - type: Transform - - uid: 7697 - components: - - pos: 19.5,-18.5 - parent: 6 - type: Transform - - uid: 7698 - components: - - pos: 19.5,-19.5 - parent: 6 - type: Transform - - uid: 7699 - components: - - pos: 19.5,-20.5 - parent: 6 - type: Transform - - uid: 7700 - components: - - pos: 18.5,-22.5 - parent: 6 - type: Transform - - uid: 7701 - components: - - pos: 17.5,-22.5 - parent: 6 - type: Transform - - uid: 7704 - components: - - pos: 19.5,-25.5 - parent: 6 - type: Transform - - uid: 7705 - components: - - pos: 19.5,-26.5 - parent: 6 - type: Transform - - uid: 7706 - components: - - pos: 19.5,-27.5 - parent: 6 - type: Transform - - uid: 7707 - components: - - pos: 19.5,-28.5 - parent: 6 - type: Transform - - uid: 7708 - components: - - pos: 19.5,-29.5 - parent: 6 - type: Transform - - uid: 7709 - components: - - pos: 19.5,-30.5 - parent: 6 - type: Transform - - uid: 7710 - components: - - pos: 18.5,-31.5 - parent: 6 - type: Transform - - uid: 7711 - components: - - pos: 17.5,-31.5 - parent: 6 - type: Transform - - uid: 7712 - components: - - pos: 16.5,-31.5 - parent: 6 - type: Transform - - uid: 7713 - components: - - pos: 15.5,-31.5 - parent: 6 - type: Transform - - uid: 7714 - components: - - pos: 14.5,-31.5 - parent: 6 - type: Transform - - uid: 7715 - components: - - pos: 13.5,-31.5 - parent: 6 - type: Transform - - uid: 7716 - components: - - pos: 11.5,-29.5 - parent: 6 - type: Transform - - uid: 7717 - components: - - pos: 10.5,-29.5 - parent: 6 - type: Transform - - uid: 7718 - components: - - pos: 9.5,-29.5 - parent: 6 - type: Transform - - uid: 7753 - components: - - pos: 22.5,-7.5 - parent: 6 - type: Transform - - uid: 7754 - components: - - pos: 23.5,-7.5 - parent: 6 - type: Transform - - uid: 7755 - components: - - pos: 24.5,-6.5 - parent: 6 - type: Transform - - uid: 7756 - components: - - pos: 24.5,-5.5 - parent: 6 - type: Transform - - uid: 7757 - components: - - pos: 24.5,-4.5 - parent: 6 - type: Transform - - uid: 7758 - components: - - pos: 24.5,-3.5 - parent: 6 - type: Transform - - uid: 7759 - components: - - pos: 23.5,-2.5 - parent: 6 - type: Transform - - uid: 7760 - components: - - pos: 22.5,-2.5 - parent: 6 - type: Transform - - uid: 7761 - components: - - pos: 19.5,-4.5 - parent: 6 - type: Transform - - uid: 7762 - components: - - pos: 19.5,-3.5 - parent: 6 - type: Transform - - uid: 7763 - components: - - pos: 19.5,-2.5 - parent: 6 - type: Transform - - uid: 7764 - components: - - pos: 19.5,-1.5 - parent: 6 - type: Transform - - uid: 7765 - components: - - pos: 19.5,-0.5 - parent: 6 - type: Transform - - uid: 7766 - components: - - pos: 19.5,0.5 - parent: 6 - type: Transform - - uid: 7767 - components: - - pos: 22.5,2.5 - parent: 6 - type: Transform - - uid: 7768 - components: - - pos: 22.5,3.5 - parent: 6 - type: Transform - - uid: 7769 - components: - - pos: 22.5,4.5 - parent: 6 - type: Transform - - uid: 7770 - components: - - pos: 22.5,5.5 - parent: 6 - type: Transform - - uid: 7771 - components: - - pos: 22.5,6.5 - parent: 6 - type: Transform - - uid: 7772 - components: - - pos: 22.5,7.5 - parent: 6 - type: Transform - - uid: 7773 - components: - - pos: 22.5,8.5 - parent: 6 - type: Transform - - uid: 7774 - components: - - pos: 22.5,9.5 - parent: 6 - type: Transform - - uid: 7775 - components: - - pos: 22.5,10.5 - parent: 6 - type: Transform - - uid: 7776 - components: - - pos: 18.5,11.5 - parent: 6 - type: Transform - - uid: 7777 - components: - - pos: 19.5,11.5 - parent: 6 - type: Transform - - uid: 7778 - components: - - pos: 20.5,11.5 - parent: 6 - type: Transform - - uid: 7779 - components: - - pos: 21.5,11.5 - parent: 6 - type: Transform - - uid: 7780 - components: - - pos: 11.5,11.5 - parent: 6 - type: Transform - - uid: 7781 - components: - - pos: 10.5,11.5 - parent: 6 - type: Transform - - uid: 7782 - components: - - pos: 9.5,11.5 - parent: 6 - type: Transform - - uid: 7940 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,34.5 - parent: 6 - type: Transform - - uid: 8080 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,35.5 - parent: 6 - type: Transform - - uid: 8175 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,30.5 - parent: 6 - type: Transform - - uid: 8185 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,29.5 - parent: 6 - type: Transform - - uid: 8193 - components: - - pos: -13.5,15.5 - parent: 6 - type: Transform - - uid: 8194 - components: - - pos: -13.5,16.5 - parent: 6 - type: Transform - - uid: 8195 - components: - - pos: -13.5,17.5 - parent: 6 - type: Transform - - uid: 8196 - components: - - pos: -13.5,18.5 - parent: 6 - type: Transform - - uid: 8197 - components: - - pos: -13.5,19.5 - parent: 6 - type: Transform - - uid: 8198 - components: - - pos: -13.5,20.5 - parent: 6 - type: Transform - - uid: 8199 - components: - - pos: -13.5,21.5 - parent: 6 - type: Transform - - uid: 8200 - components: - - pos: -13.5,22.5 - parent: 6 - type: Transform - - uid: 8201 - components: - - pos: -13.5,23.5 - parent: 6 - type: Transform - - uid: 8202 - components: - - pos: -13.5,24.5 - parent: 6 - type: Transform - - uid: 8203 - components: - - pos: -13.5,25.5 - parent: 6 - type: Transform - - uid: 8204 - components: - - pos: -13.5,26.5 - parent: 6 - type: Transform - - uid: 8205 - components: - - pos: -13.5,27.5 - parent: 6 - type: Transform - - uid: 8206 - components: - - pos: -13.5,28.5 - parent: 6 - type: Transform - - uid: 8220 - components: - - pos: -11.5,27.5 - parent: 6 - type: Transform - - uid: 8221 - components: - - pos: -10.5,27.5 - parent: 6 - type: Transform - - uid: 8222 - components: - - pos: -9.5,27.5 - parent: 6 - type: Transform - - uid: 8223 - components: - - pos: -8.5,27.5 - parent: 6 - type: Transform - - uid: 8224 - components: - - pos: -7.5,27.5 - parent: 6 - type: Transform - - uid: 8225 - components: - - pos: -6.5,27.5 - parent: 6 - type: Transform - - uid: 8227 - components: - - pos: -15.5,27.5 - parent: 6 - type: Transform - - uid: 8228 - components: - - pos: -16.5,27.5 - parent: 6 - type: Transform - - uid: 8229 - components: - - pos: -17.5,27.5 - parent: 6 - type: Transform - - uid: 8230 - components: - - pos: -18.5,27.5 - parent: 6 - type: Transform - - uid: 8231 - components: - - pos: -19.5,27.5 - parent: 6 - type: Transform - - uid: 8232 - components: - - pos: -11.5,23.5 - parent: 6 - type: Transform - - uid: 8233 - components: - - pos: -10.5,23.5 - parent: 6 - type: Transform - - uid: 8234 - components: - - pos: -9.5,23.5 - parent: 6 - type: Transform - - uid: 8235 - components: - - pos: -8.5,23.5 - parent: 6 - type: Transform - - uid: 8236 - components: - - pos: -7.5,23.5 - parent: 6 - type: Transform - - uid: 8237 - components: - - pos: -6.5,23.5 - parent: 6 - type: Transform - - uid: 8238 - components: - - pos: -11.5,19.5 - parent: 6 - type: Transform - - uid: 8239 - components: - - pos: -10.5,19.5 - parent: 6 - type: Transform - - uid: 8240 - components: - - pos: -9.5,19.5 - parent: 6 - type: Transform - - uid: 8241 - components: - - pos: -8.5,19.5 - parent: 6 - type: Transform - - uid: 8242 - components: - - pos: -7.5,19.5 - parent: 6 - type: Transform - - uid: 8243 - components: - - pos: -6.5,19.5 - parent: 6 - type: Transform - - uid: 8244 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,37.5 - parent: 6 - type: Transform - - uid: 8245 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,35.5 - parent: 6 - type: Transform - - uid: 8246 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,36.5 - parent: 6 - type: Transform - - uid: 8247 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,35.5 - parent: 6 - type: Transform - - uid: 8248 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,35.5 - parent: 6 - type: Transform - - uid: 8249 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,35.5 - parent: 6 - type: Transform - - uid: 8250 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,35.5 - parent: 6 - type: Transform - - uid: 8253 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,35.5 - parent: 6 - type: Transform - - uid: 8254 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,35.5 - parent: 6 - type: Transform - - uid: 8255 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,35.5 - parent: 6 - type: Transform - - uid: 8256 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,35.5 - parent: 6 - type: Transform - - uid: 8257 - components: - - rot: 3.141592653589793 rad - pos: -5.5,27.5 - parent: 6 - type: Transform - - uid: 8258 - components: - - rot: 3.141592653589793 rad - pos: -4.5,27.5 - parent: 6 - type: Transform - - uid: 8259 - components: - - rot: 3.141592653589793 rad - pos: -4.5,31.5 - parent: 6 - type: Transform - - uid: 8261 - components: - - rot: 3.141592653589793 rad - pos: -5.5,35.5 - parent: 6 - type: Transform - - uid: 8262 - components: - - rot: 3.141592653589793 rad - pos: -4.5,35.5 - parent: 6 - type: Transform - - uid: 8266 - components: - - rot: 3.141592653589793 rad - pos: -5.5,19.5 - parent: 6 - type: Transform - - uid: 8267 - components: - - rot: 3.141592653589793 rad - pos: -4.5,23.5 - parent: 6 - type: Transform - - uid: 8268 - components: - - rot: 3.141592653589793 rad - pos: -5.5,23.5 - parent: 6 - type: Transform - - uid: 8269 - components: - - rot: 3.141592653589793 rad - pos: -4.5,19.5 - parent: 6 - type: Transform - - uid: 8270 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,33.5 - parent: 6 - type: Transform - - uid: 8271 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,32.5 - parent: 6 - type: Transform - - uid: 8273 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,35.5 - parent: 6 - type: Transform - - uid: 8334 - components: - - pos: -41.5,4.5 - parent: 6 - type: Transform - - uid: 8335 - components: - - pos: -39.5,6.5 - parent: 6 - type: Transform - - uid: 8336 - components: - - pos: -38.5,6.5 - parent: 6 - type: Transform - - uid: 8337 - components: - - pos: -37.5,6.5 - parent: 6 - type: Transform - - uid: 8338 - components: - - pos: -36.5,6.5 - parent: 6 - type: Transform - - uid: 8339 - components: - - pos: -35.5,6.5 - parent: 6 - type: Transform - - uid: 8340 - components: - - pos: -34.5,6.5 - parent: 6 - type: Transform - - uid: 8341 - components: - - pos: -28.5,6.5 - parent: 6 - type: Transform - - uid: 8342 - components: - - pos: -27.5,6.5 - parent: 6 - type: Transform - - uid: 8343 - components: - - pos: -26.5,6.5 - parent: 6 - type: Transform - - uid: 8344 - components: - - pos: -25.5,6.5 - parent: 6 - type: Transform - - uid: 8345 - components: - - pos: -24.5,6.5 - parent: 6 - type: Transform - - uid: 10898 - components: - - pos: 21.5,-4.5 - parent: 6 - type: Transform - - uid: 10899 - components: - - pos: 21.5,-5.5 - parent: 6 - type: Transform - - uid: 10926 - components: - - pos: -16.5,-58.5 - parent: 6 - type: Transform - - uid: 10927 - components: - - pos: -16.5,-59.5 - parent: 6 - type: Transform - - uid: 10955 - components: - - pos: -36.5,-30.5 - parent: 6 - type: Transform - - uid: 10956 - components: - - pos: -36.5,-31.5 - parent: 6 - type: Transform - - uid: 10957 - components: - - pos: -36.5,-32.5 - parent: 6 - type: Transform - - uid: 10958 - components: - - pos: -36.5,-33.5 - parent: 6 - type: Transform - - uid: 10959 - components: - - pos: -36.5,-34.5 - parent: 6 - type: Transform - - uid: 10960 - components: - - pos: -36.5,-35.5 - parent: 6 - type: Transform - - uid: 10961 - components: - - pos: -35.5,-37.5 - parent: 6 - type: Transform - - uid: 10962 - components: - - pos: -34.5,-37.5 - parent: 6 - type: Transform - - uid: 10963 - components: - - pos: -33.5,-37.5 - parent: 6 - type: Transform - - uid: 10964 - components: - - pos: -32.5,-37.5 - parent: 6 - type: Transform - - uid: 10965 - components: - - pos: -31.5,-37.5 - parent: 6 - type: Transform - - uid: 10966 - components: - - pos: -30.5,-37.5 - parent: 6 - type: Transform - - uid: 10967 - components: - - pos: -29.5,-37.5 - parent: 6 - type: Transform - - uid: 10968 - components: - - pos: -28.5,-38.5 - parent: 6 - type: Transform - - uid: 10969 - components: - - pos: -28.5,-39.5 - parent: 6 - type: Transform - - uid: 10970 - components: - - pos: -28.5,-40.5 - parent: 6 - type: Transform - - uid: 10971 - components: - - pos: -27.5,-41.5 - parent: 6 - type: Transform - - uid: 10972 - components: - - pos: -26.5,-41.5 - parent: 6 - type: Transform - - uid: 10973 - components: - - pos: -25.5,-41.5 - parent: 6 - type: Transform - - uid: 10974 - components: - - pos: -24.5,-41.5 - parent: 6 - type: Transform - - uid: 10975 - components: - - pos: -23.5,-41.5 - parent: 6 - type: Transform - - uid: 13773 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,-32.5 - parent: 6 - type: Transform - - uid: 13774 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,-31.5 - parent: 6 - type: Transform - - uid: 13775 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,-30.5 - parent: 6 - type: Transform - - uid: 13776 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,-29.5 - parent: 6 - type: Transform - - uid: 13777 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,-28.5 - parent: 6 - type: Transform - - uid: 13778 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,-27.5 - parent: 6 - type: Transform - - uid: 13779 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,-26.5 - parent: 6 - type: Transform - - uid: 13780 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,-25.5 - parent: 6 - type: Transform - - uid: 13781 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,-24.5 - parent: 6 - type: Transform - - uid: 13782 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,-23.5 - parent: 6 - type: Transform - - uid: 13783 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,-22.5 - parent: 6 - type: Transform - - uid: 13784 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,-21.5 - parent: 6 - type: Transform - - uid: 13785 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,-20.5 - parent: 6 - type: Transform - - uid: 13786 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,-19.5 - parent: 6 - type: Transform - - uid: 13787 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,-18.5 - parent: 6 - type: Transform - - uid: 13788 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,-17.5 - parent: 6 - type: Transform - - uid: 13789 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,-16.5 - parent: 6 - type: Transform - - uid: 13790 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,-15.5 - parent: 6 - type: Transform - - uid: 13791 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,-24.5 - parent: 6 - type: Transform - - uid: 13792 - components: - - rot: -1.5707963267948966 rad - pos: -83.5,-24.5 - parent: 6 - type: Transform - - uid: 13793 - components: - - rot: -1.5707963267948966 rad - pos: -86.5,-24.5 - parent: 6 - type: Transform - - uid: 13794 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,-24.5 - parent: 6 - type: Transform - - uid: 13908 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,35.5 - parent: 6 - type: Transform - - uid: 14013 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,31.5 - parent: 6 - type: Transform - - uid: 14014 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,31.5 - parent: 6 - type: Transform - - uid: 14015 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,31.5 - parent: 6 - type: Transform - - uid: 14016 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,31.5 - parent: 6 - type: Transform - - uid: 14017 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,31.5 - parent: 6 - type: Transform - - uid: 14018 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,31.5 - parent: 6 - type: Transform - - uid: 14019 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,31.5 - parent: 6 - type: Transform - - uid: 14020 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,31.5 - parent: 6 - type: Transform - - uid: 14021 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,31.5 - parent: 6 - type: Transform - - uid: 14022 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,31.5 - parent: 6 - type: Transform - - uid: 14023 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,31.5 - parent: 6 - type: Transform - - uid: 14024 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,31.5 - parent: 6 - type: Transform - - uid: 14025 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,31.5 - parent: 6 - type: Transform - - uid: 14148 - components: - - rot: 3.141592653589793 rad - pos: -5.5,31.5 - parent: 6 - type: Transform -- proto: Cautery - entities: - - uid: 6190 - components: - - pos: -34.049854,-14.57724 - parent: 6 - type: Transform -- proto: Chair - entities: - - uid: 208 - components: - - rot: 3.141592653589793 rad - pos: 10.5,7.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 209 - components: - - rot: 3.141592653589793 rad - pos: 11.5,7.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 469 - components: - - pos: -1.5,-20.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 470 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-23.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2141 - components: - - pos: -47.5,-30.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2643 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-18.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2647 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-19.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 3192 - components: - - pos: -31.5,-20.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 3334 - components: - - pos: -30.5,-20.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 3340 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-12.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 3602 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-49.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 3891 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-37.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 3892 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-38.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 3893 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-32.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 3896 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-31.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 4450 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-16.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 4451 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-17.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 4452 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-16.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 4453 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-17.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 4499 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-15.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 4500 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-16.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 4501 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-15.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 4502 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-16.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5150 - components: - - pos: -2.5,-20.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5154 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-22.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5171 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-22.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5217 - components: - - pos: 5.5,8.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5218 - components: - - pos: 6.5,8.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5243 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-25.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5244 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-23.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5245 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-21.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5246 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5247 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-23.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5248 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-25.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5461 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-48.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5977 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-48.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6018 - components: - - pos: 14.5,20.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6019 - components: - - pos: 15.5,20.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6213 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-33.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6239 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-39.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6511 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-37.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6512 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-38.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6515 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-31.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6516 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-32.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6533 - components: - - pos: -61.5,-13.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6534 - components: - - pos: -60.5,-13.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6535 - components: - - pos: -59.5,-13.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6536 - components: - - rot: 3.141592653589793 rad - pos: -61.5,-11.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6537 - components: - - rot: 3.141592653589793 rad - pos: -60.5,-11.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6538 - components: - - rot: 3.141592653589793 rad - pos: -59.5,-11.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7359 - components: - - pos: -35.5,-20.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7360 - components: - - pos: -36.5,-20.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7647 - components: - - pos: -49.5,-10.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7648 - components: - - pos: -48.5,-10.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7660 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-12.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7662 - components: - - pos: 35.5,-10.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7663 - components: - - pos: 36.5,-10.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7664 - components: - - pos: 38.5,-10.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7665 - components: - - pos: 39.5,-10.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7691 - components: - - pos: 31.5,9.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7745 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-41.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7798 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-19.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7818 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-23.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7819 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-22.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7820 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-23.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7821 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-22.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7822 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-23.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7823 - components: - - pos: -21.5,-43.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7824 - components: - - pos: -22.5,-43.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7826 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-45.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 7827 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-45.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 9038 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-22.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 9039 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-23.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 10751 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-4.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 13662 - components: - - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 13645 - type: Transform - - bodyType: Static - type: Physics - - uid: 13663 - components: - - rot: 3.141592653589793 rad - pos: 4.5,2.5 - parent: 13645 - type: Transform - - bodyType: Static - type: Physics - - uid: 13675 - components: - - rot: 3.141592653589793 rad - pos: 2.5,2.5 - parent: 13645 - type: Transform - - bodyType: Static - type: Physics -- proto: ChairFolding - entities: - - uid: 3353 - components: - - pos: -33.5,-49.5 - parent: 6 - type: Transform - - uid: 3800 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-56.5 - parent: 6 - type: Transform - - uid: 5293 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-45.5 - parent: 6 - type: Transform - - uid: 5294 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-46.5 - parent: 6 - type: Transform - - uid: 5295 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-46.5 - parent: 6 - type: Transform - - uid: 5296 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-46.5 - parent: 6 - type: Transform - - uid: 5895 - components: - - pos: -32.5,-49.5 - parent: 6 - type: Transform - - uid: 5897 - components: - - pos: -32.5,-50.5 - parent: 6 - type: Transform - - uid: 5899 - components: - - pos: -32.5,-51.5 - parent: 6 - type: Transform - - uid: 5900 - components: - - pos: -32.5,-52.5 - parent: 6 - type: Transform - - uid: 5901 - components: - - pos: -34.5,-52.5 - parent: 6 - type: Transform - - uid: 7444 - components: - - pos: -33.5,-50.5 - parent: 6 - type: Transform - - uid: 7445 - components: - - pos: -34.5,-51.5 - parent: 6 - type: Transform - - uid: 7446 - components: - - pos: -34.5,-50.5 - parent: 6 - type: Transform - - uid: 7447 - components: - - pos: -33.5,-51.5 - parent: 6 - type: Transform - - uid: 7448 - components: - - pos: -33.5,-52.5 - parent: 6 - type: Transform - - uid: 7449 - components: - - pos: -34.5,-49.5 - parent: 6 - type: Transform - - uid: 7676 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 6 - type: Transform - - uid: 7722 - components: - - pos: -33.5,-34.5 - parent: 6 - type: Transform - - uid: 10880 - components: - - pos: 9.5,12.5 - parent: 6 - type: Transform - - uid: 10884 - components: - - pos: 20.5,12.5 - parent: 6 - type: Transform - - uid: 10901 - components: - - pos: 21.5,-0.5 - parent: 6 - type: Transform - - uid: 10915 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-20.5 - parent: 6 - type: Transform - - uid: 10918 - components: - - rot: 3.141592653589793 rad - pos: 19.5,-32.5 - parent: 6 - type: Transform - - uid: 10938 - components: - - pos: -25.5,-58.5 - parent: 6 - type: Transform - - uid: 10940 - components: - - pos: -23.5,-58.5 - parent: 6 - type: Transform - - uid: 10949 - components: - - pos: -30.5,-58.5 - parent: 6 - type: Transform - - uid: 10987 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-30.5 - parent: 6 - type: Transform - - uid: 10996 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-38.5 - parent: 6 - type: Transform - - uid: 11007 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-26.5 - parent: 6 - type: Transform - - uid: 11011 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-19.5 - parent: 6 - type: Transform - - uid: 11013 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-19.5 - parent: 6 - type: Transform - - uid: 11020 - components: - - rot: 3.141592653589793 rad - pos: -66.5,-16.5 - parent: 6 - type: Transform - - uid: 11036 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,0.5 - parent: 6 - type: Transform - - uid: 11053 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-7.5 - parent: 6 - type: Transform - - uid: 11097 - components: - - pos: -25.5,7.5 - parent: 6 - type: Transform -- proto: ChairFoldingSpawnFolded - entities: - - uid: 6696 - components: - - pos: -84.00176,-46.912598 - parent: 6 - type: Transform -- proto: ChairOfficeDark - entities: - - uid: 676 - components: - - pos: -2.5,-77.5 - parent: 6 - type: Transform - - uid: 1652 - components: - - pos: -6.5,-77.5 - parent: 6 - type: Transform - - uid: 3604 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-49.5 - parent: 6 - type: Transform - - uid: 4514 - components: - - pos: 8.5,-4.5 - parent: 6 - type: Transform - - uid: 4515 - components: - - pos: 9.5,-4.5 - parent: 6 - type: Transform - - uid: 4539 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-32.5 - parent: 6 - type: Transform - - uid: 4540 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-35.5 - parent: 6 - type: Transform - - uid: 4541 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-36.5 - parent: 6 - type: Transform - - uid: 4890 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 6 - type: Transform - - uid: 4902 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-7.5 - parent: 6 - type: Transform - - uid: 4903 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-7.5 - parent: 6 - type: Transform - - uid: 5087 - components: - - rot: 3.141592653589793 rad - pos: -4.5,9.5 - parent: 6 - type: Transform - - uid: 5088 - components: - - rot: 3.141592653589793 rad - pos: -1.5,9.5 - parent: 6 - type: Transform - - uid: 5089 - components: - - rot: 3.141592653589793 rad - pos: -7.5,9.5 - parent: 6 - type: Transform - - uid: 5090 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,7.5 - parent: 6 - type: Transform - - uid: 5091 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,7.5 - parent: 6 - type: Transform - - uid: 5092 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,6.5 - parent: 6 - type: Transform - - uid: 5093 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,6.5 - parent: 6 - type: Transform - - uid: 5094 - components: - - rot: 3.141592653589793 rad - pos: -3.5,9.5 - parent: 6 - type: Transform - - uid: 5095 - components: - - rot: 3.141592653589793 rad - pos: -5.5,9.5 - parent: 6 - type: Transform - - uid: 5105 - components: - - pos: -0.5,-7.5 - parent: 6 - type: Transform - - uid: 5166 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,1.5 - parent: 6 - type: Transform - - uid: 5253 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-29.5 - parent: 6 - type: Transform - - uid: 5254 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-30.5 - parent: 6 - type: Transform - - uid: 5280 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-32.5 - parent: 6 - type: Transform - - uid: 5281 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-32.5 - parent: 6 - type: Transform - - uid: 5357 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-51.5 - parent: 6 - type: Transform - - uid: 5580 - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-19.5 - parent: 6 - type: Transform - - uid: 6199 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-4.5 - parent: 6 - type: Transform - - uid: 7424 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-51.5 - parent: 6 - type: Transform - - uid: 7425 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-52.5 - parent: 6 - type: Transform - - uid: 10896 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-5.5 - parent: 6 - type: Transform - - uid: 10930 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-59.5 - parent: 6 - type: Transform -- proto: ChairOfficeLight - entities: - - uid: 3343 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-22.5 - parent: 6 - type: Transform - - uid: 3377 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-17.5 - parent: 6 - type: Transform - - uid: 3378 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-15.5 - parent: 6 - type: Transform - - uid: 3379 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-22.5 - parent: 6 - type: Transform - - uid: 3380 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-26.5 - parent: 6 - type: Transform - - uid: 3658 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-50.5 - parent: 6 - type: Transform - - uid: 4657 - components: - - pos: -37.5,-17.5 - parent: 6 - type: Transform - - uid: 5297 - components: - - pos: 13.5,-44.5 - parent: 6 - type: Transform - - uid: 6442 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-33.5 - parent: 6 - type: Transform - - uid: 6443 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-31.5 - parent: 6 - type: Transform - - uid: 6444 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-29.5 - parent: 6 - type: Transform -- proto: ChairPilotSeat - entities: - - uid: 4497 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-19.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 4498 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-19.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics -- proto: ChairRitual - entities: - - uid: 7606 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-55.5 - parent: 6 - type: Transform -- proto: ChairWood - entities: - - uid: 7604 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-47.5 - parent: 6 - type: Transform - - uid: 7605 - components: - - pos: -46.5,-51.5 - parent: 6 - type: Transform - - uid: 7614 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-52.5 - parent: 6 - type: Transform - - uid: 7615 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-50.5 - parent: 6 - type: Transform - - uid: 7729 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-37.5 - parent: 6 - type: Transform - - uid: 7730 - components: - - pos: -22.5,-38.5 - parent: 6 - type: Transform - - uid: 13638 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 10465 - type: Transform -- proto: CheapLighter - entities: - - uid: 5903 - components: - - pos: -1.6074085,-46.469543 - parent: 6 - type: Transform - - uid: 11173 - components: - - pos: 8.642222,-18.455147 - parent: 6 - type: Transform - - uid: 13823 - components: - - pos: -70.22803,-10.571672 - parent: 6 - type: Transform -- proto: chem_master - entities: - - uid: 4802 - components: - - pos: -21.5,-14.5 - parent: 6 - type: Transform - - uid: 4804 - components: - - pos: -24.5,-17.5 - parent: 6 - type: Transform -- proto: ChemBag - entities: - - uid: 4215 - components: - - pos: -23.298819,-14.353152 - parent: 6 - type: Transform -- proto: ChemDispenser - entities: - - uid: 4801 - components: - - pos: -22.5,-14.5 - parent: 6 - type: Transform - - uid: 4805 - components: - - pos: -24.5,-16.5 - parent: 6 - type: Transform -- proto: ChemistryHotplate - entities: - - uid: 14047 - components: - - pos: -26.5,-15.5 - parent: 6 - type: Transform -- proto: ChurchOrganInstrument - entities: - - uid: 4477 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-56.5 - parent: 6 - type: Transform -- proto: CigarGold - entities: - - uid: 5181 - components: - - pos: 0.67496234,-1.3079823 - parent: 6 - type: Transform - - uid: 11172 - components: - - pos: 8.358248,-18.327427 - parent: 6 - type: Transform -- proto: CigarGoldCase - entities: - - uid: 5071 - components: - - pos: -22.566296,2.9723496 - parent: 6 - type: Transform - - uid: 13822 - components: - - pos: -70.6114,-10.330423 - parent: 6 - type: Transform -- proto: CigarGoldSpent - entities: - - uid: 5307 - components: - - pos: 13.6908455,-45.489017 - parent: 6 - type: Transform -- proto: CigPackRed - entities: - - uid: 7628 - components: - - pos: -39.471367,-33.595306 - parent: 6 - type: Transform -- proto: CircuitImprinter - entities: - - uid: 4481 - components: - - pos: -9.5,-52.5 - parent: 6 - type: Transform -- proto: CloningPod - entities: - - uid: 4897 - components: - - pos: -34.5,-17.5 - parent: 6 - type: Transform -- proto: ClosetBase - entities: - - uid: 5850 - components: - - pos: -37.5,-27.5 - parent: 6 - 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 - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 3188 - type: ContainerContainer - - uid: 5852 - components: - - pos: -41.5,-26.5 - parent: 6 - 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 - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 5851 - - 5958 - type: ContainerContainer -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 3371 - components: - - pos: -23.5,-24.5 - parent: 6 - 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: 5138 - components: - - pos: 1.5,-9.5 - parent: 6 - 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: 5313 - components: - - pos: 15.5,-45.5 - parent: 6 - 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: 6328 - components: - - pos: -1.5,6.5 - parent: 6 - 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: 6542 - components: - - pos: -56.5,-13.5 - parent: 6 - 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: 7374 - components: - - pos: -4.5,-62.5 - parent: 6 - 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: 7832 - components: - - pos: -23.5,-46.5 - parent: 6 - 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: 7835 - components: - - pos: 22.5,-9.5 - parent: 6 - 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: 10877 - components: - - pos: 13.5,12.5 - parent: 6 - 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: 10904 - components: - - pos: 20.5,-15.5 - parent: 6 - 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: 10906 - components: - - pos: 9.5,-28.5 - parent: 6 - 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: 10936 - components: - - pos: -2.5,-59.5 - parent: 6 - 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: 10943 - components: - - pos: -20.5,-58.5 - parent: 6 - 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: 10950 - components: - - pos: -37.5,-48.5 - parent: 6 - 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: 10984 - components: - - pos: -18.5,-34.5 - parent: 6 - 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: 10989 - components: - - pos: -32.5,-25.5 - parent: 6 - 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: 10994 - components: - - pos: -50.5,-39.5 - parent: 6 - 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: 11009 - components: - - pos: -42.5,-16.5 - parent: 6 - 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: 11018 - components: - - pos: -54.5,-22.5 - parent: 6 - 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: 11022 - components: - - pos: -64.5,-17.5 - parent: 6 - 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: 11032 - components: - - pos: -40.5,-6.5 - parent: 6 - 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: 11044 - components: - - pos: -9.5,-7.5 - parent: 6 - 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: 11164 - components: - - pos: -52.5,-30.5 - parent: 6 - 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: 3372 - components: - - pos: -23.5,-25.5 - parent: 6 - 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: 4907 - components: - - pos: -30.5,7.5 - parent: 6 - 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: 5157 - components: - - pos: 2.5,-9.5 - parent: 6 - 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: 5312 - components: - - pos: 8.5,-45.5 - parent: 6 - 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: 5367 - components: - - pos: -6.5,-52.5 - parent: 6 - 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: 6338 - components: - - pos: -7.5,6.5 - parent: 6 - 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: 6541 - components: - - pos: -56.5,-14.5 - parent: 6 - 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: 7375 - components: - - pos: -4.5,-63.5 - parent: 6 - 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: 7834 - components: - - pos: -22.5,-46.5 - parent: 6 - 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: 7836 - components: - - pos: 23.5,-9.5 - parent: 6 - 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: 10878 - components: - - pos: 16.5,12.5 - parent: 6 - 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: 10905 - components: - - pos: 20.5,-16.5 - parent: 6 - 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: 10907 - components: - - pos: 10.5,-28.5 - parent: 6 - 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: 10937 - components: - - pos: -1.5,-59.5 - parent: 6 - 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: 10942 - components: - - pos: -21.5,-58.5 - parent: 6 - 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: 10951 - components: - - pos: -37.5,-49.5 - parent: 6 - 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: 10983 - components: - - pos: -17.5,-34.5 - parent: 6 - 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: 10990 - components: - - pos: -32.5,-26.5 - parent: 6 - 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: 10993 - components: - - pos: -50.5,-40.5 - parent: 6 - 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: 11008 - components: - - pos: -42.5,-15.5 - parent: 6 - 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: 11017 - components: - - pos: -53.5,-22.5 - parent: 6 - 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: 11023 - components: - - pos: -65.5,-17.5 - parent: 6 - 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: 11031 - components: - - pos: -40.5,-5.5 - parent: 6 - 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: 11043 - components: - - pos: -8.5,-7.5 - parent: 6 - 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: 11165 - components: - - pos: -51.5,-30.5 - parent: 6 - 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: 13825 - components: - - pos: -68.5,-13.5 - parent: 6 - 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: ClosetJanitorFilled - entities: - - uid: 13761 - components: - - pos: 25.5,4.5 - parent: 6 - 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: ClosetL3Filled - entities: - - uid: 10954 - components: - - pos: -38.5,-58.5 - parent: 6 - 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: ClosetL3JanitorFilled - entities: - - uid: 1426 - components: - - pos: 28.5,0.5 - parent: 6 - 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: ClosetL3ScienceFilled - entities: - - uid: 5365 - components: - - pos: -6.5,-50.5 - parent: 6 - 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: ClosetL3VirologyFilled - entities: - - uid: 10991 - components: - - pos: -32.5,-24.5 - parent: 6 - 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: ClosetMaintenanceFilledRandom - entities: - - uid: 5314 - components: - - pos: 16.5,-45.5 - parent: 6 - 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: 10881 - components: - - pos: 18.5,12.5 - parent: 6 - 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: 10892 - components: - - pos: 23.5,3.5 - parent: 6 - 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: 10893 - components: - - pos: 11.5,12.5 - parent: 6 - 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: 10908 - components: - - pos: 11.5,-28.5 - parent: 6 - 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: 10909 - components: - - pos: 20.5,-17.5 - parent: 6 - 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: 10920 - components: - - pos: 17.5,-32.5 - parent: 6 - 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: 10945 - components: - - pos: -28.5,-58.5 - parent: 6 - 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: 10952 - components: - - pos: -37.5,-50.5 - parent: 6 - 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: 10953 - components: - - pos: -37.5,-58.5 - parent: 6 - 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: 10976 - components: - - pos: -23.5,-41.5 - parent: 6 - 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: 10986 - components: - - pos: -28.5,-29.5 - parent: 6 - 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: 10992 - components: - - pos: -32.5,-27.5 - parent: 6 - 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: 10995 - components: - - pos: -51.5,-41.5 - parent: 6 - 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: 10999 - components: - - pos: -51.5,-28.5 - parent: 6 - 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: 11010 - components: - - pos: -42.5,-17.5 - parent: 6 - 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: 11015 - components: - - pos: -43.5,-19.5 - parent: 6 - 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: 11019 - components: - - pos: -55.5,-22.5 - parent: 6 - 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: 11024 - components: - - pos: -66.5,-17.5 - parent: 6 - 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: 11029 - components: - - pos: -40.5,-4.5 - parent: 6 - 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: 11039 - components: - - pos: -40.5,-2.5 - parent: 6 - 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: 11047 - components: - - pos: -10.5,-7.5 - parent: 6 - 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: ClosetRadiationSuitFilled - entities: - - uid: 5366 - components: - - pos: -6.5,-51.5 - parent: 6 - 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: 11030 - components: - - pos: -40.5,3.5 - parent: 6 - 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: ClosetToolFilled - entities: - - uid: 3403 - components: - - pos: -50.5,-19.5 - parent: 6 - 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: 6362 - components: - - pos: -32.5,4.5 - parent: 6 - 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: 6683 - components: - - pos: -24.5,-61.5 - parent: 6 - 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: 10882 - components: - - pos: 19.5,12.5 - parent: 6 - 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: 10910 - components: - - pos: 20.5,-18.5 - parent: 6 - 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: 10946 - components: - - pos: -29.5,-58.5 - parent: 6 - 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: 10985 - components: - - pos: -19.5,-34.5 - parent: 6 - 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: 11000 - components: - - pos: -52.5,-28.5 - parent: 6 - 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: 10865 - components: - - pos: -20.5,8.5 - parent: 6 - 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: 10868 - components: - - pos: -25.5,-40.5 - parent: 6 - 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: 10870 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-49.5 - parent: 6 - 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: 10872 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-49.5 - parent: 6 - 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: 10874 - components: - - pos: 22.5,-6.5 - parent: 6 - 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: 10876 - components: - - pos: 24.5,10.5 - parent: 6 - 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: 10888 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-3.5 - parent: 6 - 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: 11041 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-17.5 - parent: 6 - 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: 11052 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 6 - 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: 10866 - components: - - pos: -21.5,8.5 - parent: 6 - 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: 10867 - components: - - pos: -24.5,-40.5 - parent: 6 - 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: 10869 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-49.5 - parent: 6 - 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: 10871 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-49.5 - parent: 6 - 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: 10873 - components: - - pos: 25.5,10.5 - parent: 6 - 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: 10875 - components: - - pos: 23.5,-6.5 - parent: 6 - 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: 10889 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-4.5 - parent: 6 - 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: 11040 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-16.5 - parent: 6 - 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: 11051 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,0.5 - parent: 6 - 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: ClosetWallMaintenanceFilledRandom - entities: - - uid: 10903 - components: - - pos: 21.5,-6.5 - parent: 6 - 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: 10935 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-49.5 - parent: 6 - 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: 10944 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-49.5 - parent: 6 - 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: 11042 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 6 - 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: ClosetWallOrange - entities: - - uid: 5910 - components: - - rot: 3.141592653589793 rad - pos: 13.5,17.5 - parent: 6 - 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: ClothingBeltChampion - entities: - - uid: 5067 - components: - - pos: -18.590635,2.986541 - parent: 6 - type: Transform -- proto: ClothingBeltHolster - entities: - - uid: 2814 - components: - - pos: 12.3347225,30.689383 - parent: 6 - type: Transform -- proto: ClothingBeltUtilityFilled - entities: - - uid: 4883 - components: - - pos: -33.597805,-6.3027463 - parent: 6 - type: Transform - - uid: 5351 - components: - - pos: 3.5653093,-51.38192 - parent: 6 - type: Transform - - uid: 5591 - components: - - pos: 13.270581,-42.52453 - parent: 6 - type: Transform - - uid: 6087 - components: - - pos: 0.4612531,-75.33451 - parent: 6 - type: Transform - - uid: 6476 - components: - - pos: 9.50393,-31.536753 - parent: 6 - type: Transform - - uid: 7599 - components: - - pos: -43.48504,-50.607742 - parent: 6 - type: Transform -- proto: ClothingEyesGlasses - entities: - - uid: 4833 - components: - - pos: -18.818558,-21.437395 - parent: 6 - type: Transform - - uid: 7750 - components: - - pos: -20.560797,-41.40714 - parent: 6 - type: Transform - - uid: 7800 - components: - - pos: 8.529046,-15.801388 - parent: 6 - type: Transform - - uid: 14277 - components: - - pos: 13.630257,-16.514284 - parent: 6 - type: Transform -- proto: ClothingEyesGlassesGar - entities: - - uid: 10900 - components: - - pos: 22.311544,-5.3524156 - parent: 6 - type: Transform -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 4634 - components: - - pos: -2.659992,-14.521056 - parent: 6 - type: Transform -- proto: ClothingHandsGlovesColorOrange - entities: - - uid: 5956 - components: - - pos: -21.92255,-8.610228 - parent: 6 - type: Transform -- proto: ClothingHandsGlovesColorPurple - entities: - - uid: 2743 - components: - - pos: -47.56112,16.321089 - parent: 6 - type: Transform -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 4885 - components: - - pos: -28.684895,-5.5902634 - parent: 6 - type: Transform - - uid: 5195 - components: - - pos: -18.228912,8.500882 - parent: 6 - type: Transform -- proto: ClothingHandsGlovesColorYellowBudget - entities: - - uid: 5385 - components: - - pos: -1.5610592,-56.331245 - parent: 6 - type: Transform - - uid: 6088 - components: - - pos: 0.81622213,-75.54737 - parent: 6 - type: Transform -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 6429 - components: - - pos: -26.517832,-26.482176 - parent: 6 - type: Transform -- proto: ClothingHandsGlovesPowerglove - entities: - - uid: 10204 - components: - - pos: -56.53125,-41.442997 - parent: 6 - type: Transform -- proto: ClothingHandsGlovesRobohands - entities: - - uid: 5401 - components: - - pos: -16.90962,-48.44467 - parent: 6 - type: Transform -- proto: ClothingHeadFishCap - entities: - - uid: 9714 - components: - - pos: -1.41823,-31.369633 - parent: 6 - type: Transform -- proto: ClothingHeadHatAnimalCat - entities: - - uid: 13482 - components: - - pos: 21.631893,-31.396904 - parent: 6 - type: Transform -- proto: ClothingHeadHatAnimalCatBlack - entities: - - uid: 4310 - components: - - pos: 21.276922,-31.396904 - parent: 6 - type: Transform - - uid: 6180 - components: - - pos: -22.575693,-8.482508 - parent: 6 - type: Transform -- proto: ClothingHeadHatAnimalCatBrown - entities: - - uid: 13481 - components: - - pos: 21.475706,-31.59558 - parent: 6 - type: Transform -- proto: ClothingHeadHatAnimalMonkey - entities: - - uid: 3721 - components: - - pos: -18.479383,-62.25574 - parent: 6 - type: Transform -- proto: ClothingHeadHatBeaverHat - entities: - - uid: 6418 - components: - - pos: -46.487278,-24.315676 - parent: 6 - type: Transform -- proto: ClothingHeadHatBunny - entities: - - uid: 6375 - components: - - pos: -36.41654,22.578691 - parent: 6 - type: Transform -- proto: ClothingHeadHatCardborg - entities: - - uid: 7416 - components: - - pos: -17.110708,-47.88917 - parent: 6 - type: Transform -- proto: ClothingHeadHatFedoraBrown - entities: - - uid: 5848 - components: - - pos: -37.493713,-26.298307 - parent: 6 - type: Transform - - uid: 7607 - components: - - pos: -50.580036,-49.370796 - parent: 6 - type: Transform -- proto: ClothingHeadHatFez - entities: - - uid: 3820 - components: - - pos: -27.2236,-61.403152 - parent: 6 - type: Transform -- proto: ClothingHeadHatGreensoftFlipped - entities: - - uid: 6240 - components: - - pos: -47.612755,-39.422966 - parent: 6 - type: Transform -- proto: ClothingHeadHatHairflower - entities: - - uid: 5070 - components: - - pos: -22.339115,2.4756608 - parent: 6 - type: Transform -- proto: ClothingHeadHatHoodCulthood - entities: - - uid: 5966 - components: - - pos: -26.233181,-56.472523 - parent: 6 - type: Transform -- proto: ClothingHeadHatMimesoftFlipped - entities: - - uid: 5627 - components: - - pos: 15.754807,-29.252306 - parent: 6 - type: Transform -- proto: ClothingHeadHatOutlawHat - entities: - - uid: 13640 - components: - - pos: 9.024567,-4.03096 - parent: 10465 - type: Transform -- proto: ClothingHeadHatPaper - entities: - - uid: 6033 - components: - - pos: 15.44382,19.737957 - parent: 6 - type: Transform - - uid: 6034 - components: - - pos: 15.330231,19.596046 - parent: 6 - type: Transform -- proto: ClothingHeadHatPirate - entities: - - uid: 5306 - components: - - pos: 13.502977,-44.680126 - parent: 6 - type: Transform -- proto: ClothingHeadHatPwig - entities: - - uid: 14278 - components: - - pos: 15.505256,-18.40285 - parent: 6 - type: Transform -- proto: ClothingHeadHatRedwizard - entities: - - uid: 5856 - components: - - pos: -41.729218,-27.29859 - parent: 6 - type: Transform -- proto: ClothingHeadHatSurgcapPurple - entities: - - uid: 6193 - components: - - pos: -32.80036,-14.343598 - parent: 6 - type: Transform -- proto: ClothingHeadHatUshanka - entities: - - uid: 7723 - components: - - pos: -32.71416,-34.369083 - parent: 6 - type: Transform -- proto: ClothingHeadHatWelding - entities: - - uid: 5200 - components: - - pos: -12.674489,8.702609 - parent: 6 - type: Transform - - uid: 5389 - components: - - pos: -2.2581992,-56.345436 - parent: 6 - type: Transform -- proto: ClothingHeadHatWizard - entities: - - uid: 5855 - components: - - pos: -39.71299,-26.347786 - parent: 6 - type: Transform -- proto: ClothingHeadHatXmasCrown - entities: - - uid: 3207 - components: - - pos: -42.53268,27.471987 - parent: 6 - type: Transform -- proto: ClothingHeadHelmetEVA - entities: - - uid: 4438 - components: - - pos: -44.64013,-14.1675 - parent: 6 - type: Transform - - uid: 4439 - components: - - pos: -44.633694,-15.198934 - parent: 6 - type: Transform -- proto: ClothingHeadHelmetSyndicate - entities: - - uid: 3911 - components: - - pos: -69.71052,-17.335955 - parent: 6 - type: Transform -- proto: ClothingMaskBreath - entities: - - uid: 7379 - components: - - pos: -7.2765384,-61.424934 - parent: 6 - type: Transform - - uid: 7380 - components: - - pos: -7.4223714,-61.674934 - parent: 6 - type: Transform - - uid: 13641 - components: - - pos: 7.330429,-7.3961945 - parent: 10465 - type: Transform -- proto: ClothingMaskGas - entities: - - uid: 4886 - components: - - pos: -28.38672,-5.3348236 - parent: 6 - type: Transform - - uid: 5194 - components: - - pos: -18.569683,8.614411 - parent: 6 - type: Transform - - uid: 7221 - components: - - pos: 22.363403,-22.300692 - parent: 6 - type: Transform -- proto: ClothingNeckAromanticPin - entities: - - uid: 3341 - components: - - pos: -22.539303,-43.57677 - parent: 6 - type: Transform -- proto: ClothingNeckAsexualPin - entities: - - uid: 14049 - components: - - pos: -42.895363,-52.494324 - parent: 6 - type: Transform -- proto: ClothingNeckCloakHerald - entities: - - uid: 13643 - components: - - pos: 4.476425,-3.5335236 - parent: 10465 - type: Transform -- proto: ClothingNeckCloakMiner - entities: - - uid: 8032 - components: - - pos: -57.530975,-25.489244 - parent: 6 - type: Transform -- proto: ClothingNeckCloakTrans - entities: - - uid: 2745 - components: - - pos: -47.54692,14.462054 - parent: 6 - type: Transform - - uid: 14300 - components: - - pos: 44.508797,11.452726 - parent: 6 - type: Transform -- proto: ClothingNeckIntersexPin - entities: - - uid: 14059 - components: - - pos: 13.362957,-45.52958 - parent: 6 - type: Transform -- proto: ClothingNeckLesbianPin - entities: - - uid: 14280 - components: - - pos: 16.498747,-16.490376 - parent: 6 - type: Transform -- proto: ClothingNeckLGBTPin - entities: - - uid: 6188 - components: - - pos: -61.384766,-13.488897 - parent: 6 - type: Transform -- proto: ClothingNeckNonBinaryPin - entities: - - uid: 14060 - components: - - pos: 6.37096,8.389981 - parent: 6 - type: Transform -- proto: ClothingNeckPansexualPin - entities: - - uid: 14281 - components: - - pos: -9.642922,-9.590724 - parent: 6 - type: Transform -- proto: ClothingNeckStethoscope - entities: - - uid: 5643 - components: - - pos: -36.953064,-18.32184 - parent: 6 - type: Transform - - uid: 14318 - components: - - pos: -18.741777,-21.359842 - parent: 6 - type: Transform -- proto: ClothingNeckTransPin - entities: - - uid: 14282 - components: - - pos: -17.984644,8.731195 - parent: 6 - type: Transform -- proto: ClothingOuterCardborg - entities: - - uid: 7417 - components: - - pos: -17.131544,-48.32667 - parent: 6 - type: Transform -- proto: ClothingOuterCoatInspector - entities: - - uid: 5955 - components: - - pos: -37.593105,-26.511175 - parent: 6 - type: Transform -- proto: ClothingOuterCoatJensen - entities: - - uid: 7627 - components: - - pos: -39.638035,-33.55364 - parent: 6 - type: Transform -- proto: ClothingOuterCoatPirate - entities: - - uid: 5305 - components: - - pos: 13.233199,-44.46726 - parent: 6 - type: Transform -- proto: ClothingOuterHardsuitEVA - entities: - - uid: 4440 - components: - - pos: -44.42738,-14.373787 - parent: 6 - type: Transform - - uid: 4441 - components: - - pos: -44.42738,-15.346282 - parent: 6 - type: Transform -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 4706 - components: - - pos: 17.283058,4.5168414 - parent: 6 - type: Transform - - uid: 4707 - components: - - pos: 17.623829,4.4458857 - parent: 6 - type: Transform -- proto: ClothingOuterHoodieChaplain - entities: - - uid: 7596 - components: - - pos: -28.490675,-47.406208 - parent: 6 - type: Transform -- proto: ClothingOuterRobesCult - entities: - - uid: 5965 - components: - - pos: -26.431963,-56.54348 - parent: 6 - type: Transform -- proto: ClothingOuterSuitMonkey - entities: - - uid: 3744 - components: - - pos: -18.479383,-62.49699 - parent: 6 - type: Transform -- proto: ClothingOuterVestWebMerc - entities: - - uid: 13479 - components: - - pos: 13.658581,-51.51667 - parent: 6 - type: Transform -- proto: ClothingOuterWinterMiner - entities: - - uid: 8043 - components: - - pos: -55.439804,-27.551037 - parent: 6 - type: Transform -- proto: ClothingOuterWinterPara - entities: - - uid: 14037 - components: - - pos: -30.357164,-18.251669 - parent: 6 - type: Transform -- proto: ClothingOuterWizard - entities: - - uid: 5961 - components: - - pos: -39.343822,-26.376167 - parent: 6 - type: Transform -- proto: ClothingOuterWizardRed - entities: - - uid: 5962 - components: - - pos: -41.544636,-27.468884 - parent: 6 - type: Transform -- proto: ClothingShoesBootsJack - entities: - - uid: 6043 - components: - - pos: 12.618698,30.334604 - parent: 6 - type: Transform -- proto: ClothingShoesBootsMag - entities: - - uid: 4444 - components: - - pos: -44.633694,-17.173391 - parent: 6 - type: Transform - - uid: 4445 - components: - - pos: -44.397903,-17.438618 - parent: 6 - type: Transform -- proto: ClothingShoesBootsPerformer - entities: - - uid: 5632 - components: - - pos: 14.32073,-28.784 - parent: 6 - type: Transform -- proto: ClothingShoesCult - entities: - - uid: 5859 - components: - - pos: -26.659143,-56.614433 - parent: 6 - type: Transform -- proto: ClothingShoesFlippers - entities: - - uid: 3817 - components: - - pos: -26.744436,-61.48649 - parent: 6 - type: Transform -- proto: ClothingShoeSlippersDuck - entities: - - uid: 5849 - components: - - pos: -37.6641,-26.82338 - parent: 6 - type: Transform -- proto: ClothingShoesWizard - entities: - - uid: 5854 - components: - - pos: -39.74139,-26.773518 - parent: 6 - type: Transform - - uid: 5960 - components: - - pos: -41.743416,-27.69594 - parent: 6 - type: Transform -- proto: ClothingUnderSocksBee - entities: - - uid: 4295 - components: - - pos: 21.313404,-44.363068 - parent: 6 - type: Transform - - uid: 13463 - components: - - pos: -25.79552,28.23861 - parent: 6 - type: Transform -- proto: ClothingUnderSocksCoder - entities: - - uid: 4318 - components: - - pos: 21.540586,-44.67527 - parent: 6 - type: Transform -- proto: ClothingUniformJumpskirtColorDarkGreen - entities: - - uid: 6242 - components: - - pos: -47.32878,-39.380394 - parent: 6 - type: Transform -- proto: ClothingUniformJumpskirtJanimaid - entities: - - uid: 5725 - components: - - pos: -21.58178,-8.3689785 - parent: 6 - type: Transform -- proto: ClothingUniformJumpskirtParamedic - entities: - - uid: 14035 - components: - - pos: -30.648829,-18.251669 - parent: 6 - type: Transform -- proto: ClothingUniformJumpskirtPerformer - entities: - - uid: 5633 - components: - - pos: 14.562109,-28.727236 - parent: 6 - type: Transform -- proto: ClothingUniformJumpsuitColorDarkGreen - entities: - - uid: 6241 - components: - - pos: -47.57016,-39.281055 - parent: 6 - type: Transform -- proto: ClothingUniformJumpsuitParamedic - entities: - - uid: 14036 - components: - - pos: -30.357164,-18.480837 - parent: 6 - type: Transform -- proto: ComfyChair - entities: - - uid: 27 - components: - - pos: -1.5,0.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 43 - components: - - pos: 0.5,0.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 45 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 47 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 48 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-2.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 56 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-2.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 57 - components: - - pos: -0.5,0.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 59 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 374 - components: - - pos: 9.5,-18.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 419 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 598 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-2.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 4666 - components: - - pos: 11.5,9.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5064 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-6.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5132 - components: - - pos: -11.5,-9.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5134 - components: - - pos: -9.5,-9.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5896 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-46.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6005 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6009 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-26.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6220 - components: - - pos: -39.5,-38.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 13813 - components: - - pos: -69.5,-10.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 13814 - components: - - rot: 1.5707963267948966 rad - pos: -70.5,-11.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 13815 - components: - - rot: 1.5707963267948966 rad - pos: -70.5,-12.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 13816 - components: - - rot: 3.141592653589793 rad - pos: -69.5,-13.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics -- proto: ComputerAlert - entities: - - uid: 609 - components: - - pos: -3.5,10.5 - parent: 6 - type: Transform - - uid: 4840 - components: - - pos: -26.5,-5.5 - parent: 6 - type: Transform - - uid: 7382 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-63.5 - parent: 6 - type: Transform -- proto: ComputerAnalysisConsole - entities: - - uid: 5649 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-78.5 - parent: 6 - type: Transform -- proto: computerBodyScanner - entities: - - uid: 4544 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-48.5 - parent: 6 - type: Transform -- proto: ComputerBroken - entities: - - uid: 5538 - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-36.5 - parent: 6 - type: Transform - - uid: 6685 - components: - - rot: 3.141592653589793 rad - pos: -78.5,-46.5 - parent: 6 - type: Transform - - uid: 6686 - components: - - pos: -78.5,-42.5 - parent: 6 - type: Transform - - uid: 11166 - components: - - pos: -54.5,-31.5 - parent: 6 - type: Transform - - uid: 13629 - components: - - pos: 8.5,-1.5 - parent: 10465 - type: Transform -- proto: ComputerCargoOrders - entities: - - uid: 4537 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-35.5 - parent: 6 - type: Transform - - uid: 5084 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,9.5 - parent: 6 - type: Transform - - uid: 5639 - components: - - pos: 10.5,-31.5 - parent: 6 - type: Transform -- proto: ComputerCargoShuttle - entities: - - uid: 4538 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-36.5 - parent: 6 - type: Transform -- proto: ComputerCloningConsole - entities: - - uid: 4898 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-15.5 - parent: 6 - type: Transform -- proto: ComputerComms - entities: - - uid: 611 - components: - - pos: -4.5,10.5 - parent: 6 - type: Transform - - uid: 4386 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,1.5 - parent: 6 - type: Transform -- proto: ComputerCrewMonitoring - entities: - - uid: 1516 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-22.5 - parent: 6 - type: Transform - - uid: 5083 - components: - - pos: -1.5,10.5 - parent: 6 - type: Transform -- proto: ComputerCriminalRecords - entities: - - uid: 315 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-1.5 - parent: 6 - type: Transform - - uid: 605 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,6.5 - parent: 6 - type: Transform - - uid: 4512 - components: - - pos: 8.5,-3.5 - parent: 6 - type: Transform - - uid: 4592 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-29.5 - parent: 6 - type: Transform -- proto: ComputerFrame - entities: - - uid: 5276 - components: - - pos: 1.5,-31.5 - parent: 6 - type: Transform - - uid: 5277 - components: - - pos: 2.5,-31.5 - parent: 6 - type: Transform - - uid: 5648 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-78.5 - parent: 6 - type: Transform -- proto: ComputerId - entities: - - uid: 608 - components: - - pos: -5.5,10.5 - parent: 6 - type: Transform - - uid: 4399 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 6 - type: Transform -- proto: ComputerMedicalRecords - entities: - - uid: 1611 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-25.5 - parent: 6 - type: Transform -- proto: ComputerPowerMonitoring - entities: - - uid: 467 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 6 - type: Transform - - uid: 4839 - components: - - pos: -27.5,-5.5 - parent: 6 - type: Transform - - uid: 5037 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,2.5 - parent: 6 - type: Transform -- proto: ComputerRadar - entities: - - uid: 5286 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-59.5 - parent: 6 - type: Transform -- proto: ComputerResearchAndDevelopment - entities: - - uid: 610 - components: - - pos: -7.5,10.5 - parent: 6 - type: Transform - - uid: 1653 - components: - - pos: -0.5,-75.5 - parent: 6 - type: Transform - - uid: 3657 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-50.5 - parent: 6 - type: Transform - - uid: 5356 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-52.5 - parent: 6 - type: Transform -- proto: ComputerShuttleCargo - entities: - - uid: 4535 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-36.5 - parent: 6 - type: Transform -- proto: ComputerSolarControl - entities: - - uid: 5039 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,1.5 - parent: 6 - type: Transform - - uid: 5085 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,7.5 - parent: 6 - type: Transform - - uid: 5575 - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-19.5 - parent: 6 - type: Transform - - uid: 6677 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-62.5 - parent: 6 - type: Transform - - uid: 7219 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-22.5 - parent: 6 - type: Transform - - uid: 8190 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,17.5 - parent: 6 - type: Transform -- proto: ComputerStationRecords - entities: - - uid: 5086 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,9.5 - parent: 6 - type: Transform -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 606 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,7.5 - parent: 6 - type: Transform - - uid: 3427 - components: - - pos: 16.5,0.5 - parent: 6 - type: Transform - - uid: 4513 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-4.5 - parent: 6 - type: Transform - - uid: 4607 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-30.5 - parent: 6 - type: Transform -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 14033 - components: - - pos: -2.5,-54.5 - parent: 6 - type: Transform -- proto: ComputerTelevision - entities: - - uid: 4656 - components: - - pos: -39.5,-17.5 - parent: 6 - type: Transform - - uid: 5846 - components: - - pos: -35.5,-27.5 - parent: 6 - type: Transform - - uid: 6217 - components: - - pos: -45.5,-36.5 - parent: 6 - type: Transform - - uid: 6218 - components: - - pos: -40.5,-38.5 - parent: 6 - type: Transform - - uid: 7598 - components: - - pos: -46.5,-54.5 - parent: 6 - type: Transform -- proto: ConveyorBelt - entities: - - uid: 5433 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-34.5 - parent: 6 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13053 - Forward: - - port: Left - uid: 13053 - Off: - - port: Middle - uid: 13053 - type: SignalReceiver - - uid: 5434 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-34.5 - parent: 6 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13053 - Forward: - - port: Left - uid: 13053 - Off: - - port: Middle - uid: 13053 - type: SignalReceiver - - type: ActiveConveyor - - uid: 5435 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-34.5 - parent: 6 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13053 - Forward: - - port: Left - uid: 13053 - Off: - - port: Middle - uid: 13053 - type: SignalReceiver - - uid: 5436 - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-34.5 - parent: 6 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13053 - Forward: - - port: Left - uid: 13053 - Off: - - port: Middle - uid: 13053 - type: SignalReceiver - - uid: 5437 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-34.5 - parent: 6 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13053 - Forward: - - port: Left - uid: 13053 - Off: - - port: Middle - uid: 13053 - type: SignalReceiver - - uid: 5438 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-34.5 - parent: 6 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13053 - Forward: - - port: Left - uid: 13053 - Off: - - port: Middle - uid: 13053 - type: SignalReceiver - - uid: 5439 - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-34.5 - parent: 6 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13053 - Forward: - - port: Left - uid: 13053 - Off: - - port: Middle - uid: 13053 - type: SignalReceiver - - uid: 5440 - components: - - rot: 3.141592653589793 rad - pos: -51.5,-35.5 - parent: 6 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13053 - Forward: - - port: Left - uid: 13053 - Off: - - port: Middle - uid: 13053 - type: SignalReceiver - - uid: 6494 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-34.5 - parent: 6 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 6520 - Forward: - - port: Left - uid: 6520 - Off: - - port: Middle - uid: 6520 - type: SignalReceiver - - uid: 6495 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-34.5 - parent: 6 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 6520 - Forward: - - port: Left - uid: 6520 - Off: - - port: Middle - uid: 6520 - type: SignalReceiver - - uid: 6496 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-34.5 - parent: 6 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 6520 - Forward: - - port: Left - uid: 6520 - Off: - - port: Middle - uid: 6520 - type: SignalReceiver - - uid: 6497 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-34.5 - parent: 6 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 6520 - Forward: - - port: Left - uid: 6520 - Off: - - port: Middle - uid: 6520 - type: SignalReceiver - - uid: 6498 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-34.5 - parent: 6 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 6520 - Forward: - - port: Left - uid: 6520 - Off: - - port: Middle - uid: 6520 - type: SignalReceiver - - uid: 6499 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-38.5 - parent: 6 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 6520 - Forward: - - port: Left - uid: 6520 - Off: - - port: Middle - uid: 6520 - type: SignalReceiver - - uid: 6500 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-38.5 - parent: 6 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 6520 - Forward: - - port: Left - uid: 6520 - Off: - - port: Middle - uid: 6520 - type: SignalReceiver - - uid: 6501 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-38.5 - parent: 6 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 6520 - Forward: - - port: Left - uid: 6520 - Off: - - port: Middle - uid: 6520 - type: SignalReceiver - - uid: 6502 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-38.5 - parent: 6 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 6520 - Forward: - - port: Left - uid: 6520 - Off: - - port: Middle - uid: 6520 - type: SignalReceiver - - uid: 6503 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-38.5 - parent: 6 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 6520 - Forward: - - port: Left - uid: 6520 - Off: - - port: Middle - uid: 6520 - type: SignalReceiver -- proto: CowToolboxFilled - entities: - - uid: 10897 - components: - - pos: 22.70911,-5.4801354 - parent: 6 - type: Transform -- proto: CrateEmptySpawner - entities: - - uid: 6504 - components: - - pos: 16.5,-40.5 - parent: 6 - type: Transform - - uid: 6505 - components: - - pos: 19.5,-41.5 - parent: 6 - type: Transform - - uid: 6506 - components: - - pos: 19.5,-42.5 - parent: 6 - type: Transform - - uid: 6507 - components: - - pos: 19.5,-43.5 - parent: 6 - type: Transform - - uid: 6510 - components: - - pos: 15.5,-35.5 - parent: 6 - type: Transform - - uid: 6519 - components: - - pos: 16.5,-43.5 - parent: 6 - type: Transform -- proto: CrateEngineering - entities: - - uid: 6365 - components: - - pos: -32.5,2.5 - parent: 6 - 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: CrateEngineeringAMEJar - entities: - - uid: 4892 - components: - - pos: -34.5,2.5 - parent: 6 - 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: CrateEngineeringAMEShielding - entities: - - uid: 4893 - components: - - pos: -34.5,1.5 - parent: 6 - 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: CrateEngineeringCableBulk - entities: - - uid: 5577 - components: - - pos: -62.5,-18.5 - parent: 6 - 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: 6361 - components: - - pos: -36.5,-4.5 - parent: 6 - 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: 7223 - components: - - pos: 22.5,-20.5 - parent: 6 - 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: CrateEngineeringCableHV - entities: - - uid: 8191 - components: - - pos: -24.5,18.5 - parent: 6 - 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: CrateEngineeringSecure - entities: - - uid: 6363 - components: - - pos: -32.5,3.5 - parent: 6 - 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: CrateFilledSpawner - entities: - - uid: 6508 - components: - - pos: 15.5,-36.5 - parent: 6 - type: Transform - - uid: 6509 - components: - - pos: 16.5,-35.5 - parent: 6 - type: Transform -- proto: CrateMedicalSurgery - entities: - - uid: 4542 - components: - - pos: -14.5,-47.5 - parent: 6 - 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: CrateServiceBureaucracy - entities: - - uid: 6517 - components: - - pos: 16.5,-41.5 - parent: 6 - 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: CrateServiceJanitorialSupplies - entities: - - uid: 7635 - components: - - pos: 24.5,7.5 - parent: 6 - 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: CrateServiceReplacementLights - entities: - - uid: 6518 - components: - - pos: 16.5,-42.5 - parent: 6 - 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: CrateSurgery - entities: - - uid: 14290 - components: - - pos: -32.5,-17.5 - parent: 6 - 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: CrayonBox - entities: - - uid: 5458 - components: - - pos: -52.454147,-16.514137 - parent: 6 - type: Transform - - uid: 14321 - components: - - pos: -52.454147,-16.514137 - parent: 6 - type: Transform -- proto: Crematorium - entities: - - uid: 4418 - components: - - pos: -29.5,-54.5 - parent: 6 - 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: CrewMonitoringServer - entities: - - uid: 3582 - components: - - pos: -24.5,1.5 - parent: 6 - type: Transform -- proto: Crowbar - entities: - - uid: 5377 - components: - - pos: -3.5277874,-56.48735 - parent: 6 - type: Transform -- proto: CrowbarRed - entities: - - uid: 6385 - components: - - pos: -7.5256,-72.580124 - parent: 6 - type: Transform -- proto: CryoPod - entities: - - uid: 4646 - components: - - pos: -29.5,-15.5 - parent: 6 - type: Transform -- proto: CryostasisBeaker - entities: - - uid: 4647 - components: - - pos: -28.674484,-14.221745 - parent: 6 - type: Transform - - uid: 14040 - components: - - pos: -28.500662,-14.437793 - parent: 6 - type: Transform -- proto: CultAltarSpawner - entities: - - uid: 5968 - components: - - pos: -25.5,-56.5 - parent: 6 - type: Transform -- proto: DawInstrumentMachineCircuitboard - entities: - - uid: 1440 - components: - - pos: -47.58592,-6.486152 - parent: 6 - type: Transform - - uid: 5630 - components: - - pos: 14.519512,-28.344076 - parent: 6 - type: Transform -- proto: DeployableBarrier - entities: - - uid: 6487 - components: - - anchored: False - pos: 12.5,-4.5 - parent: 6 - type: Transform - - uid: 14077 - components: - - anchored: False - pos: 13.5,-4.5 - parent: 6 - type: Transform -- proto: DiceBag - entities: - - uid: 5508 - components: - - pos: -51.465637,-16.68054 - parent: 6 - type: Transform - - uid: 6028 - components: - - pos: 14.364713,19.581854 - parent: 6 - type: Transform -- proto: DiseaseDiagnoser - entities: - - uid: 3410 - components: - - pos: -21.5,-32.5 - parent: 6 - type: Transform -- proto: DiseaseSwab - entities: - - uid: 6380 - components: - - pos: -7.309714,-73.4543 - parent: 6 - type: Transform - - uid: 6383 - components: - - pos: -7.389226,-73.29536 - parent: 6 - type: Transform -- proto: DisposalBend - entities: - - uid: 12566 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-11.5 - parent: 6 - type: Transform - - uid: 12592 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-20.5 - parent: 6 - type: Transform - - uid: 12594 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-20.5 - parent: 6 - type: Transform - - uid: 12595 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-21.5 - parent: 6 - type: Transform - - uid: 12603 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-21.5 - parent: 6 - type: Transform - - uid: 12609 - components: - - rot: 3.141592653589793 rad - pos: -51.5,-27.5 - parent: 6 - type: Transform - - uid: 12610 - components: - - pos: -49.5,-27.5 - parent: 6 - type: Transform - - uid: 12619 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-35.5 - parent: 6 - type: Transform - - uid: 12680 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-21.5 - parent: 6 - type: Transform - - uid: 12695 - components: - - pos: -15.5,6.5 - parent: 6 - type: Transform - - uid: 12743 - components: - - pos: -3.5,4.5 - parent: 6 - type: Transform - - uid: 12747 - components: - - pos: -4.5,8.5 - parent: 6 - type: Transform - - uid: 12794 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,7.5 - parent: 6 - type: Transform - - uid: 12795 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,7.5 - parent: 6 - type: Transform - - uid: 12816 - components: - - pos: 12.5,1.5 - parent: 6 - type: Transform - - uid: 12822 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-4.5 - parent: 6 - type: Transform - - uid: 12823 - components: - - pos: 14.5,-4.5 - parent: 6 - type: Transform - - uid: 12826 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-6.5 - parent: 6 - type: Transform - - uid: 12878 - components: - - pos: 30.5,7.5 - parent: 6 - type: Transform - - uid: 12901 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-11.5 - parent: 6 - type: Transform - - uid: 12946 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-35.5 - parent: 6 - type: Transform - - uid: 12955 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-39.5 - parent: 6 - type: Transform - - uid: 12977 - components: - - pos: -2.5,-44.5 - parent: 6 - type: Transform - - uid: 12986 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-54.5 - parent: 6 - type: Transform - - uid: 13020 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-44.5 - parent: 6 - type: Transform -- proto: DisposalJunction - entities: - - uid: 8441 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-24.5 - parent: 6 - type: Transform - - uid: 12583 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-11.5 - parent: 6 - type: Transform - - uid: 12631 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-11.5 - parent: 6 - type: Transform - - uid: 12713 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-11.5 - parent: 6 - type: Transform - - uid: 12742 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,4.5 - parent: 6 - type: Transform - - uid: 12814 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 6 - type: Transform - - uid: 12859 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-11.5 - parent: 6 - type: Transform - - uid: 12876 - components: - - pos: 30.5,5.5 - parent: 6 - type: Transform - - uid: 12916 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-30.5 - parent: 6 - type: Transform - - uid: 12922 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-44.5 - parent: 6 - type: Transform - - uid: 12959 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-35.5 - parent: 6 - type: Transform - - uid: 12966 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-28.5 - parent: 6 - type: Transform -- proto: DisposalJunctionFlipped - entities: - - uid: 12690 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-11.5 - parent: 6 - type: Transform - - uid: 12697 - components: - - pos: -15.5,4.5 - parent: 6 - type: Transform - - uid: 12714 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-11.5 - parent: 6 - type: Transform - - uid: 12763 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-19.5 - parent: 6 - type: Transform - - uid: 12771 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 6 - type: Transform - - uid: 12784 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-11.5 - parent: 6 - type: Transform - - uid: 12809 - components: - - pos: 6.5,-6.5 - parent: 6 - type: Transform - - uid: 12847 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-11.5 - parent: 6 - type: Transform - - uid: 12996 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-44.5 - parent: 6 - type: Transform -- proto: DisposalPipe - entities: - - uid: 5536 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-21.5 - parent: 6 - type: Transform - - uid: 9035 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-24.5 - parent: 6 - type: Transform - - uid: 9036 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-24.5 - parent: 6 - type: Transform - - uid: 12564 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-13.5 - parent: 6 - type: Transform - - uid: 12565 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-12.5 - parent: 6 - type: Transform - - uid: 12567 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-11.5 - parent: 6 - type: Transform - - uid: 12568 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-11.5 - parent: 6 - type: Transform - - uid: 12569 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-11.5 - parent: 6 - type: Transform - - uid: 12570 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-11.5 - parent: 6 - type: Transform - - uid: 12571 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-11.5 - parent: 6 - type: Transform - - uid: 12572 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-11.5 - parent: 6 - type: Transform - - uid: 12573 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-11.5 - parent: 6 - type: Transform - - uid: 12574 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-11.5 - parent: 6 - type: Transform - - uid: 12575 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-11.5 - parent: 6 - type: Transform - - uid: 12576 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-11.5 - parent: 6 - type: Transform - - uid: 12577 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-11.5 - parent: 6 - type: Transform - - uid: 12578 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-11.5 - parent: 6 - type: Transform - - uid: 12579 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-11.5 - parent: 6 - type: Transform - - uid: 12580 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-11.5 - parent: 6 - type: Transform - - uid: 12581 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-11.5 - parent: 6 - type: Transform - - uid: 12584 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-12.5 - parent: 6 - type: Transform - - uid: 12585 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-13.5 - parent: 6 - type: Transform - - uid: 12586 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-14.5 - parent: 6 - type: Transform - - uid: 12587 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-15.5 - parent: 6 - type: Transform - - uid: 12588 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-16.5 - parent: 6 - type: Transform - - uid: 12589 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-17.5 - parent: 6 - type: Transform - - uid: 12590 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-18.5 - parent: 6 - type: Transform - - uid: 12591 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-19.5 - parent: 6 - type: Transform - - uid: 12593 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-20.5 - parent: 6 - type: Transform - - uid: 12596 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-21.5 - parent: 6 - type: Transform - - uid: 12597 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-21.5 - parent: 6 - type: Transform - - uid: 12598 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-21.5 - parent: 6 - type: Transform - - uid: 12599 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-21.5 - parent: 6 - type: Transform - - uid: 12600 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-21.5 - parent: 6 - type: Transform - - uid: 12601 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-21.5 - parent: 6 - type: Transform - - uid: 12602 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-21.5 - parent: 6 - type: Transform - - uid: 12604 - components: - - pos: -51.5,-22.5 - parent: 6 - type: Transform - - uid: 12605 - components: - - pos: -51.5,-23.5 - parent: 6 - type: Transform - - uid: 12606 - components: - - pos: -51.5,-24.5 - parent: 6 - type: Transform - - uid: 12607 - components: - - pos: -51.5,-25.5 - parent: 6 - type: Transform - - uid: 12608 - components: - - pos: -51.5,-26.5 - parent: 6 - type: Transform - - uid: 12611 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-27.5 - parent: 6 - type: Transform - - uid: 12612 - components: - - rot: 3.141592653589793 rad - pos: -49.5,-28.5 - parent: 6 - type: Transform - - uid: 12613 - components: - - rot: 3.141592653589793 rad - pos: -49.5,-29.5 - parent: 6 - type: Transform - - uid: 12614 - components: - - rot: 3.141592653589793 rad - pos: -49.5,-30.5 - parent: 6 - type: Transform - - uid: 12615 - components: - - rot: 3.141592653589793 rad - pos: -49.5,-32.5 - parent: 6 - type: Transform - - uid: 12616 - components: - - rot: 3.141592653589793 rad - pos: -49.5,-31.5 - parent: 6 - type: Transform - - uid: 12617 - components: - - rot: 3.141592653589793 rad - pos: -49.5,-33.5 - parent: 6 - type: Transform - - uid: 12618 - components: - - rot: 3.141592653589793 rad - pos: -49.5,-34.5 - parent: 6 - type: Transform - - uid: 12620 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-35.5 - parent: 6 - type: Transform - - uid: 12623 - components: - - pos: -40.5,-10.5 - parent: 6 - type: Transform - - uid: 12624 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-11.5 - parent: 6 - type: Transform - - uid: 12625 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-11.5 - parent: 6 - type: Transform - - uid: 12626 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-11.5 - parent: 6 - type: Transform - - uid: 12627 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-11.5 - parent: 6 - type: Transform - - uid: 12628 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-11.5 - parent: 6 - type: Transform - - uid: 12629 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-11.5 - parent: 6 - type: Transform - - uid: 12630 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-11.5 - parent: 6 - type: Transform - - uid: 12632 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-10.5 - parent: 6 - type: Transform - - uid: 12633 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-9.5 - parent: 6 - type: Transform - - uid: 12634 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-8.5 - parent: 6 - type: Transform - - uid: 12635 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-7.5 - parent: 6 - type: Transform - - uid: 12636 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-6.5 - parent: 6 - type: Transform - - uid: 12637 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-5.5 - parent: 6 - type: Transform - - uid: 12638 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-4.5 - parent: 6 - type: Transform - - uid: 12639 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-3.5 - parent: 6 - type: Transform - - uid: 12640 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-2.5 - parent: 6 - type: Transform - - uid: 12641 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-1.5 - parent: 6 - type: Transform - - uid: 12644 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-11.5 - parent: 6 - type: Transform - - uid: 12645 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-11.5 - parent: 6 - type: Transform - - uid: 12646 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-11.5 - parent: 6 - type: Transform - - uid: 12647 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-11.5 - parent: 6 - type: Transform - - uid: 12648 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-11.5 - parent: 6 - type: Transform - - uid: 12649 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-11.5 - parent: 6 - type: Transform - - uid: 12650 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-11.5 - parent: 6 - type: Transform - - uid: 12651 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-11.5 - parent: 6 - type: Transform - - uid: 12652 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-11.5 - parent: 6 - type: Transform - - uid: 12653 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-11.5 - parent: 6 - type: Transform - - uid: 12654 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-11.5 - parent: 6 - type: Transform - - uid: 12655 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-11.5 - parent: 6 - type: Transform - - uid: 12656 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-11.5 - parent: 6 - type: Transform - - uid: 12659 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-21.5 - parent: 6 - type: Transform - - uid: 12660 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-21.5 - parent: 6 - type: Transform - - uid: 12661 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-21.5 - parent: 6 - type: Transform - - uid: 12662 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-21.5 - parent: 6 - type: Transform - - uid: 12663 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-21.5 - parent: 6 - type: Transform - - uid: 12664 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-21.5 - parent: 6 - type: Transform - - uid: 12665 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-21.5 - parent: 6 - type: Transform - - uid: 12666 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-21.5 - parent: 6 - type: Transform - - uid: 12667 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-21.5 - parent: 6 - type: Transform - - uid: 12668 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-21.5 - parent: 6 - type: Transform - - uid: 12669 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-21.5 - parent: 6 - type: Transform - - uid: 12672 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-21.5 - parent: 6 - type: Transform - - uid: 12673 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-21.5 - parent: 6 - type: Transform - - uid: 12674 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-21.5 - parent: 6 - type: Transform - - uid: 12675 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-21.5 - parent: 6 - type: Transform - - uid: 12676 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-21.5 - parent: 6 - type: Transform - - uid: 12677 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-21.5 - parent: 6 - type: Transform - - uid: 12678 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-21.5 - parent: 6 - type: Transform - - uid: 12679 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-21.5 - parent: 6 - type: Transform - - uid: 12681 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-20.5 - parent: 6 - type: Transform - - uid: 12682 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-19.5 - parent: 6 - type: Transform - - uid: 12683 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-18.5 - parent: 6 - type: Transform - - uid: 12684 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-17.5 - parent: 6 - type: Transform - - uid: 12685 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-16.5 - parent: 6 - type: Transform - - uid: 12686 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-15.5 - parent: 6 - type: Transform - - uid: 12687 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-14.5 - parent: 6 - type: Transform - - uid: 12688 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-13.5 - parent: 6 - type: Transform - - uid: 12689 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-12.5 - parent: 6 - type: Transform - - uid: 12693 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,6.5 - parent: 6 - type: Transform - - uid: 12694 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,6.5 - parent: 6 - type: Transform - - uid: 12696 - components: - - pos: -15.5,5.5 - parent: 6 - type: Transform - - uid: 12698 - components: - - pos: -15.5,3.5 - parent: 6 - type: Transform - - uid: 12699 - components: - - pos: -15.5,2.5 - parent: 6 - type: Transform - - uid: 12700 - components: - - pos: -15.5,1.5 - parent: 6 - type: Transform - - uid: 12701 - components: - - pos: -15.5,0.5 - parent: 6 - type: Transform - - uid: 12702 - components: - - pos: -15.5,-0.5 - parent: 6 - type: Transform - - uid: 12703 - components: - - pos: -15.5,-1.5 - parent: 6 - type: Transform - - uid: 12704 - components: - - pos: -15.5,-2.5 - parent: 6 - type: Transform - - uid: 12705 - components: - - pos: -15.5,-3.5 - parent: 6 - type: Transform - - uid: 12706 - components: - - pos: -15.5,-4.5 - parent: 6 - type: Transform - - uid: 12707 - components: - - pos: -15.5,-5.5 - parent: 6 - type: Transform - - uid: 12708 - components: - - pos: -15.5,-6.5 - parent: 6 - type: Transform - - uid: 12709 - components: - - pos: -15.5,-7.5 - parent: 6 - type: Transform - - uid: 12710 - components: - - pos: -15.5,-8.5 - parent: 6 - type: Transform - - uid: 12711 - components: - - pos: -15.5,-9.5 - parent: 6 - type: Transform - - uid: 12712 - components: - - pos: -15.5,-10.5 - parent: 6 - type: Transform - - uid: 12715 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-11.5 - parent: 6 - type: Transform - - uid: 12716 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-11.5 - parent: 6 - type: Transform - - uid: 12717 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-12.5 - parent: 6 - type: Transform - - uid: 12718 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-13.5 - parent: 6 - type: Transform - - uid: 12719 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-14.5 - parent: 6 - type: Transform - - uid: 12720 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-15.5 - parent: 6 - type: Transform - - uid: 12721 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-16.5 - parent: 6 - type: Transform - - uid: 12722 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-17.5 - parent: 6 - type: Transform - - uid: 12723 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-18.5 - parent: 6 - type: Transform - - uid: 12724 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-19.5 - parent: 6 - type: Transform - - uid: 12725 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-20.5 - parent: 6 - type: Transform - - uid: 12726 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-21.5 - parent: 6 - type: Transform - - uid: 12727 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-22.5 - parent: 6 - type: Transform - - uid: 12728 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-23.5 - parent: 6 - type: Transform - - uid: 12730 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-25.5 - parent: 6 - type: Transform - - uid: 12731 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-26.5 - parent: 6 - type: Transform - - uid: 12732 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,4.5 - parent: 6 - type: Transform - - uid: 12733 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,4.5 - parent: 6 - type: Transform - - uid: 12734 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,4.5 - parent: 6 - type: Transform - - uid: 12735 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,4.5 - parent: 6 - type: Transform - - uid: 12736 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,4.5 - parent: 6 - type: Transform - - uid: 12737 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,4.5 - parent: 6 - type: Transform - - uid: 12738 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,4.5 - parent: 6 - type: Transform - - uid: 12739 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 6 - type: Transform - - uid: 12740 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,4.5 - parent: 6 - type: Transform - - uid: 12741 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,4.5 - parent: 6 - type: Transform - - uid: 12746 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,8.5 - parent: 6 - type: Transform - - uid: 12748 - components: - - pos: -4.5,7.5 - parent: 6 - type: Transform - - uid: 12749 - components: - - pos: -4.5,6.5 - parent: 6 - type: Transform - - uid: 12750 - components: - - pos: -4.5,5.5 - parent: 6 - type: Transform - - uid: 12751 - components: - - pos: -3.5,3.5 - parent: 6 - type: Transform - - uid: 12752 - components: - - pos: -3.5,2.5 - parent: 6 - type: Transform - - uid: 12755 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-19.5 - parent: 6 - type: Transform - - uid: 12756 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-19.5 - parent: 6 - type: Transform - - uid: 12757 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-19.5 - parent: 6 - type: Transform - - uid: 12758 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-19.5 - parent: 6 - type: Transform - - uid: 12759 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-19.5 - parent: 6 - type: Transform - - uid: 12760 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-19.5 - parent: 6 - type: Transform - - uid: 12761 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-19.5 - parent: 6 - type: Transform - - uid: 12762 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-19.5 - parent: 6 - type: Transform - - uid: 12764 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-18.5 - parent: 6 - type: Transform - - uid: 12765 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-17.5 - parent: 6 - type: Transform - - uid: 12766 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-16.5 - parent: 6 - type: Transform - - uid: 12767 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-15.5 - parent: 6 - type: Transform - - uid: 12768 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-14.5 - parent: 6 - type: Transform - - uid: 12769 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-13.5 - parent: 6 - type: Transform - - uid: 12770 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-12.5 - parent: 6 - type: Transform - - uid: 12772 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 6 - type: Transform - - uid: 12773 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 6 - type: Transform - - uid: 12774 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 6 - type: Transform - - uid: 12775 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 6 - type: Transform - - uid: 12776 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-11.5 - parent: 6 - type: Transform - - uid: 12777 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-11.5 - parent: 6 - type: Transform - - uid: 12778 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-11.5 - parent: 6 - type: Transform - - uid: 12779 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-11.5 - parent: 6 - type: Transform - - uid: 12780 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 6 - type: Transform - - uid: 12781 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-11.5 - parent: 6 - type: Transform - - uid: 12783 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-12.5 - parent: 6 - type: Transform - - uid: 12785 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-11.5 - parent: 6 - type: Transform - - uid: 12786 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-11.5 - parent: 6 - type: Transform - - uid: 12787 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-11.5 - parent: 6 - type: Transform - - uid: 12788 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-11.5 - parent: 6 - type: Transform - - uid: 12789 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-11.5 - parent: 6 - type: Transform - - uid: 12790 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-11.5 - parent: 6 - type: Transform - - uid: 12791 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-11.5 - parent: 6 - type: Transform - - uid: 12792 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-11.5 - parent: 6 - type: Transform - - uid: 12796 - components: - - pos: 6.5,6.5 - parent: 6 - type: Transform - - uid: 12797 - components: - - pos: 6.5,5.5 - parent: 6 - type: Transform - - uid: 12798 - components: - - pos: 6.5,4.5 - parent: 6 - type: Transform - - uid: 12799 - components: - - pos: 6.5,3.5 - parent: 6 - type: Transform - - uid: 12800 - components: - - pos: 6.5,2.5 - parent: 6 - type: Transform - - uid: 12801 - components: - - pos: 6.5,1.5 - parent: 6 - type: Transform - - uid: 12802 - components: - - pos: 6.5,0.5 - parent: 6 - type: Transform - - uid: 12803 - components: - - pos: 6.5,-0.5 - parent: 6 - type: Transform - - uid: 12804 - components: - - pos: 6.5,-1.5 - parent: 6 - type: Transform - - uid: 12805 - components: - - pos: 6.5,-2.5 - parent: 6 - type: Transform - - uid: 12806 - components: - - pos: 6.5,-3.5 - parent: 6 - type: Transform - - uid: 12807 - components: - - pos: 6.5,-4.5 - parent: 6 - type: Transform - - uid: 12808 - components: - - pos: 6.5,-5.5 - parent: 6 - type: Transform - - uid: 12810 - components: - - pos: 6.5,-7.5 - parent: 6 - type: Transform - - uid: 12811 - components: - - pos: 6.5,-8.5 - parent: 6 - type: Transform - - uid: 12812 - components: - - pos: 6.5,-9.5 - parent: 6 - type: Transform - - uid: 12813 - components: - - pos: 6.5,-10.5 - parent: 6 - type: Transform - - uid: 12817 - components: - - pos: 12.5,0.5 - parent: 6 - type: Transform - - uid: 12818 - components: - - pos: 12.5,-0.5 - parent: 6 - type: Transform - - uid: 12819 - components: - - pos: 12.5,-1.5 - parent: 6 - type: Transform - - uid: 12820 - components: - - pos: 12.5,-2.5 - parent: 6 - type: Transform - - uid: 12821 - components: - - pos: 12.5,-3.5 - parent: 6 - type: Transform - - uid: 12824 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-4.5 - parent: 6 - type: Transform - - uid: 12825 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-5.5 - parent: 6 - type: Transform - - uid: 12827 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-6.5 - parent: 6 - type: Transform - - uid: 12828 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-6.5 - parent: 6 - type: Transform - - uid: 12829 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-6.5 - parent: 6 - type: Transform - - uid: 12830 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-6.5 - parent: 6 - type: Transform - - uid: 12831 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 6 - type: Transform - - uid: 12832 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 6 - type: Transform - - uid: 12833 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-6.5 - parent: 6 - type: Transform - - uid: 12834 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-11.5 - parent: 6 - type: Transform - - uid: 12835 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 6 - type: Transform - - uid: 12836 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 6 - type: Transform - - uid: 12837 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-11.5 - parent: 6 - type: Transform - - uid: 12838 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 6 - type: Transform - - uid: 12839 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-11.5 - parent: 6 - type: Transform - - uid: 12840 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-11.5 - parent: 6 - type: Transform - - uid: 12841 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-11.5 - parent: 6 - type: Transform - - uid: 12842 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-11.5 - parent: 6 - type: Transform - - uid: 12843 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-11.5 - parent: 6 - type: Transform - - uid: 12844 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-11.5 - parent: 6 - type: Transform - - uid: 12845 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-11.5 - parent: 6 - type: Transform - - uid: 12846 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-11.5 - parent: 6 - type: Transform - - uid: 12848 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-12.5 - parent: 6 - type: Transform - - uid: 12850 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-11.5 - parent: 6 - type: Transform - - uid: 12851 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-11.5 - parent: 6 - type: Transform - - uid: 12852 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-11.5 - parent: 6 - type: Transform - - uid: 12853 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-11.5 - parent: 6 - type: Transform - - uid: 12854 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-11.5 - parent: 6 - type: Transform - - uid: 12855 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-11.5 - parent: 6 - type: Transform - - uid: 12856 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-11.5 - parent: 6 - type: Transform - - uid: 12857 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-11.5 - parent: 6 - type: Transform - - uid: 12858 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-11.5 - parent: 6 - type: Transform - - uid: 12860 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-10.5 - parent: 6 - type: Transform - - uid: 12861 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-9.5 - parent: 6 - type: Transform - - uid: 12862 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-8.5 - parent: 6 - type: Transform - - uid: 12863 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-7.5 - parent: 6 - type: Transform - - uid: 12864 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-6.5 - parent: 6 - type: Transform - - uid: 12865 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-5.5 - parent: 6 - type: Transform - - uid: 12866 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-4.5 - parent: 6 - type: Transform - - uid: 12867 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-3.5 - parent: 6 - type: Transform - - uid: 12868 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-2.5 - parent: 6 - type: Transform - - uid: 12869 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-1.5 - parent: 6 - type: Transform - - uid: 12870 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-0.5 - parent: 6 - type: Transform - - uid: 12871 - components: - - rot: 3.141592653589793 rad - pos: 30.5,0.5 - parent: 6 - type: Transform - - uid: 12872 - components: - - rot: 3.141592653589793 rad - pos: 30.5,1.5 - parent: 6 - type: Transform - - uid: 12873 - components: - - rot: 3.141592653589793 rad - pos: 30.5,2.5 - parent: 6 - type: Transform - - uid: 12874 - components: - - rot: 3.141592653589793 rad - pos: 30.5,3.5 - parent: 6 - type: Transform - - uid: 12875 - components: - - rot: 3.141592653589793 rad - pos: 30.5,4.5 - parent: 6 - type: Transform - - uid: 12877 - components: - - rot: 3.141592653589793 rad - pos: 30.5,6.5 - parent: 6 - type: Transform - - uid: 12881 - components: - - pos: 43.5,8.5 - parent: 6 - type: Transform - - uid: 12882 - components: - - pos: 43.5,7.5 - parent: 6 - type: Transform - - uid: 12883 - components: - - pos: 43.5,6.5 - parent: 6 - type: Transform - - uid: 12884 - components: - - pos: 43.5,5.5 - parent: 6 - type: Transform - - uid: 12885 - components: - - pos: 43.5,4.5 - parent: 6 - type: Transform - - uid: 12886 - components: - - pos: 43.5,3.5 - parent: 6 - type: Transform - - uid: 12887 - components: - - pos: 43.5,2.5 - parent: 6 - type: Transform - - uid: 12888 - components: - - pos: 43.5,1.5 - parent: 6 - type: Transform - - uid: 12889 - components: - - pos: 43.5,0.5 - parent: 6 - type: Transform - - uid: 12890 - components: - - pos: 43.5,-0.5 - parent: 6 - type: Transform - - uid: 12891 - components: - - pos: 43.5,-1.5 - parent: 6 - type: Transform - - uid: 12892 - components: - - pos: 43.5,-2.5 - parent: 6 - type: Transform - - uid: 12893 - components: - - pos: 43.5,-3.5 - parent: 6 - type: Transform - - uid: 12894 - components: - - pos: 43.5,-4.5 - parent: 6 - type: Transform - - uid: 12895 - components: - - pos: 43.5,-5.5 - parent: 6 - type: Transform - - uid: 12896 - components: - - pos: 43.5,-6.5 - parent: 6 - type: Transform - - uid: 12897 - components: - - pos: 43.5,-7.5 - parent: 6 - type: Transform - - uid: 12898 - components: - - pos: 43.5,-8.5 - parent: 6 - type: Transform - - uid: 12899 - components: - - pos: 43.5,-9.5 - parent: 6 - type: Transform - - uid: 12900 - components: - - pos: 43.5,-10.5 - parent: 6 - type: Transform - - uid: 12902 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-11.5 - parent: 6 - type: Transform - - uid: 12903 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-11.5 - parent: 6 - type: Transform - - uid: 12904 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-11.5 - parent: 6 - type: Transform - - uid: 12905 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-11.5 - parent: 6 - type: Transform - - uid: 12906 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-11.5 - parent: 6 - type: Transform - - uid: 12907 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-11.5 - parent: 6 - type: Transform - - uid: 12908 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-11.5 - parent: 6 - type: Transform - - uid: 12909 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-11.5 - parent: 6 - type: Transform - - uid: 12910 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-11.5 - parent: 6 - type: Transform - - uid: 12911 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-11.5 - parent: 6 - type: Transform - - uid: 12912 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-11.5 - parent: 6 - type: Transform - - uid: 12913 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-11.5 - parent: 6 - type: Transform - - uid: 12917 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-29.5 - parent: 6 - type: Transform - - uid: 12918 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-28.5 - parent: 6 - type: Transform - - uid: 12919 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-27.5 - parent: 6 - type: Transform - - uid: 12921 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-45.5 - parent: 6 - type: Transform - - uid: 12923 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-44.5 - parent: 6 - type: Transform - - uid: 12924 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-44.5 - parent: 6 - type: Transform - - uid: 12925 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-44.5 - parent: 6 - type: Transform - - uid: 12926 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-44.5 - parent: 6 - type: Transform - - uid: 12927 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-44.5 - parent: 6 - type: Transform - - uid: 12928 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-44.5 - parent: 6 - type: Transform - - uid: 12930 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-43.5 - parent: 6 - type: Transform - - uid: 12931 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-42.5 - parent: 6 - type: Transform - - uid: 12932 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-41.5 - parent: 6 - type: Transform - - uid: 12933 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-40.5 - parent: 6 - type: Transform - - uid: 12934 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-39.5 - parent: 6 - type: Transform - - uid: 12935 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-38.5 - parent: 6 - type: Transform - - uid: 12936 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-37.5 - parent: 6 - type: Transform - - uid: 12937 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-36.5 - parent: 6 - type: Transform - - uid: 12938 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-35.5 - parent: 6 - type: Transform - - uid: 12939 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-34.5 - parent: 6 - type: Transform - - uid: 12940 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-33.5 - parent: 6 - type: Transform - - uid: 12941 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-32.5 - parent: 6 - type: Transform - - uid: 12942 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-31.5 - parent: 6 - type: Transform - - uid: 12945 - components: - - pos: 13.5,-34.5 - parent: 6 - type: Transform - - uid: 12947 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-35.5 - parent: 6 - type: Transform - - uid: 12948 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-35.5 - parent: 6 - type: Transform - - uid: 12949 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-35.5 - parent: 6 - type: Transform - - uid: 12950 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-35.5 - parent: 6 - type: Transform - - uid: 12951 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-35.5 - parent: 6 - type: Transform - - uid: 12952 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-35.5 - parent: 6 - type: Transform - - uid: 12953 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-35.5 - parent: 6 - type: Transform - - uid: 12956 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-38.5 - parent: 6 - type: Transform - - uid: 12957 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-37.5 - parent: 6 - type: Transform - - uid: 12958 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-36.5 - parent: 6 - type: Transform - - uid: 12960 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-34.5 - parent: 6 - type: Transform - - uid: 12961 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-33.5 - parent: 6 - type: Transform - - uid: 12962 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-32.5 - parent: 6 - type: Transform - - uid: 12963 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-31.5 - parent: 6 - type: Transform - - uid: 12964 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-30.5 - parent: 6 - type: Transform - - uid: 12965 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-29.5 - parent: 6 - type: Transform - - uid: 12967 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-27.5 - parent: 6 - type: Transform - - uid: 12968 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-26.5 - parent: 6 - type: Transform - - uid: 12969 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-25.5 - parent: 6 - type: Transform - - uid: 12970 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-24.5 - parent: 6 - type: Transform - - uid: 12971 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-23.5 - parent: 6 - type: Transform - - uid: 12972 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-22.5 - parent: 6 - type: Transform - - uid: 12973 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-21.5 - parent: 6 - type: Transform - - uid: 12974 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-20.5 - parent: 6 - type: Transform - - uid: 12976 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-45.5 - parent: 6 - type: Transform - - uid: 12978 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-44.5 - parent: 6 - type: Transform - - uid: 12979 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-44.5 - parent: 6 - type: Transform - - uid: 12980 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-44.5 - parent: 6 - type: Transform - - uid: 12981 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-44.5 - parent: 6 - type: Transform - - uid: 12982 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-44.5 - parent: 6 - type: Transform - - uid: 12983 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-44.5 - parent: 6 - type: Transform - - uid: 12987 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-53.5 - parent: 6 - type: Transform - - uid: 12988 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-52.5 - parent: 6 - type: Transform - - uid: 12989 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-51.5 - parent: 6 - type: Transform - - uid: 12990 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-50.5 - parent: 6 - type: Transform - - uid: 12991 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-49.5 - parent: 6 - type: Transform - - uid: 12992 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-48.5 - parent: 6 - type: Transform - - uid: 12993 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-47.5 - parent: 6 - type: Transform - - uid: 12994 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-46.5 - parent: 6 - type: Transform - - uid: 12995 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-45.5 - parent: 6 - type: Transform - - uid: 12997 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-44.5 - parent: 6 - type: Transform - - uid: 12998 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-44.5 - parent: 6 - type: Transform - - uid: 12999 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-44.5 - parent: 6 - type: Transform - - uid: 13000 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-44.5 - parent: 6 - type: Transform - - uid: 13001 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-44.5 - parent: 6 - type: Transform - - uid: 13002 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-44.5 - parent: 6 - type: Transform - - uid: 13003 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-44.5 - parent: 6 - type: Transform - - uid: 13004 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-44.5 - parent: 6 - type: Transform - - uid: 13005 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-44.5 - parent: 6 - type: Transform - - uid: 13006 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-44.5 - parent: 6 - type: Transform - - uid: 13007 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-44.5 - parent: 6 - type: Transform - - uid: 13008 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-44.5 - parent: 6 - type: Transform - - uid: 13009 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-44.5 - parent: 6 - type: Transform - - uid: 13010 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-44.5 - parent: 6 - type: Transform - - uid: 13011 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-44.5 - parent: 6 - type: Transform - - uid: 13012 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-44.5 - parent: 6 - type: Transform - - uid: 13013 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-44.5 - parent: 6 - type: Transform - - uid: 13014 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-44.5 - parent: 6 - type: Transform - - uid: 13015 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-44.5 - parent: 6 - type: Transform - - uid: 13016 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-44.5 - parent: 6 - type: Transform - - uid: 13017 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-44.5 - parent: 6 - type: Transform - - uid: 13021 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-28.5 - parent: 6 - type: Transform - - uid: 13763 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,5.5 - parent: 6 - type: Transform - - uid: 13764 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,5.5 - parent: 6 - type: Transform - - uid: 13765 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,5.5 - parent: 6 - type: Transform - - uid: 13766 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,5.5 - parent: 6 - type: Transform -- proto: DisposalTrunk - entities: - - uid: 9034 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-24.5 - parent: 6 - type: Transform - - uid: 12563 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-14.5 - parent: 6 - type: Transform - - uid: 12621 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-35.5 - parent: 6 - type: Transform - - uid: 12622 - components: - - pos: -40.5,-9.5 - parent: 6 - type: Transform - - uid: 12642 - components: - - pos: -32.5,-0.5 - parent: 6 - type: Transform - - uid: 12658 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-21.5 - parent: 6 - type: Transform - - uid: 12692 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,6.5 - parent: 6 - type: Transform - - uid: 12745 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,8.5 - parent: 6 - type: Transform - - uid: 12753 - components: - - rot: 3.141592653589793 rad - pos: -3.5,1.5 - parent: 6 - type: Transform - - uid: 12754 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-19.5 - parent: 6 - type: Transform - - uid: 12782 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-13.5 - parent: 6 - type: Transform - - uid: 12793 - components: - - pos: 7.5,8.5 - parent: 6 - type: Transform - - uid: 12815 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,1.5 - parent: 6 - type: Transform - - uid: 12849 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-13.5 - parent: 6 - type: Transform - - uid: 12879 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,7.5 - parent: 6 - type: Transform - - uid: 12880 - components: - - pos: 43.5,9.5 - parent: 6 - type: Transform - - uid: 12915 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-30.5 - parent: 6 - type: Transform - - uid: 12920 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-46.5 - parent: 6 - type: Transform - - uid: 12944 - components: - - pos: 13.5,-33.5 - parent: 6 - type: Transform - - uid: 12954 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-39.5 - parent: 6 - type: Transform - - uid: 12975 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-46.5 - parent: 6 - type: Transform - - uid: 12985 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-54.5 - parent: 6 - type: Transform - - uid: 13019 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-45.5 - parent: 6 - type: Transform - - uid: 13022 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-28.5 - parent: 6 - type: Transform - - uid: 13762 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,5.5 - parent: 6 - type: Transform -- proto: DisposalUnit - entities: - - uid: 255 - components: - - pos: -5.5,-13.5 - parent: 6 - type: Transform - - uid: 631 - components: - - pos: 29.5,7.5 - parent: 6 - type: Transform - - uid: 1764 - components: - - pos: -40.5,-9.5 - parent: 6 - type: Transform - - uid: 4404 - components: - - pos: 25.5,5.5 - parent: 6 - type: Transform - - uid: 5170 - components: - - pos: -3.5,1.5 - parent: 6 - type: Transform - - uid: 5404 - components: - - pos: -2.5,-46.5 - parent: 6 - type: Transform - - uid: 5921 - components: - - pos: -3.5,-19.5 - parent: 6 - type: Transform - - uid: 6422 - components: - - pos: -30.5,-24.5 - parent: 6 - type: Transform - - uid: 6489 - components: - - pos: 20.5,-13.5 - parent: 6 - type: Transform - - uid: 6490 - components: - - pos: 7.5,8.5 - parent: 6 - type: Transform - - uid: 6521 - components: - - pos: 13.5,-33.5 - parent: 6 - type: Transform - - uid: 6522 - components: - - pos: 11.5,1.5 - parent: 6 - type: Transform - - uid: 7690 - components: - - pos: 43.5,9.5 - parent: 6 - type: Transform - - uid: 7719 - components: - - pos: 7.5,-28.5 - parent: 6 - type: Transform - - uid: 7833 - components: - - pos: -21.5,-46.5 - parent: 6 - type: Transform - - uid: 8582 - components: - - pos: -11.5,-24.5 - parent: 6 - type: Transform - - uid: 12562 - components: - - pos: -57.5,-14.5 - parent: 6 - type: Transform - - uid: 12643 - components: - - pos: -32.5,-0.5 - parent: 6 - type: Transform - - uid: 12657 - components: - - pos: -39.5,-21.5 - parent: 6 - type: Transform - - uid: 12691 - components: - - pos: -18.5,6.5 - parent: 6 - type: Transform - - uid: 12744 - components: - - pos: -6.5,8.5 - parent: 6 - type: Transform - - uid: 12914 - components: - - pos: -13.5,-30.5 - parent: 6 - type: Transform - - uid: 12943 - components: - - pos: 4.5,-39.5 - parent: 6 - type: Transform - - uid: 12984 - components: - - pos: -12.5,-54.5 - parent: 6 - type: Transform - - uid: 13018 - components: - - pos: -39.5,-45.5 - parent: 6 - type: Transform -- proto: DisposalYJunction - entities: - - uid: 12582 - components: - - pos: -41.5,-11.5 - parent: 6 - type: Transform - - uid: 12929 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-44.5 - parent: 6 - type: Transform -- proto: DogBed - entities: - - uid: 5103 - components: - - pos: 2.5,-5.5 - parent: 6 - type: Transform -- proto: DoorElectronics - entities: - - uid: 6366 - components: - - pos: -34.64085,-4.5804844 - parent: 6 - type: Transform - - uid: 6413 - components: - - pos: -46.62542,-23.372478 - parent: 6 - type: Transform -- proto: DoubleEmergencyOxygenTankFilled - entities: - - uid: 7222 - components: - - pos: 22.689976,-22.442604 - parent: 6 - type: Transform - - uid: 13642 - components: - - pos: 7.4970856,-7.4586945 - parent: 10465 - type: Transform -- proto: Dresser - entities: - - uid: 2147 - components: - - pos: -47.5,-29.5 - parent: 6 - type: Transform - - uid: 4629 - components: - - pos: -2.5,-17.5 - parent: 6 - type: Transform - - uid: 5099 - components: - - pos: 2.5,-7.5 - parent: 6 - type: Transform - - uid: 5165 - components: - - pos: -5.5,1.5 - parent: 6 - type: Transform - - uid: 6205 - components: - - pos: -38.5,-29.5 - parent: 6 - type: Transform - - uid: 6223 - components: - - pos: -39.5,-41.5 - parent: 6 - type: Transform - - uid: 6236 - components: - - pos: -46.5,-41.5 - parent: 6 - type: Transform - - uid: 7742 - components: - - pos: -24.5,-39.5 - parent: 6 - type: Transform -- proto: Drill - entities: - - uid: 7419 - components: - - pos: -17.555452,-51.97445 - parent: 6 - type: Transform -- proto: DrinkBottleOfNothingFull - entities: - - uid: 5629 - components: - - pos: 14.945476,-29.252306 - parent: 6 - type: Transform -- proto: DrinkBottleWine - entities: - - uid: 5893 - components: - - pos: -30.31717,-50.17819 - parent: 6 - type: Transform -- proto: DrinkChangelingStingCan - entities: - - uid: 13480 - components: - - pos: 21.488434,-25.70662 - parent: 6 - type: Transform -- proto: DrinkCognacBottleFull - entities: - - uid: 5204 - components: - - pos: -8.371432,1.0101887 - parent: 6 - type: Transform -- proto: DrinkDetFlask - entities: - - uid: 7608 - components: - - pos: -50.371704,-49.412464 - parent: 6 - type: Transform -- proto: DrinkDoctorsDelightGlass - entities: - - uid: 5641 - components: - - pos: -37.13765,-18.30765 - parent: 6 - type: Transform -- proto: DrinkFlask - entities: - - uid: 5203 - components: - - pos: -8.712202,0.7831309 - parent: 6 - type: Transform -- proto: DrinkGlass - entities: - - uid: 3383 - components: - - pos: -37.085846,-15.241236 - parent: 6 - type: Transform - - uid: 3384 - components: - - pos: -37.31501,-15.51207 - parent: 6 - type: Transform - - uid: 7809 - components: - - pos: 1.1886876,-16.276999 - parent: 6 - type: Transform - - uid: 7810 - components: - - pos: 1.3345215,-16.464499 - parent: 6 - type: Transform - - uid: 7811 - components: - - pos: 1.4803545,-16.29783 - parent: 6 - type: Transform -- proto: DrinkGoldenCup - entities: - - uid: 5068 - components: - - pos: -18.505444,3.7528613 - parent: 6 - type: Transform -- proto: DrinkLithiumFlask - entities: - - uid: 4241 - components: - - pos: 13.332008,-51.601818 - parent: 6 - type: Transform -- proto: DrinkMilkCarton - entities: - - uid: 3388 - components: - - pos: -37.648346,-15.26207 - parent: 6 - type: Transform -- proto: DrinkMugDog - entities: - - uid: 14039 - components: - - pos: -28.336329,-18.335003 - parent: 6 - type: Transform -- proto: DrinkMugGreen - entities: - - uid: 8454 - components: - - pos: -38.75039,-4.2522497 - parent: 6 - type: Transform -- proto: DrinkMugMetal - entities: - - uid: 6026 - components: - - pos: 15.770392,19.737957 - parent: 6 - type: Transform -- proto: DrinkMugMoebius - entities: - - uid: 2655 - components: - - pos: -1.8387411,-56.46771 - parent: 6 - type: Transform -- proto: DrinkMugRainbow - entities: - - uid: 8525 - components: - - pos: -38.646225,-4.5439167 - parent: 6 - type: Transform -- proto: DrinkMugRed - entities: - - uid: 3376 - components: - - pos: -39.415535,-20.54004 - parent: 6 - type: Transform - - uid: 6027 - components: - - pos: 15.500615,19.411562 - parent: 6 - type: Transform -- proto: DrinkRumBottleFull - entities: - - uid: 7609 - components: - - pos: -50.28837,-49.099964 - parent: 6 - type: Transform -- proto: DrinkShaker - entities: - - uid: 4635 - components: - - pos: -2.201659,-14.312722 - parent: 6 - type: Transform -- proto: DrinkShotGlass - entities: - - uid: 7812 - components: - - pos: 1.6886876,-16.54783 - parent: 6 - type: Transform - - uid: 7813 - components: - - pos: 1.7720215,-16.318665 - parent: 6 - type: Transform -- proto: DrinkTeacup - entities: - - uid: 10753 - components: - - pos: -45.35482,-4.5181093 - parent: 6 - type: Transform -- proto: DrinkTeapot - entities: - - uid: 10752 - components: - - pos: -45.60482,-4.2264423 - parent: 6 - type: Transform -- proto: DrinkVodkaBottleFull - entities: - - uid: 7724 - components: - - pos: -32.297493,-34.410748 - parent: 6 - type: Transform -- proto: DrinkWaterCup - entities: - - uid: 2653 - components: - - pos: -1.9295368,-56.269035 - parent: 6 - type: Transform -- proto: DrinkWineGlass - entities: - - uid: 5892 - components: - - pos: -30.6752,-50.499275 - parent: 6 - type: Transform - - uid: 7629 - components: - - pos: -40.251602,-41.354134 - parent: 6 - type: Transform -- proto: Dropper - entities: - - uid: 6171 - components: - - pos: -22.277338,-17.610338 - parent: 6 - type: Transform - - uid: 6172 - components: - - pos: -23.569427,-14.303812 - parent: 6 - type: Transform -- proto: EmergencyLight - entities: - - uid: 8359 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,0.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8361 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,14.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8395 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-12.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8396 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-12.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8397 - components: - - rot: 3.141592653589793 rad - pos: -60.5,-14.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8398 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-12.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8399 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-12.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8400 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-12.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8403 - components: - - pos: 13.5,4.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8404 - components: - - pos: 11.5,20.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8405 - components: - - pos: 0.5,1.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8406 - components: - - pos: -4.5,10.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8407 - components: - - pos: -20.5,4.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8408 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-0.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8409 - components: - - pos: -25.5,-20.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8410 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-31.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8411 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-19.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8412 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-26.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8413 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-33.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8414 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-16.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8415 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-25.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8416 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-37.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8417 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-47.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8418 - components: - - pos: -5.5,-43.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8419 - components: - - pos: -5.5,-54.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8420 - components: - - pos: -23.5,-43.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8421 - components: - - pos: -45.5,-43.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8422 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-56.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8423 - components: - - pos: -4.5,-72.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 8541 - components: - - pos: -7.5,-58.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 9757 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-29.5 - parent: 6 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- proto: EncryptionKeyCargo - entities: - - uid: 14239 - components: - - flags: InContainer - type: MetaData - - parent: 14238 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyCommand - entities: - - uid: 14253 - components: - - flags: InContainer - type: MetaData - - parent: 14252 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyCommon - entities: - - uid: 14247 - components: - - flags: InContainer - type: MetaData - - parent: 14246 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyEngineering - entities: - - uid: 14251 - components: - - flags: InContainer - type: MetaData - - parent: 14250 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyMedical - entities: - - uid: 14245 - components: - - flags: InContainer - type: MetaData - - parent: 14244 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyScience - entities: - - uid: 14243 - components: - - flags: InContainer - type: MetaData - - parent: 14242 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeySecurity - entities: - - uid: 14249 - components: - - flags: InContainer - type: MetaData - - parent: 14248 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyService - entities: - - uid: 14241 - components: - - flags: InContainer - type: MetaData - - parent: 14240 - type: Transform - - canCollide: False - type: Physics -- proto: ExosuitFabricator - entities: - - uid: 5400 - components: - - pos: -14.5,-51.5 - parent: 6 - type: Transform -- proto: ExtinguisherCabinetFilled - entities: - - uid: 7848 - components: - - pos: 13.5,6.5 - parent: 6 - type: Transform - - uid: 7851 - components: - - pos: 2.5,6.5 - parent: 6 - type: Transform - - uid: 7852 - components: - - pos: -4.5,-1.5 - parent: 6 - type: Transform - - uid: 7875 - components: - - pos: -7.5,-13.5 - parent: 6 - type: Transform - - uid: 7883 - components: - - pos: -27.5,-13.5 - parent: 6 - type: Transform - - uid: 7891 - components: - - pos: -33.5,0.5 - parent: 6 - type: Transform - - uid: 7892 - components: - - pos: -35.5,7.5 - parent: 6 - type: Transform - - uid: 7900 - components: - - pos: -48.5,-13.5 - parent: 6 - type: Transform - - uid: 7908 - components: - - pos: -61.5,-15.5 - parent: 6 - type: Transform - - uid: 7913 - components: - - pos: -41.5,-37.5 - parent: 6 - type: Transform - - uid: 7914 - components: - - pos: -30.5,-42.5 - parent: 6 - type: Transform - - uid: 7915 - components: - - pos: -13.5,-55.5 - parent: 6 - type: Transform - - uid: 7916 - components: - - pos: -0.5,-74.5 - parent: 6 - type: Transform - - uid: 7917 - components: - - pos: 3.5,-32.5 - parent: 6 - type: Transform - - uid: 7918 - components: - - pos: -4.5,-22.5 - parent: 6 - type: Transform - - uid: 7936 - components: - - pos: 15.5,-38.5 - parent: 6 - type: Transform - - uid: 7938 - components: - - pos: 7.5,9.5 - parent: 6 - type: Transform - - uid: 7939 - components: - - pos: 20.5,-9.5 - parent: 6 - type: Transform - - uid: 8006 - components: - - pos: -32.5,-23.5 - parent: 6 - type: Transform - - uid: 8014 - components: - - pos: -20.5,-17.5 - parent: 6 - type: Transform - - uid: 8022 - components: - - pos: -16.5,4.5 - parent: 6 - type: Transform - - uid: 8060 - components: - - pos: -25.5,-46.5 - parent: 6 - type: Transform - - uid: 8061 - components: - - pos: 7.5,-49.5 - parent: 6 - type: Transform - - uid: 8062 - components: - - pos: 13.5,-24.5 - parent: 6 - type: Transform - - uid: 8063 - components: - - pos: -33.5,-57.5 - parent: 6 - type: Transform - - uid: 14144 - components: - - pos: -22.5,-26.5 - parent: 6 - type: Transform -- proto: FaxMachineBase - entities: - - uid: 7746 - components: - - pos: -19.5,-21.5 - parent: 6 - type: Transform - - name: Medbay - type: FaxMachine - - uid: 7799 - components: - - pos: 8.5,-15.5 - parent: 6 - type: Transform - - name: Lawyer's Office - type: FaxMachine - - uid: 14068 - components: - - pos: 12.5,-42.5 - parent: 6 - type: Transform - - name: Cargo - type: FaxMachine - - uid: 14074 - components: - - pos: -12.5,-51.5 - parent: 6 - type: Transform - - name: Science - type: FaxMachine - - uid: 14076 - components: - - pos: 3.5,-5.5 - parent: 6 - type: Transform - - name: HoP - type: FaxMachine - - uid: 14078 - components: - - pos: 14.5,1.5 - parent: 6 - type: Transform - - name: Security - type: FaxMachine - - uid: 14083 - components: - - pos: 11.5,20.5 - parent: 6 - type: Transform - - name: Brig - type: FaxMachine - - uid: 14084 - components: - - pos: -20.5,-40.5 - parent: 6 - type: Transform - - name: Library - type: FaxMachine - - uid: 14093 - components: - - pos: -2.5,10.5 - parent: 6 - type: Transform - - name: Bridge - type: FaxMachine -- proto: FaxMachineCaptain - entities: - - uid: 14065 - components: - - pos: -3.5,-0.5 - parent: 6 - type: Transform -- proto: filingCabinet - entities: - - uid: 3586 - components: - - pos: -50.5,-50.5 - parent: 6 - type: Transform - - uid: 4496 - components: - - pos: 8.5,-14.5 - parent: 6 - type: Transform - - uid: 5644 - components: - - pos: -39.5,-18.5 - parent: 6 - type: Transform - - uid: 6210 - components: - - pos: -38.5,-35.5 - parent: 6 - type: Transform - - uid: 6486 - components: - - pos: 10.5,6.5 - parent: 6 - type: Transform -- proto: FireAlarm - entities: - - uid: 2980 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-23.5 - parent: 6 - type: Transform - - devices: - - 13064 - - 6560 - - 6632 - - 6631 - - 2981 - - 3643 - - 3635 - type: DeviceList - - uid: 6044 - components: - - pos: 14.5,21.5 - parent: 6 - type: Transform - - devices: - - 12416 - - 12415 - - 12417 - - 12418 - type: DeviceList - - uid: 9172 - components: - - pos: -4.5,-71.5 - parent: 6 - type: Transform - - devices: - - 13095 - - 13096 - - 13094 - - 13093 - - 13097 - type: DeviceList - - uid: 13055 - components: - - rot: 3.141592653589793 rad - pos: -59.5,-15.5 - parent: 6 - type: Transform - - devices: - - 6543 - - 6544 - - 6545 - - 6546 - type: DeviceList - - uid: 13057 - components: - - pos: -47.5,-9.5 - parent: 6 - type: Transform - - devices: - - 6543 - - 6544 - - 6545 - - 6548 - - 6547 - type: DeviceList - - uid: 13059 - components: - - pos: -35.5,-9.5 - parent: 6 - type: Transform - - devices: - - 6549 - - 6550 - - 6551 - - 3381 - - 3382 - - 6552 - - 6553 - - 6554 - - 3332 - - 3325 - - 3335 - type: DeviceList - - uid: 13061 - components: - - pos: -29.5,0.5 - parent: 6 - type: Transform - - uid: 13063 - components: - - pos: -17.5,-9.5 - parent: 6 - type: Transform - - devices: - - 6554 - - 6553 - - 6552 - - 6555 - - 6556 - - 6565 - - 6564 - - 6563 - - 6558 - - 6557 - - 6560 - - 6568 - - 6567 - - 6566 - - 11382 - - 11406 - - 6562 - - 2981 - type: DeviceList - - uid: 13073 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-24.5 - parent: 6 - type: Transform - - devices: - - 6558 - - 6557 - - 6627 - - 6624 - - 6625 - - 6626 - type: DeviceList - - uid: 13076 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-20.5 - parent: 6 - type: Transform - - devices: - - 6602 - - 6603 - - 6604 - - 6605 - - 5156 - - 13077 - - 830 - type: DeviceList - - uid: 13079 - components: - - pos: -4.5,-29.5 - parent: 6 - type: Transform - - devices: - - 6622 - - 6623 - - 6620 - - 6621 - type: DeviceList - - uid: 13081 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-36.5 - parent: 6 - type: Transform - - devices: - - 6626 - - 6625 - - 6624 - - 11590 - - 11589 - - 6620 - - 6621 - - 6634 - - 6635 - - 6636 - type: DeviceList - - uid: 13083 - components: - - pos: -9.5,-42.5 - parent: 6 - type: Transform - - devices: - - 6657 - - 6658 - - 6659 - - 6654 - - 6653 - - 6656 - - 6655 - - 6634 - - 6635 - - 6636 - - 5488 - - 5487 - - 5486 - type: DeviceList - - uid: 13085 - components: - - pos: -31.5,-42.5 - parent: 6 - type: Transform - - devices: - - 5488 - - 5487 - - 5486 - - 6641 - - 6642 - - 6646 - - 6647 - - 6648 - - 6649 - - 6650 - type: DeviceList - - uid: 13087 - components: - - pos: 1.5,-42.5 - parent: 6 - type: Transform - - devices: - - 6657 - - 6658 - - 6659 - - 6643 - - 6644 - - 6613 - - 6612 - - 6611 - type: DeviceList - - uid: 13089 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-54.5 - parent: 6 - type: Transform - - devices: - - 6652 - - 7413 - - 3344 - - 13090 - - 7414 - - 7415 - type: DeviceList - - uid: 13099 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-33.5 - parent: 6 - type: Transform - - devices: - - 6608 - - 6609 - - 6610 - - 6616 - - 6617 - - 6614 - - 6615 - - 6611 - - 6612 - - 6613 - type: DeviceList - - uid: 13101 - components: - - pos: 15.5,-33.5 - parent: 6 - type: Transform - - devices: - - 6618 - - 6619 - - 13102 - - 13103 - type: DeviceList - - uid: 13105 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-17.5 - parent: 6 - type: Transform - - devices: - - 6577 - - 6578 - - 456 - - 476 - - 5947 - - 478 - - 480 - - 489 - - 496 - - 628 - - 629 - - 5156 - - 6602 - - 6603 - - 6604 - - 6605 - - 6610 - - 6609 - - 6608 - - 830 - type: DeviceList - - uid: 13112 - components: - - rot: 3.141592653589793 rad - pos: -32.5,8.5 - parent: 6 - type: Transform - - devices: - - 3328 - type: DeviceList - - uid: 13114 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 6 - type: Transform - - devices: - - 6569 - - 6570 - - 6592 - - 6593 - - 6556 - - 6555 - - 3333 - type: DeviceList - - uid: 13116 - components: - - rot: 3.141592653589793 rad - pos: -3.5,2.5 - parent: 6 - type: Transform - - devices: - - 6593 - - 6592 - - 6596 - - 6598 - - 6597 - - 6594 - - 6595 - - 6599 - - 6600 - type: DeviceList - - uid: 13117 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-13.5 - parent: 6 - type: Transform - - devices: - - 6575 - - 6574 - - 6573 - - 6563 - - 6564 - - 6565 - - 8275 - - 8276 - - 6576 - type: DeviceList - - uid: 13120 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-3.5 - parent: 6 - type: Transform - - devices: - - 6582 - - 6583 - - 6595 - - 6594 - - 6571 - - 6572 - type: DeviceList - - uid: 13122 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-13.5 - parent: 6 - type: Transform - - devices: - - 6581 - - 6580 - - 6579 - - 6587 - - 6586 - - 6585 - - 6584 - - 6583 - - 6582 - - 6577 - - 6578 - - 6573 - - 6574 - - 6575 - - 11697 - - 11696 - type: DeviceList - - uid: 13124 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-1.5 - parent: 6 - type: Transform - - devices: - - 6591 - - 6590 - - 6589 - - 6588 - type: DeviceList - - uid: 13128 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-13.5 - parent: 6 - type: Transform - - devices: - - 7656 - - 7655 - - 7654 - - 6579 - - 6580 - - 6581 - - 13125 - - 13126 - type: DeviceList - - uid: 13130 - components: - - pos: 36.5,-9.5 - parent: 6 - type: Transform - - devices: - - 7659 - - 7658 - - 7654 - - 7655 - - 7656 - - 7657 - type: DeviceList - - uid: 13133 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-3.5 - parent: 6 - type: Transform - - devices: - - 7657 - type: DeviceList -- proto: FireAxeCabinetFilled - entities: - - uid: 6378 - components: - - rot: 3.141592653589793 rad - pos: -33.5,8.5 - parent: 6 - type: Transform - - uid: 10879 - components: - - pos: -4.5,11.5 - parent: 6 - type: Transform -- proto: FireExtinguisher - entities: - - uid: 5349 - components: - - pos: 4.7012115,-54.43301 - parent: 6 - type: Transform - - uid: 6381 - components: - - pos: -7.5880094,-72.8384 - parent: 6 - type: Transform -- proto: Firelock - entities: - - uid: 6688 - components: - - pos: -75.5,-40.5 - parent: 6 - type: Transform - - uid: 7702 - components: - - pos: 18.5,-24.5 - parent: 6 - type: Transform - - uid: 13097 - components: - - pos: -8.5,-74.5 - parent: 6 - type: Transform -- proto: FirelockEdge - entities: - - uid: 456 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 6 - type: Transform - - uid: 476 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-19.5 - parent: 6 - type: Transform - - uid: 478 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 6 - type: Transform - - uid: 480 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-22.5 - parent: 6 - type: Transform - - uid: 489 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-23.5 - parent: 6 - type: Transform - - uid: 496 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-24.5 - parent: 6 - type: Transform - - uid: 628 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-25.5 - parent: 6 - type: Transform - - uid: 629 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-26.5 - parent: 6 - type: Transform - - uid: 5947 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 6 - type: Transform - - uid: 8275 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-10.5 - parent: 6 - type: Transform - - uid: 8276 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-10.5 - parent: 6 - type: Transform -- proto: FirelockFrame - entities: - - uid: 6687 - components: - - pos: -76.5,-40.5 - parent: 6 - type: Transform - - uid: 6691 - components: - - pos: -79.5,-53.5 - parent: 6 - type: Transform -- proto: FirelockGlass - entities: - - uid: 830 - components: - - pos: 3.5,-20.5 - parent: 6 - type: Transform - - uid: 2117 - components: - - pos: -29.5,6.5 - parent: 6 - type: Transform - - uid: 2156 - components: - - pos: -33.5,6.5 - parent: 6 - type: Transform - - uid: 2981 - components: - - pos: -19.5,-17.5 - parent: 6 - type: Transform - - uid: 3323 - components: - - pos: -31.5,5.5 - parent: 6 - type: Transform - - uid: 3325 - components: - - pos: -27.5,-8.5 - parent: 6 - type: Transform - - uid: 3328 - components: - - pos: -31.5,8.5 - parent: 6 - type: Transform - - uid: 3331 - components: - - pos: -26.5,0.5 - parent: 6 - type: Transform - - uid: 3332 - components: - - pos: -28.5,-8.5 - parent: 6 - type: Transform - - uid: 3333 - components: - - pos: -16.5,-0.5 - parent: 6 - type: Transform - - uid: 3335 - components: - - pos: -26.5,-8.5 - parent: 6 - type: Transform - - uid: 3336 - components: - - pos: -29.5,-4.5 - parent: 6 - type: Transform - - uid: 3337 - components: - - pos: -30.5,-4.5 - parent: 6 - type: Transform - - uid: 3338 - components: - - pos: -31.5,-7.5 - parent: 6 - type: Transform - - uid: 3339 - components: - - pos: -35.5,-7.5 - parent: 6 - type: Transform - - uid: 3344 - components: - - pos: -8.5,-55.5 - parent: 6 - type: Transform - - uid: 3381 - components: - - pos: -37.5,-13.5 - parent: 6 - type: Transform - - uid: 3382 - components: - - pos: -36.5,-13.5 - parent: 6 - type: Transform - - uid: 3635 - components: - - pos: -27.5,-22.5 - parent: 6 - type: Transform - - uid: 3643 - components: - - pos: -27.5,-20.5 - parent: 6 - type: Transform - - uid: 5156 - components: - - pos: 3.5,-21.5 - parent: 6 - type: Transform - - uid: 5486 - components: - - pos: -26.5,-45.5 - parent: 6 - type: Transform - - uid: 5487 - components: - - pos: -26.5,-44.5 - parent: 6 - type: Transform - - uid: 5488 - components: - - pos: -26.5,-43.5 - parent: 6 - type: Transform - - uid: 5907 - components: - - pos: 12.5,11.5 - parent: 6 - type: Transform - - uid: 5908 - components: - - pos: 17.5,11.5 - parent: 6 - type: Transform - - uid: 6543 - components: - - pos: -55.5,-10.5 - parent: 6 - type: Transform - - uid: 6544 - components: - - pos: -55.5,-11.5 - parent: 6 - type: Transform - - uid: 6545 - components: - - pos: -55.5,-12.5 - parent: 6 - type: Transform - - uid: 6546 - components: - - pos: -65.5,-12.5 - parent: 6 - type: Transform - - uid: 6547 - components: - - pos: -50.5,-13.5 - parent: 6 - type: Transform - - uid: 6548 - components: - - pos: -53.5,-13.5 - parent: 6 - type: Transform - - uid: 6549 - components: - - pos: -43.5,-10.5 - parent: 6 - type: Transform - - uid: 6550 - components: - - pos: -43.5,-11.5 - parent: 6 - type: Transform - - uid: 6551 - components: - - pos: -43.5,-12.5 - parent: 6 - type: Transform - - uid: 6552 - components: - - pos: -20.5,-12.5 - parent: 6 - type: Transform - - uid: 6553 - components: - - pos: -20.5,-11.5 - parent: 6 - type: Transform - - uid: 6554 - components: - - pos: -20.5,-10.5 - parent: 6 - type: Transform - - uid: 6555 - components: - - pos: -15.5,-9.5 - parent: 6 - type: Transform - - uid: 6556 - components: - - pos: -14.5,-9.5 - parent: 6 - type: Transform - - uid: 6557 - components: - - pos: -14.5,-17.5 - parent: 6 - type: Transform - - uid: 6558 - components: - - pos: -15.5,-17.5 - parent: 6 - type: Transform - - uid: 6560 - components: - - pos: -18.5,-17.5 - parent: 6 - type: Transform - - uid: 6562 - components: - - pos: -20.5,-15.5 - parent: 6 - type: Transform - - uid: 6563 - components: - - pos: -13.5,-12.5 - parent: 6 - type: Transform - - uid: 6564 - components: - - pos: -13.5,-11.5 - parent: 6 - type: Transform - - uid: 6565 - components: - - pos: -13.5,-10.5 - parent: 6 - type: Transform - - uid: 6566 - components: - - pos: -13.5,-14.5 - parent: 6 - type: Transform - - uid: 6567 - components: - - pos: -13.5,-15.5 - parent: 6 - type: Transform - - uid: 6568 - components: - - pos: -13.5,-16.5 - parent: 6 - type: Transform - - uid: 6569 - components: - - pos: -15.5,5.5 - parent: 6 - type: Transform - - uid: 6570 - components: - - pos: -14.5,5.5 - parent: 6 - type: Transform - - uid: 6571 - components: - - pos: 5.5,5.5 - parent: 6 - type: Transform - - uid: 6572 - components: - - pos: 6.5,5.5 - parent: 6 - type: Transform - - uid: 6573 - components: - - pos: 4.5,-12.5 - parent: 6 - type: Transform - - uid: 6574 - components: - - pos: 4.5,-11.5 - parent: 6 - type: Transform - - uid: 6575 - components: - - pos: 4.5,-10.5 - parent: 6 - type: Transform - - uid: 6576 - components: - - pos: -0.5,-8.5 - parent: 6 - type: Transform - - uid: 6577 - components: - - pos: 5.5,-13.5 - parent: 6 - type: Transform - - uid: 6578 - components: - - pos: 6.5,-13.5 - parent: 6 - type: Transform - - uid: 6579 - components: - - pos: 11.5,-10.5 - parent: 6 - type: Transform - - uid: 6580 - components: - - pos: 11.5,-11.5 - parent: 6 - type: Transform - - uid: 6581 - components: - - pos: 11.5,-12.5 - parent: 6 - type: Transform - - uid: 6582 - components: - - pos: 5.5,-5.5 - parent: 6 - type: Transform - - uid: 6583 - components: - - pos: 6.5,-5.5 - parent: 6 - type: Transform - - uid: 6584 - components: - - pos: 8.5,-5.5 - parent: 6 - type: Transform - - uid: 6585 - components: - - pos: 9.5,-5.5 - parent: 6 - type: Transform - - uid: 6586 - components: - - pos: 11.5,-6.5 - parent: 6 - type: Transform - - uid: 6587 - components: - - pos: 11.5,-8.5 - parent: 6 - type: Transform - - uid: 6588 - components: - - pos: 15.5,5.5 - parent: 6 - type: Transform - - uid: 6589 - components: - - pos: 14.5,5.5 - parent: 6 - type: Transform - - uid: 6590 - components: - - pos: 14.5,-5.5 - parent: 6 - type: Transform - - uid: 6591 - components: - - pos: 15.5,-5.5 - parent: 6 - type: Transform - - uid: 6592 - components: - - pos: -13.5,4.5 - parent: 6 - type: Transform - - uid: 6593 - components: - - pos: -13.5,3.5 - parent: 6 - type: Transform - - uid: 6594 - components: - - pos: 4.5,4.5 - parent: 6 - type: Transform - - uid: 6595 - components: - - pos: 4.5,3.5 - parent: 6 - type: Transform - - uid: 6596 - components: - - pos: -5.5,5.5 - parent: 6 - type: Transform - - uid: 6597 - components: - - pos: -4.5,5.5 - parent: 6 - type: Transform - - uid: 6598 - components: - - pos: -3.5,5.5 - parent: 6 - type: Transform - - uid: 6599 - components: - - pos: -1.5,2.5 - parent: 6 - type: Transform - - uid: 6600 - components: - - pos: -0.5,2.5 - parent: 6 - type: Transform - - uid: 6601 - components: - - pos: -7.5,-6.5 - parent: 6 - type: Transform - - uid: 6602 - components: - - pos: 3.5,-14.5 - parent: 6 - type: Transform - - uid: 6603 - components: - - pos: 3.5,-15.5 - parent: 6 - type: Transform - - uid: 6604 - components: - - pos: 3.5,-16.5 - parent: 6 - type: Transform - - uid: 6605 - components: - - pos: 3.5,-17.5 - parent: 6 - type: Transform - - uid: 6608 - components: - - pos: 4.5,-30.5 - parent: 6 - type: Transform - - uid: 6609 - components: - - pos: 5.5,-30.5 - parent: 6 - type: Transform - - uid: 6610 - components: - - pos: 6.5,-30.5 - parent: 6 - type: Transform - - uid: 6611 - components: - - pos: 6.5,-42.5 - parent: 6 - type: Transform - - uid: 6612 - components: - - pos: 5.5,-42.5 - parent: 6 - type: Transform - - uid: 6613 - components: - - pos: 4.5,-42.5 - parent: 6 - type: Transform - - uid: 6614 - components: - - pos: 7.5,-39.5 - parent: 6 - type: Transform - - uid: 6615 - components: - - pos: 7.5,-40.5 - parent: 6 - type: Transform - - uid: 6616 - components: - - pos: 7.5,-35.5 - parent: 6 - type: Transform - - uid: 6617 - components: - - pos: 7.5,-36.5 - parent: 6 - type: Transform - - uid: 6618 - components: - - pos: 10.5,-35.5 - parent: 6 - type: Transform - - uid: 6619 - components: - - pos: 10.5,-36.5 - parent: 6 - type: Transform - - uid: 6620 - components: - - pos: -12.5,-34.5 - parent: 6 - type: Transform - - uid: 6621 - components: - - pos: -12.5,-35.5 - parent: 6 - type: Transform - - uid: 6622 - components: - - pos: 0.5,-34.5 - parent: 6 - type: Transform - - uid: 6623 - components: - - pos: 0.5,-35.5 - parent: 6 - type: Transform - - uid: 6624 - components: - - pos: -13.5,-28.5 - parent: 6 - type: Transform - - uid: 6625 - components: - - pos: -14.5,-28.5 - parent: 6 - type: Transform - - uid: 6626 - components: - - pos: -15.5,-28.5 - parent: 6 - type: Transform - - uid: 6627 - components: - - pos: -12.5,-20.5 - parent: 6 - type: Transform - - uid: 6631 - components: - - pos: -25.5,-23.5 - parent: 6 - type: Transform - - uid: 6632 - components: - - pos: -24.5,-23.5 - parent: 6 - type: Transform - - uid: 6633 - components: - - pos: -22.5,-27.5 - parent: 6 - type: Transform - - uid: 6634 - components: - - pos: -13.5,-42.5 - parent: 6 - type: Transform - - uid: 6635 - components: - - pos: -14.5,-42.5 - parent: 6 - type: Transform - - uid: 6636 - components: - - pos: -15.5,-42.5 - parent: 6 - type: Transform - - uid: 6637 - components: - - pos: -30.5,-29.5 - parent: 6 - type: Transform - - uid: 6638 - components: - - pos: -50.5,-21.5 - parent: 6 - type: Transform - - uid: 6639 - components: - - pos: -50.5,-27.5 - parent: 6 - type: Transform - - uid: 6640 - components: - - pos: -37.5,-24.5 - parent: 6 - type: Transform - - uid: 6641 - components: - - pos: -32.5,-46.5 - parent: 6 - type: Transform - - uid: 6642 - components: - - pos: -34.5,-46.5 - parent: 6 - type: Transform - - uid: 6643 - components: - - pos: 2.5,-46.5 - parent: 6 - type: Transform - - uid: 6644 - components: - - pos: 4.5,-46.5 - parent: 6 - type: Transform - - uid: 6645 - components: - - pos: 8.5,-47.5 - parent: 6 - type: Transform - - uid: 6646 - components: - - pos: -42.5,-42.5 - parent: 6 - type: Transform - - uid: 6647 - components: - - pos: -43.5,-42.5 - parent: 6 - type: Transform - - uid: 6648 - components: - - pos: -51.5,-43.5 - parent: 6 - type: Transform - - uid: 6649 - components: - - pos: -51.5,-45.5 - parent: 6 - type: Transform - - uid: 6650 - components: - - pos: -49.5,-46.5 - parent: 6 - type: Transform - - uid: 6652 - components: - - pos: -11.5,-49.5 - parent: 6 - type: Transform - - uid: 6653 - components: - - pos: -8.5,-46.5 - parent: 6 - type: Transform - - uid: 6654 - components: - - pos: -7.5,-46.5 - parent: 6 - type: Transform - - uid: 6655 - components: - - pos: -12.5,-46.5 - parent: 6 - type: Transform - - uid: 6656 - components: - - pos: -11.5,-46.5 - parent: 6 - type: Transform - - uid: 6657 - components: - - pos: -4.5,-43.5 - parent: 6 - type: Transform - - uid: 6658 - components: - - pos: -4.5,-44.5 - parent: 6 - type: Transform - - uid: 6659 - components: - - pos: -4.5,-45.5 - parent: 6 - type: Transform - - uid: 6663 - components: - - pos: 8.5,-48.5 - parent: 6 - type: Transform - - uid: 6664 - components: - - pos: 1.5,-48.5 - parent: 6 - type: Transform - - uid: 7392 - components: - - pos: -8.5,-58.5 - parent: 6 - type: Transform - - uid: 7393 - components: - - pos: -3.5,-58.5 - parent: 6 - type: Transform - - uid: 7413 - components: - - pos: -8.5,-56.5 - parent: 6 - type: Transform - - uid: 7414 - components: - - pos: -5.5,-60.5 - parent: 6 - type: Transform - - uid: 7415 - components: - - pos: -6.5,-60.5 - parent: 6 - type: Transform - - uid: 7652 - components: - - pos: 20.5,-2.5 - parent: 6 - type: Transform - - uid: 7653 - components: - - pos: 29.5,3.5 - parent: 6 - type: Transform - - uid: 7654 - components: - - pos: 29.5,-10.5 - parent: 6 - type: Transform - - uid: 7655 - components: - - pos: 29.5,-11.5 - parent: 6 - type: Transform - - uid: 7656 - components: - - pos: 29.5,-12.5 - parent: 6 - type: Transform - - uid: 7657 - components: - - pos: 43.5,-9.5 - parent: 6 - type: Transform - - uid: 7658 - components: - - pos: 30.5,-9.5 - parent: 6 - type: Transform - - uid: 7659 - components: - - pos: 31.5,-9.5 - parent: 6 - type: Transform - - uid: 11589 - components: - - pos: -16.5,-30.5 - parent: 6 - type: Transform - - uid: 11590 - components: - - pos: -16.5,-29.5 - parent: 6 - type: Transform - - uid: 11591 - components: - - pos: -16.5,-32.5 - parent: 6 - type: Transform - - uid: 12415 - components: - - pos: 15.5,17.5 - parent: 6 - type: Transform - - uid: 12416 - components: - - pos: 14.5,17.5 - parent: 6 - type: Transform - - uid: 12417 - components: - - pos: 15.5,13.5 - parent: 6 - type: Transform - - uid: 12418 - components: - - pos: 14.5,13.5 - parent: 6 - type: Transform - - uid: 13064 - components: - - pos: -23.5,-18.5 - parent: 6 - type: Transform - - uid: 13077 - components: - - pos: -9.5,-23.5 - parent: 6 - type: Transform - - uid: 13090 - components: - - pos: -7.5,-49.5 - parent: 6 - type: Transform - - uid: 13093 - components: - - pos: -6.5,-71.5 - parent: 6 - type: Transform - - uid: 13094 - components: - - pos: -5.5,-71.5 - parent: 6 - type: Transform - - uid: 13095 - components: - - pos: 1.5,-78.5 - parent: 6 - type: Transform - - uid: 13096 - components: - - pos: 0.5,-78.5 - parent: 6 - type: Transform - - uid: 13102 - components: - - pos: 13.5,-38.5 - parent: 6 - type: Transform - - uid: 13103 - components: - - pos: 14.5,-38.5 - parent: 6 - type: Transform - - uid: 13125 - components: - - pos: 13.5,-13.5 - parent: 6 - type: Transform - - uid: 13126 - components: - - pos: 16.5,-13.5 - parent: 6 - type: Transform -- proto: Fireplace - entities: - - uid: 5100 - components: - - pos: 1.5,-5.5 - parent: 6 - type: Transform - - uid: 5164 - components: - - pos: -6.5,1.5 - parent: 6 - type: Transform - - uid: 5422 - components: - - pos: -38.5,-37.5 - parent: 6 - type: Transform -- proto: Flash - entities: - - uid: 6339 - components: - - pos: -10.037393,8.564573 - parent: 6 - type: Transform -- proto: FloodlightBroken - entities: - - uid: 11169 - components: - - pos: -52.523926,-35.49571 - parent: 6 - type: Transform -- proto: FloorDrain - entities: - - uid: 1519 - components: - - pos: 26.5,4.5 - parent: 6 - type: Transform - - fixtures: [] - type: Fixtures - - uid: 4637 - components: - - pos: -6.5,-21.5 - parent: 6 - type: Transform - - fixtures: [] - type: Fixtures - - uid: 5161 - components: - - pos: -9.5,-4.5 - parent: 6 - type: Transform - - fixtures: [] - type: Fixtures - - uid: 5417 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-39.5 - parent: 6 - type: Transform - - fixtures: [] - type: Fixtures - - uid: 6002 - components: - - pos: 13.5,23.5 - parent: 6 - type: Transform - - fixtures: [] - type: Fixtures -- proto: FloorTileItemDirty - entities: - - uid: 4779 - components: - - rot: 1.5707963267948966 rad - pos: -83.63268,-40.218216 - parent: 6 - type: Transform -- proto: FloorTileItemSilver - entities: - - uid: 13476 - components: - - pos: -39.52305,-61.514 - parent: 6 - type: Transform - - count: 20 - type: Stack -- proto: FloraRockSolid01 - entities: - - uid: 3045 - components: - - pos: 6.5111475,-57.13191 - parent: 6 - type: Transform - - uid: 3392 - components: - - pos: -61.812347,-29.324266 - parent: 6 - type: Transform - - uid: 6404 - components: - - pos: 3.0725744,-0.16421038 - parent: 6 - type: Transform - - uid: 13458 - components: - - pos: 1.1552553,13.699205 - parent: 6 - type: Transform - - uid: 13460 - components: - - pos: -44.398453,-0.9168674 - parent: 6 - type: Transform -- proto: FloraRockSolid02 - entities: - - uid: 2830 - components: - - pos: -60.357754,-38.41907 - parent: 6 - type: Transform - - uid: 3903 - components: - - pos: -64.08084,-28.510105 - parent: 6 - type: Transform - - uid: 5563 - components: - - pos: 2.6674764,-62.22875 - parent: 6 - type: Transform - - uid: 7942 - components: - - pos: -10.158922,13.093135 - parent: 6 - type: Transform -- proto: FloraRockSolid03 - entities: - - uid: 2999 - components: - - pos: -5.07331,-85.093 - parent: 6 - type: Transform - - uid: 13459 - components: - - pos: -19.609337,17.033985 - parent: 6 - type: Transform - - uid: 13461 - components: - - pos: -70.13768,-21.781702 - parent: 6 - type: Transform -- proto: FloraTree02 - entities: - - uid: 1339 - components: - - pos: -17.087059,-5.479291 - parent: 6 - type: Transform -- proto: FloraTreeLarge05 - entities: - - uid: 541 - components: - - pos: -18.958637,-6.908564 - parent: 6 - type: Transform -- proto: FloraTreeStump - entities: - - uid: 6347 - components: - - pos: -19.254988,-3.2183788 - parent: 6 - type: Transform - - uid: 6348 - components: - - pos: -17.207521,-7.847518 - parent: 6 - type: Transform -- proto: FoamBlade - entities: - - uid: 4319 - components: - - pos: 21.361864,-25.670048 - parent: 6 - type: Transform - - nextAttack: 8133.9348649 - type: MeleeWeapon -- proto: FoodBakedBunHoney - entities: - - uid: 13464 - components: - - pos: -25.511547,28.579197 - parent: 6 - type: Transform -- proto: FoodBanana - entities: - - uid: 5624 - components: - - pos: 16.40795,-29.521938 - parent: 6 - type: Transform - - uid: 5625 - components: - - pos: 16.26596,-29.29488 - parent: 6 - type: Transform - - uid: 5626 - components: - - pos: 15.996186,-29.56451 - parent: 6 - type: Transform -- proto: FoodBowlBig - entities: - - uid: 6023 - components: - - pos: 16.324144,21.795668 - parent: 6 - type: Transform -- proto: FoodBoxDonkpocket - entities: - - uid: 13824 - components: - - pos: -70.5262,-13.338938 - parent: 6 - type: Transform -- proto: FoodBoxDonkpocketHonk - entities: - - uid: 7623 - components: - - pos: -39.426613,-31.363337 - parent: 6 - type: Transform -- proto: FoodBoxDonut - entities: - - uid: 6337 - components: - - pos: -6.523168,9.621988 - parent: 6 - type: Transform - - uid: 6485 - components: - - pos: 15.499124,-0.38366717 - parent: 6 - type: Transform -- proto: FoodBoxPizzaFilled - entities: - - uid: 5729 - components: - - pos: 27.494638,-4.2537265 - parent: 6 - type: Transform -- proto: FoodBreadBanana - entities: - - uid: 7622 - components: - - pos: -38.572445,-31.363337 - parent: 6 - type: Transform -- proto: FoodBreadPlain - entities: - - uid: 5891 - components: - - pos: -30.449894,-51.434753 - parent: 6 - type: Transform -- proto: FoodBurgerRobot - entities: - - uid: 7421 - components: - - pos: -17.483595,-50.879738 - parent: 6 - type: Transform -- proto: FoodBurgerSuper - entities: - - uid: 2793 - components: - - pos: 10.429161,27.368525 - parent: 6 - type: Transform -- proto: FoodCakeBirthdaySlice - entities: - - uid: 7814 - components: - - pos: 0.5428545,-16.42283 - parent: 6 - type: Transform -- proto: FoodCakeChocolateSlice - entities: - - uid: 7630 - components: - - pos: -40.626602,-41.31247 - parent: 6 - type: Transform -- proto: FoodCakeSuppermatter - entities: - - uid: 8057 - components: - - pos: -19.508875,10.470149 - parent: 6 - type: Transform -- proto: FoodCondimentBottleEnzyme - entities: - - uid: 4611 - components: - - pos: -8.779711,-26.401459 - parent: 6 - type: Transform -- proto: FoodCondimentPacketSalt - entities: - - uid: 6024 - components: - - pos: 16.806902,21.710522 - parent: 6 - type: Transform -- proto: FoodContainerEgg - entities: - - uid: 4614 - components: - - pos: -8.779711,-26.172293 - parent: 6 - type: Transform -- proto: FoodDonutJellyBungo - entities: - - uid: 13483 - components: - - pos: 26.456028,-15.391834 - parent: 6 - type: Transform -- proto: FoodFrozenPopsicleBerry - entities: - - uid: 6326 - components: - - flags: InContainer - type: MetaData - - parent: 5076 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodFrozenPopsicleJumbo - entities: - - uid: 6323 - components: - - flags: InContainer - type: MetaData - - parent: 5076 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodFrozenPopsicleOrange - entities: - - uid: 5174 - components: - - flags: InContainer - type: MetaData - - parent: 5076 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodFrozenSandwich - entities: - - uid: 6325 - components: - - flags: InContainer - type: MetaData - - parent: 5076 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodFrozenSandwichStrawberry - entities: - - uid: 6324 - components: - - flags: InContainer - type: MetaData - - parent: 5076 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodMealCubancarp - entities: - - uid: 14052 - components: - - pos: -1.5245855,-31.062477 - parent: 6 - type: Transform -- proto: FoodMealMemoryleek - entities: - - uid: 1442 - components: - - pos: -43.450493,7.615522 - parent: 6 - type: Transform -- proto: FoodMeatXeno - entities: - - uid: 13465 - components: - - pos: -38.4764,31.389072 - parent: 6 - type: Transform - - uid: 13631 - components: - - pos: 9.93219,-5.5282135 - parent: 10465 - type: Transform -- proto: FoodPieBananaCream - entities: - - uid: 5619 - components: - - pos: 17.430262,-29.15297 - parent: 6 - type: Transform - - uid: 5620 - components: - - pos: 17.302473,-29.29488 - parent: 6 - type: Transform - - uid: 5621 - components: - - pos: 17.146286,-29.465174 - parent: 6 - type: Transform - - uid: 5622 - components: - - pos: 17.018497,-29.195543 - parent: 6 - type: Transform -- proto: FoodPlate - entities: - - uid: 6021 - components: - - pos: 16.36674,21.639565 - parent: 6 - type: Transform -- proto: FoodPlateSmall - entities: - - uid: 6022 - components: - - pos: 16.49453,21.540228 - parent: 6 - type: Transform -- proto: FoodPlateTrash - entities: - - uid: 11167 - components: - - pos: -54.497555,-33.452187 - parent: 6 - type: Transform -- proto: FoodSoupBungo - entities: - - uid: 5726 - components: - - pos: 25.439394,11.475561 - parent: 6 - type: Transform -- proto: FoodSoupMonkey - entities: - - uid: 3943 - components: - - pos: -18.621372,-62.49699 - parent: 6 - type: Transform -- proto: FoodTartMime - entities: - - uid: 5628 - components: - - pos: 15.300446,-29.40841 - parent: 6 - type: Transform -- proto: FoodTinPeachesMaintTrash - entities: - - uid: 13744 - components: - - pos: 2.083191,5.0137787 - parent: 13645 - type: Transform -- proto: GasAnalyzer - entities: - - uid: 4884 - components: - - pos: -33.370625,-6.4446573 - parent: 6 - type: Transform - - uid: 5197 - components: - - pos: -13.306403,8.4866905 - parent: 6 - type: Transform - - uid: 6376 - components: - - pos: -36.95325,22.538956 - parent: 6 - type: Transform - - uid: 6384 - components: - - pos: 1.5268581,-75.500656 - parent: 6 - type: Transform - - uid: 6416 - components: - - pos: -46.62542,-24.922148 - parent: 6 - type: Transform - - uid: 6417 - components: - - pos: -46.347122,-25.240028 - parent: 6 - type: Transform -- proto: GasCanisterBrokenBase - entities: - - uid: 3641 - components: - - pos: -62.5,-34.5 - parent: 6 - type: Transform - - uid: 5534 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-29.5 - parent: 6 - type: Transform - - uid: 11168 - components: - - pos: -54.5,-35.5 - parent: 6 - type: Transform -- proto: GasFilterFlipped - entities: - - uid: 2166 - components: - - pos: -36.5,10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 2167 - components: - - pos: -36.5,12.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2168 - components: - - pos: -36.5,14.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2169 - components: - - pos: -36.5,16.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2170 - components: - - pos: -36.5,18.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2171 - components: - - pos: -36.5,20.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics -- proto: GasMinerCarbonDioxide - entities: - - uid: 3458 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,13.5 - parent: 6 - type: Transform -- proto: GasMinerNitrogen - entities: - - uid: 3459 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,9.5 - parent: 6 - type: Transform -- proto: GasMinerOxygen - entities: - - uid: 3460 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,11.5 - parent: 6 - type: Transform -- proto: GasMinerPlasma - entities: - - uid: 3461 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,17.5 - parent: 6 - type: Transform -- proto: GasMixerFlipped - entities: - - uid: 1895 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-73.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2172 - components: - - pos: -34.5,13.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2173 - components: - - pos: -34.5,12.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2174 - components: - - pos: -34.5,15.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2175 - components: - - pos: -34.5,17.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2176 - components: - - pos: -34.5,19.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2229 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,9.5 - parent: 6 - type: Transform - - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - type: GasMixer - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 5948 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-74.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics -- proto: GasOutletInjector - entities: - - uid: 2333 - components: - - rot: 3.141592653589793 rad - pos: -43.5,19.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2334 - components: - - rot: 3.141592653589793 rad - pos: -43.5,17.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2335 - components: - - rot: 3.141592653589793 rad - pos: -43.5,15.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2336 - components: - - rot: 3.141592653589793 rad - pos: -43.5,13.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2337 - components: - - rot: 3.141592653589793 rad - pos: -43.5,11.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2338 - components: - - rot: 3.141592653589793 rad - pos: -43.5,9.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2430 - components: - - pos: -35.5,26.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics -- proto: GasPassiveVent - entities: - - uid: 1456 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-80.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 1457 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-80.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 1458 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-80.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 1459 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-80.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2230 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,8.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 2364 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,19.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2365 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,17.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2366 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,15.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2367 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,13.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2368 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,11.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2369 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,9.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2422 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,21.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2431 - components: - - pos: -33.5,26.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5446 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-42.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics -- proto: GasPipeBend - entities: - - uid: 659 - components: - - pos: 36.5,-10.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 671 - components: - - pos: 30.5,3.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 677 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,2.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 1729 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-72.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2226 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,12.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2327 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,20.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2328 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,18.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2329 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,16.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2330 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,14.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2331 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,12.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2332 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,10.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2426 - components: - - pos: -34.5,23.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2427 - components: - - rot: 3.141592653589793 rad - pos: -35.5,23.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2439 - components: - - rot: 3.141592653589793 rad - pos: -33.5,18.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2440 - components: - - pos: -32.5,18.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 4644 - components: - - pos: -28.5,-16.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6256 - components: - - pos: -24.5,-7.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6258 - components: - - pos: -25.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6259 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6261 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-7.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6267 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6308 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6739 - components: - - pos: -80.5,-39.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 6740 - components: - - rot: 1.5707963267948966 rad - pos: -82.5,-39.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 8052 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11278 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11282 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11358 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11424 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-15.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11425 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-16.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11485 - components: - - pos: -13.5,-18.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11486 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-18.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11492 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11493 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11529 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-18.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 11548 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-30.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 11557 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-29.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11571 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11675 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-7.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11683 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11701 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-8.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11744 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-8.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11752 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11759 - components: - - pos: 14.5,-4.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11760 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-4.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11765 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11773 - components: - - pos: 17.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11778 - components: - - pos: 15.5,-3.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11779 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-3.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11796 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,3.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11797 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,3.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11817 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,4.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11819 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,4.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11857 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-30.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11858 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-31.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11862 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-29.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11977 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11980 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-48.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11987 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-48.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11988 - components: - - pos: 3.5,-48.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11989 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-49.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11994 - components: - - rot: 3.141592653589793 rad - pos: -56.5,-43.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 11997 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-45.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 12014 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-29.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12052 - components: - - pos: -42.5,-31.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12084 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12180 - components: - - pos: 31.5,5.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12244 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-19.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12245 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-19.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12269 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12335 - components: - - pos: 9.5,-14.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12341 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-16.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12359 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-25.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12399 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-40.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12402 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-37.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12406 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-37.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12437 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-50.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12438 - components: - - pos: -6.5,-50.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12457 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-52.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12459 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-53.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12470 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-55.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12479 - components: - - pos: -5.5,-54.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12532 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-54.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 13108 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,11.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- proto: GasPipeFourway - entities: - - uid: 2442 - components: - - pos: -32.5,16.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2443 - components: - - pos: -32.5,15.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 6255 - components: - - pos: -29.5,-7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6257 - components: - - pos: -25.5,-7.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11302 - components: - - pos: -14.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11303 - components: - - pos: -15.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11411 - components: - - pos: -14.5,-16.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11421 - components: - - pos: -15.5,-15.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11533 - components: - - pos: -29.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11614 - components: - - pos: 5.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11644 - components: - - pos: 6.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11782 - components: - - pos: 14.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12259 - components: - - pos: 6.5,-36.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12386 - components: - - pos: 9.5,-36.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12443 - components: - - pos: -6.5,-54.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12452 - components: - - pos: -12.5,-52.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- proto: GasPipeStraight - entities: - - uid: 682 - components: - - pos: 43.5,-2.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 683 - components: - - pos: 31.5,-3.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 1452 - components: - - pos: -7.5,-79.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 1453 - components: - - pos: -5.5,-79.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 1454 - components: - - pos: -3.5,-79.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 1455 - components: - - pos: -1.5,-79.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2177 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,15.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2178 - components: - - pos: -36.5,17.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2179 - components: - - pos: -36.5,15.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2180 - components: - - pos: -36.5,9.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2182 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,10.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2183 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,11.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2184 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,14.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2185 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,15.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2186 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,18.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2187 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,19.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2188 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,18.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2189 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,9.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2190 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,16.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2191 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,13.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2192 - components: - - pos: -36.5,13.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2193 - components: - - pos: -36.5,11.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2194 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,8.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2195 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,9.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2196 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,12.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2197 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,13.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2198 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,16.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2199 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,17.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2200 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,20.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2201 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,20.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2202 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,15.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2203 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,13.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2204 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,11.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2205 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,12.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2206 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,10.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2207 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,14.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2212 - components: - - pos: -34.5,20.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2213 - components: - - pos: -34.5,18.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2216 - components: - - pos: -34.5,14.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2217 - components: - - pos: -34.5,16.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2218 - components: - - pos: -36.5,19.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2219 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,17.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2220 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,19.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2221 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,19.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2224 - components: - - rot: 3.141592653589793 rad - pos: -35.5,10.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2225 - components: - - rot: 3.141592653589793 rad - pos: -35.5,11.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2227 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,11.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2228 - components: - - pos: -34.5,10.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2291 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,20.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2292 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,19.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2293 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,18.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2294 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,17.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2295 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,16.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2296 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,15.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2297 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,14.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2298 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,13.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2299 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,12.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2300 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,11.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2301 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,10.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2302 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,9.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2303 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,20.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2304 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,19.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2305 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,18.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2306 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,17.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2307 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,16.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2308 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,15.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2309 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,14.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2310 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,13.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2311 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,12.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2312 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,11.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2313 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,10.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2314 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,9.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2315 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,20.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2316 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,20.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2317 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,18.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2318 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,18.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2319 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,16.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2320 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,16.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2321 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,14.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2322 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,14.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2323 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,12.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2324 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,12.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2325 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,10.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2326 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,10.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2339 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,19.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2340 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,17.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2341 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,15.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2342 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,13.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2343 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,11.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2344 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,9.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2421 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,21.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2428 - components: - - rot: 3.141592653589793 rad - pos: -35.5,24.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2429 - components: - - rot: 3.141592653589793 rad - pos: -35.5,25.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2432 - components: - - pos: -33.5,25.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2433 - components: - - pos: -33.5,24.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2434 - components: - - pos: -33.5,23.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2436 - components: - - pos: -33.5,21.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2437 - components: - - pos: -33.5,20.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2438 - components: - - pos: -33.5,19.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 3124 - components: - - rot: 3.141592653589793 rad - pos: -33.5,5.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 3125 - components: - - rot: 3.141592653589793 rad - pos: -33.5,4.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 3132 - components: - - rot: 3.141592653589793 rad - pos: -33.5,3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 3133 - components: - - rot: 3.141592653589793 rad - pos: -33.5,2.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 3136 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,8.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 3137 - components: - - rot: 3.141592653589793 rad - pos: -33.5,6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 3140 - components: - - rot: 3.141592653589793 rad - pos: -33.5,1.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 3141 - components: - - rot: 3.141592653589793 rad - pos: -33.5,0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 3148 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 3149 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-1.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 3457 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,17.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 4516 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,9.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 4517 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,9.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 6250 - components: - - pos: -30.5,-8.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 6251 - components: - - pos: -29.5,-8.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 6252 - components: - - pos: -25.5,-8.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 6253 - components: - - pos: -24.5,-8.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 6263 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6264 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6265 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6266 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6268 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-6.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6269 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-5.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6270 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6271 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-3.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6272 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-2.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6275 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6276 - components: - - rot: 3.141592653589793 rad - pos: -31.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6277 - components: - - rot: 3.141592653589793 rad - pos: -31.5,0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6278 - components: - - rot: 3.141592653589793 rad - pos: -31.5,1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6279 - components: - - rot: 3.141592653589793 rad - pos: -31.5,2.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6280 - components: - - rot: 3.141592653589793 rad - pos: -31.5,3.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6281 - components: - - rot: 3.141592653589793 rad - pos: -31.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6282 - components: - - rot: 3.141592653589793 rad - pos: -31.5,5.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6283 - components: - - rot: 3.141592653589793 rad - pos: -31.5,6.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 6285 - components: - - pos: -31.5,8.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6301 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-5.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6302 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-4.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6304 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6306 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-2.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6307 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-1.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6309 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6310 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6311 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6312 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6314 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6315 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6317 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6318 - components: - - rot: 3.141592653589793 rad - pos: -26.5,0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6426 - components: - - pos: -30.5,-15.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6742 - components: - - rot: 1.5707963267948966 rad - pos: -77.5,-50.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 6743 - components: - - pos: -83.5,-44.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 6744 - components: - - pos: -83.5,-45.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 7703 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-40.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 8051 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-2.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 10211 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-45.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 11179 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11180 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11182 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11183 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11184 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11188 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11189 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 11190 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11191 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11192 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11193 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11194 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11195 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11198 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11201 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11202 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11203 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11204 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11205 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11206 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11207 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11208 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 11209 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11212 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-2.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11213 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-3.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11215 - components: - - rot: 3.141592653589793 rad - pos: -15.5,0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11216 - components: - - rot: 3.141592653589793 rad - pos: -15.5,1.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11218 - components: - - rot: 3.141592653589793 rad - pos: -15.5,3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11220 - components: - - pos: -14.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11221 - components: - - pos: -14.5,0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11222 - components: - - pos: -14.5,1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11223 - components: - - pos: -14.5,2.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11224 - components: - - pos: -14.5,3.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11226 - components: - - pos: -14.5,5.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11229 - components: - - pos: -15.5,5.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11230 - components: - - pos: -15.5,4.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11231 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11232 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11233 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11234 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11235 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11236 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11237 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11238 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11242 - components: - - pos: -5.5,5.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11244 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11247 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11248 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11249 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11250 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11251 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11252 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11253 - components: - - pos: -1.5,2.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11254 - components: - - pos: -1.5,1.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11256 - components: - - rot: 3.141592653589793 rad - pos: -3.5,4.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11257 - components: - - rot: 3.141592653589793 rad - pos: -3.5,5.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11261 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11262 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11263 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11264 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11265 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11268 - components: - - rot: 3.141592653589793 rad - pos: -0.5,1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11269 - components: - - rot: 3.141592653589793 rad - pos: -0.5,0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11271 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11272 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11273 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11274 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 11275 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11276 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 11280 - components: - - pos: -0.5,2.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11281 - components: - - pos: -0.5,3.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11283 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11284 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11285 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11286 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11287 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11288 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11290 - components: - - rot: 3.141592653589793 rad - pos: 6.5,5.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11292 - components: - - pos: 5.5,4.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11293 - components: - - pos: 5.5,5.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11295 - components: - - pos: -14.5,-5.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11296 - components: - - pos: -14.5,-6.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11297 - components: - - pos: -14.5,-7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11298 - components: - - pos: -14.5,-8.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11299 - components: - - pos: -14.5,-9.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11300 - components: - - pos: -14.5,-10.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11301 - components: - - pos: -14.5,-11.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11304 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-9.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11305 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-8.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11306 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-7.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11307 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11308 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-5.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11309 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-4.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11310 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11311 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-2.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11312 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-1.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11313 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11314 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11315 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11316 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11317 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11318 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11319 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11321 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11323 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11324 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11326 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11327 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11328 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11329 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11330 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11331 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11332 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11334 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11335 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11336 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11337 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11338 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11339 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11340 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11341 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11342 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11343 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11344 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11346 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11347 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11348 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11349 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11350 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11351 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11352 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11353 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11354 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11357 - components: - - pos: -63.5,-11.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11359 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11360 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11361 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11362 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11363 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11364 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11365 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11366 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11367 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11368 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11370 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11371 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11372 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11373 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11374 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11375 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11376 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11377 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11378 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11379 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11380 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11381 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11383 - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11384 - components: - - rot: 1.5707963267948966 rad - pos: -61.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11385 - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11386 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11387 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11388 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11389 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11390 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11391 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11393 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11394 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11395 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11397 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11398 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11400 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11401 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11402 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11403 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11404 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11405 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11408 - components: - - pos: -14.5,-13.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11409 - components: - - pos: -14.5,-14.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11410 - components: - - pos: -14.5,-15.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11412 - components: - - pos: -14.5,-17.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11413 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-16.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11414 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-16.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11415 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-16.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11417 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-15.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11418 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-15.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11419 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-15.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11420 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-15.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11422 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-15.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11423 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-15.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11426 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-16.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11427 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-16.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11428 - components: - - pos: -15.5,-14.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11429 - components: - - pos: -15.5,-13.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11430 - components: - - pos: -15.5,-12.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11431 - components: - - pos: -15.5,-11.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11432 - components: - - pos: -15.5,-39.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11433 - components: - - pos: -15.5,-40.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11434 - components: - - pos: -15.5,-41.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11435 - components: - - pos: -15.5,-42.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11436 - components: - - pos: -15.5,-16.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11437 - components: - - pos: -15.5,-17.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11438 - components: - - pos: -15.5,-18.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11439 - components: - - pos: -15.5,-19.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11440 - components: - - pos: -15.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11441 - components: - - pos: -15.5,-21.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11443 - components: - - pos: -15.5,-23.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11445 - components: - - pos: -15.5,-25.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11446 - components: - - pos: -15.5,-26.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11447 - components: - - pos: -15.5,-27.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11448 - components: - - pos: -15.5,-28.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11450 - components: - - pos: -15.5,-30.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11451 - components: - - pos: -15.5,-31.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11452 - components: - - pos: -15.5,-32.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11453 - components: - - pos: -15.5,-33.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11454 - components: - - pos: -15.5,-34.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11455 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-30.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11457 - components: - - pos: -15.5,-37.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11458 - components: - - pos: -15.5,-38.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11459 - components: - - pos: -13.5,-44.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11460 - components: - - pos: -13.5,-43.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11461 - components: - - pos: -13.5,-42.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11462 - components: - - pos: -13.5,-41.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11463 - components: - - pos: -13.5,-40.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11464 - components: - - pos: -13.5,-39.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11465 - components: - - pos: -13.5,-38.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11466 - components: - - pos: -13.5,-37.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11467 - components: - - pos: -13.5,-36.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11468 - components: - - pos: -13.5,-35.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11471 - components: - - pos: -13.5,-32.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11472 - components: - - pos: -13.5,-31.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11474 - components: - - pos: -13.5,-29.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11475 - components: - - pos: -13.5,-28.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11476 - components: - - pos: -13.5,-27.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11477 - components: - - pos: -13.5,-26.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11478 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-24.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11479 - components: - - pos: -13.5,-24.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11480 - components: - - pos: -13.5,-23.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11481 - components: - - pos: -13.5,-22.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11483 - components: - - pos: -13.5,-20.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11484 - components: - - pos: -13.5,-19.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11487 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-16.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11488 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-17.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11489 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-17.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 11490 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-18.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11491 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-18.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11494 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-19.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11495 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-20.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11496 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-19.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11497 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11498 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11499 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11500 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11501 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11502 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11507 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11510 - components: - - pos: -23.5,-19.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11511 - components: - - pos: -23.5,-18.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11514 - components: - - pos: -21.5,-20.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11515 - components: - - pos: -21.5,-19.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11516 - components: - - pos: -21.5,-18.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 11518 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11519 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11520 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 11521 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11522 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11524 - components: - - pos: -30.5,-20.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11525 - components: - - pos: -30.5,-19.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 11526 - components: - - pos: -30.5,-18.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11532 - components: - - pos: -29.5,-19.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11534 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11535 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11536 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11538 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11539 - components: - - pos: -25.5,-21.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11540 - components: - - pos: -25.5,-22.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11541 - components: - - pos: -25.5,-23.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11542 - components: - - pos: -25.5,-24.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11543 - components: - - pos: -25.5,-25.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11544 - components: - - pos: -25.5,-26.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11545 - components: - - pos: -25.5,-27.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11546 - components: - - pos: -25.5,-28.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 11547 - components: - - pos: -25.5,-29.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11550 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-22.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11551 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-23.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11552 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-24.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11553 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-25.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11554 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-26.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11555 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-27.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11556 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-28.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11559 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11560 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11561 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11562 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11563 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11564 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11567 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11569 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11570 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11572 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-19.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11575 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-20.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11576 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-19.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 11578 - components: - - pos: -34.5,-20.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11579 - components: - - pos: -34.5,-19.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 11580 - components: - - pos: -34.5,-18.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11581 - components: - - pos: -34.5,-17.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11582 - components: - - pos: -33.5,-19.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11583 - components: - - pos: -33.5,-18.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11584 - components: - - pos: -33.5,-17.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11587 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11588 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11594 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11595 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11596 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11597 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11598 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11599 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11600 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11601 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11602 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11603 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11604 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11605 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11608 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11609 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11610 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11611 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11612 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11613 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11615 - components: - - pos: 5.5,-9.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11616 - components: - - pos: 5.5,-8.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11617 - components: - - pos: 5.5,-7.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11618 - components: - - pos: 5.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11619 - components: - - pos: 5.5,-5.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11620 - components: - - pos: 5.5,-4.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11621 - components: - - pos: 5.5,-3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11622 - components: - - pos: 5.5,-2.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11623 - components: - - pos: 5.5,-1.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11624 - components: - - pos: 5.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11625 - components: - - pos: 5.5,0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11626 - components: - - pos: 5.5,1.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11628 - components: - - pos: 6.5,3.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11629 - components: - - pos: 6.5,2.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11630 - components: - - pos: 6.5,1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11631 - components: - - pos: 6.5,0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11632 - components: - - pos: 6.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11633 - components: - - pos: 6.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11634 - components: - - pos: 6.5,-2.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11635 - components: - - pos: 6.5,-3.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11637 - components: - - pos: 6.5,-5.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11638 - components: - - pos: 6.5,-6.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11639 - components: - - pos: 6.5,-7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11640 - components: - - pos: 6.5,-8.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11641 - components: - - pos: 6.5,-9.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11642 - components: - - pos: 6.5,-10.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11643 - components: - - pos: 6.5,-11.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11645 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11646 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11647 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11648 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11649 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11650 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11652 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11653 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11655 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11656 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11657 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11658 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11659 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11660 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11661 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11662 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11663 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11664 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11665 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-11.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11666 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-10.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11667 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-9.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11668 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-8.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11669 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11672 - components: - - pos: -1.5,-9.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11673 - components: - - pos: -1.5,-8.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 11677 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-7.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11678 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-7.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 11679 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11680 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11684 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11685 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-7.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11690 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11691 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11698 - components: - - pos: 10.5,-11.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11699 - components: - - pos: 10.5,-10.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11700 - components: - - pos: 10.5,-9.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11702 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11705 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11706 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11707 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11708 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11709 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11711 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11712 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11713 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11714 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11715 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11716 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11717 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11718 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11720 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11721 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11722 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11725 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11726 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11727 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11728 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11729 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11730 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11731 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11733 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11734 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11735 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11737 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11738 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11739 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11740 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11741 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11742 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-8.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11743 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-8.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11746 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11747 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11749 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-9.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11750 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-8.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11751 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-7.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11753 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11754 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11755 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11756 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11758 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-5.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11761 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-4.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11763 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11764 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11767 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-2.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11771 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11772 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 11775 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-6.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11776 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-5.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11777 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11780 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-2.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11781 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11784 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11785 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11788 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11789 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11790 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 11791 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11793 - components: - - rot: 3.141592653589793 rad - pos: 14.5,0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11794 - components: - - rot: 3.141592653589793 rad - pos: 14.5,1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11795 - components: - - rot: 3.141592653589793 rad - pos: 14.5,2.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 11798 - components: - - rot: 3.141592653589793 rad - pos: 15.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11799 - components: - - rot: 3.141592653589793 rad - pos: 15.5,5.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11800 - components: - - rot: 3.141592653589793 rad - pos: 15.5,6.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11801 - components: - - rot: 3.141592653589793 rad - pos: 15.5,7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11802 - components: - - rot: 3.141592653589793 rad - pos: 15.5,8.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11803 - components: - - rot: 3.141592653589793 rad - pos: 15.5,9.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11804 - components: - - rot: 3.141592653589793 rad - pos: 15.5,10.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11805 - components: - - rot: 3.141592653589793 rad - pos: 15.5,11.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11806 - components: - - rot: 3.141592653589793 rad - pos: 15.5,12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11807 - components: - - rot: 3.141592653589793 rad - pos: 15.5,13.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11809 - components: - - rot: 3.141592653589793 rad - pos: 15.5,15.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11810 - components: - - rot: 3.141592653589793 rad - pos: 15.5,16.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11811 - components: - - rot: 3.141592653589793 rad - pos: 15.5,17.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11814 - components: - - pos: 12.5,1.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11815 - components: - - pos: 12.5,2.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11818 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,4.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11820 - components: - - rot: 3.141592653589793 rad - pos: 14.5,5.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11823 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11824 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11826 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,7.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11828 - components: - - pos: 14.5,8.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11829 - components: - - pos: 14.5,9.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11830 - components: - - pos: 14.5,10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11831 - components: - - pos: 14.5,11.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11832 - components: - - pos: 14.5,12.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11833 - components: - - pos: 14.5,13.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11834 - components: - - pos: 14.5,14.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11835 - components: - - pos: 14.5,15.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11837 - components: - - pos: 14.5,17.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11840 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-24.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11841 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-24.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 11842 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-24.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11843 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-24.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11844 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-24.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11846 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-25.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 11847 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-25.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11848 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-25.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11849 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-25.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11850 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-24.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11851 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-24.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11854 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-25.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11855 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-30.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11856 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-30.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11860 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-29.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11861 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-29.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11864 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-29.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11866 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-35.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11867 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-35.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11868 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-35.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11869 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-35.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11870 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-35.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11871 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-34.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11872 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-34.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11873 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-34.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11877 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11878 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11879 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11880 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11882 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11883 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11884 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11885 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11886 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11888 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11889 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11890 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11892 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11893 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11894 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11895 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11896 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11897 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11898 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11899 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11900 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11901 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11902 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11903 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11904 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11905 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11906 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11907 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11910 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11912 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11913 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11914 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11915 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11916 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11917 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11918 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11919 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11920 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11921 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11922 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11923 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11924 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11925 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11926 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11927 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11929 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11930 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11931 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11932 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11933 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11935 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11936 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11937 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11938 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11939 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11941 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11942 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11943 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11944 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11945 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11946 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11948 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11949 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11951 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11952 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11958 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11959 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11960 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11961 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11962 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11964 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11965 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11966 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11967 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11968 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11969 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11970 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11972 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11973 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11974 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11976 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11978 - components: - - pos: 4.5,-46.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11979 - components: - - pos: 4.5,-47.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11983 - components: - - pos: 2.5,-44.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11984 - components: - - pos: 2.5,-45.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11985 - components: - - pos: 2.5,-46.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11986 - components: - - pos: 2.5,-47.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11991 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-43.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 11992 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-45.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 11993 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-43.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 11995 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-45.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 11998 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12006 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-42.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12007 - components: - - pos: -33.5,-41.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12015 - components: - - pos: -43.5,-42.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12016 - components: - - pos: -43.5,-41.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12017 - components: - - pos: -43.5,-38.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12018 - components: - - pos: -43.5,-37.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12020 - components: - - pos: -43.5,-33.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12021 - components: - - pos: -43.5,-32.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12022 - components: - - pos: -43.5,-30.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12023 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-31.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12024 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-35.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12025 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-39.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12032 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-34.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12033 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-34.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12034 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-29.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12035 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-29.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12036 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-40.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12037 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-40.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12038 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-44.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12039 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-43.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12040 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-42.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12041 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-41.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12042 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-40.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12045 - components: - - pos: -42.5,-38.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12046 - components: - - pos: -42.5,-37.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12047 - components: - - pos: -42.5,-36.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12048 - components: - - pos: -42.5,-35.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12049 - components: - - pos: -42.5,-34.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12050 - components: - - pos: -42.5,-33.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12051 - components: - - pos: -42.5,-32.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12055 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-11.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12056 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-10.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12057 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-9.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12060 - components: - - pos: 26.5,-9.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12063 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12064 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12065 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12072 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12073 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12074 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12075 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12076 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12077 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12078 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12079 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12080 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12081 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12082 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12083 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12085 - components: - - rot: 3.141592653589793 rad - pos: 43.5,-11.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12086 - components: - - rot: 3.141592653589793 rad - pos: 43.5,-10.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12087 - components: - - rot: 3.141592653589793 rad - pos: 43.5,-9.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12088 - components: - - rot: 3.141592653589793 rad - pos: 43.5,-8.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12089 - components: - - rot: 3.141592653589793 rad - pos: 43.5,-7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12095 - components: - - rot: 3.141592653589793 rad - pos: 43.5,-3.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12096 - components: - - rot: 3.141592653589793 rad - pos: 43.5,-4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12097 - components: - - rot: 3.141592653589793 rad - pos: 43.5,-5.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12098 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-11.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12099 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-10.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12100 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-9.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12101 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-8.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12102 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12103 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-6.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12104 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-5.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12105 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12108 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-9.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12109 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-8.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12110 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-7.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12111 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12112 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-5.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12113 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-4.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12114 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12115 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-2.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12116 - components: - - rot: 3.141592653589793 rad - pos: 43.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12117 - components: - - rot: 3.141592653589793 rad - pos: 43.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12118 - components: - - rot: 3.141592653589793 rad - pos: 43.5,0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12119 - components: - - rot: 3.141592653589793 rad - pos: 43.5,1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12149 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12150 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12151 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12152 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12153 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12160 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,2.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12161 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,2.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12162 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-6.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12163 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-6.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12181 - components: - - pos: 31.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12182 - components: - - pos: 31.5,3.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12183 - components: - - pos: 31.5,2.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12184 - components: - - pos: 31.5,1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12185 - components: - - pos: 31.5,0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12186 - components: - - pos: 31.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12187 - components: - - pos: 31.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12196 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,5.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12197 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,5.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12198 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,5.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12201 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12202 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12203 - components: - - pos: 30.5,2.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12204 - components: - - pos: 30.5,1.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12205 - components: - - pos: 30.5,0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12207 - components: - - pos: 30.5,-1.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12210 - components: - - pos: -53.5,-11.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12211 - components: - - pos: -53.5,-12.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12212 - components: - - pos: -53.5,-13.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12213 - components: - - pos: -53.5,-14.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12214 - components: - - pos: -53.5,-15.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12215 - components: - - pos: -50.5,-13.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12216 - components: - - pos: -50.5,-14.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12217 - components: - - pos: -50.5,-15.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12220 - components: - - pos: -46.5,-11.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12221 - components: - - pos: -46.5,-12.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12222 - components: - - pos: -46.5,-13.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12223 - components: - - pos: -46.5,-14.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12224 - components: - - pos: -46.5,-15.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12225 - components: - - pos: -45.5,-15.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12226 - components: - - pos: -45.5,-14.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12227 - components: - - pos: -45.5,-13.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12230 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12231 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12232 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12233 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12236 - components: - - pos: 5.5,-11.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12237 - components: - - pos: 5.5,-12.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12238 - components: - - pos: 5.5,-13.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12241 - components: - - pos: 5.5,-16.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12242 - components: - - pos: 5.5,-17.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12243 - components: - - pos: 5.5,-18.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12246 - components: - - pos: 4.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12247 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-21.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12248 - components: - - pos: 4.5,-22.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12250 - components: - - pos: 4.5,-24.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12252 - components: - - pos: 4.5,-26.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12253 - components: - - pos: 4.5,-27.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12254 - components: - - pos: 4.5,-28.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12255 - components: - - pos: 4.5,-29.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12256 - components: - - pos: 4.5,-30.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12257 - components: - - pos: 4.5,-31.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12258 - components: - - pos: 4.5,-32.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12261 - components: - - pos: 4.5,-35.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12262 - components: - - pos: 4.5,-36.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12263 - components: - - pos: 4.5,-37.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12264 - components: - - pos: 4.5,-38.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12265 - components: - - pos: 4.5,-39.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12267 - components: - - pos: 4.5,-41.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12268 - components: - - pos: 4.5,-42.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12270 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12272 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12273 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12274 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12275 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12276 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12277 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12278 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12279 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12280 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12281 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12282 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12283 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12284 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12286 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12287 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12289 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-20.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12290 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-19.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12291 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-18.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12292 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-17.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12294 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-15.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12295 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-14.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12296 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-13.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12297 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-44.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12298 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-43.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12299 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-42.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12300 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-41.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12301 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-40.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12302 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-39.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12303 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-38.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12304 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-37.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12307 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-34.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12308 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-33.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12309 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-32.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12310 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-31.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12311 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-30.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12312 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-29.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12313 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-28.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12314 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-27.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12315 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-26.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12316 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-25.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12318 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-23.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12320 - components: - - pos: 13.5,-11.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12321 - components: - - pos: 13.5,-12.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12322 - components: - - pos: 13.5,-13.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12323 - components: - - pos: 13.5,-14.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12324 - components: - - pos: 13.5,-15.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12325 - components: - - pos: 13.5,-16.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12326 - components: - - pos: 16.5,-16.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12327 - components: - - pos: 16.5,-15.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12328 - components: - - pos: 16.5,-14.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12329 - components: - - pos: 16.5,-13.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12332 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-14.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12333 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-14.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12334 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-14.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12337 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-16.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12338 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-16.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12339 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-16.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12340 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-16.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12342 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-15.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12343 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-15.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12344 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-15.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12347 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-21.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12348 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-21.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12349 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-21.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12350 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-24.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12351 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-24.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12352 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-24.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12353 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-24.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12354 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-24.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12355 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-24.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12360 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-23.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12361 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-23.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12362 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-23.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12365 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-22.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12366 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-22.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12367 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-23.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12370 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-35.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12371 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-35.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12372 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-35.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12373 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-35.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12374 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-34.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12375 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-34.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12376 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-34.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12377 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-34.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12378 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-35.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12379 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-35.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12384 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-36.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12385 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-36.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12387 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-36.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12388 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-36.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12389 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-36.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12391 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-40.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12392 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-40.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12394 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-40.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12395 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-40.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12396 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-40.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12398 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-40.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12400 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-39.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12401 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-38.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12403 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-37.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12404 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-37.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12405 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-37.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12409 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-37.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12410 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-38.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12411 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-39.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12412 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-40.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12422 - components: - - pos: 8.5,-39.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12423 - components: - - pos: 8.5,-37.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12424 - components: - - pos: 8.5,-36.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12425 - components: - - pos: 8.5,-35.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12426 - components: - - pos: 8.5,-34.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12427 - components: - - pos: 9.5,-35.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12428 - components: - - pos: 9.5,-34.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12433 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-46.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12434 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-47.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12436 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-49.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12441 - components: - - pos: -6.5,-52.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12442 - components: - - pos: -6.5,-53.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12444 - components: - - pos: -12.5,-44.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12445 - components: - - pos: -12.5,-45.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12446 - components: - - pos: -12.5,-46.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12447 - components: - - pos: -12.5,-47.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12449 - components: - - pos: -12.5,-49.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12450 - components: - - pos: -12.5,-50.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12451 - components: - - pos: -12.5,-51.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12455 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-52.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12456 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-52.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12461 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-53.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12462 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-53.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12463 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-53.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12464 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-53.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12468 - components: - - pos: -12.5,-53.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12469 - components: - - pos: -12.5,-54.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12471 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-55.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12472 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-55.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12473 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-55.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12474 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-55.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12476 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-55.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12481 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-55.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12482 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-56.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12483 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-57.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12484 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-58.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12485 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-59.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12486 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-60.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12487 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-61.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12492 - components: - - pos: -5.5,-60.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12493 - components: - - pos: -5.5,-59.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12494 - components: - - pos: -5.5,-58.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12495 - components: - - pos: -5.5,-57.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12496 - components: - - pos: -5.5,-56.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12497 - components: - - pos: -5.5,-62.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12498 - components: - - pos: -5.5,-63.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12499 - components: - - pos: -5.5,-64.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12500 - components: - - pos: -5.5,-65.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12501 - components: - - pos: -5.5,-66.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12502 - components: - - pos: -5.5,-67.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12503 - components: - - pos: -5.5,-68.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12508 - components: - - pos: -6.5,-69.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12509 - components: - - pos: -6.5,-68.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12510 - components: - - pos: -6.5,-67.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12511 - components: - - pos: -6.5,-66.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12512 - components: - - pos: -6.5,-65.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12513 - components: - - pos: -6.5,-64.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12514 - components: - - pos: -6.5,-63.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12515 - components: - - pos: -5.5,-70.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12516 - components: - - pos: -5.5,-71.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12517 - components: - - pos: -6.5,-71.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12518 - components: - - pos: -6.5,-72.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12519 - components: - - pos: -6.5,-73.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12521 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-74.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12522 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-74.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12524 - components: - - pos: -5.5,-72.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12525 - components: - - pos: -5.5,-73.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12526 - components: - - pos: -5.5,-74.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12529 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-54.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12530 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-54.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12531 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-54.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12533 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-54.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12534 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-53.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12536 - components: - - pos: -34.5,-44.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12537 - components: - - pos: -34.5,-45.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12538 - components: - - pos: -34.5,-46.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12539 - components: - - pos: -34.5,-47.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12540 - components: - - pos: -34.5,-48.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12541 - components: - - pos: -32.5,-46.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12542 - components: - - pos: -32.5,-47.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12543 - components: - - pos: -32.5,-48.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12552 - components: - - pos: -48.5,-46.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 12553 - components: - - pos: -48.5,-47.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12554 - components: - - pos: -48.5,-48.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12555 - components: - - pos: -49.5,-44.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12556 - components: - - pos: -49.5,-45.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12557 - components: - - pos: -49.5,-46.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12558 - components: - - pos: -49.5,-47.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12559 - components: - - pos: -49.5,-48.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 13067 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-21.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 13068 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-22.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 13069 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-23.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 13070 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-24.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 13106 - components: - - rot: 3.141592653589793 rad - pos: -33.5,9.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 13107 - components: - - rot: 3.141592653589793 rad - pos: -33.5,10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 13109 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,11.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- proto: GasPipeTJunction - entities: - - uid: 2165 - components: - - rot: 3.141592653589793 rad - pos: -36.5,8.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2222 - components: - - rot: 3.141592653589793 rad - pos: -35.5,9.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2223 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,11.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2419 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,21.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2420 - components: - - pos: -36.5,21.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 2444 - components: - - rot: 3.141592653589793 rad - pos: -32.5,14.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 3128 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,7.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 3129 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,8.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 3409 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-16.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 4645 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-16.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6254 - components: - - pos: -30.5,-7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6273 - components: - - pos: -29.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6274 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6284 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 6286 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,9.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6303 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6305 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6313 - components: - - pos: -25.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6316 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6320 - components: - - pos: -25.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6741 - components: - - rot: 3.141592653589793 rad - pos: -78.5,-50.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - - uid: 11181 - components: - - pos: -33.5,-7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11186 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-8.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11196 - components: - - pos: -20.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11197 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11210 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11211 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11214 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11217 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,2.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11225 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11239 - components: - - rot: 3.141592653589793 rad - pos: -5.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11246 - components: - - pos: -1.5,3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11255 - components: - - rot: 3.141592653589793 rad - pos: -3.5,3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11259 - components: - - rot: 3.141592653589793 rad - pos: -1.5,0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11267 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11270 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11289 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11320 - components: - - pos: -45.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11322 - components: - - rot: 3.141592653589793 rad - pos: -47.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11325 - components: - - pos: -50.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11333 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11345 - components: - - rot: 3.141592653589793 rad - pos: -28.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11369 - components: - - pos: -30.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11392 - components: - - pos: -53.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11396 - components: - - pos: -49.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11399 - components: - - pos: -46.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11407 - components: - - pos: -17.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11442 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11444 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-24.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11449 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-30.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11456 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-36.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11469 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-34.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11470 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-33.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11473 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-29.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11482 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-22.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11503 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11504 - components: - - pos: -22.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11505 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11506 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11517 - components: - - pos: -24.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11523 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11531 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-18.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 11537 - components: - - pos: -25.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11565 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11566 - components: - - rot: 3.141592653589793 rad - pos: -34.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11568 - components: - - pos: -35.5,-20.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11574 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11606 - components: - - pos: -2.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11607 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11627 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,2.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11636 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11651 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11654 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11670 - components: - - pos: -0.5,-6.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11674 - components: - - pos: -1.5,-7.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11692 - components: - - pos: 8.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11693 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11694 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11695 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11703 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-8.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11710 - components: - - pos: 13.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11719 - components: - - pos: 22.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11723 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11724 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11732 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11736 - components: - - pos: 16.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11745 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11757 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11762 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11768 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11769 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11787 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11808 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,14.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11816 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11821 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11822 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,7.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11836 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,16.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11845 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-25.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11865 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-35.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11876 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11881 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11887 - components: - - pos: -49.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11891 - components: - - pos: -16.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11908 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11909 - components: - - pos: -34.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11911 - components: - - rot: 3.141592653589793 rad - pos: -35.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11928 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11934 - components: - - pos: -48.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11940 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11947 - components: - - pos: -36.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11950 - components: - - pos: -32.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11953 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11963 - components: - - pos: -7.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11971 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11975 - components: - - pos: 4.5,-45.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11982 - components: - - pos: 2.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12009 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-40.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12010 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-39.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12011 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-35.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12012 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-34.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12013 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-31.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12019 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-36.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12043 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-39.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12066 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-10.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12067 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12069 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12090 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-6.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12107 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-2.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12206 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12239 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-14.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12240 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-16.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12249 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-23.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12251 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12260 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-35.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12266 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-40.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12271 - components: - - pos: 1.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12285 - components: - - pos: -12.5,-43.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12288 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12293 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-15.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12306 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-34.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12317 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-21.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12319 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-22.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12356 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-24.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12382 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-33.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12390 - components: - - pos: 13.5,-36.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12393 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-40.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12397 - components: - - pos: 12.5,-40.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12421 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-38.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12435 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-48.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12439 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-51.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12448 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-48.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12466 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-53.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12475 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-55.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12477 - components: - - pos: -5.5,-55.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12488 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-62.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12490 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-61.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12504 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-69.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12505 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-70.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12520 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-74.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- proto: GasPort - entities: - - uid: 1415 - components: - - pos: -5.5,-77.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 1416 - components: - - pos: -7.5,-77.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 1476 - components: - - pos: -3.5,-77.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 1477 - components: - - pos: -1.5,-77.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 1727 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-72.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 1807 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-73.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 1832 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-74.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 1833 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-75.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2445 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,16.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2446 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,15.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2447 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,14.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2448 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,16.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2449 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,15.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2450 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,14.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 3135 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,7.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6353 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-9.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6354 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-9.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6355 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-9.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6356 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-9.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6738 - components: - - rot: 3.141592653589793 rad - pos: -80.5,-40.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics -- proto: GasPressurePump - entities: - - uid: 1460 - components: - - pos: -3.5,-78.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 1461 - components: - - pos: -7.5,-78.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 1462 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-78.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 1463 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-78.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2208 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,11.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2209 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,15.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2210 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,13.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2211 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,19.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2214 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,9.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2215 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,17.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2425 - components: - - rot: 3.141592653589793 rad - pos: -34.5,22.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 2435 - components: - - pos: -33.5,22.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 11527 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-17.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 11528 - components: - - pos: -28.5,-17.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics -- proto: GasRecyclerMachineCircuitboard - entities: - - uid: 6373 - components: - - pos: -32.302933,21.88483 - parent: 6 - type: Transform -- proto: GasThermoMachineFreezer - entities: - - uid: 3603 - components: - - pos: -30.5,-14.5 - parent: 6 - type: Transform - - uid: 4853 - components: - - pos: -30.5,10.5 - parent: 6 - type: Transform - - uid: 5447 - components: - - pos: -57.5,-41.5 - parent: 6 - type: Transform -- proto: GasThermoMachineHeater - entities: - - uid: 4857 - components: - - pos: -30.5,9.5 - parent: 6 - type: Transform -- proto: GasValve - entities: - - uid: 2181 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,8.5 - parent: 6 - type: Transform - - open: False - type: GasValve - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 2423 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,21.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - bodyType: Static - type: Physics - - uid: 2424 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,21.5 - parent: 6 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics - - uid: 2441 - components: - - pos: -32.5,17.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound - - bodyType: Static - type: Physics -- proto: GasVentPump - entities: - - uid: 6260 - components: - - pos: -28.5,-6.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6287 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6288 - components: - - pos: -31.5,10.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6300 - components: - - rot: 3.141592653589793 rad - pos: -31.5,-2.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6319 - components: - - pos: -26.5,1.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6322 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-2.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6745 - components: - - pos: -76.5,-45.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 11185 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11187 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-8.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11199 - components: - - pos: -19.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11219 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11227 - components: - - pos: -14.5,6.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11240 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11241 - components: - - pos: -5.5,6.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11277 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11279 - components: - - pos: 0.5,0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11291 - components: - - pos: 6.5,6.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11355 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-12.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11406 - components: - - pos: -16.5,-11.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11416 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-16.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11509 - components: - - pos: -23.5,-20.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11512 - components: - - pos: -21.5,-17.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11558 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-29.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11577 - components: - - pos: -37.5,-18.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11586 - components: - - pos: -34.5,-16.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11592 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11671 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11681 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11686 - components: - - pos: -3.5,-11.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11688 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-4.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11697 - components: - - pos: 9.5,-11.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11704 - components: - - pos: 12.5,-7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11748 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-7.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11783 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11786 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-0.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11812 - components: - - pos: 15.5,18.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11813 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,14.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11853 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-25.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11859 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-31.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11875 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-34.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11955 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11956 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-33.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11981 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-48.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12002 - components: - - rot: 3.141592653589793 rad - pos: -56.5,-46.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 12004 - components: - - pos: -35.5,-44.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12044 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-39.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12053 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-31.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12058 - components: - - pos: 28.5,-8.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12061 - components: - - pos: 20.5,-11.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12071 - components: - - pos: 37.5,-11.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12168 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-6.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12170 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,2.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12199 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,5.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12208 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-2.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12219 - components: - - rot: 3.141592653589793 rad - pos: -50.5,-16.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12229 - components: - - rot: 3.141592653589793 rad - pos: -45.5,-16.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12305 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-36.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12330 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-17.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12346 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-17.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12358 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-24.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12364 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-21.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12368 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-22.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12381 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-35.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12408 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-36.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12413 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-41.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12419 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-37.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12430 - components: - - pos: 9.5,-33.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12431 - components: - - pos: 0.5,-44.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12440 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-51.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12453 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-48.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12460 - components: - - pos: -15.5,-52.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12467 - components: - - pos: -10.5,-52.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12480 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-55.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12489 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-62.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12506 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-70.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12523 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-74.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12528 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-75.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12544 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-49.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12547 - components: - - pos: -47.5,-11.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12548 - components: - - pos: -28.5,-11.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12550 - components: - - pos: -15.5,-44.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12560 - components: - - rot: 3.141592653589793 rad - pos: -48.5,-49.5 - parent: 6 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- proto: GasVentScrubber - entities: - - uid: 6262 - components: - - pos: -26.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6321 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-1.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 6379 - components: - - pos: -32.5,-2.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11200 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-1.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11228 - components: - - pos: -15.5,6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11243 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,2.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11245 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11258 - components: - - pos: -3.5,6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11260 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11266 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11294 - components: - - pos: 5.5,6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11356 - components: - - rot: 3.141592653589793 rad - pos: -63.5,-12.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11382 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-11.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11508 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-21.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11513 - components: - - pos: -23.5,-17.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11530 - components: - - pos: -29.5,-17.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 11549 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-30.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11573 - components: - - pos: -38.5,-18.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11585 - components: - - pos: -33.5,-16.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11593 - components: - - rot: 3.141592653589793 rad - pos: -35.5,-21.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11676 - components: - - pos: -2.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11682 - components: - - pos: 3.5,-6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11687 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-11.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11689 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,2.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11696 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-11.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11766 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-4.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11770 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11774 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-7.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11792 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11825 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,6.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11827 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,7.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11838 - components: - - pos: 14.5,18.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11839 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,16.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11852 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-24.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11863 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-30.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11874 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-35.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11954 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-22.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11957 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-36.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 11990 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-49.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12001 - components: - - pos: -56.5,-42.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 12005 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-44.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12008 - components: - - pos: -33.5,-40.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12026 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-39.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12027 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-35.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12028 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-31.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12029 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-29.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12030 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-34.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12031 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-40.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12054 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-36.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12059 - components: - - pos: 26.5,-8.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12062 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-11.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12070 - components: - - rot: 3.141592653589793 rad - pos: 36.5,-11.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12200 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12209 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12218 - components: - - rot: 3.141592653589793 rad - pos: -53.5,-16.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12228 - components: - - rot: 3.141592653589793 rad - pos: -46.5,-16.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12234 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12235 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,3.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12331 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-17.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12336 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-15.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12345 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-15.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12357 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-21.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12363 - components: - - pos: 5.5,-24.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12369 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-23.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12380 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-34.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12383 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-33.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12407 - components: - - pos: 18.5,-36.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12414 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-41.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12420 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-38.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12429 - components: - - pos: 8.5,-33.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12432 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-44.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12454 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-48.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12458 - components: - - pos: -15.5,-51.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12465 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-52.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12478 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-55.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12491 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-61.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12507 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-69.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12527 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-75.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12535 - components: - - pos: -7.5,-52.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12545 - components: - - rot: 3.141592653589793 rad - pos: -34.5,-49.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12546 - components: - - rot: 3.141592653589793 rad - pos: -49.5,-11.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12549 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-11.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12551 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-44.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 12561 - components: - - rot: 3.141592653589793 rad - pos: -49.5,-49.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 13071 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-25.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 13074 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-15.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - uid: 13110 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,11.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- proto: GasVolumePump - entities: - - uid: 3408 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,8.5 - parent: 6 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- proto: Gauze - entities: - - uid: 6192 - components: - - pos: -33.467705,-14.4353285 - parent: 6 - type: Transform -- proto: GeigerCounter - entities: - - uid: 14089 - components: - - pos: -32.566555,0.55387294 - parent: 6 - type: Transform -- proto: GeneratorUranium - entities: - - uid: 4590 - components: - - pos: -30.5,4.5 - parent: 6 - type: Transform - - uid: 4591 - components: - - pos: -30.5,3.5 - parent: 6 - type: Transform -- proto: Girder - entities: - - uid: 1841 - components: - - pos: -30.5,-60.5 - parent: 6 - type: Transform - - uid: 3190 - components: - - pos: -59.5,-37.5 - parent: 6 - type: Transform - - uid: 3191 - components: - - pos: -62.5,-30.5 - parent: 6 - type: Transform - - uid: 3799 - components: - - pos: -40.5,-56.5 - parent: 6 - type: Transform - - uid: 4766 - components: - - pos: -81.5,-41.5 - parent: 6 - type: Transform - - uid: 4768 - components: - - pos: -81.5,-40.5 - parent: 6 - type: Transform - - uid: 5844 - components: - - pos: -36.5,-25.5 - parent: 6 - type: Transform - - uid: 5858 - components: - - pos: -20.5,-55.5 - parent: 6 - type: Transform - - uid: 5927 - components: - - pos: -22.5,-53.5 - parent: 6 - type: Transform - - uid: 5973 - components: - - pos: -22.5,-55.5 - parent: 6 - type: Transform - - uid: 7725 - components: - - pos: -31.5,-36.5 - parent: 6 - type: Transform - - uid: 7727 - components: - - pos: -35.5,-36.5 - parent: 6 - type: Transform -- proto: GlowstickBase - entities: - - uid: 13467 - components: - - pos: -11.508634,-62.539562 - parent: 6 - type: Transform -- proto: GlowstickPurple - entities: - - uid: 3803 - components: - - rot: -1.5707963267948966 rad - pos: -41.48739,-56.518326 - parent: 6 - type: Transform -- proto: GravityGenerator - entities: - - uid: 2015 - components: - - pos: -27.5,3.5 - parent: 6 - type: Transform - - charge: 100 - type: GravityGenerator - - radius: 175.75 - type: PointLight -- proto: Grille - entities: - - uid: 20 - components: - - pos: 3.5,2.5 - parent: 6 - type: Transform - - uid: 22 - components: - - pos: 4.5,-2.5 - parent: 6 - type: Transform - - uid: 29 - components: - - pos: 2.5,2.5 - parent: 6 - type: Transform - - uid: 38 - components: - - pos: 4.5,-1.5 - parent: 6 - type: Transform - - uid: 39 - components: - - pos: 4.5,0.5 - parent: 6 - type: Transform - - uid: 40 - components: - - pos: 4.5,-0.5 - parent: 6 - type: Transform - - uid: 66 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-8.5 - parent: 6 - type: Transform - - uid: 71 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-8.5 - parent: 6 - type: Transform - - uid: 72 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-8.5 - parent: 6 - type: Transform - - uid: 150 - components: - - pos: -10.5,9.5 - parent: 6 - type: Transform - - uid: 151 - components: - - pos: -9.5,9.5 - parent: 6 - type: Transform - - uid: 152 - components: - - pos: 1.5,9.5 - parent: 6 - type: Transform - - uid: 153 - components: - - pos: 0.5,9.5 - parent: 6 - type: Transform - - uid: 156 - components: - - pos: -8.5,11.5 - parent: 6 - type: Transform - - uid: 157 - components: - - pos: -7.5,11.5 - parent: 6 - type: Transform - - uid: 158 - components: - - pos: -6.5,11.5 - parent: 6 - type: Transform - - uid: 159 - components: - - pos: -5.5,11.5 - parent: 6 - type: Transform - - uid: 160 - components: - - pos: -0.5,11.5 - parent: 6 - type: Transform - - uid: 161 - components: - - pos: -1.5,11.5 - parent: 6 - type: Transform - - uid: 162 - components: - - pos: -2.5,11.5 - parent: 6 - type: Transform - - uid: 163 - components: - - pos: -3.5,11.5 - parent: 6 - type: Transform - - uid: 165 - components: - - pos: -9.5,10.5 - parent: 6 - type: Transform - - uid: 166 - components: - - pos: 0.5,10.5 - parent: 6 - type: Transform - - uid: 182 - components: - - pos: 1.5,-0.5 - parent: 6 - type: Transform - - uid: 227 - components: - - pos: -17.5,9.5 - parent: 6 - type: Transform - - uid: 228 - components: - - pos: -16.5,9.5 - parent: 6 - type: Transform - - uid: 229 - components: - - pos: -15.5,9.5 - parent: 6 - type: Transform - - uid: 230 - components: - - pos: -14.5,9.5 - parent: 6 - type: Transform - - uid: 231 - components: - - pos: -13.5,9.5 - parent: 6 - type: Transform - - uid: 232 - components: - - pos: 4.5,9.5 - parent: 6 - type: Transform - - uid: 233 - components: - - pos: 5.5,9.5 - parent: 6 - type: Transform - - uid: 234 - components: - - pos: 6.5,9.5 - parent: 6 - type: Transform - - uid: 281 - components: - - pos: 10.5,4.5 - parent: 6 - type: Transform - - uid: 282 - components: - - pos: 10.5,3.5 - parent: 6 - type: Transform - - uid: 283 - components: - - pos: 10.5,-1.5 - parent: 6 - type: Transform - - uid: 284 - components: - - pos: 10.5,-0.5 - parent: 6 - type: Transform - - uid: 308 - components: - - pos: 15.5,1.5 - parent: 6 - type: Transform - - uid: 309 - components: - - pos: 15.5,0.5 - parent: 6 - type: Transform - - uid: 320 - components: - - pos: 13.5,9.5 - parent: 6 - type: Transform - - uid: 321 - components: - - pos: 13.5,8.5 - parent: 6 - type: Transform - - uid: 332 - components: - - pos: 20.5,13.5 - parent: 6 - type: Transform - - uid: 333 - components: - - pos: 19.5,13.5 - parent: 6 - type: Transform - - uid: 408 - components: - - pos: 44.5,-11.5 - parent: 6 - type: Transform - - uid: 409 - components: - - pos: 44.5,-12.5 - parent: 6 - type: Transform - - uid: 414 - components: - - pos: 23.5,-13.5 - parent: 6 - type: Transform - - uid: 415 - components: - - pos: 24.5,-13.5 - parent: 6 - type: Transform - - uid: 416 - components: - - pos: 25.5,-13.5 - parent: 6 - type: Transform - - uid: 417 - components: - - pos: 27.5,-13.5 - parent: 6 - type: Transform - - uid: 418 - components: - - pos: 28.5,-13.5 - parent: 6 - type: Transform - - uid: 420 - components: - - pos: 31.5,-13.5 - parent: 6 - type: Transform - - uid: 421 - components: - - pos: 32.5,-13.5 - parent: 6 - type: Transform - - uid: 422 - components: - - pos: 33.5,-13.5 - parent: 6 - type: Transform - - uid: 423 - components: - - pos: 35.5,-13.5 - parent: 6 - type: Transform - - uid: 424 - components: - - pos: 39.5,-13.5 - parent: 6 - type: Transform - - uid: 425 - components: - - pos: 36.5,-13.5 - parent: 6 - type: Transform - - uid: 426 - components: - - pos: 37.5,-13.5 - parent: 6 - type: Transform - - uid: 440 - components: - - pos: 14.5,-13.5 - parent: 6 - type: Transform - - uid: 441 - components: - - pos: 15.5,-13.5 - parent: 6 - type: Transform - - uid: 472 - components: - - pos: 28.5,-9.5 - parent: 6 - type: Transform - - uid: 474 - components: - - pos: 26.5,-9.5 - parent: 6 - type: Transform - - uid: 522 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,10.5 - parent: 6 - type: Transform - - uid: 535 - components: - - pos: 32.5,-2.5 - parent: 6 - type: Transform - - uid: 537 - components: - - pos: 32.5,-1.5 - parent: 6 - type: Transform - - uid: 549 - components: - - pos: 41.5,-9.5 - parent: 6 - type: Transform - - uid: 553 - components: - - pos: 32.5,-0.5 - parent: 6 - type: Transform - - uid: 554 - components: - - pos: 32.5,0.5 - parent: 6 - type: Transform - - uid: 556 - components: - - pos: 42.5,7.5 - parent: 6 - type: Transform - - uid: 565 - components: - - pos: 45.5,-0.5 - parent: 6 - type: Transform - - uid: 567 - components: - - pos: 45.5,-1.5 - parent: 6 - type: Transform - - uid: 568 - components: - - pos: 45.5,-2.5 - parent: 6 - type: Transform - - uid: 569 - components: - - pos: 44.5,1.5 - parent: 6 - type: Transform - - uid: 570 - components: - - pos: 44.5,4.5 - parent: 6 - type: Transform - - uid: 571 - components: - - pos: 44.5,-4.5 - parent: 6 - type: Transform - - uid: 572 - components: - - pos: 44.5,-7.5 - parent: 6 - type: Transform - - uid: 574 - components: - - pos: 46.5,-3.5 - parent: 6 - type: Transform - - uid: 575 - components: - - pos: 47.5,-3.5 - parent: 6 - type: Transform - - uid: 576 - components: - - pos: 45.5,-8.5 - parent: 6 - type: Transform - - uid: 577 - components: - - pos: 46.5,-8.5 - parent: 6 - type: Transform - - uid: 578 - components: - - pos: 47.5,-8.5 - parent: 6 - type: Transform - - uid: 580 - components: - - pos: 46.5,0.5 - parent: 6 - type: Transform - - uid: 581 - components: - - pos: 47.5,0.5 - parent: 6 - type: Transform - - uid: 582 - components: - - pos: 45.5,5.5 - parent: 6 - type: Transform - - uid: 583 - components: - - pos: 46.5,5.5 - parent: 6 - type: Transform - - uid: 584 - components: - - pos: 47.5,5.5 - parent: 6 - type: Transform - - uid: 636 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,10.5 - parent: 6 - type: Transform - - uid: 637 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,10.5 - parent: 6 - type: Transform - - uid: 639 - components: - - pos: 42.5,8.5 - parent: 6 - type: Transform - - uid: 640 - components: - - pos: 32.5,4.5 - parent: 6 - type: Transform - - uid: 641 - components: - - pos: 32.5,7.5 - parent: 6 - type: Transform - - uid: 643 - components: - - rot: 3.141592653589793 rad - pos: 29.5,10.5 - parent: 6 - type: Transform - - uid: 661 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,10.5 - parent: 6 - type: Transform - - uid: 662 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,9.5 - parent: 6 - type: Transform - - uid: 663 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,8.5 - parent: 6 - type: Transform - - uid: 673 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-9.5 - parent: 6 - type: Transform - - uid: 674 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-9.5 - parent: 6 - type: Transform - - uid: 675 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-9.5 - parent: 6 - type: Transform - - uid: 678 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-9.5 - parent: 6 - type: Transform - - uid: 679 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,10.5 - parent: 6 - type: Transform - - uid: 680 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,9.5 - parent: 6 - type: Transform - - uid: 681 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,8.5 - parent: 6 - type: Transform - - uid: 692 - components: - - pos: 42.5,-2.5 - parent: 6 - type: Transform - - uid: 693 - components: - - pos: 42.5,-1.5 - parent: 6 - type: Transform - - uid: 694 - components: - - pos: 42.5,-0.5 - parent: 6 - type: Transform - - uid: 695 - components: - - pos: 42.5,0.5 - parent: 6 - type: Transform - - uid: 696 - components: - - pos: 42.5,4.5 - parent: 6 - type: Transform - - uid: 697 - components: - - pos: 42.5,9.5 - parent: 6 - type: Transform - - uid: 754 - components: - - pos: 11.5,5.5 - parent: 6 - type: Transform - - uid: 755 - components: - - pos: 12.5,5.5 - parent: 6 - type: Transform - - uid: 763 - components: - - pos: 9.5,18.5 - parent: 6 - type: Transform - - uid: 772 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,4.5 - parent: 6 - type: Transform - - uid: 773 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,3.5 - parent: 6 - type: Transform - - uid: 774 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,2.5 - parent: 6 - type: Transform - - uid: 775 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 6 - type: Transform - - uid: 776 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 6 - type: Transform - - uid: 777 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 6 - type: Transform - - uid: 817 - components: - - pos: -16.5,-26.5 - parent: 6 - type: Transform - - uid: 825 - components: - - pos: 20.5,18.5 - parent: 6 - type: Transform - - uid: 833 - components: - - pos: 12.5,17.5 - parent: 6 - type: Transform - - uid: 834 - components: - - pos: 11.5,17.5 - parent: 6 - type: Transform - - uid: 835 - components: - - pos: 10.5,17.5 - parent: 6 - type: Transform - - uid: 837 - components: - - pos: 9.5,19.5 - parent: 6 - type: Transform - - uid: 838 - components: - - pos: 9.5,20.5 - parent: 6 - type: Transform - - uid: 839 - components: - - pos: 17.5,17.5 - parent: 6 - type: Transform - - uid: 841 - components: - - pos: 18.5,17.5 - parent: 6 - type: Transform - - uid: 842 - components: - - pos: 19.5,17.5 - parent: 6 - type: Transform - - uid: 844 - components: - - pos: 20.5,19.5 - parent: 6 - type: Transform - - uid: 845 - components: - - pos: 20.5,20.5 - parent: 6 - type: Transform - - uid: 862 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-13.5 - parent: 6 - type: Transform - - uid: 923 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-13.5 - parent: 6 - type: Transform - - uid: 991 - components: - - pos: 0.5,-31.5 - parent: 6 - type: Transform - - uid: 992 - components: - - pos: 0.5,-32.5 - parent: 6 - type: Transform - - uid: 993 - components: - - pos: 0.5,-33.5 - parent: 6 - type: Transform - - uid: 994 - components: - - pos: 0.5,-38.5 - parent: 6 - type: Transform - - uid: 995 - components: - - pos: 0.5,-37.5 - parent: 6 - type: Transform - - uid: 996 - components: - - pos: 0.5,-36.5 - parent: 6 - type: Transform - - uid: 997 - components: - - pos: -10.5,-38.5 - parent: 6 - type: Transform - - uid: 998 - components: - - pos: -10.5,-37.5 - parent: 6 - type: Transform - - uid: 999 - components: - - pos: -10.5,-36.5 - parent: 6 - type: Transform - - uid: 1000 - components: - - pos: -10.5,-33.5 - parent: 6 - type: Transform - - uid: 1001 - components: - - pos: -10.5,-32.5 - parent: 6 - type: Transform - - uid: 1002 - components: - - pos: -10.5,-31.5 - parent: 6 - type: Transform - - uid: 1003 - components: - - pos: -1.5,-40.5 - parent: 6 - type: Transform - - uid: 1004 - components: - - pos: -2.5,-40.5 - parent: 6 - type: Transform - - uid: 1005 - components: - - pos: -3.5,-40.5 - parent: 6 - type: Transform - - uid: 1006 - components: - - pos: -6.5,-40.5 - parent: 6 - type: Transform - - uid: 1007 - components: - - pos: -7.5,-40.5 - parent: 6 - type: Transform - - uid: 1008 - components: - - pos: -8.5,-40.5 - parent: 6 - type: Transform - - uid: 1009 - components: - - pos: -8.5,-29.5 - parent: 6 - type: Transform - - uid: 1010 - components: - - pos: -7.5,-29.5 - parent: 6 - type: Transform - - uid: 1011 - components: - - pos: -6.5,-29.5 - parent: 6 - type: Transform - - uid: 1012 - components: - - pos: -1.5,-29.5 - parent: 6 - type: Transform - - uid: 1013 - components: - - pos: -2.5,-29.5 - parent: 6 - type: Transform - - uid: 1014 - components: - - pos: -3.5,-29.5 - parent: 6 - type: Transform - - uid: 1025 - components: - - pos: -12.5,-31.5 - parent: 6 - type: Transform - - uid: 1026 - components: - - pos: -12.5,-32.5 - parent: 6 - type: Transform - - uid: 1027 - components: - - pos: -12.5,-33.5 - parent: 6 - type: Transform - - uid: 1028 - components: - - pos: -12.5,-36.5 - parent: 6 - type: Transform - - uid: 1029 - components: - - pos: -12.5,-37.5 - parent: 6 - type: Transform - - uid: 1030 - components: - - pos: -12.5,-38.5 - parent: 6 - type: Transform - - uid: 1100 - components: - - pos: -8.5,-42.5 - parent: 6 - type: Transform - - uid: 1101 - components: - - pos: -7.5,-42.5 - parent: 6 - type: Transform - - uid: 1102 - components: - - pos: -6.5,-42.5 - parent: 6 - type: Transform - - uid: 1103 - components: - - pos: -3.5,-42.5 - parent: 6 - type: Transform - - uid: 1104 - components: - - pos: -2.5,-42.5 - parent: 6 - type: Transform - - uid: 1105 - components: - - pos: -1.5,-42.5 - parent: 6 - type: Transform - - uid: 1128 - components: - - pos: 9.5,-34.5 - parent: 6 - type: Transform - - uid: 1136 - components: - - pos: 8.5,-34.5 - parent: 6 - type: Transform - - uid: 1143 - components: - - pos: 7.5,-38.5 - parent: 6 - type: Transform - - uid: 1144 - components: - - pos: 7.5,-37.5 - parent: 6 - type: Transform - - uid: 1148 - components: - - pos: 10.5,-37.5 - parent: 6 - type: Transform - - uid: 1157 - components: - - pos: 22.5,-33.5 - parent: 6 - type: Transform - - uid: 1158 - components: - - pos: 21.5,-33.5 - parent: 6 - type: Transform - - uid: 1159 - components: - - pos: 21.5,-39.5 - parent: 6 - type: Transform - - uid: 1160 - components: - - pos: 22.5,-39.5 - parent: 6 - type: Transform - - uid: 1168 - components: - - pos: 22.5,-36.5 - parent: 6 - type: Transform - - uid: 1169 - components: - - pos: 21.5,-36.5 - parent: 6 - type: Transform - - uid: 1192 - components: - - pos: 15.5,-48.5 - parent: 6 - type: Transform - - uid: 1193 - components: - - pos: 14.5,-48.5 - parent: 6 - type: Transform - - uid: 1194 - components: - - pos: 16.5,-48.5 - parent: 6 - type: Transform - - uid: 1195 - components: - - pos: 17.5,-48.5 - parent: 6 - type: Transform - - uid: 1198 - components: - - pos: 6.5,-55.5 - parent: 6 - type: Transform - - uid: 1199 - components: - - pos: 7.5,-51.5 - parent: 6 - type: Transform - - uid: 1200 - components: - - pos: 7.5,-50.5 - parent: 6 - type: Transform - - uid: 1220 - components: - - pos: -10.5,-46.5 - parent: 6 - type: Transform - - uid: 1221 - components: - - pos: -9.5,-46.5 - parent: 6 - type: Transform - - uid: 1235 - components: - - pos: -27.5,0.5 - parent: 6 - type: Transform - - uid: 1246 - components: - - pos: 7.5,-53.5 - parent: 6 - type: Transform - - uid: 1247 - components: - - pos: 7.5,-54.5 - parent: 6 - type: Transform - - uid: 1249 - components: - - pos: 5.5,-55.5 - parent: 6 - type: Transform - - uid: 1288 - components: - - pos: -8.5,-62.5 - parent: 6 - type: Transform - - uid: 1289 - components: - - pos: -8.5,-61.5 - parent: 6 - type: Transform - - uid: 1301 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-49.5 - parent: 6 - type: Transform - - uid: 1304 - components: - - pos: -9.5,-49.5 - parent: 6 - type: Transform - - uid: 1305 - components: - - pos: -10.5,-49.5 - parent: 6 - type: Transform - - uid: 1354 - components: - - pos: -8.5,-63.5 - parent: 6 - type: Transform - - uid: 1358 - components: - - pos: -3.5,-61.5 - parent: 6 - type: Transform - - uid: 1359 - components: - - pos: -3.5,-62.5 - parent: 6 - type: Transform - - uid: 1360 - components: - - pos: -3.5,-63.5 - parent: 6 - type: Transform - - uid: 1369 - components: - - pos: -8.5,-70.5 - parent: 6 - type: Transform - - uid: 1370 - components: - - pos: -8.5,-69.5 - parent: 6 - type: Transform - - uid: 1378 - components: - - pos: -8.5,-75.5 - parent: 6 - type: Transform - - uid: 1392 - components: - - pos: -2.5,-68.5 - parent: 6 - type: Transform - - uid: 1393 - components: - - pos: -1.5,-68.5 - parent: 6 - type: Transform - - uid: 1400 - components: - - pos: 1.5,-68.5 - parent: 6 - type: Transform - - uid: 1401 - components: - - pos: 0.5,-68.5 - parent: 6 - type: Transform - - uid: 1402 - components: - - pos: 0.5,-71.5 - parent: 6 - type: Transform - - uid: 1403 - components: - - pos: 1.5,-71.5 - parent: 6 - type: Transform - - uid: 1404 - components: - - pos: -7.5,-82.5 - parent: 6 - type: Transform - - uid: 1405 - components: - - pos: -5.5,-82.5 - parent: 6 - type: Transform - - uid: 1406 - components: - - pos: -7.5,-79.5 - parent: 6 - type: Transform - - uid: 1407 - components: - - pos: -6.5,-79.5 - parent: 6 - type: Transform - - uid: 1408 - components: - - pos: -5.5,-79.5 - parent: 6 - type: Transform - - uid: 1409 - components: - - pos: -3.5,-82.5 - parent: 6 - type: Transform - - uid: 1410 - components: - - pos: -1.5,-82.5 - parent: 6 - type: Transform - - uid: 1411 - components: - - pos: -3.5,-79.5 - parent: 6 - type: Transform - - uid: 1412 - components: - - pos: -2.5,-79.5 - parent: 6 - type: Transform - - uid: 1413 - components: - - pos: -1.5,-79.5 - parent: 6 - type: Transform - - uid: 1441 - components: - - pos: -23.5,-0.5 - parent: 6 - type: Transform - - uid: 1444 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-75.5 - parent: 6 - type: Transform - - uid: 1445 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-74.5 - parent: 6 - type: Transform - - uid: 1447 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-77.5 - parent: 6 - type: Transform - - uid: 1464 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-80.5 - parent: 6 - type: Transform - - uid: 1465 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-81.5 - parent: 6 - type: Transform - - uid: 1470 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-77.5 - parent: 6 - type: Transform - - uid: 1471 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-77.5 - parent: 6 - type: Transform - - uid: 1492 - components: - - pos: -20.5,-14.5 - parent: 6 - type: Transform - - uid: 1496 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-16.5 - parent: 6 - type: Transform - - uid: 1497 - components: - - pos: -16.5,-25.5 - parent: 6 - type: Transform - - uid: 1598 - components: - - pos: 9.5,13.5 - parent: 6 - type: Transform - - uid: 1610 - components: - - pos: 10.5,13.5 - parent: 6 - type: Transform - - uid: 1614 - components: - - pos: -22.5,-13.5 - parent: 6 - type: Transform - - uid: 1615 - components: - - pos: -24.5,-13.5 - parent: 6 - type: Transform - - uid: 1618 - components: - - pos: -28.5,-13.5 - parent: 6 - type: Transform - - uid: 1619 - components: - - pos: -30.5,-13.5 - parent: 6 - type: Transform - - uid: 1676 - components: - - pos: -16.5,-38.5 - parent: 6 - type: Transform - - uid: 1677 - components: - - pos: -16.5,-39.5 - parent: 6 - type: Transform - - uid: 1678 - components: - - pos: -16.5,-40.5 - parent: 6 - type: Transform - - uid: 1680 - components: - - pos: 8.5,13.5 - parent: 6 - type: Transform - - uid: 1690 - components: - - pos: 21.5,13.5 - parent: 6 - type: Transform - - uid: 1820 - components: - - pos: -36.5,-60.5 - parent: 6 - type: Transform - - uid: 1821 - components: - - pos: -37.5,-60.5 - parent: 6 - type: Transform - - uid: 1840 - components: - - pos: -38.5,-60.5 - parent: 6 - type: Transform - - uid: 1866 - components: - - pos: 16.5,16.5 - parent: 6 - type: Transform - - uid: 1921 - components: - - pos: -42.5,-4.5 - parent: 6 - type: Transform - - uid: 1960 - components: - - pos: 16.5,15.5 - parent: 6 - type: Transform - - uid: 1961 - components: - - pos: 16.5,-6.5 - parent: 6 - type: Transform - - uid: 1986 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-27.5 - parent: 6 - type: Transform - - uid: 1987 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-27.5 - parent: 6 - type: Transform - - uid: 1988 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-27.5 - parent: 6 - type: Transform - - uid: 1989 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-27.5 - parent: 6 - type: Transform - - uid: 1990 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-27.5 - parent: 6 - type: Transform - - uid: 1991 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-27.5 - parent: 6 - type: Transform - - uid: 2061 - components: - - pos: -74.5,-49.5 - parent: 6 - type: Transform - - uid: 2119 - components: - - pos: -33.5,2.5 - parent: 6 - type: Transform - - uid: 2120 - components: - - pos: -33.5,3.5 - parent: 6 - type: Transform - - uid: 2121 - components: - - pos: -33.5,4.5 - parent: 6 - type: Transform - - uid: 2132 - components: - - pos: -38.5,-0.5 - parent: 6 - type: Transform - - uid: 2133 - components: - - pos: -37.5,-0.5 - parent: 6 - type: Transform - - uid: 2134 - components: - - pos: -35.5,-0.5 - parent: 6 - type: Transform - - uid: 2135 - components: - - pos: -34.5,-0.5 - parent: 6 - type: Transform - - uid: 2231 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,8.5 - parent: 6 - type: Transform - - uid: 2232 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,9.5 - parent: 6 - type: Transform - - uid: 2233 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,10.5 - parent: 6 - type: Transform - - uid: 2234 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,11.5 - parent: 6 - type: Transform - - uid: 2235 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,12.5 - parent: 6 - type: Transform - - uid: 2236 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,13.5 - parent: 6 - type: Transform - - uid: 2237 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,14.5 - parent: 6 - type: Transform - - uid: 2238 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,15.5 - parent: 6 - type: Transform - - uid: 2239 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,16.5 - parent: 6 - type: Transform - - uid: 2240 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,17.5 - parent: 6 - type: Transform - - uid: 2241 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,18.5 - parent: 6 - type: Transform - - uid: 2242 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,19.5 - parent: 6 - type: Transform - - uid: 2243 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,20.5 - parent: 6 - type: Transform - - uid: 2358 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,19.5 - parent: 6 - type: Transform - - uid: 2359 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,17.5 - parent: 6 - type: Transform - - uid: 2360 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,15.5 - parent: 6 - type: Transform - - uid: 2361 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,13.5 - parent: 6 - type: Transform - - uid: 2362 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,11.5 - parent: 6 - type: Transform - - uid: 2363 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,9.5 - parent: 6 - type: Transform - - uid: 2370 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,21.5 - parent: 6 - type: Transform - - uid: 2371 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,22.5 - parent: 6 - type: Transform - - uid: 2373 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,23.5 - parent: 6 - type: Transform - - uid: 2374 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,23.5 - parent: 6 - type: Transform - - uid: 2375 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,23.5 - parent: 6 - type: Transform - - uid: 2376 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,23.5 - parent: 6 - type: Transform - - uid: 2377 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,23.5 - parent: 6 - type: Transform - - uid: 2378 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,23.5 - parent: 6 - type: Transform - - uid: 2389 - components: - - pos: -27.5,18.5 - parent: 6 - type: Transform - - uid: 2390 - components: - - pos: -27.5,17.5 - parent: 6 - type: Transform - - uid: 2391 - components: - - pos: -27.5,16.5 - parent: 6 - type: Transform - - uid: 2397 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,22.5 - parent: 6 - type: Transform - - uid: 2403 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,25.5 - parent: 6 - type: Transform - - uid: 2404 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,25.5 - parent: 6 - type: Transform - - uid: 2405 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,25.5 - parent: 6 - type: Transform - - uid: 2406 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,27.5 - parent: 6 - type: Transform - - uid: 2407 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,27.5 - parent: 6 - type: Transform - - uid: 2408 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,26.5 - parent: 6 - type: Transform - - uid: 2409 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,26.5 - parent: 6 - type: Transform - - uid: 2500 - components: - - pos: -42.5,-5.5 - parent: 6 - type: Transform - - uid: 2503 - components: - - pos: -42.5,-3.5 - parent: 6 - type: Transform - - uid: 2520 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-40.5 - parent: 6 - type: Transform - - uid: 2521 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-40.5 - parent: 6 - type: Transform - - uid: 2522 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-40.5 - parent: 6 - type: Transform - - uid: 2523 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-48.5 - parent: 6 - type: Transform - - uid: 2524 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-48.5 - parent: 6 - type: Transform - - uid: 2525 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-48.5 - parent: 6 - type: Transform - - uid: 2539 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-13.5 - parent: 6 - type: Transform - - uid: 2542 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-13.5 - parent: 6 - type: Transform - - uid: 2543 - components: - - rot: 3.141592653589793 rad - pos: -62.5,-9.5 - parent: 6 - type: Transform - - uid: 2544 - components: - - rot: 3.141592653589793 rad - pos: -61.5,-9.5 - parent: 6 - type: Transform - - uid: 2546 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-8.5 - parent: 6 - type: Transform - - uid: 2547 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-7.5 - parent: 6 - type: Transform - - uid: 2548 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-8.5 - parent: 6 - type: Transform - - uid: 2549 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-7.5 - parent: 6 - type: Transform - - uid: 2550 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,-8.5 - parent: 6 - type: Transform - - uid: 2551 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,-7.5 - parent: 6 - type: Transform - - uid: 2552 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-8.5 - parent: 6 - type: Transform - - uid: 2553 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-7.5 - parent: 6 - type: Transform - - uid: 2554 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-9.5 - parent: 6 - type: Transform - - uid: 2555 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-9.5 - parent: 6 - type: Transform - - uid: 2556 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-9.5 - parent: 6 - type: Transform - - uid: 2557 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-9.5 - parent: 6 - type: Transform - - uid: 2558 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-9.5 - parent: 6 - type: Transform - - uid: 2559 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-9.5 - parent: 6 - type: Transform - - uid: 2581 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-10.5 - parent: 6 - type: Transform - - uid: 2584 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-11.5 - parent: 6 - type: Transform - - uid: 2585 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-13.5 - parent: 6 - type: Transform - - uid: 2588 - components: - - rot: 1.5707963267948966 rad - pos: -70.5,-9.5 - parent: 6 - type: Transform - - uid: 2589 - components: - - rot: 1.5707963267948966 rad - pos: -69.5,-9.5 - parent: 6 - type: Transform - - uid: 2590 - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-10.5 - parent: 6 - type: Transform - - uid: 2591 - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-11.5 - parent: 6 - type: Transform - - uid: 2592 - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-12.5 - parent: 6 - type: Transform - - uid: 2593 - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-13.5 - parent: 6 - type: Transform - - uid: 2594 - components: - - rot: 1.5707963267948966 rad - pos: -70.5,-14.5 - parent: 6 - type: Transform - - uid: 2595 - components: - - rot: 1.5707963267948966 rad - pos: -69.5,-14.5 - parent: 6 - type: Transform - - uid: 2625 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-13.5 - parent: 6 - type: Transform - - uid: 2640 - components: - - pos: -16.5,-1.5 - parent: 6 - type: Transform - - uid: 2694 - components: - - pos: -42.5,-2.5 - parent: 6 - type: Transform - - uid: 2888 - components: - - rot: 3.141592653589793 rad - pos: -60.5,-9.5 - parent: 6 - type: Transform - - uid: 2947 - components: - - pos: 1.5,0.5 - parent: 6 - type: Transform - - uid: 2959 - components: - - rot: 3.141592653589793 rad - pos: -55.5,-31.5 - parent: 6 - type: Transform - - uid: 2960 - components: - - rot: 3.141592653589793 rad - pos: -55.5,-32.5 - parent: 6 - type: Transform - - uid: 2961 - components: - - rot: 3.141592653589793 rad - pos: -55.5,-35.5 - parent: 6 - type: Transform - - uid: 2962 - components: - - rot: 3.141592653589793 rad - pos: -55.5,-33.5 - parent: 6 - type: Transform - - uid: 2979 - components: - - pos: 1.5,-1.5 - parent: 6 - type: Transform - - uid: 3029 - components: - - pos: 1.5,-2.5 - parent: 6 - type: Transform - - uid: 3060 - components: - - pos: -58.5,-44.5 - parent: 6 - type: Transform - - uid: 3126 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,8.5 - parent: 6 - type: Transform - - uid: 3127 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,8.5 - parent: 6 - type: Transform - - uid: 3134 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,8.5 - parent: 6 - type: Transform - - uid: 3158 - components: - - pos: -29.5,18.5 - parent: 6 - type: Transform - - uid: 3159 - components: - - pos: -29.5,17.5 - parent: 6 - type: Transform - - uid: 3160 - components: - - pos: -29.5,16.5 - parent: 6 - type: Transform - - uid: 3390 - components: - - pos: -27.5,-21.5 - parent: 6 - type: Transform - - uid: 3395 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-13.5 - parent: 6 - type: Transform - - uid: 3417 - components: - - pos: 16.5,-8.5 - parent: 6 - type: Transform - - uid: 3488 - components: - - pos: 40.5,-13.5 - parent: 6 - type: Transform - - uid: 3489 - components: - - pos: 41.5,-13.5 - parent: 6 - type: Transform - - uid: 3587 - components: - - pos: -52.5,-49.5 - parent: 6 - type: Transform - - uid: 3588 - components: - - pos: -52.5,-50.5 - parent: 6 - type: Transform - - uid: 3589 - components: - - pos: -52.5,-51.5 - parent: 6 - type: Transform - - uid: 3590 - components: - - pos: -51.5,-52.5 - parent: 6 - type: Transform - - uid: 3591 - components: - - pos: -50.5,-52.5 - parent: 6 - type: Transform - - uid: 3592 - components: - - pos: -49.5,-52.5 - parent: 6 - type: Transform - - uid: 3610 - components: - - pos: -17.5,-17.5 - parent: 6 - type: Transform - - uid: 3627 - components: - - pos: 3.5,-22.5 - parent: 6 - type: Transform - - uid: 3644 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-71.5 - parent: 6 - type: Transform - - uid: 3646 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-71.5 - parent: 6 - type: Transform - - uid: 3648 - components: - - pos: 2.5,-80.5 - parent: 6 - type: Transform - - uid: 3649 - components: - - pos: 2.5,-81.5 - parent: 6 - type: Transform - - uid: 3650 - components: - - pos: 1.5,-82.5 - parent: 6 - type: Transform - - uid: 3651 - components: - - pos: 0.5,-82.5 - parent: 6 - type: Transform - - uid: 3660 - components: - - pos: -16.5,-22.5 - parent: 6 - type: Transform - - uid: 3661 - components: - - pos: -16.5,-18.5 - parent: 6 - type: Transform - - uid: 3663 - components: - - pos: -16.5,-20.5 - parent: 6 - type: Transform - - uid: 3678 - components: - - pos: 2.5,-77.5 - parent: 6 - type: Transform - - uid: 3679 - components: - - pos: 2.5,-76.5 - parent: 6 - type: Transform - - uid: 3680 - components: - - pos: 2.5,-75.5 - parent: 6 - type: Transform - - uid: 3776 - components: - - pos: -33.5,-63.5 - parent: 6 - type: Transform - - uid: 3778 - components: - - pos: -32.5,-63.5 - parent: 6 - type: Transform - - uid: 3781 - components: - - pos: -31.5,-63.5 - parent: 6 - type: Transform - - uid: 3787 - components: - - pos: -32.5,-63.5 - parent: 6 - type: Transform - - uid: 3788 - components: - - pos: -31.5,-63.5 - parent: 6 - type: Transform - - uid: 3816 - components: - - pos: -29.5,-61.5 - parent: 6 - type: Transform - - uid: 3905 - components: - - pos: -16.5,-23.5 - parent: 6 - type: Transform - - uid: 4198 - components: - - pos: 16.5,22.5 - parent: 6 - type: Transform - - uid: 4199 - components: - - pos: 17.5,22.5 - parent: 6 - type: Transform - - uid: 4200 - components: - - pos: 18.5,22.5 - parent: 6 - type: Transform - - uid: 4228 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-27.5 - parent: 6 - type: Transform - - uid: 4229 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-28.5 - parent: 6 - type: Transform - - uid: 4230 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-29.5 - parent: 6 - type: Transform - - uid: 4367 - components: - - pos: -20.5,-24.5 - parent: 6 - type: Transform - - uid: 4368 - components: - - pos: -21.5,-24.5 - parent: 6 - type: Transform - - uid: 4369 - components: - - pos: -21.5,-29.5 - parent: 6 - type: Transform - - uid: 4370 - components: - - pos: -20.5,-32.5 - parent: 6 - type: Transform - - uid: 4456 - components: - - pos: 16.5,14.5 - parent: 6 - type: Transform - - uid: 4457 - components: - - pos: 13.5,16.5 - parent: 6 - type: Transform - - uid: 4458 - components: - - pos: 13.5,15.5 - parent: 6 - type: Transform - - uid: 4503 - components: - - pos: 13.5,14.5 - parent: 6 - type: Transform - - uid: 4650 - components: - - pos: -25.5,-28.5 - parent: 6 - type: Transform - - uid: 4651 - components: - - pos: -25.5,-30.5 - parent: 6 - type: Transform - - uid: 4652 - components: - - pos: -25.5,-32.5 - parent: 6 - type: Transform - - uid: 4658 - components: - - pos: -36.5,-19.5 - parent: 6 - type: Transform - - uid: 4659 - components: - - pos: -37.5,-19.5 - parent: 6 - type: Transform - - uid: 4676 - components: - - pos: 11.5,-7.5 - parent: 6 - type: Transform - - uid: 4677 - components: - - pos: 13.5,-7.5 - parent: 6 - type: Transform - - uid: 4678 - components: - - pos: 12.5,-9.5 - parent: 6 - type: Transform - - uid: 4679 - components: - - pos: 14.5,-9.5 - parent: 6 - type: Transform - - uid: 4680 - components: - - pos: 15.5,-9.5 - parent: 6 - type: Transform - - uid: 4681 - components: - - pos: 17.5,-9.5 - parent: 6 - type: Transform - - uid: 4682 - components: - - pos: 18.5,-9.5 - parent: 6 - type: Transform - - uid: 4683 - components: - - pos: 19.5,-9.5 - parent: 6 - type: Transform - - uid: 4815 - components: - - pos: -22.5,-18.5 - parent: 6 - type: Transform - - uid: 4820 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-19.5 - parent: 6 - type: Transform - - uid: 4821 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-19.5 - parent: 6 - type: Transform - - uid: 4822 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-23.5 - parent: 6 - type: Transform - - uid: 4823 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-23.5 - parent: 6 - type: Transform - - uid: 4824 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-19.5 - parent: 6 - type: Transform - - uid: 4825 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-19.5 - parent: 6 - type: Transform - - uid: 5063 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-4.5 - parent: 6 - type: Transform - - uid: 5077 - components: - - pos: -9.5,5.5 - parent: 6 - type: Transform - - uid: 5078 - components: - - pos: -8.5,5.5 - parent: 6 - type: Transform - - uid: 5079 - components: - - pos: -7.5,5.5 - parent: 6 - type: Transform - - uid: 5080 - components: - - pos: -1.5,5.5 - parent: 6 - type: Transform - - uid: 5081 - components: - - pos: -0.5,5.5 - parent: 6 - type: Transform - - uid: 5082 - components: - - pos: 0.5,5.5 - parent: 6 - type: Transform - - uid: 5142 - components: - - pos: -12.5,-18.5 - parent: 6 - type: Transform - - uid: 5143 - components: - - pos: -12.5,-19.5 - parent: 6 - type: Transform - - uid: 5144 - components: - - pos: -12.5,-21.5 - parent: 6 - type: Transform - - uid: 5145 - components: - - pos: -12.5,-22.5 - parent: 6 - type: Transform - - uid: 5151 - components: - - pos: 3.5,-19.5 - parent: 6 - type: Transform - - uid: 5228 - components: - - pos: -11.5,-13.5 - parent: 6 - type: Transform - - uid: 5229 - components: - - pos: -10.5,-13.5 - parent: 6 - type: Transform - - uid: 5230 - components: - - pos: -9.5,-13.5 - parent: 6 - type: Transform - - uid: 5273 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-13.5 - parent: 6 - type: Transform - - uid: 5274 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-13.5 - parent: 6 - type: Transform - - uid: 5275 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-13.5 - parent: 6 - type: Transform - - uid: 5282 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-46.5 - parent: 6 - type: Transform - - uid: 5283 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-46.5 - parent: 6 - type: Transform - - uid: 5343 - components: - - pos: 4.5,-52.5 - parent: 6 - type: Transform - - uid: 5344 - components: - - pos: 3.5,-52.5 - parent: 6 - type: Transform - - uid: 5345 - components: - - pos: 2.5,-52.5 - parent: 6 - type: Transform - - uid: 5448 - components: - - pos: -58.5,-45.5 - parent: 6 - type: Transform - - uid: 5500 - components: - - pos: -44.5,-40.5 - parent: 6 - type: Transform - - uid: 5501 - components: - - pos: -41.5,-39.5 - parent: 6 - type: Transform - - uid: 5502 - components: - - pos: -41.5,-35.5 - parent: 6 - type: Transform - - uid: 5503 - components: - - pos: -44.5,-34.5 - parent: 6 - type: Transform - - uid: 5504 - components: - - pos: -44.5,-30.5 - parent: 6 - type: Transform - - uid: 5505 - components: - - pos: -41.5,-30.5 - parent: 6 - type: Transform - - uid: 5583 - components: - - pos: -48.5,-46.5 - parent: 6 - type: Transform - - uid: 5651 - components: - - pos: 7.5,-14.5 - parent: 6 - type: Transform - - uid: 5661 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-67.5 - parent: 6 - type: Transform - - uid: 5662 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-71.5 - parent: 6 - type: Transform - - uid: 5663 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-72.5 - parent: 6 - type: Transform - - uid: 5664 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-74.5 - parent: 6 - type: Transform - - uid: 5665 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-75.5 - parent: 6 - type: Transform - - uid: 5666 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-76.5 - parent: 6 - type: Transform - - uid: 5667 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-78.5 - parent: 6 - type: Transform - - uid: 5668 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-80.5 - parent: 6 - type: Transform - - uid: 5669 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-81.5 - parent: 6 - type: Transform - - uid: 5670 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-82.5 - parent: 6 - type: Transform - - uid: 5671 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-83.5 - parent: 6 - type: Transform - - uid: 5672 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-84.5 - parent: 6 - type: Transform - - uid: 5673 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-84.5 - parent: 6 - type: Transform - - uid: 5674 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-84.5 - parent: 6 - type: Transform - - uid: 5675 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-84.5 - parent: 6 - type: Transform - - uid: 5676 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-84.5 - parent: 6 - type: Transform - - uid: 5677 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-84.5 - parent: 6 - type: Transform - - uid: 5678 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-84.5 - parent: 6 - type: Transform - - uid: 5679 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-86.5 - parent: 6 - type: Transform - - uid: 5680 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-86.5 - parent: 6 - type: Transform - - uid: 5681 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-86.5 - parent: 6 - type: Transform - - uid: 5682 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-86.5 - parent: 6 - type: Transform - - uid: 5683 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-86.5 - parent: 6 - type: Transform - - uid: 5684 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-86.5 - parent: 6 - type: Transform - - uid: 5685 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-85.5 - parent: 6 - type: Transform - - uid: 5686 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-84.5 - parent: 6 - type: Transform - - uid: 5687 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-83.5 - parent: 6 - type: Transform - - uid: 5688 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-82.5 - parent: 6 - type: Transform - - uid: 5689 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-81.5 - parent: 6 - type: Transform - - uid: 5690 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-80.5 - parent: 6 - type: Transform - - uid: 5691 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-79.5 - parent: 6 - type: Transform - - uid: 5703 - components: - - pos: 46.5,-17.5 - parent: 6 - type: Transform - - uid: 5704 - components: - - pos: 46.5,-19.5 - parent: 6 - type: Transform - - uid: 5705 - components: - - pos: 46.5,-21.5 - parent: 6 - type: Transform - - uid: 5706 - components: - - pos: 46.5,-22.5 - parent: 6 - type: Transform - - uid: 5707 - components: - - pos: 46.5,-23.5 - parent: 6 - type: Transform - - uid: 5708 - components: - - pos: 46.5,-24.5 - parent: 6 - type: Transform - - uid: 5709 - components: - - pos: 46.5,-25.5 - parent: 6 - type: Transform - - uid: 5710 - components: - - pos: 44.5,-27.5 - parent: 6 - type: Transform - - uid: 5711 - components: - - pos: 43.5,-27.5 - parent: 6 - type: Transform - - uid: 5712 - components: - - pos: 41.5,-27.5 - parent: 6 - type: Transform - - uid: 5713 - components: - - pos: 40.5,-27.5 - parent: 6 - type: Transform - - uid: 5714 - components: - - pos: 39.5,-27.5 - parent: 6 - type: Transform - - uid: 5715 - components: - - pos: 37.5,-27.5 - parent: 6 - type: Transform - - uid: 5716 - components: - - pos: 34.5,-27.5 - parent: 6 - type: Transform - - uid: 5717 - components: - - pos: 33.5,-27.5 - parent: 6 - type: Transform - - uid: 5718 - components: - - pos: 32.5,-27.5 - parent: 6 - type: Transform - - uid: 5719 - components: - - pos: 31.5,-27.5 - parent: 6 - type: Transform - - uid: 5720 - components: - - pos: 30.5,-27.5 - parent: 6 - type: Transform - - uid: 5735 - components: - - pos: 29.5,-8.5 - parent: 6 - type: Transform - - uid: 5736 - components: - - pos: 29.5,-6.5 - parent: 6 - type: Transform - - uid: 5737 - components: - - pos: 29.5,-4.5 - parent: 6 - type: Transform - - uid: 5886 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-51.5 - parent: 6 - type: Transform - - uid: 5887 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-46.5 - parent: 6 - type: Transform - - uid: 5888 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-46.5 - parent: 6 - type: Transform - - uid: 5889 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-46.5 - parent: 6 - type: Transform - - uid: 5938 - components: - - pos: 40.5,-9.5 - parent: 6 - type: Transform - - uid: 5953 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-68.5 - parent: 6 - type: Transform - - uid: 5978 - components: - - pos: 7.5,-16.5 - parent: 6 - type: Transform - - uid: 6167 - components: - - pos: -32.5,-9.5 - parent: 6 - type: Transform - - uid: 6168 - components: - - pos: -34.5,-9.5 - parent: 6 - type: Transform - - uid: 6169 - components: - - pos: -36.5,-9.5 - parent: 6 - type: Transform - - uid: 6170 - components: - - pos: -38.5,-9.5 - parent: 6 - type: Transform - - uid: 6201 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-5.5 - parent: 6 - type: Transform - - uid: 6297 - components: - - pos: -29.5,13.5 - parent: 6 - type: Transform - - uid: 6298 - components: - - pos: -29.5,12.5 - parent: 6 - type: Transform - - uid: 6299 - components: - - pos: -29.5,11.5 - parent: 6 - type: Transform - - uid: 6446 - components: - - pos: -56.5,-23.5 - parent: 6 - type: Transform - - uid: 6447 - components: - - pos: -55.5,-23.5 - parent: 6 - type: Transform - - uid: 6448 - components: - - pos: -53.5,-25.5 - parent: 6 - type: Transform - - uid: 6449 - components: - - pos: -53.5,-26.5 - parent: 6 - type: Transform - - uid: 6450 - components: - - pos: -53.5,-27.5 - parent: 6 - type: Transform - - uid: 6453 - components: - - pos: -27.5,-62.5 - parent: 6 - type: Transform - - uid: 6455 - components: - - pos: -28.5,-62.5 - parent: 6 - type: Transform - - uid: 6456 - components: - - pos: -33.5,-63.5 - parent: 6 - type: Transform - - uid: 6457 - components: - - pos: -13.5,-60.5 - parent: 6 - type: Transform - - uid: 6458 - components: - - pos: -12.5,-60.5 - parent: 6 - type: Transform - - uid: 6459 - components: - - pos: -11.5,-60.5 - parent: 6 - type: Transform - - uid: 6749 - components: - - pos: -74.5,-47.5 - parent: 6 - type: Transform - - uid: 6750 - components: - - pos: -74.5,-41.5 - parent: 6 - type: Transform - - uid: 6751 - components: - - pos: -74.5,-39.5 - parent: 6 - type: Transform - - uid: 6752 - components: - - pos: -74.5,-38.5 - parent: 6 - type: Transform - - uid: 6780 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,-39.5 - parent: 6 - type: Transform - - uid: 7925 - components: - - pos: -83.5,-13.5 - parent: 6 - type: Transform - - uid: 7926 - components: - - pos: -81.5,-13.5 - parent: 6 - type: Transform - - uid: 7927 - components: - - pos: -80.5,-13.5 - parent: 6 - type: Transform - - uid: 7928 - components: - - pos: -79.5,-13.5 - parent: 6 - type: Transform - - uid: 7929 - components: - - pos: -78.5,-13.5 - parent: 6 - type: Transform - - uid: 7930 - components: - - pos: -77.5,-13.5 - parent: 6 - type: Transform - - uid: 7931 - components: - - pos: -76.5,-13.5 - parent: 6 - type: Transform - - uid: 8064 - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-49.5 - parent: 6 - type: Transform - - uid: 8071 - components: - - rot: 1.5707963267948966 rad - pos: -70.5,-49.5 - parent: 6 - type: Transform - - uid: 8073 - components: - - rot: 1.5707963267948966 rad - pos: -69.5,-49.5 - parent: 6 - type: Transform - - uid: 8074 - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-49.5 - parent: 6 - type: Transform - - uid: 8081 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-49.5 - parent: 6 - type: Transform - - uid: 8087 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,-49.5 - parent: 6 - type: Transform - - uid: 8124 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-49.5 - parent: 6 - type: Transform - - uid: 8135 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-39.5 - parent: 6 - type: Transform - - uid: 8136 - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-39.5 - parent: 6 - type: Transform - - uid: 8142 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,-39.5 - parent: 6 - type: Transform - - uid: 8183 - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-39.5 - parent: 6 - type: Transform - - uid: 8184 - components: - - rot: 1.5707963267948966 rad - pos: -69.5,-39.5 - parent: 6 - type: Transform - - uid: 8186 - components: - - rot: 1.5707963267948966 rad - pos: -70.5,-39.5 - parent: 6 - type: Transform - - uid: 8312 - components: - - pos: -50.5,-30.5 - parent: 6 - type: Transform - - uid: 8313 - components: - - pos: -50.5,-31.5 - parent: 6 - type: Transform - - uid: 8314 - components: - - pos: -50.5,-34.5 - parent: 6 - type: Transform - - uid: 8315 - components: - - pos: -50.5,-35.5 - parent: 6 - type: Transform - - uid: 8544 - components: - - pos: -11.5,-23.5 - parent: 6 - type: Transform - - uid: 12000 - components: - - pos: -58.5,-43.5 - parent: 6 - type: Transform - - uid: 13665 - components: - - rot: 3.141592653589793 rad - pos: 0.5,3.5 - parent: 13645 - type: Transform - - uid: 13668 - components: - - rot: 3.141592653589793 rad - pos: 6.5,4.5 - parent: 13645 - type: Transform - - uid: 13671 - components: - - rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 13645 - type: Transform - - uid: 13673 - components: - - rot: 3.141592653589793 rad - pos: 6.5,2.5 - parent: 13645 - type: Transform - - uid: 13873 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,-13.5 - parent: 6 - type: Transform - - uid: 13874 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,-13.5 - parent: 6 - type: Transform - - uid: 13875 - components: - - rot: -1.5707963267948966 rad - pos: -86.5,-13.5 - parent: 6 - type: Transform - - uid: 13876 - components: - - rot: -1.5707963267948966 rad - pos: -87.5,-13.5 - parent: 6 - type: Transform - - uid: 13877 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,-15.5 - parent: 6 - type: Transform - - uid: 13878 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,-16.5 - parent: 6 - type: Transform - - uid: 13879 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,-17.5 - parent: 6 - type: Transform - - uid: 13880 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,-20.5 - parent: 6 - type: Transform - - uid: 13881 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,-21.5 - parent: 6 - type: Transform - - uid: 13882 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,-22.5 - parent: 6 - type: Transform - - uid: 13883 - components: - - rot: -1.5707963267948966 rad - pos: -89.5,-22.5 - parent: 6 - type: Transform - - uid: 13884 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,-28.5 - parent: 6 - type: Transform - - uid: 13885 - components: - - rot: -1.5707963267948966 rad - pos: -90.5,-24.5 - parent: 6 - type: Transform - - uid: 13886 - components: - - rot: -1.5707963267948966 rad - pos: -90.5,-25.5 - parent: 6 - type: Transform - - uid: 13887 - components: - - rot: -1.5707963267948966 rad - pos: -90.5,-26.5 - parent: 6 - type: Transform - - uid: 13888 - components: - - rot: -1.5707963267948966 rad - pos: -89.5,-26.5 - parent: 6 - type: Transform - - uid: 13889 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,-29.5 - parent: 6 - type: Transform - - uid: 13890 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,-30.5 - parent: 6 - type: Transform - - uid: 13891 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,-32.5 - parent: 6 - type: Transform - - uid: 13892 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,-33.5 - parent: 6 - type: Transform - - uid: 13893 - components: - - rot: -1.5707963267948966 rad - pos: -86.5,-34.5 - parent: 6 - type: Transform - - uid: 13894 - components: - - rot: -1.5707963267948966 rad - pos: -85.5,-34.5 - parent: 6 - type: Transform - - uid: 13895 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,-34.5 - parent: 6 - type: Transform - - uid: 14051 - components: - - pos: -2.5,22.5 - parent: 6 - type: Transform - - uid: 14095 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-71.5 - parent: 6 - type: Transform - - uid: 14153 - components: - - pos: -2.5,23.5 - parent: 6 - type: Transform - - uid: 14154 - components: - - pos: -2.5,24.5 - parent: 6 - type: Transform - - uid: 14155 - components: - - pos: -2.5,25.5 - parent: 6 - type: Transform - - uid: 14156 - components: - - pos: -2.5,26.5 - parent: 6 - type: Transform - - uid: 14157 - components: - - pos: -2.5,27.5 - parent: 6 - type: Transform - - uid: 14158 - components: - - pos: -2.5,19.5 - parent: 6 - type: Transform - - uid: 14159 - components: - - pos: -2.5,18.5 - parent: 6 - type: Transform - - uid: 14160 - components: - - pos: -2.5,30.5 - parent: 6 - type: Transform - - uid: 14161 - components: - - pos: -2.5,31.5 - parent: 6 - type: Transform - - uid: 14162 - components: - - pos: -2.5,32.5 - parent: 6 - type: Transform - - uid: 14163 - components: - - pos: -2.5,33.5 - parent: 6 - type: Transform - - uid: 14164 - components: - - pos: -2.5,34.5 - parent: 6 - type: Transform - - uid: 14165 - components: - - pos: -2.5,35.5 - parent: 6 - type: Transform - - uid: 14166 - components: - - pos: -2.5,37.5 - parent: 6 - type: Transform - - uid: 14167 - components: - - pos: -2.5,38.5 - parent: 6 - type: Transform - - uid: 14168 - components: - - pos: -4.5,38.5 - parent: 6 - type: Transform - - uid: 14169 - components: - - pos: -3.5,38.5 - parent: 6 - type: Transform - - uid: 14170 - components: - - pos: -6.5,38.5 - parent: 6 - type: Transform - - uid: 14171 - components: - - pos: -7.5,38.5 - parent: 6 - type: Transform - - uid: 14172 - components: - - pos: -8.5,38.5 - parent: 6 - type: Transform - - uid: 14173 - components: - - pos: -9.5,38.5 - parent: 6 - type: Transform - - uid: 14174 - components: - - pos: -10.5,38.5 - parent: 6 - type: Transform - - uid: 14175 - components: - - pos: -11.5,39.5 - parent: 6 - type: Transform - - uid: 14176 - components: - - pos: -11.5,40.5 - parent: 6 - type: Transform - - uid: 14177 - components: - - pos: -12.5,40.5 - parent: 6 - type: Transform - - uid: 14178 - components: - - pos: -13.5,40.5 - parent: 6 - type: Transform - - uid: 14179 - components: - - pos: -15.5,40.5 - parent: 6 - type: Transform - - uid: 14180 - components: - - pos: -15.5,39.5 - parent: 6 - type: Transform - - uid: 14181 - components: - - pos: -15.5,38.5 - parent: 6 - type: Transform - - uid: 14182 - components: - - pos: -16.5,38.5 - parent: 6 - type: Transform - - uid: 14183 - components: - - pos: -17.5,38.5 - parent: 6 - type: Transform - - uid: 14184 - components: - - pos: -18.5,38.5 - parent: 6 - type: Transform - - uid: 14185 - components: - - pos: -21.5,38.5 - parent: 6 - type: Transform - - uid: 14186 - components: - - pos: -21.5,36.5 - parent: 6 - type: Transform - - uid: 14187 - components: - - pos: -21.5,35.5 - parent: 6 - type: Transform - - uid: 14188 - components: - - pos: -21.5,34.5 - parent: 6 - type: Transform -- proto: GrilleBroken - entities: - - uid: 2834 - components: - - pos: -85.5,-40.5 - parent: 6 - type: Transform - - uid: 3391 - components: - - rot: 1.5707963267948966 rad - pos: -82.5,-37.5 - parent: 6 - type: Transform - - uid: 3798 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-57.5 - parent: 6 - type: Transform - - uid: 5652 - components: - - pos: -20.5,-78.5 - parent: 6 - type: Transform - - uid: 5653 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-86.5 - parent: 6 - type: Transform - - uid: 5654 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-85.5 - parent: 6 - type: Transform - - uid: 5655 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-84.5 - parent: 6 - type: Transform - - uid: 5656 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-84.5 - parent: 6 - type: Transform - - uid: 5657 - components: - - rot: 3.141592653589793 rad - pos: -34.5,-79.5 - parent: 6 - type: Transform - - uid: 5658 - components: - - rot: 3.141592653589793 rad - pos: -34.5,-77.5 - parent: 6 - type: Transform - - uid: 5659 - components: - - pos: -34.5,-73.5 - parent: 6 - type: Transform - - uid: 5660 - components: - - rot: 3.141592653589793 rad - pos: -34.5,-69.5 - parent: 6 - type: Transform - - uid: 5692 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-27.5 - parent: 6 - type: Transform - - uid: 5693 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-27.5 - parent: 6 - type: Transform - - uid: 5694 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-27.5 - parent: 6 - type: Transform - - uid: 5695 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-27.5 - parent: 6 - type: Transform - - uid: 5696 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-27.5 - parent: 6 - type: Transform - - uid: 5697 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-27.5 - parent: 6 - type: Transform - - uid: 5698 - components: - - rot: 3.141592653589793 rad - pos: 46.5,-26.5 - parent: 6 - type: Transform - - uid: 5699 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-20.5 - parent: 6 - type: Transform - - uid: 5700 - components: - - pos: 46.5,-18.5 - parent: 6 - type: Transform - - uid: 5701 - components: - - rot: 3.141592653589793 rad - pos: 46.5,-18.5 - parent: 6 - type: Transform - - uid: 5702 - components: - - pos: 46.5,-16.5 - parent: 6 - type: Transform - - uid: 5951 - components: - - pos: -34.5,-70.5 - parent: 6 - type: Transform - - uid: 5952 - components: - - pos: -34.5,-66.5 - parent: 6 - type: Transform - - uid: 5971 - components: - - pos: -22.5,-50.5 - parent: 6 - type: Transform - - uid: 5972 - components: - - pos: -22.5,-54.5 - parent: 6 - type: Transform - - uid: 6753 - components: - - rot: 1.5707963267948966 rad - pos: -82.5,-40.5 - parent: 6 - type: Transform - - uid: 6754 - components: - - rot: 3.141592653589793 rad - pos: -74.5,-50.5 - parent: 6 - type: Transform - - uid: 7726 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-36.5 - parent: 6 - type: Transform - - uid: 7728 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-36.5 - parent: 6 - type: Transform - - uid: 7932 - components: - - rot: -1.5707963267948966 rad - pos: -75.5,-13.5 - parent: 6 - type: Transform - - uid: 7933 - components: - - rot: -1.5707963267948966 rad - pos: -82.5,-13.5 - parent: 6 - type: Transform - - uid: 8075 - components: - - rot: -1.5707963267948966 rad - pos: -67.5,-49.5 - parent: 6 - type: Transform - - uid: 8076 - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-49.5 - parent: 6 - type: Transform - - uid: 8187 - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-39.5 - parent: 6 - type: Transform - - uid: 8188 - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-39.5 - parent: 6 - type: Transform - - uid: 13667 - components: - - rot: 3.141592653589793 rad - pos: 6.5,3.5 - parent: 13645 - type: Transform - - uid: 13670 - components: - - pos: 6.5,3.5 - parent: 13645 - type: Transform - - uid: 13674 - components: - - pos: 0.5,4.5 - parent: 13645 - type: Transform - - uid: 13896 - components: - - rot: 1.5707963267948966 rad - pos: -90.5,-22.5 - parent: 6 - type: Transform - - uid: 13897 - components: - - rot: 1.5707963267948966 rad - pos: -88.5,-13.5 - parent: 6 - type: Transform - - uid: 13898 - components: - - pos: -88.5,-14.5 - parent: 6 - type: Transform - - uid: 13899 - components: - - rot: 3.141592653589793 rad - pos: -88.5,-18.5 - parent: 6 - type: Transform - - uid: 13900 - components: - - pos: -88.5,-19.5 - parent: 6 - type: Transform - - uid: 13901 - components: - - pos: -90.5,-23.5 - parent: 6 - type: Transform - - uid: 13902 - components: - - rot: -1.5707963267948966 rad - pos: -88.5,-26.5 - parent: 6 - type: Transform - - uid: 13903 - components: - - pos: -88.5,-27.5 - parent: 6 - type: Transform - - uid: 13904 - components: - - rot: 3.141592653589793 rad - pos: -88.5,-31.5 - parent: 6 - type: Transform - - uid: 13905 - components: - - rot: 3.141592653589793 rad - pos: -88.5,-34.5 - parent: 6 - type: Transform - - uid: 13906 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,-34.5 - parent: 6 - type: Transform - - uid: 13907 - components: - - rot: -1.5707963267948966 rad - pos: -83.5,-34.5 - parent: 6 - type: Transform - - uid: 14044 - components: - - rot: 3.141592653589793 rad - pos: -2.5,21.5 - parent: 6 - type: Transform - - uid: 14056 - components: - - pos: -2.5,28.5 - parent: 6 - type: Transform - - uid: 14061 - components: - - pos: -2.5,20.5 - parent: 6 - type: Transform - - uid: 14092 - components: - - rot: 3.141592653589793 rad - pos: -2.5,17.5 - parent: 6 - type: Transform - - uid: 14189 - components: - - rot: 3.141592653589793 rad - pos: -21.5,33.5 - parent: 6 - type: Transform - - uid: 14190 - components: - - rot: 3.141592653589793 rad - pos: -21.5,37.5 - parent: 6 - type: Transform - - uid: 14191 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,38.5 - parent: 6 - type: Transform - - uid: 14192 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,38.5 - parent: 6 - type: Transform - - uid: 14193 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,40.5 - parent: 6 - type: Transform - - uid: 14194 - components: - - rot: 3.141592653589793 rad - pos: -11.5,38.5 - parent: 6 - type: Transform - - uid: 14195 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,38.5 - parent: 6 - type: Transform - - uid: 14196 - components: - - rot: 3.141592653589793 rad - pos: -2.5,36.5 - parent: 6 - type: Transform - - uid: 14197 - components: - - pos: -2.5,36.5 - parent: 6 - type: Transform - - uid: 14198 - components: - - rot: 3.141592653589793 rad - pos: -2.5,29.5 - parent: 6 - type: Transform -- proto: Gyroscope - entities: - - uid: 13656 - components: - - pos: 3.5,-0.5 - parent: 13645 - type: Transform - - bodyType: Static - type: Physics -- proto: Handcuffs - entities: - - uid: 6335 - components: - - pos: -10.457354,8.58974 - parent: 6 - type: Transform -- proto: HandheldCrewMonitor - entities: - - uid: 5640 - components: - - pos: -37.635654,-18.448305 - parent: 6 - type: Transform -- proto: HandheldGPSBasic - entities: - - uid: 6491 - components: - - pos: 16.317135,-38.365986 - parent: 6 - type: Transform -- proto: HandheldHealthAnalyzer - entities: - - uid: 6437 - components: - - pos: -26.530235,-27.147102 - parent: 6 - type: Transform -- proto: HandLabeler - entities: - - uid: 5109 - components: - - pos: -2.8509688,-7.249933 - parent: 6 - type: Transform - - uid: 6492 - components: - - pos: 16.657906,-38.365986 - parent: 6 - type: Transform - - uid: 6493 - components: - - pos: -23.350414,-14.4585905 - parent: 6 - type: Transform -- proto: Hemostat - entities: - - uid: 6189 - components: - - pos: -34.47582,-14.4353285 - parent: 6 - type: Transform -- proto: HighSecArmoryLocked - entities: - - uid: 4697 - components: - - pos: 16.5,6.5 - parent: 6 - type: Transform -- proto: HighSecCommandLocked - entities: - - uid: 5045 - components: - - pos: -26.5,0.5 - parent: 6 - type: Transform - - uid: 5050 - components: - - pos: -20.5,0.5 - parent: 6 - type: Transform - - uid: 5443 - components: - - pos: -51.5,-43.5 - parent: 6 - type: Transform - - uid: 10210 - components: - - pos: -51.5,-45.5 - parent: 6 - type: Transform -- proto: HolofanProjector - entities: - - uid: 6352 - components: - - pos: -21.470198,-5.233407 - parent: 6 - type: Transform -- proto: HospitalCurtains - entities: - - uid: 3364 - components: - - pos: 10.5,18.5 - parent: 6 - type: Transform - - uid: 3365 - components: - - pos: 11.5,18.5 - parent: 6 - type: Transform - - uid: 3366 - components: - - pos: 12.5,18.5 - parent: 6 - type: Transform - - uid: 5419 - components: - - pos: -31.5,-39.5 - parent: 6 - type: Transform - - uid: 5420 - components: - - pos: -31.5,-40.5 - parent: 6 - type: Transform - - uid: 5421 - components: - - pos: -31.5,-41.5 - parent: 6 - type: Transform - - uid: 5882 - components: - - pos: -26.5,-48.5 - parent: 6 - type: Transform - - uid: 6004 - components: - - pos: 13.5,22.5 - parent: 6 - type: Transform -- proto: HospitalCurtainsOpen - entities: - - uid: 1500 - components: - - pos: -25.5,-31.5 - parent: 6 - type: Transform - - uid: 1594 - components: - - pos: -25.5,-33.5 - parent: 6 - type: Transform - - uid: 1600 - components: - - pos: -25.5,-29.5 - parent: 6 - type: Transform - - uid: 2146 - components: - - pos: -45.5,-29.5 - parent: 6 - type: Transform - - uid: 5098 - components: - - pos: 3.5,-7.5 - parent: 6 - type: Transform - - uid: 5206 - components: - - pos: -8.5,-1.5 - parent: 6 - type: Transform - - uid: 6206 - components: - - pos: -40.5,-31.5 - parent: 6 - type: Transform - - uid: 6211 - components: - - pos: -40.5,-36.5 - parent: 6 - type: Transform - - uid: 6221 - components: - - pos: -38.5,-41.5 - parent: 6 - type: Transform - - uid: 6237 - components: - - pos: -47.5,-41.5 - parent: 6 - type: Transform - - uid: 6243 - components: - - pos: -47.5,-37.5 - parent: 6 - type: Transform -- proto: hydroponicsSoil - entities: - - uid: 5209 - components: - - pos: 3.5,8.5 - parent: 6 - type: Transform - - uid: 5210 - components: - - pos: 3.5,7.5 - parent: 6 - type: Transform - - uid: 5211 - components: - - pos: 3.5,6.5 - parent: 6 - type: Transform - - uid: 5981 - components: - - pos: 19.5,19.5 - parent: 6 - type: Transform - - uid: 5982 - components: - - pos: 18.5,19.5 - parent: 6 - type: Transform - - uid: 5983 - components: - - pos: 18.5,18.5 - parent: 6 - type: Transform - - uid: 5984 - components: - - pos: 19.5,18.5 - parent: 6 - type: Transform -- proto: HydroponicsToolHatchet - entities: - - uid: 5224 - components: - - pos: -8.644006,-18.557863 - parent: 6 - type: Transform -- proto: HydroponicsToolMiniHoe - entities: - - uid: 5223 - components: - - pos: -8.431025,-18.41595 - parent: 6 - type: Transform - - uid: 6340 - components: - - pos: 7.315955,6.461176 - parent: 6 - type: Transform - - uid: 13487 - components: - - pos: 17.361609,18.676716 - parent: 6 - type: Transform -- proto: HydroponicsToolScythe - entities: - - uid: 5226 - components: - - pos: -8.530416,-18.373379 - parent: 6 - type: Transform -- proto: HydroponicsToolSpade - entities: - - uid: 5225 - components: - - pos: -8.36003,-18.486906 - parent: 6 - type: Transform - - uid: 6341 - components: - - pos: 7.5147386,6.5803814 - parent: 6 - type: Transform - - uid: 13488 - components: - - pos: 17.390005,18.71929 - parent: 6 - type: Transform -- proto: hydroponicsTray - entities: - - uid: 4354 - components: - - pos: -11.5,-14.5 - parent: 6 - type: Transform - - uid: 4355 - components: - - pos: -10.5,-14.5 - parent: 6 - type: Transform - - uid: 4356 - components: - - pos: -11.5,-17.5 - parent: 6 - type: Transform - - uid: 4357 - components: - - pos: -11.5,-18.5 - parent: 6 - type: Transform - - uid: 4358 - components: - - pos: -11.5,-19.5 - parent: 6 - type: Transform - - uid: 4359 - components: - - pos: -9.5,-19.5 - parent: 6 - type: Transform - - uid: 4360 - components: - - pos: -9.5,-20.5 - parent: 6 - type: Transform - - uid: 4362 - components: - - pos: -9.5,-14.5 - parent: 6 - type: Transform - - uid: 8579 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-21.5 - parent: 6 - type: Transform - - uid: 8580 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-22.5 - parent: 6 - type: Transform -- proto: InflatableWall - entities: - - uid: 4521 - components: - - pos: -42.5,1.5 - parent: 6 - type: Transform - - uid: 4522 - components: - - pos: -42.5,2.5 - parent: 6 - type: Transform - - uid: 4523 - components: - - pos: -42.5,3.5 - parent: 6 - type: Transform -- proto: IngotGold - entities: - - uid: 5066 - components: - - pos: -18.462847,2.6033814 - parent: 6 - type: Transform -- proto: IngotGold1 - entities: - - uid: 3735 - components: - - pos: -15.702048,-62.305046 - parent: 6 - type: Transform - - uid: 5298 - components: - - pos: 12.464936,-45.216125 - parent: 6 - type: Transform - - uid: 5299 - components: - - pos: 14.523761,-44.591717 - parent: 6 - type: Transform - - uid: 13462 - components: - - pos: -15.659452,-62.560486 - parent: 6 - type: Transform -- proto: IngotSilver1 - entities: - - uid: 13634 - components: - - pos: 2.4263153,-7.4032135 - parent: 10465 - type: Transform -- proto: Intercom - entities: - - uid: 13170 - components: - - rot: 3.141592653589793 rad - pos: -17.5,5.5 - parent: 6 - type: Transform - - uid: 13411 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-16.5 - parent: 6 - type: Transform - - uid: 14103 - components: - - pos: 13.5,21.5 - parent: 6 - type: Transform - - uid: 14106 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-13.5 - parent: 6 - type: Transform - - uid: 14107 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-23.5 - parent: 6 - type: Transform - - uid: 14110 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-40.5 - parent: 6 - type: Transform - - uid: 14117 - components: - - pos: -0.5,-42.5 - parent: 6 - type: Transform - - uid: 14123 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-54.5 - parent: 6 - type: Transform - - uid: 14124 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-41.5 - parent: 6 - type: Transform - - uid: 14128 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-36.5 - parent: 6 - type: Transform - - uid: 14130 - components: - - pos: -59.5,-9.5 - parent: 6 - type: Transform - - uid: 14132 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-13.5 - parent: 6 - type: Transform - - uid: 14139 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 6 - type: Transform - - uid: 14147 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,5.5 - parent: 6 - type: Transform -- proto: IntercomAll - entities: - - uid: 14096 - components: - - rot: 3.141592653589793 rad - pos: 1.5,5.5 - parent: 6 - type: Transform - - uid: 14098 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-4.5 - parent: 6 - type: Transform -- proto: IntercomCommand - entities: - - uid: 14097 - components: - - pos: -4.5,-8.5 - parent: 6 - type: Transform - - uid: 14101 - components: - - pos: 11.5,10.5 - parent: 6 - type: Transform - - uid: 14112 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-31.5 - parent: 6 - type: Transform - - uid: 14122 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-51.5 - parent: 6 - type: Transform - - uid: 14127 - components: - - pos: -52.5,-42.5 - parent: 6 - type: Transform - - uid: 14131 - components: - - pos: -67.5,-9.5 - parent: 6 - type: Transform - - uid: 14135 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-3.5 - parent: 6 - type: Transform - - uid: 14145 - components: - - pos: -37.5,-16.5 - parent: 6 - type: Transform -- proto: IntercomEngineering - entities: - - uid: 14133 - components: - - pos: -25.5,-8.5 - parent: 6 - type: Transform - - uid: 14134 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-5.5 - parent: 6 - type: Transform - - uid: 14136 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-6.5 - parent: 6 - type: Transform - - uid: 14137 - components: - - rot: 3.141592653589793 rad - pos: -34.5,7.5 - parent: 6 - type: Transform -- proto: IntercomMedical - entities: - - uid: 4829 - components: - - pos: -24.5,-19.5 - parent: 6 - type: Transform - - uid: 7998 - components: - - pos: -22.5,-28.5 - parent: 6 - type: Transform - - uid: 14142 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-16.5 - parent: 6 - type: Transform - - uid: 14143 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-16.5 - parent: 6 - type: Transform - - uid: 14146 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-23.5 - parent: 6 - type: Transform -- proto: IntercomScience - entities: - - uid: 14118 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-48.5 - parent: 6 - type: Transform - - uid: 14119 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-51.5 - parent: 6 - type: Transform - - uid: 14120 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-57.5 - parent: 6 - type: Transform - - uid: 14121 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-77.5 - parent: 6 - type: Transform -- proto: IntercomSecurity - entities: - - uid: 13145 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-48.5 - parent: 6 - type: Transform - - uid: 14099 - components: - - pos: 10.5,-5.5 - parent: 6 - type: Transform - - uid: 14100 - components: - - pos: 15.5,-2.5 - parent: 6 - type: Transform - - uid: 14102 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,8.5 - parent: 6 - type: Transform - - uid: 14125 - components: - - pos: -16.5,-28.5 - parent: 6 - type: Transform -- proto: IntercomService - entities: - - uid: 14108 - components: - - pos: -5.5,-22.5 - parent: 6 - type: Transform - - uid: 14109 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-17.5 - parent: 6 - type: Transform - - uid: 14140 - components: - - pos: -13.5,-13.5 - parent: 6 - type: Transform - - uid: 14141 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-19.5 - parent: 6 - type: Transform -- proto: IntercomSupply - entities: - - uid: 14111 - components: - - pos: 10.5,-34.5 - parent: 6 - type: Transform - - uid: 14113 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-40.5 - parent: 6 - type: Transform - - uid: 14114 - components: - - pos: 19.5,-33.5 - parent: 6 - type: Transform - - uid: 14115 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-47.5 - parent: 6 - type: Transform - - uid: 14116 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-57.5 - parent: 6 - type: Transform -- proto: JanitorialTrolley - entities: - - uid: 7640 - components: - - pos: 27.5,5.5 - parent: 6 - type: Transform -- proto: JetpackMiniFilled - entities: - - uid: 4442 - components: - - pos: -44.60422,-16.11249 - parent: 6 - type: Transform - - uid: 4443 - components: - - pos: -44.42738,-16.377716 - parent: 6 - type: Transform -- proto: JetpackSecurityFilled - entities: - - uid: 4708 - components: - - pos: 17.481842,4.5026503 - parent: 6 - type: Transform -- proto: KalimbaInstrument - entities: - - uid: 13484 - components: - - pos: 44.56669,-25.483343 - parent: 6 - type: Transform -- proto: KitchenKnife - entities: - - uid: 3792 - components: - - pos: -34.523922,-61.71544 - parent: 6 - type: Transform -- proto: KitchenMicrowave - entities: - - uid: 3789 - components: - - pos: -34.5,-62.5 - parent: 6 - type: Transform - - uid: 4609 - components: - - pos: -7.5,-26.5 - parent: 6 - type: Transform - - uid: 5996 - components: - - pos: 17.5,21.5 - parent: 6 - type: Transform -- proto: KitchenReagentGrinder - entities: - - uid: 4610 - components: - - pos: -9.5,-26.5 - parent: 6 - type: Transform - - uid: 4809 - components: - - pos: -26.5,-14.5 - parent: 6 - type: Transform -- proto: KitchenSpike - entities: - - uid: 4636 - components: - - pos: -5.5,-21.5 - parent: 6 - type: Transform -- proto: KnifePlastic - entities: - - uid: 6020 - components: - - pos: 16.8353,21.540228 - parent: 6 - type: Transform - - uid: 7442 - components: - - rot: -1.5707963267948966 rad - pos: -30.404367,-51.061775 - parent: 6 - type: Transform -- proto: Lamp - entities: - - uid: 5845 - components: - - pos: -35.576878,-26.298307 - parent: 6 - type: Transform -- proto: LampBanana - entities: - - uid: 5623 - components: - - pos: 16.620932,-29.096205 - parent: 6 - type: Transform -- proto: LampGold - entities: - - uid: 7610 - components: - - rot: -1.5707963267948966 rad - pos: -50.28837,-48.099964 - parent: 6 - type: Transform - - uid: 7806 - components: - - pos: 8.320713,-16.093054 - parent: 6 - type: Transform -- proto: LargeBeaker - entities: - - uid: 6173 - components: - - pos: -22.232916,-17.287807 - parent: 6 - type: Transform -- proto: LauncherCreamPie - entities: - - uid: 5618 - components: - - pos: 17.501255,-29.56451 - parent: 6 - type: Transform -- proto: LockerAtmosphericsFilled - entities: - - uid: 4843 - components: - - pos: -38.5,-8.5 - parent: 6 - 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: 4844 - components: - - pos: -38.5,-7.5 - parent: 6 - 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: LockerBoozeFilled - entities: - - uid: 3368 - components: - - pos: -41.5,-49.5 - parent: 6 - 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: 3411 - components: - - pos: -2.5,-16.5 - parent: 6 - 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: 3831 - components: - - pos: -48.5,-56.5 - parent: 6 - 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: LockerBotanistFilled - entities: - - uid: 4361 - components: - - pos: -9.5,-22.5 - parent: 6 - 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: 4366 - components: - - pos: -9.5,-21.5 - parent: 6 - 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: LockerCaptainFilled - entities: - - uid: 4383 - components: - - pos: -8.5,-0.5 - parent: 6 - 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: LockerChemistryFilled - entities: - - uid: 4799 - components: - - pos: -26.5,-18.5 - parent: 6 - 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: 4800 - components: - - pos: -25.5,-18.5 - parent: 6 - 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: LockerChiefEngineerFilled - entities: - - uid: 5065 - components: - - pos: -21.5,-3.5 - parent: 6 - 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: LockerChiefMedicalOfficerFilled - entities: - - uid: 4653 - components: - - pos: -36.5,-17.5 - parent: 6 - 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: LockerDetectiveFilled - entities: - - uid: 3594 - components: - - pos: -48.5,-50.5 - parent: 6 - 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: LockerElectricalSuppliesFilled - entities: - - uid: 4880 - components: - - pos: -34.5,-8.5 - parent: 6 - 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: LockerEngineerFilled - entities: - - uid: 4841 - components: - - pos: -38.5,-5.5 - parent: 6 - 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: 4842 - components: - - pos: -38.5,-6.5 - parent: 6 - 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: LockerEvidence - entities: - - uid: 4608 - components: - - pos: -19.5,-32.5 - parent: 6 - 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: 4664 - components: - - pos: 11.5,-1.5 - parent: 6 - 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: 4665 - components: - - pos: 11.5,4.5 - parent: 6 - 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: LockerFreezer - entities: - - uid: 5075 - components: - - pos: -22.5,1.5 - parent: 6 - 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 - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 5173 - type: ContainerContainer - - uid: 5076 - components: - - pos: -18.5,1.5 - parent: 6 - 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 - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6326 - - 6325 - - 6324 - - 6323 - - 5174 - type: ContainerContainer -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 5096 - components: - - pos: 1.5,-7.5 - parent: 6 - 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: LockerHeadOfSecurityFilled - entities: - - uid: 4671 - components: - - pos: 10.5,9.5 - parent: 6 - 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: LockerMedicalFilled - entities: - - uid: 3400 - components: - - pos: -19.5,-25.5 - parent: 6 - 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: 3401 - components: - - pos: -18.5,-25.5 - parent: 6 - 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: LockerQuarterMasterFilled - entities: - - uid: 4536 - components: - - pos: 8.5,-31.5 - parent: 6 - 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: LockerResearchDirectorFilled - entities: - - uid: 5354 - components: - - pos: -2.5,-50.5 - parent: 6 - 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: LockerSalvageSpecialistFilled - entities: - - uid: 4528 - components: - - pos: 2.5,-50.5 - parent: 6 - 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: 4529 - components: - - pos: 2.5,-49.5 - parent: 6 - 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: LockerScienceFilled - entities: - - uid: 5402 - components: - - pos: -10.5,-56.5 - parent: 6 - 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: 5403 - components: - - pos: -9.5,-56.5 - parent: 6 - 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: LockerSecurityFilled - entities: - - uid: 306 - components: - - pos: 17.5,-8.5 - parent: 6 - 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: 446 - components: - - pos: 19.5,-8.5 - parent: 6 - 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: 465 - components: - - pos: 18.5,-8.5 - parent: 6 - 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: LockerWardenFilled - entities: - - uid: 3429 - components: - - pos: 17.5,1.5 - parent: 6 - 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: LockerWeldingSuppliesFilled - entities: - - uid: 3402 - components: - - pos: -51.5,-19.5 - parent: 6 - 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: 4881 - components: - - pos: -32.5,-8.5 - parent: 6 - 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: 4896 - components: - - pos: -38.5,0.5 - parent: 6 - 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: MachineAnomalyGenerator - entities: - - uid: 1475 - components: - - pos: -10.5,-73.5 - parent: 6 - type: Transform - - enabled: False - type: AmbientSound -- proto: MachineAnomalyVessel - entities: - - uid: 14284 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-56.5 - parent: 6 - type: Transform -- proto: MachineAPE - entities: - - uid: 14283 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-54.5 - parent: 6 - type: Transform -- proto: MachineArtifactAnalyzer - entities: - - uid: 5650 - components: - - pos: -2.5,-80.5 - parent: 6 - type: Transform -- proto: MachineFrameDestroyed - entities: - - uid: 4778 - components: - - pos: -80.5,-48.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5539 - components: - - pos: -62.5,-32.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5540 - components: - - pos: -61.5,-31.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 6684 - components: - - pos: -79.5,-48.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 13680 - components: - - pos: 1.5,0.5 - parent: 13645 - type: Transform - - bodyType: Static - type: Physics -- proto: MagazinePistol - entities: - - uid: 4715 - components: - - pos: 17.285416,8.608155 - parent: 6 - type: Transform - - uid: 4716 - components: - - pos: 17.611988,8.551391 - parent: 6 - type: Transform -- proto: MagazinePistolSubMachineGunTopMounted - entities: - - uid: 6478 - components: - - pos: 11.546731,8.494321 - parent: 6 - type: Transform - - uid: 6479 - components: - - pos: 11.475738,8.366601 - parent: 6 - type: Transform -- proto: MagazineRifleHighVelocity - entities: - - uid: 4722 - components: - - pos: 19.689945,4.549178 - parent: 6 - type: Transform -- proto: MaintenanceFluffSpawner - entities: - - uid: 3804 - components: - - pos: -42.5,-57.5 - parent: 6 - type: Transform - - uid: 11055 - components: - - pos: -66.5,-16.5 - parent: 6 - type: Transform - - uid: 11062 - components: - - pos: -28.5,-30.5 - parent: 6 - type: Transform - - uid: 11065 - components: - - pos: -50.5,-38.5 - parent: 6 - type: Transform - - uid: 11070 - components: - - pos: -30.5,-58.5 - parent: 6 - type: Transform - - uid: 11071 - components: - - pos: -25.5,-58.5 - parent: 6 - type: Transform - - uid: 11072 - components: - - pos: -23.5,-58.5 - parent: 6 - type: Transform - - uid: 11077 - components: - - pos: 12.5,-44.5 - parent: 6 - type: Transform - - uid: 11078 - components: - - pos: 19.5,-32.5 - parent: 6 - type: Transform - - uid: 11081 - components: - - pos: 20.5,-20.5 - parent: 6 - type: Transform - - uid: 11082 - components: - - pos: 21.5,-0.5 - parent: 6 - type: Transform - - uid: 11085 - components: - - pos: 20.5,12.5 - parent: 6 - type: Transform - - uid: 11087 - components: - - pos: 9.5,12.5 - parent: 6 - type: Transform - - uid: 11091 - components: - - pos: -11.5,-7.5 - parent: 6 - type: Transform - - uid: 11093 - components: - - pos: -40.5,0.5 - parent: 6 - type: Transform - - uid: 11098 - components: - - pos: -25.5,7.5 - parent: 6 - type: Transform - - uid: 11099 - components: - - pos: -6.5,-18.5 - parent: 6 - type: Transform - - uid: 11112 - components: - - pos: -46.5,-19.5 - parent: 6 - type: Transform -- proto: MaintenanceToolSpawner - entities: - - uid: 3611 - components: - - pos: -4.5,-61.5 - parent: 6 - type: Transform - - uid: 11056 - components: - - pos: -57.5,-20.5 - parent: 6 - type: Transform - - uid: 11059 - components: - - pos: -47.5,-19.5 - parent: 6 - type: Transform - - uid: 11060 - components: - - pos: -44.5,-23.5 - parent: 6 - type: Transform - - uid: 11064 - components: - - pos: -28.5,-34.5 - parent: 6 - type: Transform - - uid: 11067 - components: - - pos: -27.5,-40.5 - parent: 6 - type: Transform - - uid: 11068 - components: - - pos: -34.5,-58.5 - parent: 6 - type: Transform - - uid: 11074 - components: - - pos: -11.5,-59.5 - parent: 6 - type: Transform - - uid: 11075 - components: - - pos: -0.5,-59.5 - parent: 6 - type: Transform - - uid: 11089 - components: - - pos: -5.5,-7.5 - parent: 6 - type: Transform - - uid: 11090 - components: - - pos: -11.5,-5.5 - parent: 6 - type: Transform - - uid: 11094 - components: - - pos: -40.5,4.5 - parent: 6 - type: Transform - - uid: 11095 - components: - - pos: -40.5,-7.5 - parent: 6 - type: Transform -- proto: MaintenanceWeaponSpawner - entities: - - uid: 11058 - components: - - pos: -44.5,-19.5 - parent: 6 - type: Transform - - uid: 11061 - components: - - pos: -44.5,-26.5 - parent: 6 - type: Transform - - uid: 11069 - components: - - pos: -28.5,-61.5 - parent: 6 - type: Transform - - uid: 11076 - components: - - pos: 14.5,-45.5 - parent: 6 - type: Transform - - uid: 11086 - components: - - pos: 25.5,7.5 - parent: 6 - type: Transform - - uid: 11088 - components: - - pos: 10.5,12.5 - parent: 6 - type: Transform - - uid: 11092 - components: - - pos: -12.5,-7.5 - parent: 6 - type: Transform - - uid: 11171 - components: - - pos: -26.5,18.5 - parent: 6 - type: Transform -- proto: MarimbaInstrument - entities: - - uid: 8067 - components: - - pos: -11.5,10.5 - parent: 6 - type: Transform -- proto: Matchbox - entities: - - uid: 5183 - components: - - pos: -0.5177345,-1.0809245 - parent: 6 - type: Transform - - uid: 5946 - components: - - pos: 12.566873,18.334364 - parent: 6 - type: Transform -- proto: MatchstickSpent - entities: - - uid: 5184 - components: - - rot: -1.5707963267948966 rad - pos: -0.7307167,-0.8538667 - parent: 6 - type: Transform -- proto: MaterialCloth - entities: - - uid: 5107 - components: - - pos: -3.6319022,-7.4344172 - parent: 6 - type: Transform -- proto: MaterialDurathread - entities: - - uid: 5108 - components: - - pos: -3.3479273,-7.576328 - parent: 6 - type: Transform -- proto: MaterialWoodPlank1 - entities: - - uid: 7843 - components: - - pos: 27.559465,-0.5166031 - parent: 6 - type: Transform -- proto: MedicalBed - entities: - - uid: 1607 - components: - - pos: -26.5,-28.5 - parent: 6 - type: Transform - - uid: 1608 - components: - - pos: -26.5,-30.5 - parent: 6 - type: Transform - - uid: 1609 - components: - - pos: -26.5,-32.5 - parent: 6 - type: Transform -- proto: MedicalScanner - entities: - - uid: 14292 - components: - - pos: -34.5,-18.5 - parent: 6 - type: Transform -- proto: MedicalTechFab - entities: - - uid: 1693 - components: - - pos: -21.5,-25.5 - parent: 6 - type: Transform -- proto: MedkitAdvancedFilled - entities: - - uid: 3370 - components: - - pos: -25.501886,-27.410276 - parent: 6 - type: Transform - - uid: 6333 - components: - - pos: -0.32305157,10.691305 - parent: 6 - type: Transform -- proto: MedkitBruteFilled - entities: - - uid: 6334 - components: - - pos: -0.6609837,10.492631 - parent: 6 - type: Transform - - uid: 6431 - components: - - pos: -19.618067,-27.245295 - parent: 6 - type: Transform -- proto: MedkitBurnFilled - entities: - - uid: 6432 - components: - - pos: -19.362488,-27.472353 - parent: 6 - type: Transform -- proto: MedkitCombatFilled - entities: - - uid: 2829 - components: - - pos: 18.383371,25.533783 - parent: 6 - type: Transform -- proto: MedkitFilled - entities: - - uid: 6436 - components: - - pos: -18.382772,-27.472353 - parent: 6 - type: Transform -- proto: MedkitOxygenFilled - entities: - - uid: 6433 - components: - - pos: -19.121109,-27.216913 - parent: 6 - type: Transform -- proto: MedkitRadiationFilled - entities: - - uid: 6434 - components: - - pos: -18.908127,-27.472353 - parent: 6 - type: Transform -- proto: MedkitToxinFilled - entities: - - uid: 6435 - components: - - pos: -18.595753,-27.216913 - parent: 6 - type: Transform -- proto: MinimoogInstrument - entities: - - uid: 3801 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-56.5 - parent: 6 - type: Transform -- proto: Mirror - entities: - - uid: 5162 - components: - - pos: -8.5,-2.5 - parent: 6 - type: Transform - - uid: 5413 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-42.5 - parent: 6 - type: Transform - - uid: 5414 - components: - - rot: 3.141592653589793 rad - pos: -35.5,-42.5 - parent: 6 - type: Transform - - uid: 5415 - components: - - rot: 3.141592653589793 rad - pos: -34.5,-42.5 - parent: 6 - type: Transform - - uid: 6001 - components: - - pos: 12.5,24.5 - parent: 6 - type: Transform -- proto: MonkeyCubeBox - entities: - - uid: 6382 - components: - - pos: -7.6675234,-73.374825 - parent: 6 - type: Transform -- proto: MonkeyCubeWrapped - entities: - - uid: 4638 - components: - - pos: -6.3379927,-21.009727 - parent: 6 - type: Transform - - uid: 4639 - components: - - pos: -6.5463266,-21.280561 - parent: 6 - type: Transform -- proto: MopItem - entities: - - uid: 7636 - components: - - pos: 27.457216,5.473096 - parent: 6 - type: Transform -- proto: Morgue - entities: - - uid: 4505 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-24.5 - parent: 6 - 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: 4511 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-25.5 - parent: 6 - 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: 4518 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-26.5 - parent: 6 - 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: 4558 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-27.5 - parent: 6 - 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: MouseTimedSpawner - entities: - - uid: 13552 - components: - - pos: -7.5,-20.5 - parent: 6 - type: Transform -- proto: Multitool - entities: - - uid: 5359 - components: - - pos: -2.6900132,-51.289413 - parent: 6 - type: Transform - - uid: 6089 - components: - - pos: -4.749701,-78.328835 - parent: 6 - type: Transform - - uid: 6187 - components: - - pos: -36.361042,-18.306019 - parent: 6 - type: Transform - - uid: 6331 - components: - - pos: 0.9441077,8.567007 - parent: 6 - type: Transform - - uid: 6410 - components: - - pos: -48.27532,-25.597645 - parent: 6 - type: Transform - - uid: 6411 - components: - - pos: -48.036777,-25.359234 - parent: 6 - type: Transform - - uid: 6680 - components: - - pos: -22.366201,-61.434616 - parent: 6 - type: Transform -- proto: NanoManipulatorStockPart - entities: - - uid: 5393 - components: - - pos: -9.525309,-54.22893 - parent: 6 - type: Transform - - uid: 5394 - components: - - pos: -9.823483,-54.34246 - parent: 6 - type: Transform -- proto: NitrogenCanister - entities: - - uid: 3463 - components: - - pos: -43.5,9.5 - parent: 6 - type: Transform - - uid: 4433 - components: - - pos: -47.5,-14.5 - parent: 6 - type: Transform - - uid: 4855 - components: - - pos: -30.5,12.5 - parent: 6 - type: Transform - - uid: 5006 - components: - - pos: -26.5,17.5 - parent: 6 - type: Transform - - uid: 5310 - components: - - pos: 19.5,-46.5 - parent: 6 - type: Transform - - uid: 5347 - components: - - pos: 5.5,-54.5 - parent: 6 - type: Transform - - uid: 5579 - components: - - pos: -62.5,-20.5 - parent: 6 - type: Transform - - uid: 6093 - components: - - pos: -3.5,-72.5 - parent: 6 - type: Transform - - uid: 6681 - components: - - pos: -24.5,-63.5 - parent: 6 - type: Transform - - uid: 7224 - components: - - pos: 24.5,-20.5 - parent: 6 - type: Transform - - uid: 10887 - components: - - pos: 23.5,10.5 - parent: 6 - type: Transform - - uid: 10914 - components: - - pos: 14.5,-21.5 - parent: 6 - type: Transform - - uid: 10923 - components: - - pos: -15.5,-55.5 - parent: 6 - type: Transform - - uid: 10981 - components: - - pos: -34.5,-32.5 - parent: 6 - type: Transform - - uid: 11006 - components: - - pos: -44.5,-25.5 - parent: 6 - type: Transform - - uid: 11026 - components: - - pos: -57.5,-18.5 - parent: 6 - type: Transform -- proto: NitrogenTankFilled - entities: - - uid: 7377 - components: - - pos: -7.6515384,-61.38327 - parent: 6 - type: Transform -- proto: NitrousOxideCanister - entities: - - uid: 3464 - components: - - pos: -43.5,15.5 - parent: 6 - type: Transform - - uid: 6095 - components: - - pos: -3.5,-74.5 - parent: 6 - type: Transform -- proto: NitrousOxideTankFilled - entities: - - uid: 6438 - components: - - pos: -32.419903,-14.511417 - parent: 6 - type: Transform -- proto: NuclearBomb - entities: - - uid: 4786 - components: - - pos: -20.5,3.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics -- proto: Omnitool - entities: - - uid: 5173 - components: - - flags: InContainer - type: MetaData - - parent: 5075 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: OperatingTable - entities: - - uid: 4543 - components: - - pos: -14.5,-49.5 - parent: 6 - type: Transform - - uid: 14291 - components: - - pos: -34.5,-16.5 - parent: 6 - type: Transform -- proto: OreProcessor - entities: - - uid: 7594 - components: - - pos: 4.5,-50.5 - parent: 6 - type: Transform -- proto: OxygenCanister - entities: - - uid: 3465 - components: - - pos: -43.5,11.5 - parent: 6 - type: Transform - - uid: 4434 - components: - - pos: -47.5,-15.5 - parent: 6 - type: Transform - - uid: 4848 - components: - - pos: -24.5,-7.5 - parent: 6 - type: Transform - - uid: 4856 - components: - - pos: -30.5,11.5 - parent: 6 - type: Transform - - uid: 5005 - components: - - pos: -26.5,16.5 - parent: 6 - type: Transform - - uid: 5309 - components: - - pos: 19.5,-45.5 - parent: 6 - type: Transform - - uid: 5346 - components: - - pos: 6.5,-54.5 - parent: 6 - type: Transform - - uid: 5578 - components: - - pos: -62.5,-19.5 - parent: 6 - type: Transform - - uid: 6094 - components: - - pos: -3.5,-73.5 - parent: 6 - type: Transform - - uid: 6682 - components: - - pos: -24.5,-62.5 - parent: 6 - type: Transform - - uid: 7225 - components: - - pos: 23.5,-20.5 - parent: 6 - type: Transform - - uid: 10886 - components: - - pos: 23.5,11.5 - parent: 6 - type: Transform - - uid: 10924 - components: - - pos: -16.5,-55.5 - parent: 6 - type: Transform - - uid: 10982 - components: - - pos: -34.5,-33.5 - parent: 6 - type: Transform - - uid: 11005 - components: - - pos: -44.5,-24.5 - parent: 6 - type: Transform - - uid: 11027 - components: - - pos: -57.5,-19.5 - parent: 6 - type: Transform - - uid: 13743 - components: - - pos: 5.5,0.5 - parent: 13645 - type: Transform -- proto: OxygenTank - entities: - - uid: 7378 - components: - - pos: -7.4848714,-61.44577 - parent: 6 - type: Transform -- proto: Paper - entities: - - uid: 4643 - components: - - pos: -28.609644,-18.461634 - parent: 6 - type: Transform - - content: "1:1:1\nwater:dexalin:oxygen\n \nturn the freezer down to 150 or below\n \nmake sure to have some warm clothes and maybe some hot cocoa for people when they get done\n" - type: Paper - - uid: 5148 - components: - - pos: -38.31556,-4.426944 - parent: 6 - type: Transform - - content: > - NT is having trouble getting supplies all the way out here so we only have one AME core for now. Make sure all four solar arrays are connected and calibrated or get those braniacs down in science to build us a couple generators in the meantime. - type: Paper - - uid: 5634 - components: - - pos: 15.201054,-29.238115 - parent: 6 - type: Transform - - uid: 5635 - components: - - pos: 15.357241,-29.351645 - parent: 6 - type: Transform - - uid: 6091 - components: - - rot: 3.141592653589793 rad - pos: -4.29534,-78.314644 - parent: 6 - type: Transform - - uid: 6092 - components: - - rot: 3.141592653589793 rad - pos: -4.465725,-78.328835 - parent: 6 - type: Transform - - uid: 7611 - components: - - rot: -1.5707963267948966 rad - pos: -50.78846,-48.41529 - parent: 6 - type: Transform - - uid: 7612 - components: - - rot: -1.5707963267948966 rad - pos: -50.68429,-48.54029 - parent: 6 - type: Transform - - uid: 7801 - components: - - rot: 3.141592653589793 rad - pos: 9.529046,-16.38472 - parent: 6 - type: Transform - - uid: 7802 - components: - - rot: 3.141592653589793 rad - pos: 9.341546,-16.468054 - parent: 6 - type: Transform - - uid: 7803 - components: - - rot: 3.141592653589793 rad - pos: 9.154046,-16.280554 - parent: 6 - type: Transform - - uid: 14085 - components: - - pos: -18.299112,-21.610239 - parent: 6 - type: Transform - - uid: 14086 - components: - - pos: -18.174112,-21.422739 - parent: 6 - type: Transform -- proto: PaperBin5 - entities: - - uid: 3722 - components: - - pos: 0.5,-0.5 - parent: 6 - type: Transform - - uid: 3728 - components: - - pos: -2.5,-7.5 - parent: 6 - type: Transform - - uid: 3729 - components: - - pos: 11.5,-42.5 - parent: 6 - type: Transform -- proto: PaperCaptainsThoughts - entities: - - uid: 3495 - components: - - pos: -3.5858924,-1.50383 - parent: 6 - type: Transform - - uid: 6030 - components: - - pos: 15.074664,19.62828 - parent: 6 - type: Transform - - uid: 14055 - components: - - pos: -3.6301029,-1.1501954 - parent: 6 - type: Transform - - uid: 14066 - components: - - pos: -3.4385238,-1.312278 - parent: 6 - type: Transform -- proto: PaperOffice - entities: - - uid: 2388 - components: - - pos: 9.519505,-32.34975 - parent: 6 - type: Transform - - uid: 3327 - components: - - pos: 9.3574,-32.24661 - parent: 6 - type: Transform - - uid: 4561 - components: - - pos: -0.64610034,-1.548034 - parent: 6 - type: Transform - - uid: 5186 - components: - - pos: -0.32188922,-0.6344782 - parent: 6 - type: Transform - - uid: 5187 - components: - - pos: -0.64610034,-0.48713046 - parent: 6 - type: Transform - - uid: 5260 - components: - - pos: -52.38101,-17.154945 - parent: 6 - type: Transform - - uid: 5509 - components: - - pos: -52.64627,-17.066538 - parent: 6 - type: Transform - - uid: 5949 - components: - - pos: -2.58343,9.793996 - parent: 6 - type: Transform - - uid: 5950 - components: - - pos: 14.942032,19.466198 - parent: 6 - type: Transform - - uid: 6029 - components: - - pos: 14.838875,19.701954 - parent: 6 - type: Transform - - uid: 14048 - components: - - pos: -52.55785,-17.405437 - parent: 6 - type: Transform - - uid: 14067 - components: - - pos: 13.163263,-42.28465 - parent: 6 - type: Transform - - uid: 14069 - components: - - pos: 13.354842,-42.38779 - parent: 6 - type: Transform - - uid: 14070 - components: - - pos: -11.293639,-56.567303 - parent: 6 - type: Transform - - uid: 14072 - components: - - pos: -11.470482,-56.346283 - parent: 6 - type: Transform - - uid: 14073 - components: - - pos: 14.556609,0.4773055 - parent: 6 - type: Transform - - uid: 14079 - components: - - pos: 14.335556,0.7425319 - parent: 6 - type: Transform - - uid: 14080 - components: - - pos: 14.733451,0.6835929 - parent: 6 - type: Transform - - uid: 14081 - components: - - pos: -2.671852,9.897139 - parent: 6 - type: Transform - - uid: 14295 - components: - - pos: -2.3918521,9.926609 - parent: 6 - type: Transform - - uid: 14296 - components: - - pos: 15.082604,-18.291609 - parent: 6 - type: Transform - - uid: 14297 - components: - - pos: 15.288921,-18.556835 - parent: 6 - type: Transform - - uid: 14298 - components: - - pos: 10.471988,-35.699043 - parent: 6 - type: Transform - - uid: 14299 - components: - - pos: 13.207474,-42.549873 - parent: 6 - type: Transform -- proto: PartRodMetal - entities: - - uid: 3229 - components: - - pos: -49.48453,-25.282488 - parent: 6 - type: Transform - - uid: 6368 - components: - - pos: -33.97272,-4.3672857 - parent: 6 - type: Transform -- proto: Pen - entities: - - uid: 6032 - components: - - pos: 14.97526,19.610237 - parent: 6 - type: Transform - - uid: 14275 - components: - - rot: -1.5707963267948966 rad - pos: 13.489696,-15.993451 - parent: 6 - type: Transform - - uid: 14276 - components: - - pos: 16.58859,-16.160116 - parent: 6 - type: Transform -- proto: PersonalAI - entities: - - uid: 5507 - components: - - flags: SessionSpecific - type: MetaData - - pos: -50.51295,-17.471216 - parent: 6 - type: Transform - - uid: 5851 - components: - - flags: SessionSpecific, InContainer - type: MetaData - - parent: 5852 - type: Transform - - canCollide: False - type: Physics - - uid: 6327 - components: - - flags: SessionSpecific - type: MetaData - - pos: -6.4823546,10.29305 - parent: 6 - type: Transform -- proto: PhoneInstrument - entities: - - uid: 5179 - components: - - pos: -0.049175262,-0.93523586 - parent: 6 - type: Transform -- proto: PianoInstrument - entities: - - uid: 4416 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-23.5 - parent: 6 - type: Transform -- proto: Pickaxe - entities: - - uid: 3806 - components: - - pos: -45.543205,-5.551377 - parent: 6 - type: Transform - - uid: 3964 - components: - - pos: -0.45833784,-64.641205 - parent: 6 - type: Transform - - uid: 5350 - components: - - pos: 4.4314346,-54.40463 - parent: 6 - type: Transform - - uid: 6042 - components: - - pos: -24.429323,11.583329 - parent: 6 - type: Transform - - uid: 13472 - components: - - pos: -58.49994,-27.622883 - parent: 6 - type: Transform - - uid: 13473 - components: - - pos: 24.569006,-18.62334 - parent: 6 - type: Transform -- proto: PineappleSeeds - entities: - - uid: 6343 - components: - - pos: 4.1699715,7.870975 - parent: 6 - type: Transform -- proto: PinpointerNuclear - entities: - - uid: 5072 - components: - - pos: -22.452705,3.4974205 - parent: 6 - type: Transform -- proto: PlasmaCanister - entities: - - uid: 3466 - components: - - pos: -43.5,17.5 - parent: 6 - type: Transform -- proto: PlasticFlapsAirtightClear - entities: - - uid: 2967 - components: - - pos: -55.5,-34.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5602 - components: - - pos: 23.5,-38.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5603 - components: - - pos: 20.5,-38.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5604 - components: - - pos: 20.5,-34.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5605 - components: - - pos: 23.5,-34.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics -- proto: PlushieBee - entities: - - uid: 3308 - components: - - pos: -26.491262,28.565004 - parent: 6 - type: Transform -- proto: PlushieCarp - entities: - - uid: 9715 - components: - - pos: -7.8455157,-37.171967 - parent: 6 - type: Transform - - uid: 13534 - components: - - pos: -5.5760427,-38.306545 - parent: 6 - type: Transform -- proto: PlushieLizard - entities: - - uid: 7626 - components: - - pos: -46.459057,-39.48002 - parent: 6 - type: Transform - - uid: 13543 - components: - - pos: 25.352015,7.5901046 - parent: 6 - type: Transform -- proto: PlushieNar - entities: - - uid: 7451 - components: - - pos: -25.510965,-55.129906 - parent: 6 - type: Transform -- proto: PlushieNuke - entities: - - uid: 5073 - components: - - pos: -22.621544,4.592372 - parent: 6 - type: Transform - - nextAttack: 33302.4501269 - type: MeleeWeapon -- proto: PlushieRGBee - entities: - - uid: 7839 - components: - - pos: 26.475145,-2.5994675 - parent: 6 - type: Transform -- proto: PlushieSharkBlue - entities: - - uid: 13541 - components: - - pos: -23.522182,-83.46182 - parent: 6 - type: Transform -- proto: PlushieSharkGrey - entities: - - uid: 1503 - components: - - pos: -61.533226,-8.586437 - parent: 6 - type: Transform - - uid: 14042 - components: - - pos: -2.9528847,-36.921474 - parent: 6 - type: Transform -- proto: PlushieSharkPink - entities: - - uid: 7450 - components: - - pos: -28.597982,-56.52574 - parent: 6 - type: Transform - - uid: 13540 - components: - - pos: -56.558464,-30.556938 - parent: 6 - type: Transform - - uid: 14041 - components: - - pos: -8.140252,-38.807526 - parent: 6 - type: Transform -- proto: PlushieSpaceLizard - entities: - - uid: 13542 - components: - - pos: 22.47971,-47.58987 - parent: 6 - type: Transform -- proto: PlushieVox - entities: - - uid: 13485 - components: - - pos: 46.35333,-1.4987546 - parent: 6 - type: Transform -- proto: PonderingOrb - entities: - - uid: 5958 - components: - - flags: InContainer - type: MetaData - - parent: 5852 - type: Transform - - canCollide: False - type: Physics - - uid: 13644 - components: - - pos: 6.580597,-7.4501877 - parent: 10465 - type: Transform -- proto: PortableFlasher - entities: - - uid: 4873 - components: - - pos: 18.5,6.5 - parent: 6 - type: Transform -- proto: PortableScrubber - entities: - - uid: 4874 - components: - - pos: -25.5,-9.5 - parent: 6 - type: Transform - - uid: 4875 - components: - - pos: -24.5,-9.5 - parent: 6 - type: Transform - - uid: 4904 - components: - - pos: -32.5,7.5 - parent: 6 - type: Transform -- proto: PosterBroken - entities: - - uid: 6692 - components: - - pos: -85.5,-42.5 - parent: 6 - type: Transform - - uid: 6693 - components: - - pos: -77.5,-40.5 - parent: 6 - type: Transform - - uid: 6694 - components: - - pos: -77.5,-48.5 - parent: 6 - type: Transform - - uid: 6695 - components: - - pos: -81.5,-48.5 - parent: 6 - type: Transform - - uid: 6748 - components: - - pos: -74.5,-42.5 - parent: 6 - type: Transform -- proto: PosterContrabandAtmosiaDeclarationIndependence - entities: - - uid: 13135 - components: - - pos: -29.5,19.5 - parent: 6 - type: Transform -- proto: PosterContrabandBeachStarYamamoto - entities: - - uid: 13136 - components: - - pos: -22.5,-7.5 - parent: 6 - type: Transform - - uid: 13137 - components: - - pos: -6.5,-0.5 - parent: 6 - type: Transform -- proto: PosterContrabandBorgFancyv2 - entities: - - uid: 13138 - components: - - pos: -50.5,-24.5 - parent: 6 - type: Transform -- proto: PosterContrabandBountyHunters - entities: - - uid: 13139 - components: - - pos: -47.5,-48.5 - parent: 6 - type: Transform -- proto: PosterContrabandClown - entities: - - uid: 13142 - components: - - pos: 17.5,-25.5 - parent: 6 - type: Transform - - uid: 13143 - components: - - pos: 13.5,-25.5 - parent: 6 - type: Transform -- proto: PosterContrabandDonutCorp - entities: - - uid: 13375 - components: - - pos: -20.5,-47.5 - parent: 6 - type: Transform - - uid: 13821 - components: - - pos: -67.5,-14.5 - parent: 6 - type: Transform -- proto: PosterContrabandEAT - entities: - - uid: 13146 - components: - - pos: -4.5,-24.5 - parent: 6 - type: Transform -- proto: PosterContrabandFreeDrone - entities: - - uid: 13148 - components: - - pos: -49.5,-22.5 - parent: 6 - type: Transform -- proto: PosterContrabandFunPolice - entities: - - uid: 5543 - components: - - pos: -10.5,-8.5 - parent: 6 - type: Transform - - uid: 13149 - components: - - pos: 16.5,7.5 - parent: 6 - type: Transform -- proto: PosterContrabandGreyTide - entities: - - uid: 13150 - components: - - pos: -19.5,8.5 - parent: 6 - type: Transform -- proto: PosterContrabandHackingGuide - entities: - - uid: 13151 - components: - - pos: -33.5,-5.5 - parent: 6 - type: Transform -- proto: PosterContrabandKosmicheskayaStantsiya - entities: - - uid: 13156 - components: - - pos: -27.5,-58.5 - parent: 6 - type: Transform -- proto: PosterContrabandLustyExomorph - entities: - - uid: 13154 - components: - - pos: -39.5,-36.5 - parent: 6 - type: Transform -- proto: PosterContrabandNuclearDeviceInformational - entities: - - uid: 13165 - components: - - pos: -20.5,5.5 - parent: 6 - type: Transform -- proto: PosterContrabandPower - entities: - - uid: 13167 - components: - - pos: -39.5,2.5 - parent: 6 - type: Transform -- proto: PosterContrabandTools - entities: - - uid: 14138 - components: - - pos: -18.5,5.5 - parent: 6 - type: Transform -- proto: PosterContrabandVoteWeh - entities: - - uid: 13172 - components: - - pos: -44.5,-41.5 - parent: 6 - type: Transform -- proto: PosterContrabandWehWatches - entities: - - uid: 13171 - components: - - pos: -46.5,-38.5 - parent: 6 - type: Transform -- proto: PosterLegitBuild - entities: - - uid: 13140 - components: - - pos: -26.5,-4.5 - parent: 6 - type: Transform -- proto: PosterLegitCleanliness - entities: - - uid: 13141 - components: - - pos: 29.5,4.5 - parent: 6 - type: Transform -- proto: PosterLegitCohibaRobustoAd - entities: - - uid: 13144 - components: - - pos: 8.5,-17.5 - parent: 6 - type: Transform -- proto: PosterLegitDickGumshue - entities: - - uid: 14126 - components: - - pos: -48.5,-52.5 - parent: 6 - type: Transform -- proto: PosterLegitEnlist - entities: - - uid: 13147 - components: - - pos: 13.5,-9.5 - parent: 6 - type: Transform -- proto: PosterLegitHelpOthers - entities: - - uid: 13321 - components: - - pos: 3.5,-8.5 - parent: 6 - type: Transform -- proto: PosterLegitHighClassMartini - entities: - - uid: 13152 - components: - - pos: -39.5,-50.5 - parent: 6 - type: Transform -- proto: PosterLegitJustAWeekAway - entities: - - uid: 13153 - components: - - pos: -32.5,-38.5 - parent: 6 - type: Transform -- proto: PosterLegitLoveIan - entities: - - uid: 13155 - components: - - pos: 2.5,-4.5 - parent: 6 - type: Transform -- proto: PosterLegitNanotrasenLogo - entities: - - uid: 13320 - components: - - pos: 1.5,-8.5 - parent: 6 - type: Transform -- proto: PosterLegitNoERP - entities: - - uid: 13164 - components: - - pos: -34.5,-38.5 - parent: 6 - type: Transform -- proto: PosterLegitPDAAd - entities: - - uid: 13166 - components: - - pos: -5.5,-9.5 - parent: 6 - type: Transform -- proto: PosterLegitReportCrimes - entities: - - uid: 13168 - components: - - pos: 16.5,-2.5 - parent: 6 - type: Transform -- proto: PosterLegitScience - entities: - - uid: 13169 - components: - - pos: -14.5,-46.5 - parent: 6 - type: Transform -- proto: PosterMapMoose - entities: - - uid: 450 - components: - - pos: 38.5,-9.5 - parent: 6 - type: Transform - - uid: 13157 - components: - - pos: -45.5,-9.5 - parent: 6 - type: Transform - - uid: 13158 - components: - - pos: -21.5,-9.5 - parent: 6 - type: Transform - - uid: 13159 - components: - - pos: 0.5,-9.5 - parent: 6 - type: Transform - - uid: 13160 - components: - - pos: 25.5,-9.5 - parent: 6 - type: Transform - - uid: 13162 - components: - - pos: 2.5,-42.5 - parent: 6 - type: Transform - - uid: 13163 - components: - - pos: -29.5,-42.5 - parent: 6 - type: Transform -- proto: PottedPlantRandom - entities: - - uid: 2648 - components: - - pos: -17.5,-20.5 - parent: 6 - type: Transform - - uid: 3181 - components: - - pos: -19.5,-14.5 - parent: 6 - type: Transform - - uid: 3897 - components: - - pos: -13.5,-36.5 - parent: 6 - type: Transform - - uid: 4585 - components: - - pos: -13.5,-33.5 - parent: 6 - type: Transform - - uid: 5175 - components: - - pos: -6.5,4.5 - parent: 6 - type: Transform - - uid: 5176 - components: - - pos: -2.5,4.5 - parent: 6 - type: Transform - - uid: 5207 - components: - - pos: -6.5,6.5 - parent: 6 - type: Transform - - uid: 5208 - components: - - pos: -2.5,6.5 - parent: 6 - type: Transform - - uid: 5459 - components: - - pos: -51.5,-47.5 - parent: 6 - type: Transform - - uid: 5460 - components: - - pos: -51.5,-51.5 - parent: 6 - type: Transform - - uid: 6513 - components: - - pos: 4.5,-36.5 - parent: 6 - type: Transform - - uid: 6514 - components: - - pos: 4.5,-33.5 - parent: 6 - type: Transform - - uid: 7361 - components: - - pos: -37.5,-20.5 - parent: 6 - type: Transform - - uid: 7649 - components: - - pos: -58.5,-13.5 - parent: 6 - type: Transform - - uid: 7650 - components: - - pos: -62.5,-13.5 - parent: 6 - type: Transform - - uid: 7651 - components: - - pos: -50.5,-10.5 - parent: 6 - type: Transform - - uid: 7661 - components: - - pos: 25.5,-12.5 - parent: 6 - type: Transform - - uid: 7666 - components: - - pos: 37.5,-10.5 - parent: 6 - type: Transform - - uid: 7692 - components: - - pos: 30.5,9.5 - parent: 6 - type: Transform - - uid: 7825 - components: - - pos: -20.5,-43.5 - parent: 6 - type: Transform - - uid: 7828 - components: - - pos: -36.5,-45.5 - parent: 6 - type: Transform - - uid: 9037 - components: - - pos: -13.5,-18.5 - parent: 6 - type: Transform - - uid: 9171 - components: - - pos: -13.5,-24.5 - parent: 6 - type: Transform - - uid: 13562 - components: - - pos: -68.5,-10.5 - parent: 6 - type: Transform - - uid: 13571 - components: - - pos: -50.5,-44.5 - parent: 6 - type: Transform - - uid: 13572 - components: - - pos: 6.5,-45.5 - parent: 6 - type: Transform - - uid: 13573 - components: - - pos: 7.5,-18.5 - parent: 6 - type: Transform - - uid: 13574 - components: - - pos: -1.5,-26.5 - parent: 6 - type: Transform - - uid: 13575 - components: - - pos: 12.5,4.5 - parent: 6 - type: Transform - - uid: 13576 - components: - - pos: -5.5,-10.5 - parent: 6 - type: Transform - - uid: 13577 - components: - - pos: 0.5,-10.5 - parent: 6 - type: Transform - - uid: 13579 - components: - - pos: -49.5,-16.5 - parent: 6 - type: Transform - - uid: 13580 - components: - - pos: -54.5,-16.5 - parent: 6 - type: Transform -- proto: PottedPlantRandomPlastic - entities: - - uid: 7619 - components: - - pos: -42.5,-33.5 - parent: 6 - type: Transform - - uid: 7620 - components: - - pos: -43.5,-38.5 - parent: 6 - type: Transform -- proto: PottedPlantRD - entities: - - uid: 5358 - components: - - pos: -1.5,-50.5 - parent: 6 - type: Transform -- proto: PowerCellRecharger - entities: - - uid: 4437 - components: - - pos: -47.5,-16.5 - parent: 6 - type: Transform - - uid: 4849 - components: - - pos: -28.5,-8.5 - parent: 6 - type: Transform - - uid: 5193 - components: - - pos: -17.5,8.5 - parent: 6 - type: Transform - - uid: 5353 - components: - - pos: 4.5,-51.5 - parent: 6 - type: Transform - - uid: 5381 - components: - - pos: -9.5,-53.5 - parent: 6 - type: Transform - - uid: 5513 - components: - - pos: -52.5,-19.5 - parent: 6 - type: Transform - - uid: 5581 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-18.5 - parent: 6 - type: Transform - - uid: 6332 - components: - - pos: 0.5,8.5 - parent: 6 - type: Transform - - uid: 6364 - components: - - pos: -30.5,0.5 - parent: 6 - type: Transform - - uid: 6409 - components: - - pos: -47.5,-25.5 - parent: 6 - type: Transform - - uid: 14317 - components: - - pos: -17.5,-21.5 - parent: 6 - type: Transform - - uid: 14319 - components: - - pos: -13.5,-16.5 - parent: 6 - type: Transform - - uid: 14320 - components: - - pos: 10.5,-36.5 - parent: 6 - type: Transform - - uid: 14323 - components: - - pos: 8.5,-5.5 - parent: 6 - type: Transform - - uid: 14325 - components: - - pos: 10.5,-20.5 - parent: 6 - type: Transform -- proto: Poweredlight - entities: - - uid: 12 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2575 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,-7.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2576 - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-7.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2893 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-7.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2894 - components: - - rot: -1.5707963267948966 rad - pos: -66.5,-7.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3014 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-3.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3612 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3642 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-76.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4941 - components: - - pos: -16.5,-10.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5535 - components: - - rot: 3.141592653589793 rad - pos: -35.5,-22.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5559 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-16.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6412 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-26.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6423 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-34.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6424 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-40.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6425 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-48.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6559 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-45.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6561 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-46.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8189 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-4.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8425 - components: - - pos: -36.5,4.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8426 - components: - - rot: 3.141592653589793 rad - pos: -31.5,-3.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8427 - components: - - pos: -25.5,-0.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8428 - components: - - pos: -25.5,4.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8429 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,3.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8430 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,3.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8431 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-1.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8432 - components: - - pos: -22.5,-3.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8433 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-6.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8434 - components: - - pos: -33.5,-6.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8435 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-6.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8438 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-16.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8439 - components: - - pos: -20.5,-19.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8440 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-76.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8442 - components: - - pos: -38.5,-17.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8443 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-73.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8444 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-32.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8457 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-40.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8458 - components: - - pos: -39.5,-29.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8459 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-35.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8460 - components: - - pos: -46.5,-29.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8461 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-32.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8462 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-38.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8471 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-44.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8472 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-33.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8473 - components: - - rot: 3.141592653589793 rad - pos: -47.5,-25.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8474 - components: - - rot: 3.141592653589793 rad - pos: -51.5,-19.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8475 - components: - - pos: -59.5,-10.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8476 - components: - - rot: 3.141592653589793 rad - pos: -61.5,-14.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8477 - components: - - rot: 3.141592653589793 rad - pos: -45.5,-17.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8478 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-15.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8479 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-26.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8480 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-27.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8491 - components: - - pos: -8.5,-24.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8492 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-20.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8493 - components: - - pos: -8.5,-14.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8500 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-17.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8501 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-17.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8502 - components: - - pos: 8.5,-18.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8504 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-32.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8505 - components: - - pos: 15.5,-34.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8506 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-38.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8507 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-32.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8508 - components: - - pos: 3.5,-43.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8509 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-40.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8510 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-42.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8513 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-27.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8514 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,4.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8515 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,6.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8516 - components: - - pos: 11.5,9.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8519 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-1.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8520 - components: - - pos: 9.5,-3.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8521 - components: - - pos: 18.5,-6.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8522 - components: - - pos: 2.5,-9.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8523 - components: - - pos: -2.5,-5.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8524 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8527 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-3.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8529 - components: - - rot: 3.141592653589793 rad - pos: -2.5,3.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8530 - components: - - rot: 3.141592653589793 rad - pos: -6.5,3.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8531 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,7.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8532 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,7.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8533 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,7.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8534 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-49.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8535 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-51.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8536 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-56.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8537 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-51.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8538 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-52.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8539 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-50.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8540 - components: - - pos: -4.5,-58.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8542 - components: - - pos: -7.5,-61.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8543 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-70.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8545 - components: - - pos: 0.5,-75.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8546 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-70.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8547 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-73.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8548 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-78.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8549 - components: - - pos: -4.5,-83.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8642 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,15.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8643 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,20.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8644 - components: - - rot: 3.141592653589793 rad - pos: -33.5,9.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - type: Timer - - uid: 8645 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,10.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8646 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,18.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8647 - components: - - pos: -32.5,24.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8648 - components: - - pos: -36.5,24.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8649 - components: - - rot: 3.141592653589793 rad - pos: -36.5,28.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8650 - components: - - rot: 3.141592653589793 rad - pos: -32.5,28.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9681 - components: - - pos: -8.5,-83.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9682 - components: - - pos: -4.5,-83.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9683 - components: - - pos: -0.5,-83.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9685 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-79.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10756 - components: - - pos: -37.5,-10.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10757 - components: - - rot: 3.141592653589793 rad - pos: -16.5,6.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10758 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,0.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10759 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-7.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10760 - components: - - pos: -18.5,-3.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10762 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10768 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-12.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10769 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-12.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10775 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,6.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10776 - components: - - rot: 3.141592653589793 rad - pos: 45.5,1.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10777 - components: - - pos: 45.5,-4.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10778 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-3.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10779 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-12.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10780 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-3.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10781 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,6.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10782 - components: - - pos: 13.5,-10.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10784 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-12.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10785 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-12.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10829 - components: - - pos: -10.5,-43.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10830 - components: - - pos: -22.5,-43.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10831 - components: - - pos: -32.5,-43.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10832 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-44.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10846 - components: - - rot: 3.141592653589793 rad - pos: -48.5,-12.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10847 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-12.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13760 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-6.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13767 - components: - - pos: 7.5,-6.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13768 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-12.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13799 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-12.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13800 - components: - - rot: 3.141592653589793 rad - pos: -2.5,6.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13801 - components: - - rot: 3.141592653589793 rad - pos: -6.5,6.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13802 - components: - - pos: 12.5,20.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13803 - components: - - rot: 3.141592653589793 rad - pos: 12.5,22.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13804 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,4.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13805 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-17.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13807 - components: - - pos: -40.5,-43.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13809 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,7.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13810 - components: - - rot: 3.141592653589793 rad - pos: -13.5,6.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13827 - components: - - pos: -68.5,-10.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13832 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-0.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13833 - components: - - pos: 12.5,-6.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13835 - components: - - rot: 3.141592653589793 rad - pos: 16.5,18.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13836 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,23.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredlightExterior - entities: - - uid: 3189 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-36.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5205 - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-30.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredlightLED - entities: - - uid: 4944 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-16.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4945 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-28.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5520 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-22.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6405 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-16.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredLightPostSmall - entities: - - uid: 8830 - components: - - pos: -62.5,-22.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10248 - components: - - pos: -24.5,-66.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10798 - components: - - pos: 27.5,-22.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10804 - components: - - pos: 6.5,-61.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredlightSodium - entities: - - uid: 3730 - components: - - pos: -4.5,-30.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8424 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,15.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 14043 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-39.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredSmallLight - entities: - - uid: 2649 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-52.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2652 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-50.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4946 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-39.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4947 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-41.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8445 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-29.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8446 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-31.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8447 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-33.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8448 - components: - - pos: -20.5,-37.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8449 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-40.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8450 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-37.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8453 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-39.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8455 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-41.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8456 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-41.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8463 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-54.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8464 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-54.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8465 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-49.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8466 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-49.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8467 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-55.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8468 - components: - - pos: -27.5,-47.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8469 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-49.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8470 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-48.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8489 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-37.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8490 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-32.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8494 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-22.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8495 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-22.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8496 - components: - - pos: -0.5,-14.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8497 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-26.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8498 - components: - - pos: -1.5,-19.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8499 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-15.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8503 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-24.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8511 - components: - - pos: 21.5,-34.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8512 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-38.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8517 - components: - - pos: 8.5,0.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8518 - components: - - rot: 3.141592653589793 rad - pos: 8.5,2.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8528 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8636 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,19.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8637 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,17.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8638 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,15.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8639 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,13.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8640 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,11.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8641 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,9.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9818 - components: - - pos: -6.5,-20.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10749 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-1.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10754 - components: - - pos: -37.5,6.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10755 - components: - - rot: 3.141592653589793 rad - pos: -30.5,6.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - type: Timer - - uid: 10761 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,11.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10763 - components: - - pos: 22.5,12.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10764 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,4.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10765 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-1.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10766 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-4.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10767 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-4.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10786 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-30.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10787 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-28.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10788 - components: - - pos: 18.5,-21.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10789 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-22.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10799 - components: - - pos: 13.5,-44.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10800 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-42.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10801 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10802 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-17.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10803 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-54.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10811 - components: - - pos: -2.5,-48.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10812 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-59.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10813 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-58.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10814 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-59.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10815 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-50.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10816 - components: - - pos: -24.5,-58.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10817 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-62.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10820 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-58.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10821 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-49.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10822 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-52.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10823 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-54.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10824 - components: - - pos: -44.5,-47.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10833 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-39.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10834 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-33.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10835 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-35.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10836 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-27.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10837 - components: - - pos: -43.5,-23.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10838 - components: - - rot: 3.141592653589793 rad - pos: -48.5,-21.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10839 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-25.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10840 - components: - - rot: 3.141592653589793 rad - pos: -59.5,-16.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 10841 - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-19.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13769 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,22.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13808 - components: - - rot: 3.141592653589793 rad - pos: -23.5,7.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13834 - components: - - pos: -8.5,-6.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 13837 - components: - - pos: -3.5,-14.5 - parent: 6 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: Protolathe - entities: - - uid: 4479 - components: - - pos: -9.5,-51.5 - parent: 6 - type: Transform -- proto: Rack - entities: - - uid: 269 - components: - - pos: 17.5,8.5 - parent: 6 - type: Transform - - uid: 3413 - components: - - pos: 14.5,3.5 - parent: 6 - type: Transform - - uid: 3421 - components: - - pos: 17.5,-6.5 - parent: 6 - type: Transform - - uid: 3428 - components: - - pos: 16.5,1.5 - parent: 6 - type: Transform - - uid: 3884 - components: - - pos: -20.5,-25.5 - parent: 6 - type: Transform - - uid: 4382 - components: - - pos: -12.5,6.5 - parent: 6 - type: Transform - - uid: 4429 - components: - - pos: -44.5,-14.5 - parent: 6 - type: Transform - - uid: 4430 - components: - - pos: -44.5,-15.5 - parent: 6 - type: Transform - - uid: 4431 - components: - - pos: -44.5,-16.5 - parent: 6 - type: Transform - - uid: 4432 - components: - - pos: -44.5,-17.5 - parent: 6 - type: Transform - - uid: 4506 - components: - - pos: 18.5,8.5 - parent: 6 - type: Transform - - uid: 4507 - components: - - pos: 19.5,8.5 - parent: 6 - type: Transform - - uid: 4508 - components: - - pos: 17.5,4.5 - parent: 6 - type: Transform - - uid: 4509 - components: - - pos: 18.5,4.5 - parent: 6 - type: Transform - - uid: 4510 - components: - - pos: 19.5,4.5 - parent: 6 - type: Transform - - uid: 4632 - components: - - pos: -2.5,-14.5 - parent: 6 - type: Transform - - uid: 4882 - components: - - pos: -33.5,-6.5 - parent: 6 - type: Transform - - uid: 5279 - components: - - pos: 1.5,-38.5 - parent: 6 - type: Transform - - uid: 5348 - components: - - pos: 4.5,-54.5 - parent: 6 - type: Transform - - uid: 5596 - components: - - pos: 16.5,-38.5 - parent: 6 - type: Transform - - uid: 5861 - components: - - pos: -23.5,-54.5 - parent: 6 - type: Transform - - uid: 6040 - components: - - pos: -4.5,-61.5 - parent: 6 - type: Transform - - uid: 6200 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-6.5 - parent: 6 - type: Transform - - uid: 6678 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-61.5 - parent: 6 - type: Transform - - uid: 7220 - components: - - pos: 22.5,-22.5 - parent: 6 - type: Transform - - uid: 7376 - components: - - pos: -7.5,-61.5 - parent: 6 - type: Transform - - uid: 7385 - components: - - pos: -7.5,-69.5 - parent: 6 - type: Transform - - uid: 7386 - components: - - pos: -4.5,-69.5 - parent: 6 - type: Transform - - uid: 7840 - components: - - pos: 28.5,-2.5 - parent: 6 - type: Transform - - uid: 7841 - components: - - pos: 27.5,1.5 - parent: 6 - type: Transform - - uid: 7842 - components: - - pos: 28.5,1.5 - parent: 6 - type: Transform - - uid: 10895 - components: - - pos: 22.5,-5.5 - parent: 6 - type: Transform - - uid: 10925 - components: - - pos: -17.5,-59.5 - parent: 6 - type: Transform - - uid: 10933 - components: - - pos: -11.5,-59.5 - parent: 6 - type: Transform - - uid: 10934 - components: - - pos: -0.5,-59.5 - parent: 6 - type: Transform - - uid: 10948 - components: - - pos: -34.5,-58.5 - parent: 6 - type: Transform - - uid: 10979 - components: - - pos: -27.5,-40.5 - parent: 6 - type: Transform - - uid: 10998 - components: - - pos: -28.5,-34.5 - parent: 6 - type: Transform - - uid: 11004 - components: - - pos: -44.5,-23.5 - parent: 6 - type: Transform - - uid: 11014 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-19.5 - parent: 6 - type: Transform - - uid: 11028 - components: - - pos: -57.5,-20.5 - parent: 6 - type: Transform - - uid: 11033 - components: - - pos: -40.5,-7.5 - parent: 6 - type: Transform - - uid: 11037 - components: - - pos: -40.5,4.5 - parent: 6 - type: Transform - - uid: 11045 - components: - - pos: -5.5,-7.5 - parent: 6 - type: Transform - - uid: 11050 - components: - - pos: -11.5,-5.5 - parent: 6 - type: Transform - - uid: 11170 - components: - - pos: -26.5,18.5 - parent: 6 - type: Transform -- proto: RadioHandheld - entities: - - uid: 6336 - components: - - pos: -2.338426,9.537729 - parent: 6 - type: Transform - - uid: 14309 - components: - - pos: 16.755468,1.4682413 - parent: 6 - type: Transform - - uid: 14310 - components: - - pos: 11.689532,8.751254 - parent: 6 - type: Transform - - uid: 14311 - components: - - pos: 14.567074,0.98600256 - parent: 6 - type: Transform - - uid: 14312 - components: - - pos: 17.71683,-6.2649827 - parent: 6 - type: Transform - - uid: 14313 - components: - - pos: -21.305681,-5.3845315 - parent: 6 - type: Transform - - uid: 14314 - components: - - pos: -32.35327,0.71963346 - parent: 6 - type: Transform - - uid: 14315 - components: - - pos: -28.69588,-5.2698426 - parent: 6 - type: Transform - - uid: 14316 - components: - - pos: -36.295105,22.529224 - parent: 6 - type: Transform -- proto: Railing - entities: - - uid: 183 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-8.5 - parent: 6 - type: Transform - - uid: 218 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-7.5 - parent: 6 - type: Transform - - uid: 1741 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-3.5 - parent: 6 - type: Transform - - uid: 1742 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-4.5 - parent: 6 - type: Transform - - uid: 1743 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-5.5 - parent: 6 - type: Transform - - uid: 1744 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-6.5 - parent: 6 - type: Transform - - uid: 2512 - components: - - rot: 3.141592653589793 rad - pos: -52.5,-44.5 - parent: 6 - type: Transform - - uid: 3952 - components: - - pos: -56.5,-35.5 - parent: 6 - type: Transform - - uid: 3953 - components: - - pos: -57.5,-35.5 - parent: 6 - type: Transform - - uid: 3954 - components: - - pos: -58.5,-35.5 - parent: 6 - type: Transform - - uid: 3956 - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-34.5 - parent: 6 - type: Transform - - uid: 3957 - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-33.5 - parent: 6 - type: Transform - - uid: 3958 - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-32.5 - parent: 6 - type: Transform - - uid: 3960 - components: - - rot: 3.141592653589793 rad - pos: -58.5,-31.5 - parent: 6 - type: Transform - - uid: 3961 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-31.5 - parent: 6 - type: Transform - - uid: 3962 - components: - - rot: 3.141592653589793 rad - pos: -56.5,-31.5 - parent: 6 - type: Transform - - uid: 4407 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-26.5 - parent: 6 - type: Transform - - uid: 4408 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-25.5 - parent: 6 - type: Transform - - uid: 4409 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-24.5 - parent: 6 - type: Transform - - uid: 4410 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-23.5 - parent: 6 - type: Transform - - uid: 4411 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-22.5 - parent: 6 - type: Transform - - uid: 4412 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-21.5 - parent: 6 - type: Transform - - uid: 4414 - components: - - pos: 10.5,-20.5 - parent: 6 - type: Transform - - uid: 5212 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,6.5 - parent: 6 - type: Transform - - uid: 5213 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,7.5 - parent: 6 - type: Transform - - uid: 5214 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,8.5 - parent: 6 - type: Transform - - uid: 5258 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-76.5 - parent: 6 - type: Transform - - uid: 5396 - components: - - pos: -17.5,-49.5 - parent: 6 - type: Transform - - uid: 5398 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-48.5 - parent: 6 - type: Transform - - uid: 5428 - components: - - pos: -51.5,-33.5 - parent: 6 - type: Transform - - uid: 5430 - components: - - pos: -52.5,-33.5 - parent: 6 - type: Transform - - uid: 5431 - components: - - pos: -53.5,-33.5 - parent: 6 - type: Transform - - uid: 5985 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,18.5 - parent: 6 - type: Transform - - uid: 5986 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,19.5 - parent: 6 - type: Transform - - uid: 5988 - components: - - pos: 18.5,20.5 - parent: 6 - type: Transform - - uid: 5989 - components: - - pos: 19.5,20.5 - parent: 6 - type: Transform - - uid: 6041 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,18.5 - parent: 6 - type: Transform - - uid: 13298 - components: - - pos: -52.5,-44.5 - parent: 6 - type: Transform - - uid: 14293 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-76.5 - parent: 6 - type: Transform - - uid: 14294 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-76.5 - parent: 6 - type: Transform -- proto: RailingCorner - entities: - - uid: 3955 - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-35.5 - parent: 6 - type: Transform - - uid: 3959 - components: - - rot: 3.141592653589793 rad - pos: -59.5,-31.5 - parent: 6 - type: Transform - - uid: 5397 - components: - - pos: -16.5,-49.5 - parent: 6 - type: Transform -- proto: RailingCornerSmall - entities: - - uid: 4413 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-20.5 - parent: 6 - type: Transform - - uid: 5399 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-47.5 - parent: 6 - type: Transform - - uid: 5432 - components: - - rot: 3.141592653589793 rad - pos: -54.5,-33.5 - parent: 6 - type: Transform - - uid: 5987 - components: - - rot: 3.141592653589793 rad - pos: 17.5,20.5 - parent: 6 - type: Transform -- proto: RandomArcade - entities: - - uid: 514 - components: - - pos: 26.5,-4.5 - parent: 6 - type: Transform - - uid: 515 - components: - - pos: 26.5,-6.5 - parent: 6 - type: Transform - - uid: 516 - components: - - pos: 28.5,-4.5 - parent: 6 - type: Transform - - uid: 517 - components: - - pos: 28.5,-6.5 - parent: 6 - type: Transform - - uid: 5462 - components: - - pos: -48.5,-47.5 - parent: 6 - type: Transform - - uid: 6216 - components: - - pos: -47.5,-33.5 - parent: 6 - type: Transform - - uid: 11021 - components: - - pos: -66.5,-15.5 - parent: 6 - type: Transform - - uid: 13490 - components: - - pos: 12.5,20.5 - parent: 6 - type: Transform -- proto: RandomArtifactSpawner - entities: - - uid: 3618 - components: - - pos: -2.5,-80.5 - parent: 6 - type: Transform - - uid: 13477 - components: - - pos: -6.5,-80.5 - parent: 6 - type: Transform -- proto: RandomArtifactSpawner20 - entities: - - uid: 4261 - components: - - pos: 15.5,-51.5 - parent: 6 - type: Transform -- proto: RandomDrinkBottle - entities: - - uid: 11066 - components: - - pos: -50.5,-37.5 - parent: 6 - type: Transform -- proto: RandomDrinkGlass - entities: - - uid: 5904 - components: - - pos: -1.5,-46.5 - parent: 6 - type: Transform - - uid: 7617 - components: - - pos: -47.5,-31.5 - parent: 6 - type: Transform - - uid: 9712 - components: - - pos: -7.5,-31.5 - parent: 6 - type: Transform - - uid: 9713 - components: - - pos: -4.5,-30.5 - parent: 6 - type: Transform - - uid: 11079 - components: - - pos: 18.5,-32.5 - parent: 6 - type: Transform - - uid: 11080 - components: - - pos: 20.5,-22.5 - parent: 6 - type: Transform - - uid: 11159 - components: - - pos: 0.5,-18.5 - parent: 6 - type: Transform - - uid: 11160 - components: - - pos: 2.5,-18.5 - parent: 6 - type: Transform - - uid: 11161 - components: - - pos: 3.5,-16.5 - parent: 6 - type: Transform - - uid: 11162 - components: - - pos: 3.5,-17.5 - parent: 6 - type: Transform - - uid: 11163 - components: - - pos: 3.5,-15.5 - parent: 6 - type: Transform -- proto: RandomFoodBakedSingle - entities: - - uid: 7616 - components: - - pos: -38.5,-33.5 - parent: 6 - type: Transform - - uid: 11063 - components: - - pos: -28.5,-31.5 - parent: 6 - type: Transform - - uid: 11083 - components: - - pos: 22.5,-0.5 - parent: 6 - type: Transform - - uid: 11096 - components: - - pos: -40.5,-0.5 - parent: 6 - type: Transform - - uid: 11153 - components: - - pos: -10.5,-9.5 - parent: 6 - type: Transform - - uid: 11155 - components: - - pos: -1.5,-21.5 - parent: 6 - type: Transform -- proto: RandomFoodBakedWhole - entities: - - uid: 11154 - components: - - pos: -4.5,-25.5 - parent: 6 - type: Transform -- proto: RandomFoodMeal - entities: - - uid: 11084 - components: - - pos: 21.5,12.5 - parent: 6 - type: Transform - - uid: 11156 - components: - - pos: -2.5,-22.5 - parent: 6 - type: Transform - - uid: 11157 - components: - - pos: -2.5,-21.5 - parent: 6 - type: Transform -- proto: RandomFoodSingle - entities: - - uid: 7625 - components: - - pos: -46.5,-33.5 - parent: 6 - type: Transform - - uid: 11057 - components: - - pos: -45.5,-19.5 - parent: 6 - type: Transform - - uid: 11073 - components: - - pos: -24.5,-58.5 - parent: 6 - type: Transform - - uid: 11158 - components: - - pos: 1.5,-22.5 - parent: 6 - type: Transform -- proto: RandomInstruments - entities: - - uid: 5511 - components: - - pos: -51.5,-17.5 - parent: 6 - type: Transform - - uid: 5631 - components: - - pos: 14.5,-29.5 - parent: 6 - type: Transform - - uid: 6017 - components: - - pos: 15.5,20.5 - parent: 6 - type: Transform - - uid: 7600 - components: - - pos: -43.5,-52.5 - parent: 6 - type: Transform - - uid: 7618 - components: - - pos: -45.5,-33.5 - parent: 6 - type: Transform -- proto: RandomPainting - entities: - - uid: 13567 - components: - - pos: -39.5,-32.5 - parent: 6 - type: Transform - - uid: 13568 - components: - - pos: -40.5,-37.5 - parent: 6 - type: Transform - - uid: 13569 - components: - - pos: -46.5,-32.5 - parent: 6 - type: Transform - - uid: 13570 - components: - - pos: -46.5,-28.5 - parent: 6 - type: Transform -- proto: RandomPosterAny - entities: - - uid: 13347 - components: - - pos: 13.5,-23.5 - parent: 6 - type: Transform - - uid: 13348 - components: - - pos: 12.5,-20.5 - parent: 6 - type: Transform - - uid: 13358 - components: - - pos: -10.5,-57.5 - parent: 6 - type: Transform - - uid: 13359 - components: - - pos: -1.5,-57.5 - parent: 6 - type: Transform - - uid: 13387 - components: - - pos: 10.5,-27.5 - parent: 6 - type: Transform - - uid: 13388 - components: - - pos: 12.5,-38.5 - parent: 6 - type: Transform - - uid: 13389 - components: - - pos: 15.5,-41.5 - parent: 6 - type: Transform - - uid: 13390 - components: - - pos: 20.5,-41.5 - parent: 6 - type: Transform - - uid: 13391 - components: - - pos: 18.5,-33.5 - parent: 6 - type: Transform - - uid: 13392 - components: - - pos: 12.5,-32.5 - parent: 6 - type: Transform - - uid: 13395 - components: - - pos: 16.5,-20.5 - parent: 6 - type: Transform - - uid: 13410 - components: - - pos: -51.5,-20.5 - parent: 6 - type: Transform - - uid: 13412 - components: - - pos: -48.5,-16.5 - parent: 6 - type: Transform - - uid: 13420 - components: - - pos: -23.5,-38.5 - parent: 6 - type: Transform - - uid: 13451 - components: - - pos: -2.5,-18.5 - parent: 6 - type: Transform - - uid: 13452 - components: - - pos: 0.5,-27.5 - parent: 6 - type: Transform - - uid: 14129 - components: - - pos: -55.5,-17.5 - parent: 6 - type: Transform -- proto: RandomPosterContraband - entities: - - uid: 13369 - components: - - pos: -35.5,-60.5 - parent: 6 - type: Transform - - uid: 13370 - components: - - pos: -27.5,-60.5 - parent: 6 - type: Transform - - uid: 13371 - components: - - pos: -18.5,-58.5 - parent: 6 - type: Transform - - uid: 13372 - components: - - pos: -20.5,-51.5 - parent: 6 - type: Transform - - uid: 13373 - components: - - pos: -23.5,-53.5 - parent: 6 - type: Transform - - uid: 13376 - components: - - pos: -15.5,-58.5 - parent: 6 - type: Transform - - uid: 13377 - components: - - pos: -1.5,-60.5 - parent: 6 - type: Transform - - uid: 13378 - components: - - pos: 1.5,-56.5 - parent: 6 - type: Transform - - uid: 13379 - components: - - pos: 1.5,-50.5 - parent: 6 - type: Transform - - uid: 13380 - components: - - pos: -3.5,-51.5 - parent: 6 - type: Transform - - uid: 13381 - components: - - pos: 11.5,-48.5 - parent: 6 - type: Transform - - uid: 13382 - components: - - pos: 19.5,-48.5 - parent: 6 - type: Transform - - uid: 13383 - components: - - pos: 13.5,-43.5 - parent: 6 - type: Transform - - uid: 13385 - components: - - pos: 15.5,-30.5 - parent: 6 - type: Transform - - uid: 13386 - components: - - pos: 18.5,-28.5 - parent: 6 - type: Transform - - uid: 13393 - components: - - pos: 9.5,-30.5 - parent: 6 - type: Transform - - uid: 13394 - components: - - pos: 21.5,-16.5 - parent: 6 - type: Transform - - uid: 13396 - components: - - pos: 23.5,-5.5 - parent: 6 - type: Transform - - uid: 13397 - components: - - pos: 25.5,-2.5 - parent: 6 - type: Transform - - uid: 13398 - components: - - pos: 22.5,0.5 - parent: 6 - type: Transform - - uid: 13414 - components: - - pos: -43.5,-22.5 - parent: 6 - type: Transform - - uid: 13415 - components: - - pos: -39.5,-25.5 - parent: 6 - type: Transform - - uid: 13416 - components: - - pos: -37.5,-25.5 - parent: 6 - type: Transform - - uid: 13417 - components: - - pos: -33.5,-32.5 - parent: 6 - type: Transform - - uid: 13418 - components: - - pos: -30.5,-35.5 - parent: 6 - type: Transform - - uid: 13419 - components: - - pos: -26.5,-38.5 - parent: 6 - type: Transform - - uid: 13423 - components: - - pos: -37.5,-34.5 - parent: 6 - type: Transform - - uid: 13424 - components: - - pos: -48.5,-30.5 - parent: 6 - type: Transform - - uid: 13425 - components: - - pos: -48.5,-35.5 - parent: 6 - type: Transform - - uid: 13426 - components: - - pos: -48.5,-40.5 - parent: 6 - type: Transform - - uid: 13427 - components: - - pos: -37.5,-30.5 - parent: 6 - type: Transform - - uid: 13428 - components: - - pos: -58.5,-19.5 - parent: 6 - type: Transform - - uid: 13429 - components: - - pos: -65.5,-18.5 - parent: 6 - type: Transform - - uid: 13430 - components: - - pos: -40.5,-16.5 - parent: 6 - type: Transform - - uid: 13433 - components: - - pos: -29.5,-40.5 - parent: 6 - type: Transform - - uid: 13434 - components: - - pos: -47.5,-50.5 - parent: 6 - type: Transform - - uid: 13435 - components: - - pos: -53.5,-36.5 - parent: 6 - type: Transform - - uid: 13436 - components: - - pos: -45.5,-55.5 - parent: 6 - type: Transform - - uid: 13437 - components: - - pos: -41.5,-55.5 - parent: 6 - type: Transform - - uid: 13438 - components: - - pos: -36.5,-58.5 - parent: 6 - type: Transform - - uid: 13441 - components: - - pos: -7.5,-16.5 - parent: 6 - type: Transform - - uid: 13442 - components: - - pos: 18.5,-23.5 - parent: 6 - type: Transform - - uid: 13443 - components: - - pos: 20.5,2.5 - parent: 6 - type: Transform - - uid: 13444 - components: - - pos: 21.5,6.5 - parent: 6 - type: Transform - - uid: 13445 - components: - - pos: 20.5,10.5 - parent: 6 - type: Transform - - uid: 13446 - components: - - pos: 7.5,11.5 - parent: 6 - type: Transform - - uid: 13453 - components: - - pos: 8.5,-43.5 - parent: 6 - type: Transform -- proto: RandomPosterLegit - entities: - - uid: 3002 - components: - - pos: 3.5,-24.5 - parent: 6 - type: Transform - - uid: 13322 - components: - - pos: -4.5,-13.5 - parent: 6 - type: Transform - - uid: 13323 - components: - - pos: -8.5,-13.5 - parent: 6 - type: Transform - - uid: 13324 - components: - - pos: -25.5,-13.5 - parent: 6 - type: Transform - - uid: 13325 - components: - - pos: -38.5,-13.5 - parent: 6 - type: Transform - - uid: 13326 - components: - - pos: -54.5,-13.5 - parent: 6 - type: Transform - - uid: 13327 - components: - - pos: -62.5,-15.5 - parent: 6 - type: Transform - - uid: 13328 - components: - - pos: -57.5,-15.5 - parent: 6 - type: Transform - - uid: 13329 - components: - - pos: -23.5,-9.5 - parent: 6 - type: Transform - - uid: 13330 - components: - - pos: -13.5,-6.5 - parent: 6 - type: Transform - - uid: 13331 - components: - - pos: -13.5,-3.5 - parent: 6 - type: Transform - - uid: 13332 - components: - - pos: -16.5,2.5 - parent: 6 - type: Transform - - uid: 13333 - components: - - pos: -11.5,7.5 - parent: 6 - type: Transform - - uid: 13334 - components: - - pos: 2.5,7.5 - parent: 6 - type: Transform - - uid: 13335 - components: - - pos: 9.5,7.5 - parent: 6 - type: Transform - - uid: 13336 - components: - - pos: 20.5,7.5 - parent: 6 - type: Transform - - uid: 13337 - components: - - pos: 20.5,5.5 - parent: 6 - type: Transform - - uid: 13338 - components: - - pos: 4.5,-6.5 - parent: 6 - type: Transform - - uid: 13339 - components: - - pos: 11.5,-13.5 - parent: 6 - type: Transform - - uid: 13340 - components: - - pos: 43.5,-13.5 - parent: 6 - type: Transform - - uid: 13341 - components: - - pos: 44.5,-9.5 - parent: 6 - type: Transform - - uid: 13342 - components: - - pos: 44.5,6.5 - parent: 6 - type: Transform - - uid: 13343 - components: - - pos: 29.5,-0.5 - parent: 6 - type: Transform - - uid: 13344 - components: - - pos: 29.5,-7.5 - parent: 6 - type: Transform - - uid: 13349 - components: - - pos: 18.5,-16.5 - parent: 6 - type: Transform - - uid: 13350 - components: - - pos: 3.5,-29.5 - parent: 6 - type: Transform - - uid: 13351 - components: - - pos: 7.5,-32.5 - parent: 6 - type: Transform - - uid: 13352 - components: - - pos: 3.5,-39.5 - parent: 6 - type: Transform - - uid: 13353 - components: - - pos: -0.5,-47.5 - parent: 6 - type: Transform - - uid: 13354 - components: - - pos: -2.5,-47.5 - parent: 6 - type: Transform - - uid: 13355 - components: - - pos: -13.5,-47.5 - parent: 6 - type: Transform - - uid: 13356 - components: - - pos: -18.5,-49.5 - parent: 6 - type: Transform - - uid: 13357 - components: - - pos: -15.5,-54.5 - parent: 6 - type: Transform - - uid: 13360 - components: - - pos: -22.5,-42.5 - parent: 6 - type: Transform - - uid: 13361 - components: - - pos: -28.5,-46.5 - parent: 6 - type: Transform - - uid: 13362 - components: - - pos: -39.5,-42.5 - parent: 6 - type: Transform - - uid: 13363 - components: - - pos: -43.5,-46.5 - parent: 6 - type: Transform - - uid: 13364 - components: - - pos: -48.5,-42.5 - parent: 6 - type: Transform - - uid: 13365 - components: - - pos: -46.5,-46.5 - parent: 6 - type: Transform - - uid: 13366 - components: - - pos: -27.5,-42.5 - parent: 6 - type: Transform - - uid: 13367 - components: - - pos: -12.5,-29.5 - parent: 6 - type: Transform - - uid: 13368 - components: - - pos: -16.5,-24.5 - parent: 6 - type: Transform - - uid: 13374 - components: - - pos: -22.5,-47.5 - parent: 6 - type: Transform - - uid: 13413 - components: - - pos: -43.5,-16.5 - parent: 6 - type: Transform - - uid: 13421 - components: - - pos: -18.5,-33.5 - parent: 6 - type: Transform - - uid: 13422 - components: - - pos: -18.5,-28.5 - parent: 6 - type: Transform - - uid: 13431 - components: - - pos: -38.5,-23.5 - parent: 6 - type: Transform - - uid: 13432 - components: - - pos: -35.5,-23.5 - parent: 6 - type: Transform - - uid: 13439 - components: - - pos: -5.5,-51.5 - parent: 6 - type: Transform - - uid: 13440 - components: - - pos: -8.5,-51.5 - parent: 6 - type: Transform - - uid: 13447 - components: - - pos: -10.5,-4.5 - parent: 6 - type: Transform - - uid: 13448 - components: - - pos: -9.5,1.5 - parent: 6 - type: Transform - - uid: 13449 - components: - - pos: -7.5,2.5 - parent: 6 - type: Transform - - uid: 13454 - components: - - pos: -36.5,-53.5 - parent: 6 - type: Transform - - uid: 13455 - components: - - pos: -36.5,-49.5 - parent: 6 - type: Transform - - uid: 13456 - components: - - pos: -30.5,-49.5 - parent: 6 - type: Transform - - uid: 13457 - components: - - pos: -30.5,-53.5 - parent: 6 - type: Transform - - uid: 13502 - components: - - pos: -27.5,-30.5 - parent: 6 - type: Transform - - uid: 13503 - components: - - pos: -27.5,-26.5 - parent: 6 - type: Transform -- proto: RandomSoap - entities: - - uid: 5160 - components: - - pos: -9.5,-3.5 - parent: 6 - type: Transform - - uid: 5418 - components: - - pos: -35.5,-39.5 - parent: 6 - type: Transform - - uid: 6003 - components: - - pos: 13.5,23.5 - parent: 6 - type: Transform - - uid: 7621 - components: - - pos: -47.5,-30.5 - parent: 6 - type: Transform -- proto: RandomSpawner - entities: - - uid: 11101 - components: - - pos: 24.5,9.5 - parent: 6 - type: Transform - - uid: 11102 - components: - - pos: 19.5,11.5 - parent: 6 - type: Transform - - uid: 11103 - components: - - pos: 22.5,3.5 - parent: 6 - type: Transform - - uid: 11104 - components: - - pos: 8.5,12.5 - parent: 6 - type: Transform - - uid: 11105 - components: - - pos: -5.5,-5.5 - parent: 6 - type: Transform - - uid: 11106 - components: - - pos: -12.5,-0.5 - parent: 6 - type: Transform - - uid: 11107 - components: - - pos: -24.5,7.5 - parent: 6 - type: Transform - - uid: 11108 - components: - - pos: -38.5,6.5 - parent: 6 - type: Transform - - uid: 11109 - components: - - pos: -41.5,-3.5 - parent: 6 - type: Transform - - uid: 11110 - components: - - pos: -44.5,1.5 - parent: 6 - type: Transform - - uid: 11111 - components: - - pos: -46.5,-20.5 - parent: 6 - type: Transform - - uid: 11113 - components: - - pos: -57.5,-22.5 - parent: 6 - type: Transform - - uid: 11114 - components: - - pos: -64.5,-16.5 - parent: 6 - type: Transform - - uid: 11115 - components: - - pos: -62.5,-11.5 - parent: 6 - type: Transform - - uid: 11116 - components: - - pos: -30.5,-12.5 - parent: 6 - type: Transform - - uid: 11117 - components: - - pos: -13.5,-30.5 - parent: 6 - type: Transform - - uid: 11118 - components: - - pos: -28.5,-33.5 - parent: 6 - type: Transform - - uid: 11119 - components: - - pos: -49.5,-27.5 - parent: 6 - type: Transform - - uid: 11120 - components: - - pos: -34.5,-35.5 - parent: 6 - type: Transform - - uid: 11121 - components: - - pos: -58.5,-33.5 - parent: 6 - type: Transform - - uid: 11122 - components: - - pos: -58.5,-31.5 - parent: 6 - type: Transform - - uid: 11123 - components: - - pos: -56.5,-32.5 - parent: 6 - type: Transform - - uid: 11124 - components: - - pos: -57.5,-33.5 - parent: 6 - type: Transform - - uid: 11125 - components: - - pos: -58.5,-32.5 - parent: 6 - type: Transform - - uid: 11126 - components: - - pos: -59.5,-33.5 - parent: 6 - type: Transform - - uid: 11127 - components: - - pos: -60.5,-28.5 - parent: 6 - type: Transform - - uid: 11128 - components: - - pos: -62.5,-31.5 - parent: 6 - type: Transform - - uid: 11129 - components: - - pos: -61.5,-34.5 - parent: 6 - type: Transform - - uid: 11130 - components: - - pos: -58.5,-38.5 - parent: 6 - type: Transform - - uid: 11131 - components: - - pos: -57.5,-36.5 - parent: 6 - type: Transform - - uid: 11132 - components: - - pos: -61.5,-35.5 - parent: 6 - type: Transform - - uid: 11133 - components: - - pos: -59.5,-29.5 - parent: 6 - type: Transform - - uid: 11134 - components: - - pos: -58.5,-34.5 - parent: 6 - type: Transform - - uid: 11135 - components: - - pos: -59.5,-34.5 - parent: 6 - type: Transform - - uid: 11136 - components: - - pos: -58.5,-35.5 - parent: 6 - type: Transform - - uid: 11137 - components: - - pos: -59.5,-35.5 - parent: 6 - type: Transform - - uid: 11138 - components: - - pos: -49.5,-36.5 - parent: 6 - type: Transform - - uid: 11139 - components: - - pos: -37.5,-52.5 - parent: 6 - type: Transform - - uid: 11140 - components: - - pos: -32.5,-58.5 - parent: 6 - type: Transform - - uid: 11141 - components: - - pos: -17.5,-55.5 - parent: 6 - type: Transform - - uid: 11142 - components: - - pos: -13.5,-59.5 - parent: 6 - type: Transform - - uid: 11143 - components: - - pos: 0.5,-53.5 - parent: 6 - type: Transform - - uid: 11144 - components: - - pos: -4.5,-49.5 - parent: 6 - type: Transform - - uid: 11145 - components: - - pos: 12.5,-46.5 - parent: 6 - type: Transform - - uid: 11146 - components: - - pos: 12.5,-28.5 - parent: 6 - type: Transform - - uid: 11147 - components: - - pos: 14.5,-23.5 - parent: 6 - type: Transform - - uid: 11148 - components: - - pos: 24.5,-2.5 - parent: 6 - type: Transform - - uid: 11149 - components: - - pos: 25.5,-0.5 - parent: 6 - type: Transform - - uid: 11150 - components: - - pos: 23.5,-12.5 - parent: 6 - type: Transform - - uid: 11151 - components: - - pos: 41.5,-10.5 - parent: 6 - type: Transform - - uid: 11152 - components: - - pos: -11.5,-10.5 - parent: 6 - type: Transform -- proto: RandomVending - entities: - - uid: 579 - components: - - pos: 44.5,-0.5 - parent: 6 - type: Transform - - uid: 4640 - components: - - pos: -38.5,-3.5 - parent: 6 - type: Transform - - uid: 7837 - components: - - pos: 24.5,-9.5 - parent: 6 - type: Transform - - uid: 8277 - components: - - pos: 29.5,9.5 - parent: 6 - type: Transform - - uid: 10917 - components: - - pos: 14.5,-24.5 - parent: 6 - type: Transform -- proto: RCD - entities: - - uid: 6349 - components: - - pos: -21.370808,-4.3989697 - parent: 6 - type: Transform -- proto: RCDAmmo - entities: - - uid: 6350 - components: - - pos: -21.509954,-4.617513 - parent: 6 - type: Transform -- proto: ReagentContainerFlour - entities: - - uid: 3795 - components: - - pos: -34.607254,-61.319603 - parent: 6 - type: Transform - - uid: 4613 - components: - - pos: -8.446377,-26.505625 - parent: 6 - type: Transform -- proto: ReagentContainerMilkOat - entities: - - uid: 3393 - components: - - pos: -37.544178,-15.470403 - parent: 6 - type: Transform -- proto: ReagentContainerMilkSoy - entities: - - uid: 3468 - components: - - pos: -37.356678,-15.241236 - parent: 6 - type: Transform -- proto: ReagentContainerRice - entities: - - uid: 4612 - components: - - pos: -8.363044,-26.297293 - parent: 6 - type: Transform -- proto: Recycler - entities: - - uid: 5427 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-34.5 - parent: 6 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.55,-0.55 - - 0.55,-0.55 - - 0.55,0.55 - - -0.55,0.55 - mask: [] - layer: - - Impassable - - MidImpassable - - LowImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: conveyor - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.15,-0.15 - - 0.15,-0.15 - - 0.15,0.15 - - -0.15,0.15 - mask: [] - layer: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: brrt - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.49,-0.49 - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - mask: - - Impassable - layer: - - BulletImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: collision - type: Fixtures - - inputs: - Reverse: - - port: Left - uid: 13053 - Forward: - - port: Right - uid: 13053 - Off: - - port: Middle - uid: 13053 - type: SignalReceiver -- proto: ReinforcedGirder - entities: - - uid: 2831 - components: - - pos: -85.5,-41.5 - parent: 6 - type: Transform - - uid: 2832 - components: - - pos: -81.5,-36.5 - parent: 6 - type: Transform - - uid: 2833 - components: - - pos: -81.5,-37.5 - parent: 6 - type: Transform - - uid: 4791 - components: - - pos: -87.5,-46.5 - parent: 6 - type: Transform - - uid: 4792 - components: - - pos: -87.5,-44.5 - parent: 6 - type: Transform -- proto: ReinforcedPlasmaWindow - entities: - - uid: 1975 - components: - - pos: -74.5,-38.5 - parent: 6 - type: Transform - - uid: 2048 - components: - - pos: -74.5,-49.5 - parent: 6 - type: Transform - - uid: 2352 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,19.5 - parent: 6 - type: Transform - - uid: 2353 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,17.5 - parent: 6 - type: Transform - - uid: 2354 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,15.5 - parent: 6 - type: Transform - - uid: 2355 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,13.5 - parent: 6 - type: Transform - - uid: 2356 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,11.5 - parent: 6 - type: Transform - - uid: 2357 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,9.5 - parent: 6 - type: Transform - - uid: 2410 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,25.5 - parent: 6 - type: Transform - - uid: 2411 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,25.5 - parent: 6 - type: Transform - - uid: 2412 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,25.5 - parent: 6 - type: Transform - - uid: 2413 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,27.5 - parent: 6 - type: Transform - - uid: 2414 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,27.5 - parent: 6 - type: Transform - - uid: 2415 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,26.5 - parent: 6 - type: Transform - - uid: 2416 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,26.5 - parent: 6 - type: Transform - - uid: 4750 - components: - - pos: -74.5,-39.5 - parent: 6 - type: Transform - - uid: 4751 - components: - - pos: -74.5,-41.5 - parent: 6 - type: Transform - - uid: 4753 - components: - - pos: -74.5,-47.5 - parent: 6 - type: Transform -- proto: ReinforcedWindow - entities: - - uid: 73 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-8.5 - parent: 6 - type: Transform - - uid: 74 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-8.5 - parent: 6 - type: Transform - - uid: 75 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-8.5 - parent: 6 - type: Transform - - uid: 130 - components: - - pos: -9.5,5.5 - parent: 6 - type: Transform - - uid: 131 - components: - - pos: -7.5,5.5 - parent: 6 - type: Transform - - uid: 132 - components: - - pos: -8.5,5.5 - parent: 6 - type: Transform - - uid: 133 - components: - - pos: -0.5,5.5 - parent: 6 - type: Transform - - uid: 137 - components: - - pos: -1.5,5.5 - parent: 6 - type: Transform - - uid: 140 - components: - - pos: 0.5,5.5 - parent: 6 - type: Transform - - uid: 167 - components: - - pos: -9.5,10.5 - parent: 6 - type: Transform - - uid: 168 - components: - - pos: -9.5,9.5 - parent: 6 - type: Transform - - uid: 169 - components: - - pos: -10.5,9.5 - parent: 6 - type: Transform - - uid: 170 - components: - - pos: -8.5,11.5 - parent: 6 - type: Transform - - uid: 171 - components: - - pos: -7.5,11.5 - parent: 6 - type: Transform - - uid: 172 - components: - - pos: -6.5,11.5 - parent: 6 - type: Transform - - uid: 173 - components: - - pos: -5.5,11.5 - parent: 6 - type: Transform - - uid: 174 - components: - - pos: -3.5,11.5 - parent: 6 - type: Transform - - uid: 175 - components: - - pos: -2.5,11.5 - parent: 6 - type: Transform - - uid: 176 - components: - - pos: -1.5,11.5 - parent: 6 - type: Transform - - uid: 177 - components: - - pos: -0.5,11.5 - parent: 6 - type: Transform - - uid: 178 - components: - - pos: 0.5,10.5 - parent: 6 - type: Transform - - uid: 179 - components: - - pos: 0.5,9.5 - parent: 6 - type: Transform - - uid: 180 - components: - - pos: 1.5,9.5 - parent: 6 - type: Transform - - uid: 194 - components: - - pos: 13.5,-7.5 - parent: 6 - type: Transform - - uid: 195 - components: - - pos: 11.5,-7.5 - parent: 6 - type: Transform - - uid: 203 - components: - - pos: 15.5,-9.5 - parent: 6 - type: Transform - - uid: 206 - components: - - pos: 14.5,-9.5 - parent: 6 - type: Transform - - uid: 207 - components: - - pos: 12.5,-9.5 - parent: 6 - type: Transform - - uid: 264 - components: - - pos: 16.5,16.5 - parent: 6 - type: Transform - - uid: 288 - components: - - pos: 10.5,4.5 - parent: 6 - type: Transform - - uid: 289 - components: - - pos: 10.5,3.5 - parent: 6 - type: Transform - - uid: 290 - components: - - pos: 10.5,-0.5 - parent: 6 - type: Transform - - uid: 291 - components: - - pos: 10.5,-1.5 - parent: 6 - type: Transform - - uid: 293 - components: - - pos: 17.5,-9.5 - parent: 6 - type: Transform - - uid: 296 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-8.5 - parent: 6 - type: Transform - - uid: 310 - components: - - pos: 11.5,5.5 - parent: 6 - type: Transform - - uid: 311 - components: - - pos: 12.5,5.5 - parent: 6 - type: Transform - - uid: 316 - components: - - pos: 15.5,0.5 - parent: 6 - type: Transform - - uid: 324 - components: - - pos: 13.5,16.5 - parent: 6 - type: Transform - - uid: 325 - components: - - pos: 13.5,15.5 - parent: 6 - type: Transform - - uid: 334 - components: - - pos: 16.5,15.5 - parent: 6 - type: Transform - - uid: 335 - components: - - pos: 16.5,14.5 - parent: 6 - type: Transform - - uid: 375 - components: - - pos: 18.5,-9.5 - parent: 6 - type: Transform - - uid: 412 - components: - - pos: 44.5,-11.5 - parent: 6 - type: Transform - - uid: 413 - components: - - pos: 44.5,-12.5 - parent: 6 - type: Transform - - uid: 447 - components: - - pos: 19.5,-9.5 - parent: 6 - type: Transform - - uid: 490 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-9.5 - parent: 6 - type: Transform - - uid: 491 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-9.5 - parent: 6 - type: Transform - - uid: 492 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-9.5 - parent: 6 - type: Transform - - uid: 493 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-9.5 - parent: 6 - type: Transform - - uid: 497 - components: - - pos: 42.5,7.5 - parent: 6 - type: Transform - - uid: 520 - components: - - pos: 42.5,9.5 - parent: 6 - type: Transform - - uid: 525 - components: - - pos: 42.5,0.5 - parent: 6 - type: Transform - - uid: 526 - components: - - pos: 42.5,-1.5 - parent: 6 - type: Transform - - uid: 527 - components: - - pos: 32.5,-1.5 - parent: 6 - type: Transform - - uid: 528 - components: - - pos: 32.5,-0.5 - parent: 6 - type: Transform - - uid: 529 - components: - - pos: 42.5,-0.5 - parent: 6 - type: Transform - - uid: 530 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,8.5 - parent: 6 - type: Transform - - uid: 531 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,9.5 - parent: 6 - type: Transform - - uid: 532 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,10.5 - parent: 6 - type: Transform - - uid: 533 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,10.5 - parent: 6 - type: Transform - - uid: 534 - components: - - pos: 32.5,0.5 - parent: 6 - type: Transform - - uid: 536 - components: - - pos: 32.5,-2.5 - parent: 6 - type: Transform - - uid: 545 - components: - - rot: 3.141592653589793 rad - pos: 29.5,10.5 - parent: 6 - type: Transform - - uid: 550 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,10.5 - parent: 6 - type: Transform - - uid: 551 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,8.5 - parent: 6 - type: Transform - - uid: 552 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,9.5 - parent: 6 - type: Transform - - uid: 563 - components: - - pos: 45.5,-0.5 - parent: 6 - type: Transform - - uid: 564 - components: - - pos: 45.5,-2.5 - parent: 6 - type: Transform - - uid: 566 - components: - - pos: 45.5,-1.5 - parent: 6 - type: Transform - - uid: 593 - components: - - pos: 47.5,5.5 - parent: 6 - type: Transform - - uid: 594 - components: - - pos: 46.5,5.5 - parent: 6 - type: Transform - - uid: 595 - components: - - pos: 45.5,5.5 - parent: 6 - type: Transform - - uid: 596 - components: - - pos: 47.5,0.5 - parent: 6 - type: Transform - - uid: 597 - components: - - pos: 46.5,0.5 - parent: 6 - type: Transform - - uid: 599 - components: - - pos: 47.5,-3.5 - parent: 6 - type: Transform - - uid: 600 - components: - - pos: 46.5,-3.5 - parent: 6 - type: Transform - - uid: 602 - components: - - pos: 47.5,-8.5 - parent: 6 - type: Transform - - uid: 603 - components: - - pos: 46.5,-8.5 - parent: 6 - type: Transform - - uid: 604 - components: - - pos: 45.5,-8.5 - parent: 6 - type: Transform - - uid: 644 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,10.5 - parent: 6 - type: Transform - - uid: 645 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,10.5 - parent: 6 - type: Transform - - uid: 649 - components: - - pos: 32.5,7.5 - parent: 6 - type: Transform - - uid: 650 - components: - - pos: 42.5,8.5 - parent: 6 - type: Transform - - uid: 657 - components: - - pos: 42.5,4.5 - parent: 6 - type: Transform - - uid: 658 - components: - - pos: 32.5,4.5 - parent: 6 - type: Transform - - uid: 701 - components: - - pos: 41.5,-9.5 - parent: 6 - type: Transform - - uid: 702 - components: - - pos: 42.5,-2.5 - parent: 6 - type: Transform - - uid: 751 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,9.5 - parent: 6 - type: Transform - - uid: 752 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,9.5 - parent: 6 - type: Transform - - uid: 753 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,9.5 - parent: 6 - type: Transform - - uid: 758 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,9.5 - parent: 6 - type: Transform - - uid: 759 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,8.5 - parent: 6 - type: Transform - - uid: 760 - components: - - pos: 13.5,14.5 - parent: 6 - type: Transform - - uid: 761 - components: - - pos: 9.5,18.5 - parent: 6 - type: Transform - - uid: 766 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,4.5 - parent: 6 - type: Transform - - uid: 767 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,3.5 - parent: 6 - type: Transform - - uid: 768 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,2.5 - parent: 6 - type: Transform - - uid: 769 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 6 - type: Transform - - uid: 770 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 6 - type: Transform - - uid: 771 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 6 - type: Transform - - uid: 778 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,0.5 - parent: 6 - type: Transform - - uid: 779 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 6 - type: Transform - - uid: 780 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 6 - type: Transform - - uid: 781 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 6 - type: Transform - - uid: 856 - components: - - pos: 2.5,-52.5 - parent: 6 - type: Transform - - uid: 857 - components: - - pos: 3.5,-52.5 - parent: 6 - type: Transform - - uid: 858 - components: - - pos: 4.5,-52.5 - parent: 6 - type: Transform - - uid: 860 - components: - - pos: 9.5,20.5 - parent: 6 - type: Transform - - uid: 861 - components: - - pos: 9.5,19.5 - parent: 6 - type: Transform - - uid: 863 - components: - - pos: 10.5,17.5 - parent: 6 - type: Transform - - uid: 864 - components: - - pos: 11.5,17.5 - parent: 6 - type: Transform - - uid: 865 - components: - - pos: 12.5,17.5 - parent: 6 - type: Transform - - uid: 866 - components: - - pos: 17.5,17.5 - parent: 6 - type: Transform - - uid: 867 - components: - - pos: 18.5,17.5 - parent: 6 - type: Transform - - uid: 868 - components: - - pos: 19.5,17.5 - parent: 6 - type: Transform - - uid: 869 - components: - - pos: -22.5,-18.5 - parent: 6 - type: Transform - - uid: 870 - components: - - pos: 20.5,19.5 - parent: 6 - type: Transform - - uid: 871 - components: - - pos: 20.5,20.5 - parent: 6 - type: Transform - - uid: 927 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-27.5 - parent: 6 - type: Transform - - uid: 929 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-27.5 - parent: 6 - type: Transform - - uid: 930 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-27.5 - parent: 6 - type: Transform - - uid: 931 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-27.5 - parent: 6 - type: Transform - - uid: 932 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-27.5 - parent: 6 - type: Transform - - uid: 933 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-27.5 - parent: 6 - type: Transform - - uid: 1070 - components: - - pos: -12.5,-31.5 - parent: 6 - type: Transform - - uid: 1071 - components: - - pos: -12.5,-32.5 - parent: 6 - type: Transform - - uid: 1072 - components: - - pos: -12.5,-33.5 - parent: 6 - type: Transform - - uid: 1073 - components: - - pos: -10.5,-31.5 - parent: 6 - type: Transform - - uid: 1074 - components: - - pos: -10.5,-32.5 - parent: 6 - type: Transform - - uid: 1075 - components: - - pos: -10.5,-33.5 - parent: 6 - type: Transform - - uid: 1076 - components: - - pos: -8.5,-29.5 - parent: 6 - type: Transform - - uid: 1077 - components: - - pos: -7.5,-29.5 - parent: 6 - type: Transform - - uid: 1078 - components: - - pos: -6.5,-29.5 - parent: 6 - type: Transform - - uid: 1079 - components: - - pos: -3.5,-29.5 - parent: 6 - type: Transform - - uid: 1080 - components: - - pos: -2.5,-29.5 - parent: 6 - type: Transform - - uid: 1081 - components: - - pos: -1.5,-29.5 - parent: 6 - type: Transform - - uid: 1082 - components: - - pos: 0.5,-31.5 - parent: 6 - type: Transform - - uid: 1083 - components: - - pos: 0.5,-32.5 - parent: 6 - type: Transform - - uid: 1084 - components: - - pos: 0.5,-33.5 - parent: 6 - type: Transform - - uid: 1085 - components: - - pos: 0.5,-36.5 - parent: 6 - type: Transform - - uid: 1086 - components: - - pos: 0.5,-37.5 - parent: 6 - type: Transform - - uid: 1087 - components: - - pos: 0.5,-38.5 - parent: 6 - type: Transform - - uid: 1088 - components: - - pos: -3.5,-40.5 - parent: 6 - type: Transform - - uid: 1089 - components: - - pos: -2.5,-40.5 - parent: 6 - type: Transform - - uid: 1090 - components: - - pos: -1.5,-40.5 - parent: 6 - type: Transform - - uid: 1091 - components: - - pos: -8.5,-40.5 - parent: 6 - type: Transform - - uid: 1092 - components: - - pos: -7.5,-40.5 - parent: 6 - type: Transform - - uid: 1093 - components: - - pos: -6.5,-40.5 - parent: 6 - type: Transform - - uid: 1094 - components: - - pos: -8.5,-42.5 - parent: 6 - type: Transform - - uid: 1095 - components: - - pos: -7.5,-42.5 - parent: 6 - type: Transform - - uid: 1096 - components: - - pos: -6.5,-42.5 - parent: 6 - type: Transform - - uid: 1097 - components: - - pos: -3.5,-42.5 - parent: 6 - type: Transform - - uid: 1098 - components: - - pos: -2.5,-42.5 - parent: 6 - type: Transform - - uid: 1099 - components: - - pos: -1.5,-42.5 - parent: 6 - type: Transform - - uid: 1116 - components: - - pos: -10.5,-36.5 - parent: 6 - type: Transform - - uid: 1117 - components: - - pos: -10.5,-37.5 - parent: 6 - type: Transform - - uid: 1118 - components: - - pos: -10.5,-38.5 - parent: 6 - type: Transform - - uid: 1119 - components: - - pos: -12.5,-36.5 - parent: 6 - type: Transform - - uid: 1120 - components: - - pos: -12.5,-37.5 - parent: 6 - type: Transform - - uid: 1121 - components: - - pos: -12.5,-38.5 - parent: 6 - type: Transform - - uid: 1122 - components: - - pos: -17.5,9.5 - parent: 6 - type: Transform - - uid: 1123 - components: - - pos: -16.5,9.5 - parent: 6 - type: Transform - - uid: 1124 - components: - - pos: -15.5,9.5 - parent: 6 - type: Transform - - uid: 1125 - components: - - pos: -14.5,9.5 - parent: 6 - type: Transform - - uid: 1126 - components: - - pos: -13.5,9.5 - parent: 6 - type: Transform - - uid: 1129 - components: - - pos: 8.5,-34.5 - parent: 6 - type: Transform - - uid: 1130 - components: - - pos: 9.5,-34.5 - parent: 6 - type: Transform - - uid: 1161 - components: - - pos: 21.5,-39.5 - parent: 6 - type: Transform - - uid: 1162 - components: - - pos: 22.5,-39.5 - parent: 6 - type: Transform - - uid: 1163 - components: - - pos: 21.5,-33.5 - parent: 6 - type: Transform - - uid: 1164 - components: - - pos: 22.5,-33.5 - parent: 6 - type: Transform - - uid: 1171 - components: - - pos: 22.5,-36.5 - parent: 6 - type: Transform - - uid: 1172 - components: - - pos: 21.5,-36.5 - parent: 6 - type: Transform - - uid: 1205 - components: - - pos: -36.5,-19.5 - parent: 6 - type: Transform - - uid: 1208 - components: - - pos: -37.5,-19.5 - parent: 6 - type: Transform - - uid: 1294 - components: - - pos: -11.5,-60.5 - parent: 6 - type: Transform - - uid: 1295 - components: - - pos: -12.5,-60.5 - parent: 6 - type: Transform - - uid: 1296 - components: - - pos: -13.5,-60.5 - parent: 6 - type: Transform - - uid: 1379 - components: - - pos: 1.5,-68.5 - parent: 6 - type: Transform - - uid: 1381 - components: - - pos: -8.5,-61.5 - parent: 6 - type: Transform - - uid: 1382 - components: - - pos: -8.5,-62.5 - parent: 6 - type: Transform - - uid: 1383 - components: - - pos: -8.5,-63.5 - parent: 6 - type: Transform - - uid: 1384 - components: - - pos: -3.5,-61.5 - parent: 6 - type: Transform - - uid: 1385 - components: - - pos: -3.5,-62.5 - parent: 6 - type: Transform - - uid: 1386 - components: - - pos: -3.5,-63.5 - parent: 6 - type: Transform - - uid: 1387 - components: - - pos: -8.5,-69.5 - parent: 6 - type: Transform - - uid: 1388 - components: - - pos: -8.5,-70.5 - parent: 6 - type: Transform - - uid: 1389 - components: - - pos: -2.5,-68.5 - parent: 6 - type: Transform - - uid: 1390 - components: - - pos: -1.5,-68.5 - parent: 6 - type: Transform - - uid: 1423 - components: - - pos: 0.5,-68.5 - parent: 6 - type: Transform - - uid: 1424 - components: - - pos: 1.5,-71.5 - parent: 6 - type: Transform - - uid: 1425 - components: - - pos: 0.5,-71.5 - parent: 6 - type: Transform - - uid: 1431 - components: - - pos: 1.5,-0.5 - parent: 6 - type: Transform - - uid: 1432 - components: - - pos: 1.5,0.5 - parent: 6 - type: Transform - - uid: 1474 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-71.5 - parent: 6 - type: Transform - - uid: 1493 - components: - - pos: -20.5,-14.5 - parent: 6 - type: Transform - - uid: 1528 - components: - - pos: -24.5,-13.5 - parent: 6 - type: Transform - - uid: 1530 - components: - - pos: -26.5,-13.5 - parent: 6 - type: Transform - - uid: 1532 - components: - - pos: 20.5,18.5 - parent: 6 - type: Transform - - uid: 1582 - components: - - pos: -20.5,-32.5 - parent: 6 - type: Transform - - uid: 1583 - components: - - pos: -21.5,-29.5 - parent: 6 - type: Transform - - uid: 1599 - components: - - pos: 10.5,13.5 - parent: 6 - type: Transform - - uid: 1682 - components: - - pos: -28.5,-13.5 - parent: 6 - type: Transform - - uid: 1683 - components: - - pos: -30.5,-13.5 - parent: 6 - type: Transform - - uid: 1684 - components: - - pos: -32.5,-13.5 - parent: 6 - type: Transform - - uid: 1685 - components: - - pos: -34.5,-13.5 - parent: 6 - type: Transform - - uid: 1691 - components: - - pos: 19.5,13.5 - parent: 6 - type: Transform - - uid: 1694 - components: - - pos: 20.5,13.5 - parent: 6 - type: Transform - - uid: 1787 - components: - - pos: 21.5,13.5 - parent: 6 - type: Transform - - uid: 1788 - components: - - pos: 8.5,13.5 - parent: 6 - type: Transform - - uid: 1839 - components: - - pos: 9.5,13.5 - parent: 6 - type: Transform - - uid: 1844 - components: - - pos: -36.5,-60.5 - parent: 6 - type: Transform - - uid: 1845 - components: - - pos: -37.5,-60.5 - parent: 6 - type: Transform - - uid: 1846 - components: - - pos: -38.5,-60.5 - parent: 6 - type: Transform - - uid: 2045 - components: - - pos: -45.5,-13.5 - parent: 6 - type: Transform - - uid: 2096 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-9.5 - parent: 6 - type: Transform - - uid: 2097 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-9.5 - parent: 6 - type: Transform - - uid: 2098 - components: - - rot: 3.141592653589793 rad - pos: -34.5,-9.5 - parent: 6 - type: Transform - - uid: 2099 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-9.5 - parent: 6 - type: Transform - - uid: 2125 - components: - - pos: -33.5,4.5 - parent: 6 - type: Transform - - uid: 2126 - components: - - pos: -33.5,3.5 - parent: 6 - type: Transform - - uid: 2127 - components: - - pos: -33.5,2.5 - parent: 6 - type: Transform - - uid: 2128 - components: - - pos: -34.5,-0.5 - parent: 6 - type: Transform - - uid: 2129 - components: - - pos: -35.5,-0.5 - parent: 6 - type: Transform - - uid: 2130 - components: - - pos: -38.5,-0.5 - parent: 6 - type: Transform - - uid: 2131 - components: - - pos: -37.5,-0.5 - parent: 6 - type: Transform - - uid: 2159 - components: - - pos: -29.5,13.5 - parent: 6 - type: Transform - - uid: 2160 - components: - - pos: -29.5,12.5 - parent: 6 - type: Transform - - uid: 2161 - components: - - pos: -29.5,11.5 - parent: 6 - type: Transform - - uid: 2244 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,8.5 - parent: 6 - type: Transform - - uid: 2245 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,9.5 - parent: 6 - type: Transform - - uid: 2246 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,10.5 - parent: 6 - type: Transform - - uid: 2247 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,11.5 - parent: 6 - type: Transform - - uid: 2248 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,12.5 - parent: 6 - type: Transform - - uid: 2249 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,13.5 - parent: 6 - type: Transform - - uid: 2250 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,14.5 - parent: 6 - type: Transform - - uid: 2251 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,15.5 - parent: 6 - type: Transform - - uid: 2252 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,16.5 - parent: 6 - type: Transform - - uid: 2253 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,17.5 - parent: 6 - type: Transform - - uid: 2254 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,18.5 - parent: 6 - type: Transform - - uid: 2255 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,19.5 - parent: 6 - type: Transform - - uid: 2256 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,20.5 - parent: 6 - type: Transform - - uid: 2379 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,22.5 - parent: 6 - type: Transform - - uid: 2381 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,23.5 - parent: 6 - type: Transform - - uid: 2382 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,23.5 - parent: 6 - type: Transform - - uid: 2383 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,23.5 - parent: 6 - type: Transform - - uid: 2384 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,23.5 - parent: 6 - type: Transform - - uid: 2385 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,23.5 - parent: 6 - type: Transform - - uid: 2386 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,23.5 - parent: 6 - type: Transform - - uid: 2417 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,22.5 - parent: 6 - type: Transform - - uid: 2418 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,21.5 - parent: 6 - type: Transform - - uid: 2501 - components: - - pos: -42.5,-2.5 - parent: 6 - type: Transform - - uid: 2502 - components: - - pos: -42.5,-3.5 - parent: 6 - type: Transform - - uid: 2504 - components: - - pos: -42.5,-4.5 - parent: 6 - type: Transform - - uid: 2528 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-48.5 - parent: 6 - type: Transform - - uid: 2529 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-48.5 - parent: 6 - type: Transform - - uid: 2530 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-48.5 - parent: 6 - type: Transform - - uid: 2531 - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-40.5 - parent: 6 - type: Transform - - uid: 2532 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-40.5 - parent: 6 - type: Transform - - uid: 2533 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-40.5 - parent: 6 - type: Transform - - uid: 2545 - components: - - rot: 3.141592653589793 rad - pos: -65.5,-10.5 - parent: 6 - type: Transform - - uid: 2661 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-79.5 - parent: 6 - type: Transform - - uid: 2663 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-79.5 - parent: 6 - type: Transform - - uid: 2686 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-79.5 - parent: 6 - type: Transform - - uid: 2690 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-82.5 - parent: 6 - type: Transform - - uid: 2696 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-82.5 - parent: 6 - type: Transform - - uid: 2698 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-82.5 - parent: 6 - type: Transform - - uid: 2699 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-82.5 - parent: 6 - type: Transform - - uid: 2700 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-80.5 - parent: 6 - type: Transform - - uid: 2886 - components: - - rot: 3.141592653589793 rad - pos: -63.5,-7.5 - parent: 6 - type: Transform - - uid: 2887 - components: - - rot: 3.141592653589793 rad - pos: -63.5,-8.5 - parent: 6 - type: Transform - - uid: 2889 - components: - - rot: 3.141592653589793 rad - pos: -62.5,-9.5 - parent: 6 - type: Transform - - uid: 2890 - components: - - rot: 3.141592653589793 rad - pos: -65.5,-11.5 - parent: 6 - type: Transform - - uid: 2891 - components: - - rot: 3.141592653589793 rad - pos: -59.5,-8.5 - parent: 6 - type: Transform - - uid: 2892 - components: - - rot: 3.141592653589793 rad - pos: -59.5,-7.5 - parent: 6 - type: Transform - - uid: 2895 - components: - - rot: 3.141592653589793 rad - pos: -55.5,-8.5 - parent: 6 - type: Transform - - uid: 2896 - components: - - rot: 3.141592653589793 rad - pos: -55.5,-7.5 - parent: 6 - type: Transform - - uid: 2897 - components: - - rot: 3.141592653589793 rad - pos: -54.5,-9.5 - parent: 6 - type: Transform - - uid: 2898 - components: - - rot: 3.141592653589793 rad - pos: -53.5,-9.5 - parent: 6 - type: Transform - - uid: 2899 - components: - - rot: 3.141592653589793 rad - pos: -52.5,-9.5 - parent: 6 - type: Transform - - uid: 2900 - components: - - rot: 3.141592653589793 rad - pos: -50.5,-9.5 - parent: 6 - type: Transform - - uid: 2901 - components: - - rot: 3.141592653589793 rad - pos: -49.5,-9.5 - parent: 6 - type: Transform - - uid: 2902 - components: - - rot: 3.141592653589793 rad - pos: -48.5,-9.5 - parent: 6 - type: Transform - - uid: 2903 - components: - - rot: 3.141592653589793 rad - pos: -67.5,-8.5 - parent: 6 - type: Transform - - uid: 2904 - components: - - rot: 3.141592653589793 rad - pos: -61.5,-9.5 - parent: 6 - type: Transform - - uid: 2905 - components: - - rot: 3.141592653589793 rad - pos: -60.5,-9.5 - parent: 6 - type: Transform - - uid: 2906 - components: - - rot: 3.141592653589793 rad - pos: -67.5,-7.5 - parent: 6 - type: Transform - - uid: 2907 - components: - - rot: 3.141592653589793 rad - pos: -69.5,-9.5 - parent: 6 - type: Transform - - uid: 2908 - components: - - rot: 3.141592653589793 rad - pos: -70.5,-9.5 - parent: 6 - type: Transform - - uid: 2909 - components: - - rot: 3.141592653589793 rad - pos: -71.5,-10.5 - parent: 6 - type: Transform - - uid: 2910 - components: - - rot: 3.141592653589793 rad - pos: -71.5,-11.5 - parent: 6 - type: Transform - - uid: 2911 - components: - - rot: 3.141592653589793 rad - pos: -71.5,-12.5 - parent: 6 - type: Transform - - uid: 2912 - components: - - rot: 3.141592653589793 rad - pos: -71.5,-13.5 - parent: 6 - type: Transform - - uid: 2913 - components: - - rot: 3.141592653589793 rad - pos: -70.5,-14.5 - parent: 6 - type: Transform - - uid: 2914 - components: - - rot: 3.141592653589793 rad - pos: -69.5,-14.5 - parent: 6 - type: Transform - - uid: 2915 - components: - - rot: 3.141592653589793 rad - pos: -65.5,-13.5 - parent: 6 - type: Transform - - uid: 2917 - components: - - pos: -53.5,-26.5 - parent: 6 - type: Transform - - uid: 2918 - components: - - pos: -53.5,-27.5 - parent: 6 - type: Transform - - uid: 2926 - components: - - pos: -56.5,-23.5 - parent: 6 - type: Transform - - uid: 2927 - components: - - pos: -55.5,-23.5 - parent: 6 - type: Transform - - uid: 2928 - components: - - pos: -53.5,-25.5 - parent: 6 - type: Transform - - uid: 2930 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-81.5 - parent: 6 - type: Transform - - uid: 2931 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-79.5 - parent: 6 - type: Transform - - uid: 2932 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-79.5 - parent: 6 - type: Transform - - uid: 2933 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-79.5 - parent: 6 - type: Transform - - uid: 2963 - components: - - rot: 3.141592653589793 rad - pos: -55.5,-31.5 - parent: 6 - type: Transform - - uid: 2964 - components: - - rot: 3.141592653589793 rad - pos: -55.5,-32.5 - parent: 6 - type: Transform - - uid: 2965 - components: - - rot: 3.141592653589793 rad - pos: -55.5,-33.5 - parent: 6 - type: Transform - - uid: 2966 - components: - - rot: 3.141592653589793 rad - pos: -55.5,-35.5 - parent: 6 - type: Transform - - uid: 2987 - components: - - pos: -16.5,-1.5 - parent: 6 - type: Transform - - uid: 2996 - components: - - pos: -23.5,-0.5 - parent: 6 - type: Transform - - uid: 3011 - components: - - pos: 2.5,2.5 - parent: 6 - type: Transform - - uid: 3059 - components: - - pos: -58.5,-44.5 - parent: 6 - type: Transform - - uid: 3061 - components: - - pos: -52.5,-49.5 - parent: 6 - type: Transform - - uid: 3062 - components: - - pos: -52.5,-50.5 - parent: 6 - type: Transform - - uid: 3063 - components: - - pos: -52.5,-51.5 - parent: 6 - type: Transform - - uid: 3064 - components: - - pos: -51.5,-52.5 - parent: 6 - type: Transform - - uid: 3065 - components: - - pos: -50.5,-52.5 - parent: 6 - type: Transform - - uid: 3066 - components: - - pos: -49.5,-52.5 - parent: 6 - type: Transform - - uid: 3145 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,8.5 - parent: 6 - type: Transform - - uid: 3152 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,8.5 - parent: 6 - type: Transform - - uid: 3153 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,8.5 - parent: 6 - type: Transform - - uid: 3367 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-16.5 - parent: 6 - type: Transform - - uid: 3396 - components: - - pos: -22.5,-13.5 - parent: 6 - type: Transform - - uid: 3418 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-6.5 - parent: 6 - type: Transform - - uid: 3425 - components: - - pos: 15.5,1.5 - parent: 6 - type: Transform - - uid: 3490 - components: - - pos: 23.5,-13.5 - parent: 6 - type: Transform - - uid: 3491 - components: - - pos: 24.5,-13.5 - parent: 6 - type: Transform - - uid: 3492 - components: - - pos: 25.5,-13.5 - parent: 6 - type: Transform - - uid: 3493 - components: - - pos: 27.5,-13.5 - parent: 6 - type: Transform - - uid: 3494 - components: - - pos: 28.5,-13.5 - parent: 6 - type: Transform - - uid: 3496 - components: - - pos: 31.5,-13.5 - parent: 6 - type: Transform - - uid: 3497 - components: - - pos: 32.5,-13.5 - parent: 6 - type: Transform - - uid: 3498 - components: - - pos: 33.5,-13.5 - parent: 6 - type: Transform - - uid: 3499 - components: - - pos: 35.5,-13.5 - parent: 6 - type: Transform - - uid: 3500 - components: - - pos: 36.5,-13.5 - parent: 6 - type: Transform - - uid: 3501 - components: - - pos: 37.5,-13.5 - parent: 6 - type: Transform - - uid: 3502 - components: - - pos: 39.5,-13.5 - parent: 6 - type: Transform - - uid: 3503 - components: - - pos: 40.5,-13.5 - parent: 6 - type: Transform - - uid: 3504 - components: - - pos: 41.5,-13.5 - parent: 6 - type: Transform - - uid: 3664 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-71.5 - parent: 6 - type: Transform - - uid: 3665 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-71.5 - parent: 6 - type: Transform - - uid: 3667 - components: - - pos: -12.5,-74.5 - parent: 6 - type: Transform - - uid: 3668 - components: - - pos: -12.5,-75.5 - parent: 6 - type: Transform - - uid: 3669 - components: - - pos: -11.5,-77.5 - parent: 6 - type: Transform - - uid: 3670 - components: - - pos: -10.5,-77.5 - parent: 6 - type: Transform - - uid: 3671 - components: - - pos: -9.5,-77.5 - parent: 6 - type: Transform - - uid: 3681 - components: - - pos: 0.5,-82.5 - parent: 6 - type: Transform - - uid: 3682 - components: - - pos: 1.5,-82.5 - parent: 6 - type: Transform - - uid: 3683 - components: - - pos: 2.5,-81.5 - parent: 6 - type: Transform - - uid: 3684 - components: - - pos: 2.5,-80.5 - parent: 6 - type: Transform - - uid: 3685 - components: - - pos: 2.5,-77.5 - parent: 6 - type: Transform - - uid: 3686 - components: - - pos: 2.5,-76.5 - parent: 6 - type: Transform - - uid: 3687 - components: - - pos: 2.5,-75.5 - parent: 6 - type: Transform - - uid: 3777 - components: - - pos: -33.5,-63.5 - parent: 6 - type: Transform - - uid: 3779 - components: - - pos: -32.5,-63.5 - parent: 6 - type: Transform - - uid: 3780 - components: - - pos: -31.5,-63.5 - parent: 6 - type: Transform - - uid: 4195 - components: - - pos: 18.5,22.5 - parent: 6 - type: Transform - - uid: 4196 - components: - - pos: 17.5,22.5 - parent: 6 - type: Transform - - uid: 4197 - components: - - pos: 16.5,22.5 - parent: 6 - type: Transform - - uid: 4216 - components: - - pos: 5.5,-55.5 - parent: 6 - type: Transform - - uid: 4217 - components: - - pos: 6.5,-55.5 - parent: 6 - type: Transform - - uid: 4218 - components: - - pos: 7.5,-53.5 - parent: 6 - type: Transform - - uid: 4219 - components: - - pos: 7.5,-54.5 - parent: 6 - type: Transform - - uid: 4220 - components: - - pos: 7.5,-51.5 - parent: 6 - type: Transform - - uid: 4221 - components: - - pos: 7.5,-50.5 - parent: 6 - type: Transform - - uid: 4222 - components: - - pos: 14.5,-48.5 - parent: 6 - type: Transform - - uid: 4223 - components: - - pos: 15.5,-48.5 - parent: 6 - type: Transform - - uid: 4224 - components: - - pos: 16.5,-48.5 - parent: 6 - type: Transform - - uid: 4225 - components: - - pos: 17.5,-48.5 - parent: 6 - type: Transform - - uid: 4231 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-27.5 - parent: 6 - type: Transform - - uid: 4232 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-28.5 - parent: 6 - type: Transform - - uid: 4233 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-29.5 - parent: 6 - type: Transform - - uid: 4524 - components: - - pos: -42.5,-5.5 - parent: 6 - type: Transform - - uid: 4948 - components: - - pos: 3.5,2.5 - parent: 6 - type: Transform - - uid: 5032 - components: - - pos: -27.5,0.5 - parent: 6 - type: Transform - - uid: 5060 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-4.5 - parent: 6 - type: Transform - - uid: 5061 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-5.5 - parent: 6 - type: Transform - - uid: 5167 - components: - - pos: 1.5,-2.5 - parent: 6 - type: Transform - - uid: 5178 - components: - - pos: 1.5,-1.5 - parent: 6 - type: Transform - - uid: 5937 - components: - - pos: 40.5,-9.5 - parent: 6 - type: Transform - - uid: 6291 - components: - - pos: -29.5,18.5 - parent: 6 - type: Transform - - uid: 6292 - components: - - pos: -29.5,17.5 - parent: 6 - type: Transform - - uid: 6293 - components: - - pos: -29.5,16.5 - parent: 6 - type: Transform - - uid: 6294 - components: - - pos: -27.5,18.5 - parent: 6 - type: Transform - - uid: 6295 - components: - - pos: -27.5,17.5 - parent: 6 - type: Transform - - uid: 6296 - components: - - pos: -27.5,16.5 - parent: 6 - type: Transform - - uid: 6452 - components: - - pos: -27.5,-62.5 - parent: 6 - type: Transform - - uid: 6454 - components: - - pos: -28.5,-62.5 - parent: 6 - type: Transform - - uid: 8437 - components: - - pos: -8.5,-75.5 - parent: 6 - type: Transform - - uid: 14235 - components: - - pos: -58.5,-43.5 - parent: 6 - type: Transform - - uid: 14236 - components: - - pos: -58.5,-45.5 - parent: 6 - type: Transform -- proto: RemoteSignaller - entities: - - uid: 14094 - components: - - pos: -2.7013257,9.587708 - parent: 6 - type: Transform -- proto: ResearchAndDevelopmentServer - entities: - - uid: 5645 - components: - - pos: -9.5,-76.5 - parent: 6 - type: Transform -- proto: RockGuitarInstrument - entities: - - uid: 13466 - components: - - pos: -49.69898,-53.5255 - parent: 6 - type: Transform -- proto: RollerBed - entities: - - uid: 2948 - components: - - pos: -34.51006,-22.513144 - parent: 6 - type: Transform - - uid: 3659 - components: - - pos: -35.503975,-22.513144 - parent: 6 - type: Transform -- proto: RubberStampDenied - entities: - - uid: 3330 - components: - - pos: 9.599296,-32.124554 - parent: 6 - type: Transform - - uid: 5110 - components: - - pos: -2.9787586,-7.576328 - parent: 6 - type: Transform -- proto: RubberStampSyndicate - entities: - - uid: 13474 - components: - - pos: -69.38395,-17.66235 - parent: 6 - type: Transform -- proto: SalvageMagnet - entities: - - uid: 5463 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-58.5 - parent: 6 - type: Transform -- proto: Saw - entities: - - uid: 6195 - components: - - pos: -33.368313,-14.301024 - parent: 6 - type: Transform - - uid: 7418 - components: - - pos: -17.47212,-52.245285 - parent: 6 - type: Transform -- proto: Scalpel - entities: - - uid: 6191 - components: - - pos: -33.86527,-14.378564 - parent: 6 - type: Transform -- proto: ScalpelShiv - entities: - - uid: 5997 - components: - - pos: 11.476565,23.47423 - parent: 6 - type: Transform -- proto: Screwdriver - entities: - - uid: 5379 - components: - - pos: -2.83597,-56.558304 - parent: 6 - type: Transform - - nextAttack: 37935.7649256 - type: MeleeWeapon -- proto: SecurityTechFab - entities: - - uid: 4704 - components: - - pos: 15.5,3.5 - parent: 6 - type: Transform -- proto: SeedExtractor - entities: - - uid: 4353 - components: - - pos: -8.5,-14.5 - parent: 6 - type: Transform - - uid: 5215 - components: - - pos: 8.5,6.5 - parent: 6 - type: Transform - - uid: 5990 - components: - - pos: 19.5,21.5 - parent: 6 - type: Transform -- proto: ShardGlass - entities: - - uid: 6758 - components: - - rot: 3.141592653589793 rad - pos: -82.53409,-43.155975 - parent: 6 - type: Transform - - uid: 6759 - components: - - rot: 3.141592653589793 rad - pos: -76.436424,-39.24823 - parent: 6 - type: Transform - - uid: 6760 - components: - - rot: 3.141592653589793 rad - pos: -77.54393,-38.552864 - parent: 6 - type: Transform - - uid: 6761 - components: - - rot: 3.141592653589793 rad - pos: -79.4049,-50.786034 - parent: 6 - type: Transform - - uid: 7452 - components: - - pos: -25.512861,-52.433327 - parent: 6 - type: Transform - - nextAttack: 7464.2216396 - type: MeleeWeapon - - uid: 7453 - components: - - pos: -22.503988,-54.424194 - parent: 6 - type: Transform - - uid: 8291 - components: - - pos: -32.534348,-36.4765 - parent: 6 - type: Transform -- proto: ShardGlassPlasma - entities: - - uid: 6755 - components: - - rot: 3.141592653589793 rad - pos: -74.70313,-50.50518 - parent: 6 - type: Transform - - uid: 6756 - components: - - rot: 3.141592653589793 rad - pos: -84.445724,-40.58835 - parent: 6 - type: Transform - - uid: 6757 - components: - - rot: 3.141592653589793 rad - pos: -82.47209,-38.587402 - parent: 6 - type: Transform -- proto: ShardGlassReinforced - entities: - - uid: 13676 - components: - - rot: 3.141592653589793 rad - pos: 0.5732422,4.6299896 - parent: 13645 - type: Transform - - uid: 13677 - components: - - rot: 1.5707963267948966 rad - pos: 3.3315125,4.606613 - parent: 13645 - type: Transform - - uid: 13678 - components: - - rot: -1.5707963267948966 rad - pos: 6.390747,3.4191132 - parent: 13645 - type: Transform - - uid: 13679 - components: - - rot: 1.5707963267948966 rad - pos: 1.9258423,1.6437378 - parent: 13645 - type: Transform -- proto: SheetGlass - entities: - - uid: 5387 - components: - - pos: -12.523188,-55.97647 - parent: 6 - type: Transform - - uid: 5593 - components: - - pos: 14.5244465,-42.262287 - parent: 6 - type: Transform - - uid: 6359 - components: - - pos: -33.011555,-4.4244323 - parent: 6 - type: Transform - - uid: 6403 - components: - - pos: -49.50777,-24.723473 - parent: 6 - type: Transform - - uid: 13402 - components: - - pos: 27.650404,1.592239 - parent: 6 - type: Transform - - uid: 13547 - components: - - pos: 1.6470225,-38.474102 - parent: 6 - type: Transform -- proto: SheetPGlass - entities: - - uid: 6372 - components: - - pos: -32.43091,21.974386 - parent: 6 - type: Transform -- proto: SheetPlasma1 - entities: - - uid: 3188 - components: - - flags: InContainer - type: MetaData - - parent: 5850 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 6175 - components: - - pos: -22.511309,-17.34715 - parent: 6 - type: Transform - - count: 5 - type: Stack -- proto: SheetPlasteel - entities: - - uid: 6360 - components: - - pos: -33.568146,-4.444299 - parent: 6 - type: Transform - - uid: 6401 - components: - - pos: -49.487892,-23.59102 - parent: 6 - type: Transform -- proto: SheetPlastic - entities: - - uid: 3890 - components: - - pos: -20.40867,-25.474638 - parent: 6 - type: Transform - - uid: 5199 - components: - - pos: -12.548407,6.492931 - parent: 6 - type: Transform - - uid: 5388 - components: - - pos: -12.49479,-56.359627 - parent: 6 - type: Transform - - uid: 5594 - components: - - pos: 13.978914,-42.316196 - parent: 6 - type: Transform - - uid: 6481 - components: - - pos: 14.627311,3.5724547 - parent: 6 - type: Transform -- proto: SheetSteel - entities: - - uid: 3887 - components: - - pos: -20.637838,-25.432972 - parent: 6 - type: Transform - - uid: 5198 - components: - - pos: -12.25674,6.7220974 - parent: 6 - type: Transform - - uid: 5386 - components: - - pos: -12.537386,-55.564926 - parent: 6 - type: Transform - - uid: 5592 - components: - - pos: 14.187247,-42.253696 - parent: 6 - type: Transform - - uid: 6358 - components: - - pos: -32.474842,-4.4244323 - parent: 6 - type: Transform - - uid: 6371 - components: - - pos: -32.43559,22.44885 - parent: 6 - type: Transform - - uid: 6402 - components: - - pos: -49.487892,-24.206915 - parent: 6 - type: Transform - - uid: 6480 - components: - - pos: 14.40013,3.5582638 - parent: 6 - type: Transform - - uid: 13401 - components: - - pos: 27.389149,1.6035918 - parent: 6 - type: Transform - - uid: 13546 - components: - - pos: 1.3772457,-38.45991 - parent: 6 - type: Transform -- proto: SheetSteel1 - entities: - - uid: 7422 - components: - - pos: -17.56296,-50.59777 - parent: 6 - type: Transform - - count: 10 - type: Stack - - uid: 13658 - components: - - rot: 3.141592653589793 rad - pos: 2.0107422,3.0201569 - parent: 13645 - type: Transform - - uid: 13669 - components: - - rot: 3.141592653589793 rad - pos: 3.8440704,3.6868134 - parent: 13645 - type: Transform -- proto: Shovel - entities: - - uid: 7595 - components: - - pos: 4.5884767,-54.57562 - parent: 6 - type: Transform -- proto: ShuttersFrame - entities: - - uid: 4793 - components: - - pos: -81.5,-44.5 - parent: 6 - type: Transform -- proto: ShuttersNormal - entities: - - uid: 1345 - components: - - pos: -17.5,-46.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3965 - type: SignalReceiver - - uid: 1346 - components: - - pos: -16.5,-46.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3965 - type: SignalReceiver - - uid: 5597 - components: - - pos: 18.5,-39.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -114478.85 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5599 - type: SignalReceiver - - uid: 5598 - components: - - pos: 17.5,-39.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -114478.85 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5599 - type: SignalReceiver - - uid: 8381 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-5.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116215.945 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8384 - type: SignalReceiver - - uid: 8382 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-4.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116215.945 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8384 - type: SignalReceiver - - uid: 13023 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,4.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116732.86 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver - - uid: 13024 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,3.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116732.86 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver - - uid: 13025 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,4.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116732.86 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver - - uid: 13026 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,3.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116732.86 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver - - uid: 13027 - components: - - pos: -8.5,11.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116732.86 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver - - uid: 13028 - components: - - pos: -6.5,11.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116732.86 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver - - uid: 13029 - components: - - pos: -7.5,11.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116732.86 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver - - uid: 13030 - components: - - pos: -5.5,11.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116732.86 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver - - uid: 13031 - components: - - pos: -3.5,11.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116732.86 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver - - uid: 13032 - components: - - pos: -2.5,11.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116732.86 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver - - uid: 13033 - components: - - pos: -1.5,11.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116732.86 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver - - uid: 13034 - components: - - pos: -0.5,11.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116732.86 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver - - uid: 13035 - components: - - pos: -3.5,-8.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116728.36 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13039 - type: SignalReceiver - - uid: 13036 - components: - - pos: -2.5,-8.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116728.36 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13039 - type: SignalReceiver - - uid: 13037 - components: - - pos: -1.5,-8.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116728.36 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13039 - type: SignalReceiver - - uid: 13042 - components: - - pos: 13.5,9.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116547.05 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13041 - type: SignalReceiver - - uid: 13043 - components: - - pos: 13.5,8.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116547.05 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13041 - type: SignalReceiver - - uid: 13044 - components: - - pos: 13.5,7.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116547.05 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13041 - type: SignalReceiver - - uid: 13048 - components: - - pos: 8.5,-34.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116369.23 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13047 - type: SignalReceiver - - uid: 13049 - components: - - pos: 9.5,-34.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116369.23 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13047 - type: SignalReceiver - - uid: 13050 - components: - - pos: 11.5,-33.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116369.23 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13047 - type: SignalReceiver -- proto: ShuttersNormalOpen - entities: - - uid: 7667 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,4.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6523 - type: SignalReceiver - - uid: 7668 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,3.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6523 - type: SignalReceiver - - uid: 7669 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,2.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6523 - type: SignalReceiver - - uid: 7670 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6524 - type: SignalReceiver - - uid: 7671 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6524 - type: SignalReceiver - - uid: 7672 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6524 - type: SignalReceiver - - uid: 8383 - components: - - pos: -23.5,-5.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8384 - type: SignalReceiver -- proto: ShuttersWindow - entities: - - uid: 13038 - components: - - pos: -0.5,-8.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -116728.36 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13039 - type: SignalReceiver -- proto: ShuttersWindowOpen - entities: - - uid: 7364 - components: - - pos: 0.5,-18.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13045 - type: SignalReceiver - - uid: 7365 - components: - - pos: 1.5,-18.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13045 - type: SignalReceiver - - uid: 7366 - components: - - pos: 2.5,-18.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13045 - type: SignalReceiver - - uid: 7367 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-17.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13045 - type: SignalReceiver - - uid: 7368 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-16.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13045 - type: SignalReceiver - - uid: 7369 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-15.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13045 - type: SignalReceiver - - uid: 7370 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-14.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13045 - type: SignalReceiver - - uid: 7371 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-25.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13046 - type: SignalReceiver - - uid: 7372 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-26.5 - parent: 6 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13046 - type: SignalReceiver -- proto: ShuttleConsoleCircuitboard - entities: - - uid: 13628 - components: - - pos: 7.515518,-3.5073776 - parent: 10465 - type: Transform -- proto: ShuttleWindow - entities: - - uid: 13659 - components: - - rot: 3.141592653589793 rad - pos: 6.5,4.5 - parent: 13645 - type: Transform - - uid: 13660 - components: - - rot: 3.141592653589793 rad - pos: 6.5,2.5 - parent: 13645 - type: Transform - - uid: 13664 - components: - - rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 13645 - type: Transform - - uid: 13666 - components: - - rot: 3.141592653589793 rad - pos: 0.5,3.5 - parent: 13645 - type: Transform -- proto: SignAi - entities: - - uid: 6747 - components: - - pos: -74.5,-44.5 - parent: 6 - type: Transform -- proto: SignalButton - entities: - - uid: 3655 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-64.5 - parent: 6 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 3699 - - port: Toggle - uid: 3700 - - port: Toggle - uid: 3702 - - port: Toggle - uid: 3696 - - port: Toggle - uid: 3697 - - port: Toggle - uid: 3698 - type: SignalTransmitter - - uid: 3656 - components: - - pos: -4.5,-68.5 - parent: 6 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 3699 - - port: Toggle - uid: 3700 - - port: Toggle - uid: 3702 - - port: Toggle - uid: 3696 - - port: Toggle - uid: 3697 - - port: Toggle - uid: 3698 - type: SignalTransmitter - - uid: 3965 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-47.5 - parent: 6 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1345 - - port: Toggle - uid: 1346 - type: SignalTransmitter - - uid: 4909 - components: - - pos: -31.5,20.5 - parent: 6 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4908 - type: SignalTransmitter - - uid: 4910 - components: - - rot: 3.141592653589793 rad - pos: -32.5,27.5 - parent: 6 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4908 - type: SignalTransmitter - - uid: 5599 - components: - - rot: 3.141592653589793 rad - pos: 19.5,-39.5 - parent: 6 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 5597 - - port: Toggle - uid: 5598 - type: SignalTransmitter - - type: ItemCooldown - - uid: 5600 - components: - - rot: -1.5707963267948966 rad - pos: 20.217419,-36.337383 - parent: 6 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1267 - - port: Toggle - uid: 1264 - type: SignalTransmitter - - uid: 5601 - components: - - rot: -1.5707963267948966 rad - pos: 20.217419,-36.635395 - parent: 6 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1266 - - port: Toggle - uid: 1265 - type: SignalTransmitter - - uid: 6388 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-78.5 - parent: 6 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6386 - type: SignalTransmitter - - uid: 6389 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-78.5 - parent: 6 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6387 - type: SignalTransmitter - - uid: 6523 - components: - - rot: 1.5707963267948966 rad - pos: 10.592008,1.6308464 - parent: 6 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7669 - - port: Toggle - uid: 7668 - - port: Toggle - uid: 7667 - type: SignalTransmitter - - uid: 6524 - components: - - rot: 1.5707963267948966 rad - pos: 10.596431,1.3530883 - parent: 6 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7670 - - port: Toggle - uid: 7671 - - port: Toggle - uid: 7672 - type: SignalTransmitter - - uid: 8384 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-4.5 - parent: 6 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 8382 - - port: Toggle - uid: 8381 - - port: Toggle - uid: 8383 - type: SignalTransmitter - - type: ItemCooldown - - uid: 13039 - components: - - pos: -2.5,-4.5 - parent: 6 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 13035 - - port: Toggle - uid: 13036 - - port: Toggle - uid: 13037 - - port: Toggle - uid: 13038 - type: SignalTransmitter - - type: ItemCooldown - - uid: 13040 - components: - - rot: 3.141592653589793 rad - pos: -2.5,5.5 - parent: 6 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 13027 - - port: Toggle - uid: 13029 - - port: Toggle - uid: 13028 - - port: Toggle - uid: 13030 - - port: Toggle - uid: 13031 - - port: Toggle - uid: 13032 - - port: Toggle - uid: 13033 - - port: Toggle - uid: 13034 - - port: Toggle - uid: 13025 - - port: Toggle - uid: 13026 - - port: Toggle - uid: 13023 - - port: Toggle - uid: 13024 - type: SignalTransmitter - - type: ItemCooldown - - uid: 13041 - components: - - pos: 12.5,10.5 - parent: 6 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 13044 - - port: Toggle - uid: 13043 - - port: Toggle - uid: 13042 - type: SignalTransmitter - - type: ItemCooldown - - uid: 13045 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-16.5 - parent: 6 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7364 - - port: Toggle - uid: 7365 - - port: Toggle - uid: 7366 - - port: Toggle - uid: 7367 - - port: Toggle - uid: 7368 - - port: Toggle - uid: 7369 - - port: Toggle - uid: 7370 - type: SignalTransmitter - - uid: 13046 - components: - - pos: -8.5,-23.5 - parent: 6 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7371 - - port: Toggle - uid: 7372 - type: SignalTransmitter - - uid: 13047 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-32.5 - parent: 6 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 13050 - - port: Toggle - uid: 13049 - - port: Toggle - uid: 13048 - type: SignalTransmitter - - type: ItemCooldown - - uid: 13052 - components: - - pos: -53.5,-30.5 - parent: 6 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2968 - type: SignalTransmitter -- proto: SignAnomaly - entities: - - uid: 13310 - components: - - pos: -7.5,-60.5 - parent: 6 - type: Transform -- proto: SignArmory - entities: - - uid: 13266 - components: - - pos: 16.5,5.5 - parent: 6 - type: Transform -- proto: SignAtmos - entities: - - uid: 13265 - components: - - pos: -30.5,5.5 - parent: 6 - type: Transform -- proto: SignAtmosMinsky - entities: - - uid: 13178 - components: - - pos: -32.5,5.5 - parent: 6 - type: Transform - - uid: 13179 - components: - - pos: -30.5,8.5 - parent: 6 - type: Transform -- proto: SignBar - entities: - - uid: 13267 - components: - - pos: 4.5,-13.5 - parent: 6 - type: Transform - - uid: 13268 - components: - - pos: 4.5,-18.5 - parent: 6 - type: Transform -- proto: SignBridge - entities: - - uid: 13269 - components: - - pos: 4.5,5.5 - parent: 6 - type: Transform - - uid: 13270 - components: - - pos: -13.5,5.5 - parent: 6 - type: Transform - - uid: 13271 - components: - - pos: -13.5,2.5 - parent: 6 - type: Transform - - uid: 13272 - components: - - pos: 4.5,2.5 - parent: 6 - type: Transform -- proto: SignCargo - entities: - - uid: 13275 - components: - - pos: 10.5,-38.5 - parent: 6 - type: Transform - - uid: 13276 - components: - - pos: 7.5,-34.5 - parent: 6 - type: Transform - - uid: 13384 - components: - - pos: 19.5,-44.5 - parent: 6 - type: Transform -- proto: SignCargoDock - entities: - - uid: 13273 - components: - - pos: 23.5,-39.5 - parent: 6 - type: Transform - - uid: 13274 - components: - - pos: 23.5,-33.5 - parent: 6 - type: Transform -- proto: SignChapel - entities: - - uid: 13277 - components: - - pos: -30.5,-46.5 - parent: 6 - type: Transform - - uid: 13278 - components: - - pos: -36.5,-46.5 - parent: 6 - type: Transform -- proto: SignChem - entities: - - uid: 13279 - components: - - pos: -20.5,-18.5 - parent: 6 - type: Transform -- proto: SignChemistry1 - entities: - - uid: 13280 - components: - - pos: -24.5,-18.5 - parent: 6 - type: Transform -- proto: SignCloning - entities: - - uid: 13281 - components: - - pos: -31.5,-19.5 - parent: 6 - type: Transform -- proto: SignConference - entities: - - uid: 13282 - components: - - pos: 0.5,2.5 - parent: 6 - type: Transform - - uid: 13283 - components: - - pos: -2.5,2.5 - parent: 6 - type: Transform -- proto: SignCryogenicsMed - entities: - - uid: 6420 - components: - - pos: -27.5,-19.5 - parent: 6 - type: Transform -- proto: SignDirectionalBar - entities: - - uid: 13223 - components: - - rot: 1.5707963267948966 rad - pos: -12.468365,-42.793804 - parent: 6 - type: Transform -- proto: SignDirectionalBridge - entities: - - uid: 13187 - components: - - rot: 1.5707963267948966 rad - pos: -51.471092,-9.207319 - parent: 6 - type: Transform - - uid: 13199 - components: - - rot: 1.5707963267948966 rad - pos: -31.484907,-13.697205 - parent: 6 - type: Transform - - uid: 13204 - components: - - rot: 3.141592653589793 rad - pos: -16.491478,-9.234153 - parent: 6 - type: Transform - - uid: 13231 - components: - - rot: 1.5707963267948966 rad - pos: -44.488472,-42.832462 - parent: 6 - type: Transform - - uid: 13232 - components: - - rot: 3.141592653589793 rad - pos: 7.5333533,-41.251606 - parent: 6 - type: Transform - - uid: 13253 - components: - - rot: 3.141592653589793 rad - pos: 4.526425,-9.180034 - parent: 6 - type: Transform -- proto: SignDirectionalBrig - entities: - - uid: 5909 - components: - - rot: 3.141592653589793 rad - pos: 16.5,9.5 - parent: 6 - type: Transform -- proto: SignDirectionalDorms - entities: - - uid: 13203 - components: - - pos: -16.473507,-13.825976 - parent: 6 - type: Transform - - uid: 13215 - components: - - pos: -16.470768,-34.771725 - parent: 6 - type: Transform - - uid: 13216 - components: - - rot: -1.5707963267948966 rad - pos: -16.489271,-42.194244 - parent: 6 - type: Transform - - uid: 13238 - components: - - rot: -1.5707963267948966 rad - pos: 3.5178459,-41.677635 - parent: 6 - type: Transform -- proto: SignDirectionalEng - entities: - - uid: 13188 - components: - - rot: 1.5707963267948966 rad - pos: -51.471092,-9.445729 - parent: 6 - type: Transform - - uid: 13201 - components: - - rot: -1.5707963267948966 rad - pos: -16.476416,-13.40592 - parent: 6 - type: Transform - - uid: 13210 - components: - - rot: 3.141592653589793 rad - pos: -16.470768,-33.633743 - parent: 6 - type: Transform - - uid: 13217 - components: - - rot: 3.141592653589793 rad - pos: -16.489101,-42.396454 - parent: 6 - type: Transform - - uid: 13226 - components: - - rot: 1.5707963267948966 rad - pos: -41.480995,-42.62811 - parent: 6 - type: Transform - - uid: 13235 - components: - - rot: 3.141592653589793 rad - pos: 7.5275826,-41.904694 - parent: 6 - type: Transform - - uid: 13245 - components: - - rot: 3.141592653589793 rad - pos: 3.5258262,-27.671892 - parent: 6 - type: Transform - - uid: 13247 - components: - - rot: -1.5707963267948966 rad - pos: 7.513849,-9.407091 - parent: 6 - type: Transform - - uid: 13261 - components: - - rot: -1.5707963267948966 rad - pos: 32.534897,-9.800926 - parent: 6 - type: Transform -- proto: SignDirectionalEvac - entities: - - uid: 13196 - components: - - rot: -1.5707963267948966 rad - pos: -49.490036,-13.231736 - parent: 6 - type: Transform - - uid: 13197 - components: - - rot: -1.5707963267948966 rad - pos: -31.481388,-13.231736 - parent: 6 - type: Transform - - uid: 13200 - components: - - rot: -1.5707963267948966 rad - pos: -16.476416,-13.190215 - parent: 6 - type: Transform - - uid: 13207 - components: - - rot: 3.141592653589793 rad - pos: -16.470768,-33.168278 - parent: 6 - type: Transform - - uid: 13219 - components: - - rot: 3.141592653589793 rad - pos: -16.489101,-42.816513 - parent: 6 - type: Transform - - uid: 13224 - components: - - rot: 1.5707963267948966 rad - pos: -41.480995,-42.208054 - parent: 6 - type: Transform - - uid: 13234 - components: - - rot: 3.141592653589793 rad - pos: 7.5275826,-41.688988 - parent: 6 - type: Transform - - uid: 13244 - components: - - rot: 3.141592653589793 rad - pos: 3.5258262,-27.456186 - parent: 6 - type: Transform - - uid: 13246 - components: - - rot: -1.5707963267948966 rad - pos: 7.513849,-9.195249 - parent: 6 - type: Transform - - uid: 13259 - components: - - rot: -1.5707963267948966 rad - pos: 32.534897,-9.392222 - parent: 6 - type: Transform -- proto: SignDirectionalFood - entities: - - uid: 13225 - components: - - rot: 1.5707963267948966 rad - pos: -41.480995,-42.42376 - parent: 6 - type: Transform - - uid: 13242 - components: - - rot: -1.5707963267948966 rad - pos: 7.529145,-27.683245 - parent: 6 - type: Transform - - uid: 13252 - components: - - pos: 4.526425,-9.384386 - parent: 6 - type: Transform - - uid: 13260 - components: - - rot: -1.5707963267948966 rad - pos: 32.534897,-9.607927 - parent: 6 - type: Transform -- proto: SignDirectionalHop - entities: - - uid: 13198 - components: - - rot: 1.5707963267948966 rad - pos: -31.481388,-13.458794 - parent: 6 - type: Transform - - uid: 13208 - components: - - rot: 1.5707963267948966 rad - pos: -16.491478,-9.847209 - parent: 6 - type: Transform - - uid: 13209 - components: - - rot: 3.141592653589793 rad - pos: -16.470768,-33.395336 - parent: 6 - type: Transform - - uid: 13236 - components: - - rot: 3.141592653589793 rad - pos: 3.5178459,-41.246223 - parent: 6 - type: Transform - - uid: 13248 - components: - - rot: -1.5707963267948966 rad - pos: 7.513849,-9.6114435 - parent: 6 - type: Transform - - uid: 13257 - components: - - rot: -1.5707963267948966 rad - pos: 29.513391,-9.857691 - parent: 6 - type: Transform -- proto: SignDirectionalJanitor - entities: - - uid: 9504 - components: - - rot: 1.5707963267948966 rad - pos: 4.529042,-9.595794 - parent: 6 - type: Transform - - uid: 13258 - components: - - rot: 3.141592653589793 rad - pos: 32.534897,-9.187871 - parent: 6 - type: Transform -- proto: SignDirectionalMed - entities: - - uid: 13194 - components: - - rot: 1.5707963267948966 rad - pos: -49.490036,-13.708557 - parent: 6 - type: Transform - - uid: 13211 - components: - - rot: 3.141592653589793 rad - pos: -16.470768,-33.8608 - parent: 6 - type: Transform - - uid: 13218 - components: - - rot: 3.141592653589793 rad - pos: -16.489101,-42.600807 - parent: 6 - type: Transform - - uid: 13229 - components: - - rot: 1.5707963267948966 rad - pos: -44.494762,-42.40105 - parent: 6 - type: Transform - - uid: 13249 - components: - - rot: -1.5707963267948966 rad - pos: 7.513849,-9.815796 - parent: 6 - type: Transform - - uid: 13256 - components: - - rot: -1.5707963267948966 rad - pos: 29.513391,-9.653339 - parent: 6 - type: Transform -- proto: SignDirectionalSalvage - entities: - - uid: 13214 - components: - - pos: -16.470768,-34.541977 - parent: 6 - type: Transform - - uid: 13222 - components: - - rot: 1.5707963267948966 rad - pos: -12.47234,-42.578102 - parent: 6 - type: Transform - - uid: 13239 - components: - - pos: 3.5178459,-41.89334 - parent: 6 - type: Transform -- proto: SignDirectionalSci - entities: - - uid: 13193 - components: - - rot: 1.5707963267948966 rad - pos: -35.48309,-13.696247 - parent: 6 - type: Transform - - uid: 13195 - components: - - rot: 1.5707963267948966 rad - pos: -49.490036,-13.470147 - parent: 6 - type: Transform - - uid: 13202 - components: - - pos: -16.476416,-13.621625 - parent: 6 - type: Transform - - uid: 13213 - components: - - pos: -16.470768,-34.31492 - parent: 6 - type: Transform - - uid: 13228 - components: - - rot: 1.5707963267948966 rad - pos: -44.490685,-42.208054 - parent: 6 - type: Transform - - uid: 13237 - components: - - rot: -1.5707963267948966 rad - pos: 3.5178459,-41.46193 - parent: 6 - type: Transform - - uid: 13241 - components: - - pos: 7.529145,-27.46754 - parent: 6 - type: Transform - - uid: 13255 - components: - - rot: -1.5707963267948966 rad - pos: 29.513391,-9.437634 - parent: 6 - type: Transform -- proto: SignDirectionalSec - entities: - - uid: 13189 - components: - - rot: 1.5707963267948966 rad - pos: -51.471092,-9.68414 - parent: 6 - type: Transform - - uid: 13191 - components: - - rot: 1.5707963267948966 rad - pos: -35.48309,-13.219425 - parent: 6 - type: Transform - - uid: 13205 - components: - - rot: 1.5707963267948966 rad - pos: -16.491478,-9.438504 - parent: 6 - type: Transform - - uid: 13212 - components: - - rot: 3.141592653589793 rad - pos: -16.470768,-34.08786 - parent: 6 - type: Transform - - uid: 13221 - components: - - rot: 1.5707963267948966 rad - pos: -12.47234,-42.362396 - parent: 6 - type: Transform - - uid: 13227 - components: - - rot: 1.5707963267948966 rad - pos: -41.480995,-42.832462 - parent: 6 - type: Transform - - uid: 13233 - components: - - rot: 3.141592653589793 rad - pos: 7.5275826,-41.47328 - parent: 6 - type: Transform - - uid: 13243 - components: - - rot: 3.141592653589793 rad - pos: 3.5258262,-27.240482 - parent: 6 - type: Transform - - uid: 13254 - components: - - rot: -1.5707963267948966 rad - pos: 29.513391,-9.22193 - parent: 6 - type: Transform -- proto: SignDirectionalSolar - entities: - - uid: 8215 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,15.5 - parent: 6 - type: Transform - - uid: 8216 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,19.5 - parent: 6 - type: Transform - - uid: 8217 - components: - - pos: -63.5,-15.5 - parent: 6 - type: Transform - - uid: 8218 - components: - - pos: -23.5,-47.5 - parent: 6 - type: Transform - - uid: 8219 - components: - - pos: -18.5,-54.5 - parent: 6 - type: Transform - - uid: 8226 - components: - - pos: -22.5,-60.5 - parent: 6 - type: Transform - - uid: 8251 - components: - - pos: -25.5,-60.5 - parent: 6 - type: Transform - - uid: 8252 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-57.5 - parent: 6 - type: Transform - - uid: 8272 - components: - - pos: -39.5,-46.5 - parent: 6 - type: Transform - - uid: 8283 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-19.5 - parent: 6 - type: Transform - - uid: 8285 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-23.5 - parent: 6 - type: Transform - - uid: 8287 - components: - - pos: 20.5,-14.5 - parent: 6 - type: Transform - - uid: 8330 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-30.5 - parent: 6 - type: Transform - - uid: 8436 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-28.5 - parent: 6 - type: Transform - - uid: 13190 - components: - - pos: -59.487583,-17.47181 - parent: 6 - type: Transform -- proto: SignDirectionalSupply - entities: - - uid: 13192 - components: - - rot: 1.5707963267948966 rad - pos: -35.48309,-13.457836 - parent: 6 - type: Transform - - uid: 13206 - components: - - rot: 1.5707963267948966 rad - pos: -16.491478,-9.642858 - parent: 6 - type: Transform - - uid: 13220 - components: - - rot: 1.5707963267948966 rad - pos: -12.47234,-42.14669 - parent: 6 - type: Transform - - uid: 13230 - components: - - rot: 1.5707963267948966 rad - pos: -44.494762,-42.616756 - parent: 6 - type: Transform - - uid: 13240 - components: - - pos: 7.529145,-27.251835 - parent: 6 - type: Transform - - uid: 13250 - components: - - pos: 4.526425,-9.804442 - parent: 6 - type: Transform -- proto: SignDisposalSpace - entities: - - uid: 13284 - components: - - pos: -55.5,-30.5 - parent: 6 - type: Transform - - uid: 13285 - components: - - pos: -50.5,-33.5 - parent: 6 - type: Transform - - uid: 13293 - components: - - pos: 25.5,-20.5 - parent: 6 - type: Transform - - uid: 13295 - components: - - pos: 4.5,-55.5 - parent: 6 - type: Transform - - uid: 13297 - components: - - pos: -24.5,-64.5 - parent: 6 - type: Transform -- proto: SignDoors - entities: - - uid: 13180 - components: - - pos: -31.5,21.5 - parent: 6 - type: Transform - - uid: 13286 - components: - - pos: -62.5,-17.5 - parent: 6 - type: Transform - - uid: 13287 - components: - - pos: -65.5,-9.5 - parent: 6 - type: Transform - - uid: 13288 - components: - - pos: -57.5,-9.5 - parent: 6 - type: Transform - - uid: 13289 - components: - - pos: 45.5,-3.5 - parent: 6 - type: Transform - - uid: 13290 - components: - - pos: 45.5,0.5 - parent: 6 - type: Transform - - uid: 13291 - components: - - pos: 21.5,-20.5 - parent: 6 - type: Transform - - uid: 13294 - components: - - pos: 7.5,-52.5 - parent: 6 - type: Transform - - uid: 13296 - components: - - pos: -24.5,-60.5 - parent: 6 - type: Transform -- proto: SignDrones - entities: - - uid: 13300 - components: - - pos: -46.5,-22.5 - parent: 6 - type: Transform -- proto: SignEngineering - entities: - - uid: 13181 - components: - - pos: -29.5,-8.5 - parent: 6 - type: Transform -- proto: SignEVA - entities: - - uid: 7632 - components: - - pos: -47.5,-13.5 - parent: 6 - type: Transform - - uid: 13263 - components: - - pos: -44.5,-13.5 - parent: 6 - type: Transform -- proto: SignFire - entities: - - uid: 13185 - components: - - pos: -32.5,25.5 - parent: 6 - type: Transform - - uid: 13186 - components: - - pos: -36.5,27.5 - parent: 6 - type: Transform -- proto: SignFlammableMed - entities: - - uid: 13184 - components: - - pos: -36.5,25.5 - parent: 6 - type: Transform -- proto: SignGravity - entities: - - uid: 13182 - components: - - pos: -25.5,0.5 - parent: 6 - type: Transform -- proto: SignHydro2 - entities: - - uid: 13301 - components: - - pos: -13.5,-17.5 - parent: 6 - type: Transform -- proto: SignLibrary - entities: - - uid: 7751 - components: - - pos: -18.5,-42.5 - parent: 6 - type: Transform - - uid: 13302 - components: - - pos: -20.5,-42.5 - parent: 6 - type: Transform -- proto: SignMedical - entities: - - uid: 13303 - components: - - pos: -20.5,-13.5 - parent: 6 - type: Transform - - uid: 13304 - components: - - pos: -16.5,-17.5 - parent: 6 - type: Transform -- proto: SignMorgue - entities: - - uid: 13305 - components: - - pos: -31.5,-23.5 - parent: 6 - type: Transform -- proto: SignPrison - entities: - - uid: 5975 - components: - - pos: 16.5,13.5 - parent: 6 - type: Transform - - uid: 6038 - components: - - pos: 16.5,10.5 - parent: 6 - type: Transform -- proto: SignRND - entities: - - uid: 13306 - components: - - pos: -8.5,-49.5 - parent: 6 - type: Transform -- proto: SignRobo - entities: - - uid: 13307 - components: - - pos: -18.5,-46.5 - parent: 6 - type: Transform -- proto: SignScience - entities: - - uid: 13308 - components: - - pos: -13.5,-46.5 - parent: 6 - type: Transform -- proto: SignSecureSmall - entities: - - uid: 13312 - components: - - pos: -28.5,0.5 - parent: 6 - type: Transform -- proto: SignSecureSmallRed - entities: - - uid: 13313 - components: - - pos: -19.5,0.5 - parent: 6 - type: Transform - - uid: 13314 - components: - - pos: -21.5,0.5 - parent: 6 - type: Transform -- proto: SignShipDock - entities: - - uid: 13292 - components: - - pos: 23.5,-36.5 - parent: 6 - type: Transform -- proto: SignTelecomms - entities: - - uid: 12003 - components: - - rot: 3.141592653589793 rad - pos: -51.5,-44.5 - parent: 6 - type: Transform -- proto: SignToolStorage - entities: - - uid: 13309 - components: - - pos: -16.5,5.5 - parent: 6 - type: Transform -- proto: SignXenolab - entities: - - uid: 13311 - components: - - pos: -4.5,-60.5 - parent: 6 - type: Transform -- proto: Sink - entities: - - uid: 4620 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-17.5 - parent: 6 - type: Transform - - uid: 5410 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-41.5 - parent: 6 - type: Transform - - uid: 5411 - components: - - rot: 3.141592653589793 rad - pos: -35.5,-41.5 - parent: 6 - type: Transform - - uid: 5412 - components: - - rot: 3.141592653589793 rad - pos: -34.5,-41.5 - parent: 6 - type: Transform - - uid: 8581 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-24.5 - parent: 6 - type: Transform -- proto: SinkStemlessWater - entities: - - uid: 3471 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-15.5 - parent: 6 - type: Transform - - uid: 5163 - components: - - pos: -8.5,-3.5 - parent: 6 - type: Transform - - uid: 6000 - components: - - pos: 12.5,23.5 - parent: 6 - type: Transform -- proto: SMESBasic - entities: - - uid: 4520 - components: - - pos: -26.5,-3.5 - parent: 6 - type: Transform - - uid: 4915 - components: - - pos: -24.5,16.5 - parent: 6 - type: Transform - - uid: 5013 - components: - - pos: -27.5,-3.5 - parent: 6 - type: Transform - - uid: 5568 - components: - - pos: -59.5,-20.5 - parent: 6 - type: Transform - - uid: 6196 - components: - - pos: -57.5,-47.5 - parent: 6 - type: Transform - - uid: 6665 - components: - - pos: -22.5,-63.5 - parent: 6 - type: Transform - - uid: 7218 - components: - - pos: 24.5,-22.5 - parent: 6 - type: Transform -- proto: SmokingPipe - entities: - - uid: 832 - components: - - pos: 2.4364183,-26.433908 - parent: 6 - type: Transform -- proto: SmokingPipeFilledCannabis - entities: - - uid: 5916 - components: - - pos: 12.611983,18.326534 - parent: 6 - type: Transform -- proto: SmokingPipeFilledTobacco - entities: - - uid: 5180 - components: - - pos: -1.3270658,-0.54166234 - parent: 6 - type: Transform - - uid: 5902 - components: - - pos: -1.6699085,-46.365376 - parent: 6 - type: Transform -- proto: SoapNT - entities: - - uid: 7642 - components: - - pos: 27.621904,3.4726746 - parent: 6 - type: Transform -- proto: soda_dispenser - entities: - - uid: 4465 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-15.5 - parent: 6 - type: Transform - - uid: 4619 - components: - - pos: 1.5,-14.5 - parent: 6 - type: Transform -- proto: SolarPanel - entities: - - uid: 3515 - components: - - pos: 30.5,-16.5 - parent: 6 - type: Transform - - uid: 3516 - components: - - pos: 30.5,-17.5 - parent: 6 - type: Transform - - uid: 3517 - components: - - pos: 30.5,-18.5 - parent: 6 - type: Transform - - uid: 3518 - components: - - pos: 30.5,-19.5 - parent: 6 - type: Transform - - uid: 3519 - components: - - pos: 30.5,-20.5 - parent: 6 - type: Transform - - uid: 3520 - components: - - pos: 30.5,-21.5 - parent: 6 - type: Transform - - uid: 3521 - components: - - pos: 30.5,-22.5 - parent: 6 - type: Transform - - uid: 3522 - components: - - pos: 30.5,-23.5 - parent: 6 - type: Transform - - uid: 3523 - components: - - pos: 32.5,-16.5 - parent: 6 - type: Transform - - uid: 3524 - components: - - pos: 32.5,-17.5 - parent: 6 - type: Transform - - uid: 3525 - components: - - pos: 32.5,-18.5 - parent: 6 - type: Transform - - uid: 3526 - components: - - pos: 32.5,-19.5 - parent: 6 - type: Transform - - uid: 3527 - components: - - pos: 32.5,-20.5 - parent: 6 - type: Transform - - uid: 3528 - components: - - pos: 32.5,-21.5 - parent: 6 - type: Transform - - uid: 3529 - components: - - pos: 32.5,-22.5 - parent: 6 - type: Transform - - uid: 3530 - components: - - pos: 32.5,-23.5 - parent: 6 - type: Transform - - uid: 3531 - components: - - pos: 34.5,-16.5 - parent: 6 - type: Transform - - uid: 3532 - components: - - pos: 34.5,-17.5 - parent: 6 - type: Transform - - uid: 3533 - components: - - pos: 34.5,-18.5 - parent: 6 - type: Transform - - uid: 3534 - components: - - pos: 34.5,-19.5 - parent: 6 - type: Transform - - uid: 3535 - components: - - pos: 34.5,-20.5 - parent: 6 - type: Transform - - uid: 3536 - components: - - pos: 34.5,-21.5 - parent: 6 - type: Transform - - uid: 3537 - components: - - pos: 34.5,-22.5 - parent: 6 - type: Transform - - uid: 3538 - components: - - pos: 34.5,-23.5 - parent: 6 - type: Transform - - uid: 3539 - components: - - pos: 36.5,-16.5 - parent: 6 - type: Transform - - uid: 3540 - components: - - pos: 36.5,-17.5 - parent: 6 - type: Transform - - uid: 3541 - components: - - pos: 36.5,-18.5 - parent: 6 - type: Transform - - uid: 3542 - components: - - pos: 36.5,-19.5 - parent: 6 - type: Transform - - uid: 3543 - components: - - pos: 36.5,-20.5 - parent: 6 - type: Transform - - uid: 3544 - components: - - pos: 36.5,-21.5 - parent: 6 - type: Transform - - uid: 3545 - components: - - pos: 36.5,-22.5 - parent: 6 - type: Transform - - uid: 3546 - components: - - pos: 36.5,-23.5 - parent: 6 - type: Transform - - uid: 3547 - components: - - pos: 38.5,-16.5 - parent: 6 - type: Transform - - uid: 3548 - components: - - pos: 38.5,-17.5 - parent: 6 - type: Transform - - uid: 3549 - components: - - pos: 38.5,-18.5 - parent: 6 - type: Transform - - uid: 3550 - components: - - pos: 38.5,-19.5 - parent: 6 - type: Transform - - uid: 3551 - components: - - pos: 38.5,-20.5 - parent: 6 - type: Transform - - uid: 3552 - components: - - pos: 38.5,-21.5 - parent: 6 - type: Transform - - uid: 3553 - components: - - pos: 38.5,-22.5 - parent: 6 - type: Transform - - uid: 3554 - components: - - pos: 38.5,-23.5 - parent: 6 - type: Transform - - uid: 3555 - components: - - pos: 40.5,-16.5 - parent: 6 - type: Transform - - uid: 3556 - components: - - pos: 40.5,-17.5 - parent: 6 - type: Transform - - uid: 3557 - components: - - pos: 40.5,-18.5 - parent: 6 - type: Transform - - uid: 3558 - components: - - pos: 40.5,-19.5 - parent: 6 - type: Transform - - uid: 3559 - components: - - pos: 40.5,-20.5 - parent: 6 - type: Transform - - uid: 3560 - components: - - pos: 40.5,-21.5 - parent: 6 - type: Transform - - uid: 3561 - components: - - pos: 40.5,-22.5 - parent: 6 - type: Transform - - uid: 3562 - components: - - pos: 40.5,-23.5 - parent: 6 - type: Transform - - uid: 3563 - components: - - pos: 42.5,-16.5 - parent: 6 - type: Transform - - uid: 3564 - components: - - pos: 42.5,-17.5 - parent: 6 - type: Transform - - uid: 3565 - components: - - pos: 42.5,-18.5 - parent: 6 - type: Transform - - uid: 3566 - components: - - pos: 42.5,-19.5 - parent: 6 - type: Transform - - uid: 3567 - components: - - pos: 42.5,-20.5 - parent: 6 - type: Transform - - uid: 3568 - components: - - pos: 42.5,-21.5 - parent: 6 - type: Transform - - uid: 3569 - components: - - pos: 42.5,-22.5 - parent: 6 - type: Transform - - uid: 3570 - components: - - pos: 42.5,-23.5 - parent: 6 - type: Transform - - uid: 3571 - components: - - pos: 44.5,-16.5 - parent: 6 - type: Transform - - uid: 3572 - components: - - pos: 44.5,-17.5 - parent: 6 - type: Transform - - uid: 3573 - components: - - pos: 44.5,-18.5 - parent: 6 - type: Transform - - uid: 3574 - components: - - pos: 44.5,-19.5 - parent: 6 - type: Transform - - uid: 3575 - components: - - pos: 44.5,-20.5 - parent: 6 - type: Transform - - uid: 3576 - components: - - pos: 44.5,-21.5 - parent: 6 - type: Transform - - uid: 3577 - components: - - pos: 44.5,-22.5 - parent: 6 - type: Transform - - uid: 3578 - components: - - pos: 44.5,-23.5 - parent: 6 - type: Transform - - uid: 4029 - components: - - pos: -32.5,-82.5 - parent: 6 - type: Transform - - uid: 4030 - components: - - pos: -31.5,-82.5 - parent: 6 - type: Transform - - uid: 4031 - components: - - pos: -30.5,-82.5 - parent: 6 - type: Transform - - uid: 4032 - components: - - pos: -29.5,-82.5 - parent: 6 - type: Transform - - uid: 4033 - components: - - pos: -28.5,-82.5 - parent: 6 - type: Transform - - uid: 4034 - components: - - pos: -27.5,-82.5 - parent: 6 - type: Transform - - uid: 4035 - components: - - pos: -26.5,-82.5 - parent: 6 - type: Transform - - uid: 4036 - components: - - pos: -25.5,-82.5 - parent: 6 - type: Transform - - uid: 4037 - components: - - pos: -25.5,-80.5 - parent: 6 - type: Transform - - uid: 4038 - components: - - pos: -26.5,-80.5 - parent: 6 - type: Transform - - uid: 4039 - components: - - pos: -27.5,-80.5 - parent: 6 - type: Transform - - uid: 4040 - components: - - pos: -28.5,-80.5 - parent: 6 - type: Transform - - uid: 4041 - components: - - pos: -29.5,-80.5 - parent: 6 - type: Transform - - uid: 4042 - components: - - pos: -30.5,-80.5 - parent: 6 - type: Transform - - uid: 4043 - components: - - pos: -31.5,-80.5 - parent: 6 - type: Transform - - uid: 4044 - components: - - pos: -32.5,-80.5 - parent: 6 - type: Transform - - uid: 4045 - components: - - pos: -32.5,-78.5 - parent: 6 - type: Transform - - uid: 4046 - components: - - pos: -31.5,-78.5 - parent: 6 - type: Transform - - uid: 4047 - components: - - pos: -30.5,-78.5 - parent: 6 - type: Transform - - uid: 4048 - components: - - pos: -29.5,-78.5 - parent: 6 - type: Transform - - uid: 4049 - components: - - pos: -28.5,-78.5 - parent: 6 - type: Transform - - uid: 4050 - components: - - pos: -27.5,-78.5 - parent: 6 - type: Transform - - uid: 4051 - components: - - pos: -26.5,-78.5 - parent: 6 - type: Transform - - uid: 4052 - components: - - pos: -25.5,-78.5 - parent: 6 - type: Transform - - uid: 4053 - components: - - pos: -32.5,-76.5 - parent: 6 - type: Transform - - uid: 4054 - components: - - pos: -31.5,-76.5 - parent: 6 - type: Transform - - uid: 4055 - components: - - pos: -30.5,-76.5 - parent: 6 - type: Transform - - uid: 4056 - components: - - pos: -29.5,-76.5 - parent: 6 - type: Transform - - uid: 4057 - components: - - pos: -28.5,-76.5 - parent: 6 - type: Transform - - uid: 4058 - components: - - pos: -27.5,-76.5 - parent: 6 - type: Transform - - uid: 4059 - components: - - pos: -26.5,-76.5 - parent: 6 - type: Transform - - uid: 4060 - components: - - pos: -25.5,-76.5 - parent: 6 - type: Transform - - uid: 4061 - components: - - pos: -32.5,-74.5 - parent: 6 - type: Transform - - uid: 4062 - components: - - pos: -31.5,-74.5 - parent: 6 - type: Transform - - uid: 4063 - components: - - pos: -30.5,-74.5 - parent: 6 - type: Transform - - uid: 4064 - components: - - pos: -29.5,-74.5 - parent: 6 - type: Transform - - uid: 4065 - components: - - pos: -28.5,-74.5 - parent: 6 - type: Transform - - uid: 4066 - components: - - pos: -27.5,-74.5 - parent: 6 - type: Transform - - uid: 4067 - components: - - pos: -26.5,-74.5 - parent: 6 - type: Transform - - uid: 4068 - components: - - pos: -25.5,-74.5 - parent: 6 - type: Transform - - uid: 4069 - components: - - pos: -32.5,-72.5 - parent: 6 - type: Transform - - uid: 4070 - components: - - pos: -31.5,-72.5 - parent: 6 - type: Transform - - uid: 4071 - components: - - pos: -30.5,-72.5 - parent: 6 - type: Transform - - uid: 4072 - components: - - pos: -29.5,-72.5 - parent: 6 - type: Transform - - uid: 4073 - components: - - pos: -28.5,-72.5 - parent: 6 - type: Transform - - uid: 4074 - components: - - pos: -27.5,-72.5 - parent: 6 - type: Transform - - uid: 4075 - components: - - pos: -26.5,-72.5 - parent: 6 - type: Transform - - uid: 4076 - components: - - pos: -25.5,-72.5 - parent: 6 - type: Transform - - uid: 4077 - components: - - pos: -32.5,-70.5 - parent: 6 - type: Transform - - uid: 4078 - components: - - pos: -31.5,-70.5 - parent: 6 - type: Transform - - uid: 4079 - components: - - pos: -30.5,-70.5 - parent: 6 - type: Transform - - uid: 4080 - components: - - pos: -29.5,-70.5 - parent: 6 - type: Transform - - uid: 4081 - components: - - pos: -28.5,-70.5 - parent: 6 - type: Transform - - uid: 4082 - components: - - pos: -27.5,-70.5 - parent: 6 - type: Transform - - uid: 4083 - components: - - pos: -26.5,-70.5 - parent: 6 - type: Transform - - uid: 4084 - components: - - pos: -25.5,-70.5 - parent: 6 - type: Transform - - uid: 4085 - components: - - pos: -32.5,-68.5 - parent: 6 - type: Transform - - uid: 4086 - components: - - pos: -31.5,-68.5 - parent: 6 - type: Transform - - uid: 4087 - components: - - pos: -30.5,-68.5 - parent: 6 - type: Transform - - uid: 4088 - components: - - pos: -29.5,-68.5 - parent: 6 - type: Transform - - uid: 4089 - components: - - pos: -28.5,-68.5 - parent: 6 - type: Transform - - uid: 4090 - components: - - pos: -27.5,-68.5 - parent: 6 - type: Transform - - uid: 4091 - components: - - pos: -26.5,-68.5 - parent: 6 - type: Transform - - uid: 4092 - components: - - pos: -25.5,-68.5 - parent: 6 - type: Transform - - uid: 4226 - components: - - rot: -1.5707963267948966 rad - pos: -86.5,-18.5 - parent: 6 - type: Transform - - uid: 4227 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,-16.5 - parent: 6 - type: Transform - - uid: 4235 - components: - - rot: -1.5707963267948966 rad - pos: -86.5,-16.5 - parent: 6 - type: Transform - - uid: 4236 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,-19.5 - parent: 6 - type: Transform - - uid: 4238 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,-20.5 - parent: 6 - type: Transform - - uid: 4239 - components: - - rot: -1.5707963267948966 rad - pos: -86.5,-17.5 - parent: 6 - type: Transform - - uid: 4267 - components: - - rot: -1.5707963267948966 rad - pos: -86.5,-19.5 - parent: 6 - type: Transform - - uid: 4299 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,-29.5 - parent: 6 - type: Transform - - uid: 4300 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,-31.5 - parent: 6 - type: Transform - - uid: 5542 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,-17.5 - parent: 6 - type: Transform - - uid: 5544 - components: - - rot: -1.5707963267948966 rad - pos: -86.5,-29.5 - parent: 6 - type: Transform - - uid: 5548 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,-21.5 - parent: 6 - type: Transform - - uid: 7909 - components: - - rot: -1.5707963267948966 rad - pos: -86.5,-20.5 - parent: 6 - type: Transform - - uid: 7910 - components: - - rot: -1.5707963267948966 rad - pos: -86.5,-21.5 - parent: 6 - type: Transform - - uid: 7911 - components: - - rot: -1.5707963267948966 rad - pos: -86.5,-22.5 - parent: 6 - type: Transform - - uid: 7912 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,-30.5 - parent: 6 - type: Transform - - uid: 7919 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,-32.5 - parent: 6 - type: Transform - - uid: 7920 - components: - - rot: -1.5707963267948966 rad - pos: -86.5,-26.5 - parent: 6 - type: Transform - - uid: 7921 - components: - - rot: -1.5707963267948966 rad - pos: -86.5,-27.5 - parent: 6 - type: Transform - - uid: 7922 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,-26.5 - parent: 6 - type: Transform - - uid: 7923 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,-27.5 - parent: 6 - type: Transform - - uid: 7924 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,-28.5 - parent: 6 - type: Transform - - uid: 7935 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,-22.5 - parent: 6 - type: Transform - - uid: 7937 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,-15.5 - parent: 6 - type: Transform - - uid: 7941 - components: - - rot: -1.5707963267948966 rad - pos: -86.5,-15.5 - parent: 6 - type: Transform - - uid: 7943 - components: - - pos: -82.5,-15.5 - parent: 6 - type: Transform - - uid: 7944 - components: - - pos: -82.5,-16.5 - parent: 6 - type: Transform - - uid: 7945 - components: - - pos: -82.5,-17.5 - parent: 6 - type: Transform - - uid: 7946 - components: - - pos: -82.5,-18.5 - parent: 6 - type: Transform - - uid: 7947 - components: - - pos: -82.5,-19.5 - parent: 6 - type: Transform - - uid: 7948 - components: - - pos: -82.5,-20.5 - parent: 6 - type: Transform - - uid: 7949 - components: - - pos: -82.5,-21.5 - parent: 6 - type: Transform - - uid: 7950 - components: - - pos: -82.5,-22.5 - parent: 6 - type: Transform - - uid: 7951 - components: - - pos: -80.5,-22.5 - parent: 6 - type: Transform - - uid: 7952 - components: - - pos: -80.5,-21.5 - parent: 6 - type: Transform - - uid: 7953 - components: - - pos: -80.5,-20.5 - parent: 6 - type: Transform - - uid: 7954 - components: - - pos: -80.5,-19.5 - parent: 6 - type: Transform - - uid: 7955 - components: - - pos: -80.5,-18.5 - parent: 6 - type: Transform - - uid: 7956 - components: - - pos: -80.5,-17.5 - parent: 6 - type: Transform - - uid: 7957 - components: - - pos: -80.5,-16.5 - parent: 6 - type: Transform - - uid: 7958 - components: - - pos: -80.5,-15.5 - parent: 6 - type: Transform - - uid: 7959 - components: - - pos: -78.5,-15.5 - parent: 6 - type: Transform - - uid: 7960 - components: - - pos: -78.5,-16.5 - parent: 6 - type: Transform - - uid: 7961 - components: - - pos: -78.5,-17.5 - parent: 6 - type: Transform - - uid: 7962 - components: - - pos: -78.5,-18.5 - parent: 6 - type: Transform - - uid: 7963 - components: - - pos: -78.5,-19.5 - parent: 6 - type: Transform - - uid: 7964 - components: - - pos: -78.5,-20.5 - parent: 6 - type: Transform - - uid: 7965 - components: - - pos: -78.5,-21.5 - parent: 6 - type: Transform - - uid: 7966 - components: - - pos: -78.5,-22.5 - parent: 6 - type: Transform - - uid: 7967 - components: - - pos: -76.5,-22.5 - parent: 6 - type: Transform - - uid: 7968 - components: - - pos: -76.5,-21.5 - parent: 6 - type: Transform - - uid: 7969 - components: - - pos: -76.5,-20.5 - parent: 6 - type: Transform - - uid: 7970 - components: - - pos: -76.5,-19.5 - parent: 6 - type: Transform - - uid: 7971 - components: - - pos: -76.5,-18.5 - parent: 6 - type: Transform - - uid: 7972 - components: - - pos: -76.5,-17.5 - parent: 6 - type: Transform - - uid: 7973 - components: - - pos: -76.5,-16.5 - parent: 6 - type: Transform - - uid: 7974 - components: - - pos: -76.5,-15.5 - parent: 6 - type: Transform - - uid: 7976 - components: - - pos: -82.5,-26.5 - parent: 6 - type: Transform - - uid: 7977 - components: - - pos: -82.5,-27.5 - parent: 6 - type: Transform - - uid: 7978 - components: - - pos: -82.5,-28.5 - parent: 6 - type: Transform - - uid: 7979 - components: - - pos: -82.5,-29.5 - parent: 6 - type: Transform - - uid: 7980 - components: - - pos: -82.5,-30.5 - parent: 6 - type: Transform - - uid: 7981 - components: - - pos: -82.5,-31.5 - parent: 6 - type: Transform - - uid: 7982 - components: - - pos: -82.5,-32.5 - parent: 6 - type: Transform - - uid: 7983 - components: - - pos: -80.5,-32.5 - parent: 6 - type: Transform - - uid: 7984 - components: - - pos: -80.5,-31.5 - parent: 6 - type: Transform - - uid: 7985 - components: - - pos: -80.5,-30.5 - parent: 6 - type: Transform - - uid: 7986 - components: - - pos: -80.5,-29.5 - parent: 6 - type: Transform - - uid: 7987 - components: - - pos: -80.5,-28.5 - parent: 6 - type: Transform - - uid: 7988 - components: - - pos: -80.5,-27.5 - parent: 6 - type: Transform - - uid: 7989 - components: - - pos: -80.5,-26.5 - parent: 6 - type: Transform - - uid: 7991 - components: - - pos: -78.5,-32.5 - parent: 6 - type: Transform - - uid: 7992 - components: - - pos: -78.5,-31.5 - parent: 6 - type: Transform - - uid: 7993 - components: - - pos: -78.5,-30.5 - parent: 6 - type: Transform - - uid: 7994 - components: - - pos: -78.5,-29.5 - parent: 6 - type: Transform - - uid: 7995 - components: - - pos: -78.5,-28.5 - parent: 6 - type: Transform - - uid: 7996 - components: - - pos: -78.5,-27.5 - parent: 6 - type: Transform - - uid: 7997 - components: - - pos: -78.5,-26.5 - parent: 6 - type: Transform - - uid: 7999 - components: - - pos: -76.5,-32.5 - parent: 6 - type: Transform - - uid: 8000 - components: - - pos: -76.5,-31.5 - parent: 6 - type: Transform - - uid: 8001 - components: - - pos: -76.5,-30.5 - parent: 6 - type: Transform - - uid: 8002 - components: - - pos: -76.5,-29.5 - parent: 6 - type: Transform - - uid: 8003 - components: - - pos: -76.5,-28.5 - parent: 6 - type: Transform - - uid: 8004 - components: - - pos: -76.5,-27.5 - parent: 6 - type: Transform - - uid: 8005 - components: - - pos: -76.5,-26.5 - parent: 6 - type: Transform - - uid: 8007 - components: - - pos: -72.5,-32.5 - parent: 6 - type: Transform - - uid: 8008 - components: - - pos: -72.5,-31.5 - parent: 6 - type: Transform - - uid: 8009 - components: - - pos: -72.5,-30.5 - parent: 6 - type: Transform - - uid: 8010 - components: - - pos: -72.5,-29.5 - parent: 6 - type: Transform - - uid: 8011 - components: - - pos: -72.5,-28.5 - parent: 6 - type: Transform - - uid: 8012 - components: - - pos: -72.5,-27.5 - parent: 6 - type: Transform - - uid: 8013 - components: - - pos: -72.5,-26.5 - parent: 6 - type: Transform - - uid: 8015 - components: - - pos: -74.5,-32.5 - parent: 6 - type: Transform - - uid: 8016 - components: - - pos: -74.5,-31.5 - parent: 6 - type: Transform - - uid: 8017 - components: - - pos: -74.5,-30.5 - parent: 6 - type: Transform - - uid: 8018 - components: - - pos: -74.5,-29.5 - parent: 6 - type: Transform - - uid: 8019 - components: - - pos: -74.5,-28.5 - parent: 6 - type: Transform - - uid: 8020 - components: - - pos: -74.5,-27.5 - parent: 6 - type: Transform - - uid: 8021 - components: - - pos: -74.5,-26.5 - parent: 6 - type: Transform - - uid: 8082 - components: - - pos: -19.5,28.5 - parent: 6 - type: Transform - - uid: 8083 - components: - - pos: -18.5,28.5 - parent: 6 - type: Transform - - uid: 8084 - components: - - pos: -17.5,28.5 - parent: 6 - type: Transform - - uid: 8085 - components: - - pos: -16.5,28.5 - parent: 6 - type: Transform - - uid: 8086 - components: - - pos: -15.5,28.5 - parent: 6 - type: Transform - - uid: 8088 - components: - - pos: -11.5,28.5 - parent: 6 - type: Transform - - uid: 8089 - components: - - pos: -10.5,28.5 - parent: 6 - type: Transform - - uid: 8090 - components: - - pos: -9.5,28.5 - parent: 6 - type: Transform - - uid: 8091 - components: - - pos: -8.5,28.5 - parent: 6 - type: Transform - - uid: 8092 - components: - - pos: -7.5,28.5 - parent: 6 - type: Transform - - uid: 8093 - components: - - pos: -6.5,28.5 - parent: 6 - type: Transform - - uid: 8094 - components: - - pos: -11.5,26.5 - parent: 6 - type: Transform - - uid: 8095 - components: - - pos: -10.5,26.5 - parent: 6 - type: Transform - - uid: 8096 - components: - - pos: -9.5,26.5 - parent: 6 - type: Transform - - uid: 8097 - components: - - pos: -8.5,26.5 - parent: 6 - type: Transform - - uid: 8098 - components: - - pos: -7.5,26.5 - parent: 6 - type: Transform - - uid: 8099 - components: - - pos: -6.5,26.5 - parent: 6 - type: Transform - - uid: 8100 - components: - - pos: -11.5,24.5 - parent: 6 - type: Transform - - uid: 8101 - components: - - pos: -10.5,24.5 - parent: 6 - type: Transform - - uid: 8102 - components: - - pos: -9.5,24.5 - parent: 6 - type: Transform - - uid: 8103 - components: - - pos: -8.5,24.5 - parent: 6 - type: Transform - - uid: 8104 - components: - - pos: -7.5,24.5 - parent: 6 - type: Transform - - uid: 8105 - components: - - pos: -6.5,24.5 - parent: 6 - type: Transform - - uid: 8106 - components: - - pos: -11.5,22.5 - parent: 6 - type: Transform - - uid: 8107 - components: - - pos: -10.5,22.5 - parent: 6 - type: Transform - - uid: 8108 - components: - - pos: -9.5,22.5 - parent: 6 - type: Transform - - uid: 8109 - components: - - pos: -8.5,22.5 - parent: 6 - type: Transform - - uid: 8110 - components: - - pos: -7.5,22.5 - parent: 6 - type: Transform - - uid: 8111 - components: - - pos: -6.5,22.5 - parent: 6 - type: Transform - - uid: 8112 - components: - - pos: -11.5,20.5 - parent: 6 - type: Transform - - uid: 8113 - components: - - pos: -10.5,20.5 - parent: 6 - type: Transform - - uid: 8114 - components: - - pos: -9.5,20.5 - parent: 6 - type: Transform - - uid: 8115 - components: - - pos: -8.5,20.5 - parent: 6 - type: Transform - - uid: 8116 - components: - - pos: -7.5,20.5 - parent: 6 - type: Transform - - uid: 8117 - components: - - pos: -6.5,20.5 - parent: 6 - type: Transform - - uid: 8118 - components: - - pos: -11.5,18.5 - parent: 6 - type: Transform - - uid: 8119 - components: - - pos: -10.5,18.5 - parent: 6 - type: Transform - - uid: 8120 - components: - - pos: -9.5,18.5 - parent: 6 - type: Transform - - uid: 8121 - components: - - pos: -8.5,18.5 - parent: 6 - type: Transform - - uid: 8122 - components: - - pos: -7.5,18.5 - parent: 6 - type: Transform - - uid: 8123 - components: - - pos: -6.5,18.5 - parent: 6 - type: Transform - - uid: 8125 - components: - - pos: -15.5,26.5 - parent: 6 - type: Transform - - uid: 8126 - components: - - pos: -16.5,26.5 - parent: 6 - type: Transform - - uid: 8127 - components: - - pos: -17.5,26.5 - parent: 6 - type: Transform - - uid: 8128 - components: - - pos: -18.5,26.5 - parent: 6 - type: Transform - - uid: 8129 - components: - - pos: -19.5,26.5 - parent: 6 - type: Transform - - uid: 8260 - components: - - rot: 3.141592653589793 rad - pos: -5.5,32.5 - parent: 6 - type: Transform - - uid: 8263 - components: - - rot: 3.141592653589793 rad - pos: -5.5,36.5 - parent: 6 - type: Transform - - uid: 8264 - components: - - rot: 3.141592653589793 rad - pos: -4.5,36.5 - parent: 6 - type: Transform - - uid: 8265 - components: - - rot: 3.141592653589793 rad - pos: -5.5,34.5 - parent: 6 - type: Transform - - uid: 9498 - components: - - rot: -1.5707963267948966 rad - pos: -84.5,-18.5 - parent: 6 - type: Transform - - uid: 13759 - components: - - rot: -1.5707963267948966 rad - pos: -86.5,-28.5 - parent: 6 - type: Transform - - uid: 13770 - components: - - rot: -1.5707963267948966 rad - pos: -86.5,-30.5 - parent: 6 - type: Transform - - uid: 13771 - components: - - rot: -1.5707963267948966 rad - pos: -86.5,-31.5 - parent: 6 - type: Transform - - uid: 13772 - components: - - rot: -1.5707963267948966 rad - pos: -86.5,-32.5 - parent: 6 - type: Transform - - uid: 13909 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,30.5 - parent: 6 - type: Transform - - uid: 13910 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,30.5 - parent: 6 - type: Transform - - uid: 13911 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,30.5 - parent: 6 - type: Transform - - uid: 13912 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,30.5 - parent: 6 - type: Transform - - uid: 13913 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,30.5 - parent: 6 - type: Transform - - uid: 13914 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,30.5 - parent: 6 - type: Transform - - uid: 13915 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,32.5 - parent: 6 - type: Transform - - uid: 13916 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,32.5 - parent: 6 - type: Transform - - uid: 13917 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,32.5 - parent: 6 - type: Transform - - uid: 13918 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,32.5 - parent: 6 - type: Transform - - uid: 13919 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,32.5 - parent: 6 - type: Transform - - uid: 13920 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,32.5 - parent: 6 - type: Transform - - uid: 13921 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,30.5 - parent: 6 - type: Transform - - uid: 13922 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,30.5 - parent: 6 - type: Transform - - uid: 13923 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,30.5 - parent: 6 - type: Transform - - uid: 13924 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,30.5 - parent: 6 - type: Transform - - uid: 13925 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,30.5 - parent: 6 - type: Transform - - uid: 13926 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,32.5 - parent: 6 - type: Transform - - uid: 13927 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,32.5 - parent: 6 - type: Transform - - uid: 13928 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,32.5 - parent: 6 - type: Transform - - uid: 13929 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,32.5 - parent: 6 - type: Transform - - uid: 13930 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,32.5 - parent: 6 - type: Transform - - uid: 13931 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,36.5 - parent: 6 - type: Transform - - uid: 13932 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,36.5 - parent: 6 - type: Transform - - uid: 13933 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,36.5 - parent: 6 - type: Transform - - uid: 13934 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,36.5 - parent: 6 - type: Transform - - uid: 13935 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,36.5 - parent: 6 - type: Transform - - uid: 13936 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,34.5 - parent: 6 - type: Transform - - uid: 13937 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,34.5 - parent: 6 - type: Transform - - uid: 13938 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,34.5 - parent: 6 - type: Transform - - uid: 13939 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,34.5 - parent: 6 - type: Transform - - uid: 13940 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,34.5 - parent: 6 - type: Transform - - uid: 13941 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,34.5 - parent: 6 - type: Transform - - uid: 13942 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,34.5 - parent: 6 - type: Transform - - uid: 13943 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,34.5 - parent: 6 - type: Transform - - uid: 13944 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,34.5 - parent: 6 - type: Transform - - uid: 13945 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,34.5 - parent: 6 - type: Transform - - uid: 13946 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,34.5 - parent: 6 - type: Transform - - uid: 13947 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,36.5 - parent: 6 - type: Transform - - uid: 13948 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,36.5 - parent: 6 - type: Transform - - uid: 13949 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,36.5 - parent: 6 - type: Transform - - uid: 13950 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,36.5 - parent: 6 - type: Transform - - uid: 13951 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,36.5 - parent: 6 - type: Transform - - uid: 13952 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,36.5 - parent: 6 - type: Transform - - uid: 14199 - components: - - rot: 3.141592653589793 rad - pos: -4.5,34.5 - parent: 6 - type: Transform - - uid: 14200 - components: - - rot: 3.141592653589793 rad - pos: -4.5,32.5 - parent: 6 - type: Transform - - uid: 14201 - components: - - rot: 3.141592653589793 rad - pos: -5.5,30.5 - parent: 6 - type: Transform - - uid: 14202 - components: - - rot: 3.141592653589793 rad - pos: -4.5,30.5 - parent: 6 - type: Transform - - uid: 14203 - components: - - rot: 3.141592653589793 rad - pos: -5.5,26.5 - parent: 6 - type: Transform - - uid: 14204 - components: - - rot: 3.141592653589793 rad - pos: -4.5,26.5 - parent: 6 - type: Transform - - uid: 14205 - components: - - rot: 3.141592653589793 rad - pos: -5.5,28.5 - parent: 6 - type: Transform - - uid: 14206 - components: - - rot: 3.141592653589793 rad - pos: -4.5,28.5 - parent: 6 - type: Transform - - uid: 14207 - components: - - rot: 3.141592653589793 rad - pos: -5.5,20.5 - parent: 6 - type: Transform - - uid: 14208 - components: - - rot: 3.141592653589793 rad - pos: -5.5,24.5 - parent: 6 - type: Transform - - uid: 14209 - components: - - rot: 3.141592653589793 rad - pos: -4.5,24.5 - parent: 6 - type: Transform - - uid: 14210 - components: - - rot: 3.141592653589793 rad - pos: -5.5,22.5 - parent: 6 - type: Transform - - uid: 14211 - components: - - rot: 3.141592653589793 rad - pos: -4.5,22.5 - parent: 6 - type: Transform - - uid: 14212 - components: - - rot: 3.141592653589793 rad - pos: -4.5,20.5 - parent: 6 - type: Transform - - uid: 14213 - components: - - rot: 3.141592653589793 rad - pos: -5.5,18.5 - parent: 6 - type: Transform - - uid: 14214 - components: - - rot: 3.141592653589793 rad - pos: -4.5,18.5 - parent: 6 - type: Transform -- proto: SolarTracker - entities: - - uid: 6674 - components: - - pos: -23.5,-84.5 - parent: 6 - type: Transform - - uid: 7226 - components: - - pos: 45.5,-24.5 - parent: 6 - type: Transform - - uid: 8274 - components: - - pos: -13.5,38.5 - parent: 6 - type: Transform - - uid: 13795 - components: - - pos: -88.5,-24.5 - parent: 6 - type: Transform -- proto: SpaceCash - entities: - - uid: 3793 - components: - - pos: -27.952768,-61.67399 - parent: 6 - type: Transform - - uid: 3794 - components: - - pos: -28.119436,-61.36149 - parent: 6 - type: Transform - - uid: 3813 - components: - - pos: -27.640268,-61.25732 - parent: 6 - type: Transform - - uid: 3814 - components: - - pos: -27.6611,-61.44482 - parent: 6 - type: Transform - - uid: 5300 - components: - - pos: 12.706316,-45.443184 - parent: 6 - type: Transform - - uid: 5301 - components: - - pos: 13.061285,-45.343845 - parent: 6 - type: Transform - - uid: 5302 - components: - - pos: 12.535931,-44.36466 - parent: 6 - type: Transform - - uid: 5303 - components: - - pos: 14.523761,-45.201935 - parent: 6 - type: Transform - - uid: 5304 - components: - - pos: 14.327511,-45.418064 - parent: 6 - type: Transform - - uid: 13468 - components: - - pos: -15.57426,-62.759163 - parent: 6 - type: Transform - - uid: 13469 - components: - - pos: -15.347079,-62.603058 - parent: 6 - type: Transform - - uid: 13470 - components: - - pos: -15.290285,-62.305046 - parent: 6 - type: Transform - - uid: 13635 - components: - - pos: 2.6409912,-7.5698776 - parent: 10465 - type: Transform -- proto: SpawnMobAlexander - entities: - - uid: 5257 - components: - - pos: -5.5,-26.5 - parent: 6 - type: Transform -- proto: SpawnMobBandito - entities: - - uid: 13548 - components: - - pos: 10.5,-32.5 - parent: 6 - type: Transform -- proto: SpawnMobBear - entities: - - uid: 13630 - components: - - pos: 10.5,-3.5 - parent: 10465 - type: Transform -- proto: SpawnMobCatException - entities: - - uid: 13549 - components: - - pos: -31.5,13.5 - parent: 6 - type: Transform -- proto: SpawnMobCatFloppa - entities: - - uid: 13633 - components: - - pos: 8.5,-8.5 - parent: 10465 - type: Transform -- proto: SpawnMobCatRuntime - entities: - - uid: 13564 - components: - - pos: -38.5,-17.5 - parent: 6 - type: Transform -- proto: SpawnMobCorgi - entities: - - uid: 5102 - components: - - pos: 2.5,-5.5 - parent: 6 - type: Transform -- proto: SpawnMobDrone - entities: - - uid: 6395 - components: - - pos: -48.5,-24.5 - parent: 6 - type: Transform - - uid: 6396 - components: - - pos: -48.5,-23.5 - parent: 6 - type: Transform -- proto: SpawnMobFoxRenault - entities: - - uid: 13550 - components: - - pos: -7.5,0.5 - parent: 6 - type: Transform -- proto: SpawnMobHamsterHamlet - entities: - - uid: 14062 - components: - - pos: -8.5,10.5 - parent: 6 - type: Transform -- proto: SpawnMobMcGriff - entities: - - uid: 13551 - components: - - pos: 16.5,-0.5 - parent: 6 - type: Transform -- proto: SpawnMobMouse - entities: - - uid: 49 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 6 - type: Transform - - uid: 13553 - components: - - pos: -16.5,7.5 - parent: 6 - type: Transform - - uid: 13554 - components: - - pos: -41.5,-1.5 - parent: 6 - type: Transform - - uid: 13555 - components: - - pos: -53.5,-18.5 - parent: 6 - type: Transform - - uid: 13556 - components: - - pos: -49.5,-38.5 - parent: 6 - type: Transform - - uid: 13557 - components: - - pos: -43.5,-54.5 - parent: 6 - type: Transform - - uid: 13558 - components: - - pos: -4.5,-72.5 - parent: 6 - type: Transform - - uid: 13559 - components: - - pos: 16.5,-46.5 - parent: 6 - type: Transform - - uid: 13560 - components: - - pos: 23.5,-1.5 - parent: 6 - type: Transform -- proto: SpawnMobPossumMorty - entities: - - uid: 3647 - components: - - pos: -29.5,-25.5 - parent: 6 - type: Transform -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 13563 - components: - - pos: -42.5,-51.5 - parent: 6 - type: Transform -- proto: SpawnMobSlothPaperwork - entities: - - uid: 13565 - components: - - pos: -22.5,-38.5 - parent: 6 - type: Transform -- proto: SpawnMobWalter - entities: - - uid: 13566 - components: - - pos: -23.5,-17.5 - parent: 6 - type: Transform -- proto: SpawnPointAssistant - entities: - - uid: 4568 - components: - - pos: -46.5,-40.5 - parent: 6 - type: Transform - - uid: 4569 - components: - - pos: -39.5,-40.5 - parent: 6 - type: Transform - - uid: 4570 - components: - - pos: -39.5,-34.5 - parent: 6 - type: Transform - - uid: 4571 - components: - - pos: -46.5,-34.5 - parent: 6 - type: Transform - - uid: 4572 - components: - - pos: -46.5,-30.5 - parent: 6 - type: Transform - - uid: 4573 - components: - - pos: -39.5,-30.5 - parent: 6 - type: Transform -- proto: SpawnPointAtmos - entities: - - uid: 4549 - components: - - pos: -37.5,-8.5 - parent: 6 - type: Transform - - uid: 4550 - components: - - pos: -37.5,-7.5 - parent: 6 - type: Transform -- proto: SpawnPointBartender - entities: - - uid: 4631 - components: - - pos: -3.5,-16.5 - parent: 6 - type: Transform -- proto: SpawnPointBotanist - entities: - - uid: 4565 - components: - - pos: -9.5,-17.5 - parent: 6 - type: Transform - - uid: 4566 - components: - - pos: -9.5,-16.5 - parent: 6 - type: Transform -- proto: SpawnPointCaptain - entities: - - uid: 4593 - components: - - pos: -0.5,0.5 - parent: 6 - type: Transform -- proto: SpawnPointCargoTechnician - entities: - - uid: 4583 - components: - - pos: 12.5,-41.5 - parent: 6 - type: Transform - - uid: 4584 - components: - - pos: 13.5,-41.5 - parent: 6 - type: Transform -- proto: SpawnPointChaplain - entities: - - uid: 5879 - components: - - pos: -27.5,-48.5 - parent: 6 - type: Transform -- proto: SpawnPointChef - entities: - - uid: 4563 - components: - - pos: -7.5,-25.5 - parent: 6 - type: Transform - - uid: 4564 - components: - - pos: -8.5,-25.5 - parent: 6 - type: Transform -- proto: SpawnPointChemist - entities: - - uid: 4554 - components: - - pos: -26.5,-17.5 - parent: 6 - type: Transform - - uid: 4555 - components: - - pos: -25.5,-17.5 - parent: 6 - type: Transform -- proto: SpawnPointChiefEngineer - entities: - - uid: 4594 - components: - - pos: -1.5,0.5 - parent: 6 - type: Transform -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 3023 - components: - - pos: -2.5,-0.5 - parent: 6 - type: Transform -- proto: SpawnPointClown - entities: - - uid: 4581 - components: - - pos: 17.5,-28.5 - parent: 6 - type: Transform -- proto: SpawnPointDetective - entities: - - uid: 4582 - components: - - pos: -51.5,-49.5 - parent: 6 - type: Transform -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 4596 - components: - - pos: 0.5,0.5 - parent: 6 - type: Transform -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 4597 - components: - - pos: -1.5,-2.5 - parent: 6 - type: Transform -- proto: SpawnPointJanitor - entities: - - uid: 4586 - components: - - pos: 27.5,4.5 - parent: 6 - type: Transform -- proto: SpawnPointLatejoin - entities: - - uid: 653 - components: - - pos: 35.5,-10.5 - parent: 6 - type: Transform - - uid: 654 - components: - - pos: 36.5,-10.5 - parent: 6 - type: Transform - - uid: 655 - components: - - pos: 38.5,-10.5 - parent: 6 - type: Transform - - uid: 656 - components: - - pos: 39.5,-10.5 - parent: 6 - type: Transform -- proto: SpawnPointLawyer - entities: - - uid: 4587 - components: - - pos: 9.5,-15.5 - parent: 6 - type: Transform -- proto: SpawnPointLibrarian - entities: - - uid: 4560 - components: - - pos: -21.5,-41.5 - parent: 6 - type: Transform -- proto: SpawnPointMedicalDoctor - entities: - - uid: 934 - components: - - pos: -18.5,-26.5 - parent: 6 - type: Transform - - uid: 935 - components: - - pos: -19.5,-26.5 - parent: 6 - type: Transform -- proto: SpawnPointMedicalIntern - entities: - - uid: 4556 - components: - - pos: -17.5,-22.5 - parent: 6 - type: Transform - - uid: 4557 - components: - - pos: -18.5,-22.5 - parent: 6 - type: Transform -- proto: SpawnPointMime - entities: - - uid: 4580 - components: - - pos: 15.5,-28.5 - parent: 6 - type: Transform -- proto: SpawnPointMusician - entities: - - uid: 4579 - components: - - pos: 16.5,-28.5 - parent: 6 - type: Transform -- proto: SpawnPointObserver - entities: - - uid: 4606 - components: - - pos: -5.5,-11.5 - parent: 6 - type: Transform -- proto: SpawnPointQuartermaster - entities: - - uid: 4598 - components: - - pos: -0.5,-2.5 - parent: 6 - type: Transform -- proto: SpawnPointResearchAssistant - entities: - - uid: 3966 - components: - - pos: -11.5,-50.5 - parent: 6 - type: Transform - - uid: 4576 - components: - - pos: -11.5,-51.5 - parent: 6 - type: Transform -- proto: SpawnPointResearchDirector - entities: - - uid: 4599 - components: - - pos: 0.5,-2.5 - parent: 6 - type: Transform -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 4577 - components: - - pos: 3.5,-49.5 - parent: 6 - type: Transform - - uid: 4578 - components: - - pos: 3.5,-50.5 - parent: 6 - type: Transform -- proto: SpawnPointScientist - entities: - - uid: 4574 - components: - - pos: -3.5,-55.5 - parent: 6 - type: Transform - - uid: 4575 - components: - - pos: -2.5,-55.5 - parent: 6 - type: Transform -- proto: SpawnPointSecurityCadet - entities: - - uid: 3412 - components: - - pos: 13.5,1.5 - parent: 6 - type: Transform - - uid: 4705 - components: - - pos: 13.5,0.5 - parent: 6 - type: Transform -- proto: SpawnPointSecurityOfficer - entities: - - uid: 3474 - components: - - pos: 19.5,-7.5 - parent: 6 - type: Transform - - uid: 3475 - components: - - pos: 18.5,-7.5 - parent: 6 - type: Transform -- proto: SpawnPointServiceWorker - entities: - - uid: 4567 - components: - - pos: -9.5,-25.5 - parent: 6 - type: Transform -- proto: SpawnPointStationEngineer - entities: - - uid: 4548 - components: - - pos: -37.5,-6.5 - parent: 6 - type: Transform - - uid: 4551 - components: - - pos: -37.5,-5.5 - parent: 6 - type: Transform -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 4552 - components: - - pos: -26.5,-7.5 - parent: 6 - type: Transform - - uid: 4553 - components: - - pos: -27.5,-7.5 - parent: 6 - type: Transform -- proto: SpawnPointWarden - entities: - - uid: 3424 - components: - - pos: 17.5,-0.5 - parent: 6 - type: Transform -- proto: SpawnVehicleATV - entities: - - uid: 3286 - components: - - pos: -22.5,24.5 - parent: 6 - type: Transform -- proto: SpawnVehicleJanicart - entities: - - uid: 5111 - components: - - pos: 26.5,3.5 - parent: 6 - type: Transform -- proto: SpawnVendingMachineRestockFoodDrink - entities: - - uid: 3666 - components: - - pos: 15.5,-24.5 - parent: 6 - type: Transform - - uid: 4420 - components: - - pos: 0.5,-59.5 - parent: 6 - type: Transform - - uid: 5188 - components: - - pos: 16.5,-36.5 - parent: 6 - type: Transform - - uid: 5255 - components: - - pos: 14.5,-44.5 - parent: 6 - type: Transform - - uid: 5256 - components: - - pos: 19.5,-40.5 - parent: 6 - type: Transform - - uid: 5646 - components: - - pos: 10.5,12.5 - parent: 6 - type: Transform -- proto: Spear - entities: - - uid: 5969 - components: - - pos: -26.3551,-55.833397 - parent: 6 - type: Transform - - uid: 13758 - components: - - pos: 0.8338318,6.6614532 - parent: 13645 - type: Transform -- proto: SprayBottleSpaceCleaner - entities: - - uid: 7641 - components: - - pos: 27.517736,3.6393416 - parent: 6 - type: Transform -- proto: StasisBedMachineCircuitboard - entities: - - uid: 5642 - components: - - pos: -36.498703,-18.43537 - parent: 6 - type: Transform -- proto: Stool - entities: - - uid: 4417 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-24.5 - parent: 6 - type: Transform - - uid: 5731 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-5.5 - parent: 6 - type: Transform - - uid: 5732 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-5.5 - parent: 6 - type: Transform - - uid: 5733 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-7.5 - parent: 6 - type: Transform - - uid: 5734 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-7.5 - parent: 6 - type: Transform - - uid: 5890 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-56.5 - parent: 6 - type: Transform - - uid: 7602 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-53.5 - parent: 6 - type: Transform -- proto: StoolBar - entities: - - uid: 4621 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-14.5 - parent: 6 - type: Transform - - uid: 4622 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-15.5 - parent: 6 - type: Transform - - uid: 4623 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-16.5 - parent: 6 - type: Transform - - uid: 4624 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-17.5 - parent: 6 - type: Transform - - uid: 4625 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-19.5 - parent: 6 - type: Transform - - uid: 4626 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-19.5 - parent: 6 - type: Transform - - uid: 4627 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-19.5 - parent: 6 - type: Transform - - uid: 6766 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-50.5 - parent: 6 - type: Transform - - uid: 6767 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-51.5 - parent: 6 - type: Transform - - uid: 6768 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-53.5 - parent: 6 - type: Transform -- proto: StorageCanister - entities: - - uid: 3467 - components: - - pos: -43.5,19.5 - parent: 6 - type: Transform - - uid: 4858 - components: - - pos: -33.5,16.5 - parent: 6 - type: Transform - - uid: 4859 - components: - - pos: -33.5,15.5 - parent: 6 - type: Transform - - uid: 4860 - components: - - pos: -33.5,14.5 - parent: 6 - type: Transform - - uid: 6097 - components: - - pos: -4.5,-75.5 - parent: 6 - type: Transform -- proto: SubstationBasic - entities: - - uid: 98 - components: - - pos: -10.5,-1.5 - parent: 6 - type: Transform - - uid: 323 - components: - - pos: 22.5,-4.5 - parent: 6 - type: Transform - - uid: 3758 - components: - - pos: -17.5,-58.5 - parent: 6 - type: Transform - - uid: 5030 - components: - - pos: -25.5,-3.5 - parent: 6 - type: Transform - - uid: 5031 - components: - - pos: -24.5,-3.5 - parent: 6 - type: Transform - - uid: 5308 - components: - - pos: 8.5,-42.5 - parent: 6 - type: Transform - - uid: 5843 - components: - - pos: -32.5,-31.5 - parent: 6 - type: Transform - - uid: 8288 - components: - - pos: -37.5,-56.5 - parent: 6 - type: Transform - - uid: 10209 - components: - - pos: -56.5,-47.5 - parent: 6 - type: Transform -- proto: SubstationMachineCircuitboard - entities: - - uid: 6369 - components: - - pos: -34.263165,-4.361941 - parent: 6 - type: Transform - - uid: 6415 - components: - - pos: -46.526028,-23.869167 - parent: 6 - type: Transform - - uid: 13399 - components: - - pos: 28.38439,-2.2716935 - parent: 6 - type: Transform -- proto: SurveillanceCameraCommand - entities: - - uid: 13475 - components: - - rot: 3.141592653589793 rad - pos: -26.5,4.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - type: SurveillanceCamera - - uid: 13491 - components: - - rot: 3.141592653589793 rad - pos: -20.5,4.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - type: SurveillanceCamera - - uid: 13492 - components: - - pos: -2.5,6.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge - type: SurveillanceCamera - - uid: 13493 - components: - - rot: 3.141592653589793 rad - pos: -2.5,1.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conf. Room - type: SurveillanceCamera - - uid: 13494 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-5.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP - type: SurveillanceCamera - - uid: 13505 - components: - - pos: -46.5,-17.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: EVA - type: SurveillanceCamera -- proto: SurveillanceCameraEngineering - entities: - - uid: 13516 - components: - - rot: 3.141592653589793 rad - pos: -37.5,4.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME Room - type: SurveillanceCamera - - uid: 13517 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,15.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics - type: SurveillanceCamera - - uid: 13518 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-5.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Reception - type: SurveillanceCamera - - uid: 13519 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-2.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - type: SurveillanceCamera -- proto: SurveillanceCameraGeneral - entities: - - uid: 6779 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-19.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Botany - type: SurveillanceCamera - - uid: 13495 - components: - - pos: 15.5,-37.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Cargo - type: SurveillanceCamera - - uid: 13496 - components: - - pos: -4.5,-39.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: HoloDeck - type: SurveillanceCamera - - uid: 13497 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-49.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Salvage - type: SurveillanceCamera - - uid: 13498 - components: - - pos: -0.5,-26.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Cafeteria - type: SurveillanceCamera - - uid: 13499 - components: - - pos: 15.5,-19.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Courtroom - type: SurveillanceCamera - - uid: 13500 - components: - - pos: -23.5,-22.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Medbay - type: SurveillanceCamera - - uid: 13501 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-28.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Ward - type: SurveillanceCamera - - uid: 13504 - components: - - pos: -51.5,-19.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Laundry Room - type: SurveillanceCamera - - uid: 13506 - components: - - pos: -60.5,-14.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evac - type: SurveillanceCamera - - uid: 13507 - components: - - pos: -42.5,-45.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorm Halls - type: SurveillanceCamera - - uid: 13508 - components: - - pos: -33.5,-56.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Chapel - type: SurveillanceCamera - - uid: 13513 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-37.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - type: SurveillanceCamera - - uid: 13515 - components: - - pos: 34.5,-12.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals - type: SurveillanceCamera - - uid: 13525 - components: - - rot: 3.141592653589793 rad - pos: -53.5,-31.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Disposals - type: SurveillanceCamera -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 3579 - components: - - pos: -24.5,4.5 - parent: 6 - type: Transform -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 11100 - components: - - pos: -22.5,-3.5 - parent: 6 - type: Transform -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 3581 - components: - - pos: -24.5,2.5 - parent: 6 - type: Transform -- proto: SurveillanceCameraRouterScience - entities: - - uid: 5259 - components: - - pos: -10.5,-76.5 - parent: 6 - type: Transform -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 3580 - components: - - pos: -24.5,3.5 - parent: 6 - type: Transform -- proto: SurveillanceCameraScience - entities: - - uid: 13509 - components: - - pos: -9.5,-56.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Sci Lobby - type: SurveillanceCamera - - uid: 13510 - components: - - pos: -16.5,-53.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics - type: SurveillanceCamera - - uid: 13511 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-72.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Xeno-Arch Lab - type: SurveillanceCamera - - uid: 13512 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-75.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Server Room - type: SurveillanceCamera -- proto: SurveillanceCameraSecurity - entities: - - uid: 13520 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-6.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Entrance - type: SurveillanceCamera - - uid: 13521 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-1.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Lobby - type: SurveillanceCamera - - uid: 13522 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,6.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - type: SurveillanceCamera - - uid: 13523 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,8.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig Transfer - type: SurveillanceCamera - - uid: 13524 - components: - - rot: 3.141592653589793 rad - pos: 13.5,20.5 - parent: 6 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: PermaBrig - type: SurveillanceCamera -- proto: SurveillanceWirelessCameraMovableEntertainment - entities: - - uid: 4415 - components: - - pos: 11.5,-21.5 - parent: 6 - type: Transform -- proto: Syringe - entities: - - uid: 6174 - components: - - pos: -23.55523,-14.431532 - parent: 6 - type: Transform -- proto: SyringeEphedrine - entities: - - uid: 13486 - components: - - pos: 18.653149,25.335108 - parent: 6 - type: Transform -- proto: SyringeSpaceacillin - entities: - - uid: 6445 - components: - - pos: -26.205353,-27.399559 - parent: 6 - type: Transform -- proto: Table - entities: - - uid: 2138 - components: - - pos: -47.5,-31.5 - parent: 6 - type: Transform - - uid: 3324 - components: - - pos: -32.5,22.5 - parent: 6 - type: Transform - - uid: 3785 - components: - - pos: -34.5,-61.5 - parent: 6 - type: Transform - - uid: 3786 - components: - - pos: -34.5,-62.5 - parent: 6 - type: Transform - - uid: 3802 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-57.5 - parent: 6 - type: Transform - - uid: 4446 - components: - - pos: -52.5,-16.5 - parent: 6 - type: Transform - - uid: 4447 - components: - - pos: -52.5,-17.5 - parent: 6 - type: Transform - - uid: 4448 - components: - - pos: -51.5,-16.5 - parent: 6 - type: Transform - - uid: 4449 - components: - - pos: -51.5,-17.5 - parent: 6 - type: Transform - - uid: 4911 - components: - - rot: 3.141592653589793 rad - pos: -37.5,22.5 - parent: 6 - type: Transform - - uid: 4912 - components: - - rot: 3.141592653589793 rad - pos: -36.5,22.5 - parent: 6 - type: Transform - - uid: 5044 - components: - - pos: -32.5,21.5 - parent: 6 - type: Transform - - uid: 5492 - components: - - pos: -32.5,-34.5 - parent: 6 - type: Transform - - uid: 5512 - components: - - pos: -52.5,-19.5 - parent: 6 - type: Transform - - uid: 5992 - components: - - pos: 17.5,21.5 - parent: 6 - type: Transform - - uid: 5993 - components: - - pos: 16.5,21.5 - parent: 6 - type: Transform - - uid: 5994 - components: - - pos: 15.5,19.5 - parent: 6 - type: Transform - - uid: 5995 - components: - - pos: 14.5,19.5 - parent: 6 - type: Transform - - uid: 6207 - components: - - pos: -38.5,-31.5 - parent: 6 - type: Transform - - uid: 6208 - components: - - pos: -39.5,-31.5 - parent: 6 - type: Transform - - uid: 6212 - components: - - pos: -38.5,-33.5 - parent: 6 - type: Transform - - uid: 6214 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-33.5 - parent: 6 - type: Transform - - uid: 6215 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-33.5 - parent: 6 - type: Transform - - uid: 6222 - components: - - pos: -40.5,-41.5 - parent: 6 - type: Transform - - uid: 6238 - components: - - pos: -47.5,-39.5 - parent: 6 - type: Transform - - uid: 8482 - components: - - pos: -7.5,-31.5 - parent: 6 - type: Transform - - uid: 8486 - components: - - pos: -4.5,-30.5 - parent: 6 - type: Transform - - uid: 9711 - components: - - pos: -1.5,-31.5 - parent: 6 - type: Transform - - uid: 10750 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-4.5 - parent: 6 - type: Transform - - uid: 10883 - components: - - pos: 21.5,12.5 - parent: 6 - type: Transform - - uid: 10894 - components: - - pos: 10.5,12.5 - parent: 6 - type: Transform - - uid: 10902 - components: - - pos: 22.5,-0.5 - parent: 6 - type: Transform - - uid: 10916 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-22.5 - parent: 6 - type: Transform - - uid: 10919 - components: - - pos: 18.5,-32.5 - parent: 6 - type: Transform - - uid: 10939 - components: - - pos: -24.5,-58.5 - parent: 6 - type: Transform - - uid: 10988 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-31.5 - parent: 6 - type: Transform - - uid: 10997 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-37.5 - parent: 6 - type: Transform - - uid: 11012 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-19.5 - parent: 6 - type: Transform - - uid: 11038 - components: - - pos: -40.5,-0.5 - parent: 6 - type: Transform - - uid: 11054 - components: - - pos: -12.5,-7.5 - parent: 6 - type: Transform - - uid: 14082 - components: - - pos: 11.5,20.5 - parent: 6 - type: Transform -- proto: TableCarpet - entities: - - uid: 5288 - components: - - pos: 12.5,-44.5 - parent: 6 - type: Transform - - uid: 5289 - components: - - pos: 12.5,-45.5 - parent: 6 - type: Transform - - uid: 5290 - components: - - pos: 13.5,-45.5 - parent: 6 - type: Transform - - uid: 5291 - components: - - pos: 14.5,-45.5 - parent: 6 - type: Transform - - uid: 5292 - components: - - pos: 14.5,-44.5 - parent: 6 - type: Transform -- proto: TableGlass - entities: - - uid: 267 - components: - - pos: 8.5,-18.5 - parent: 6 - type: Transform - - uid: 874 - components: - - pos: -26.5,-27.5 - parent: 6 - type: Transform - - uid: 887 - components: - - pos: -25.5,-27.5 - parent: 6 - type: Transform - - uid: 919 - components: - - pos: -26.5,-26.5 - parent: 6 - type: Transform - - uid: 3399 - components: - - pos: -8.5,-18.5 - parent: 6 - type: Transform - - uid: 4419 - components: - - pos: -28.5,-54.5 - parent: 6 - type: Transform - - uid: 4436 - components: - - pos: -47.5,-16.5 - parent: 6 - type: Transform - - uid: 4559 - components: - - pos: -34.5,-14.5 - parent: 6 - type: Transform - - uid: 4562 - components: - - pos: -32.5,-14.5 - parent: 6 - type: Transform - - uid: 4588 - components: - - pos: -33.5,-14.5 - parent: 6 - type: Transform - - uid: 4648 - components: - - pos: -30.5,-25.5 - parent: 6 - type: Transform - - uid: 4649 - components: - - pos: -30.5,-26.5 - parent: 6 - type: Transform - - uid: 4654 - components: - - pos: -37.5,-18.5 - parent: 6 - type: Transform - - uid: 4655 - components: - - pos: -36.5,-18.5 - parent: 6 - type: Transform - - uid: 4803 - components: - - pos: -23.5,-14.5 - parent: 6 - type: Transform - - uid: 4806 - components: - - pos: -22.5,-17.5 - parent: 6 - type: Transform - - uid: 4807 - components: - - pos: -26.5,-14.5 - parent: 6 - type: Transform - - uid: 4808 - components: - - pos: -26.5,-15.5 - parent: 6 - type: Transform - - uid: 5062 - components: - - pos: -21.5,-4.5 - parent: 6 - type: Transform - - uid: 5133 - components: - - pos: -10.5,-9.5 - parent: 6 - type: Transform - - uid: 5216 - components: - - pos: 7.5,6.5 - parent: 6 - type: Transform - - uid: 5355 - components: - - pos: -2.5,-51.5 - parent: 6 - type: Transform - - uid: 5584 - components: - - pos: 14.5,-42.5 - parent: 6 - type: Transform - - uid: 5585 - components: - - pos: 13.5,-42.5 - parent: 6 - type: Transform - - uid: 5586 - components: - - pos: 12.5,-42.5 - parent: 6 - type: Transform - - uid: 5587 - components: - - pos: 11.5,-42.5 - parent: 6 - type: Transform - - uid: 5898 - components: - - pos: -1.5,-46.5 - parent: 6 - type: Transform - - uid: 6198 - components: - - pos: -21.5,-5.5 - parent: 6 - type: Transform - - uid: 6419 - components: - - pos: -28.5,-14.5 - parent: 6 - type: Transform - - uid: 7363 - components: - - pos: -39.5,-20.5 - parent: 6 - type: Transform - - uid: 8394 - components: - - pos: 44.5,-1.5 - parent: 6 - type: Transform - - uid: 14050 - components: - - pos: -30.5,-18.5 - parent: 6 - type: Transform - - uid: 14058 - components: - - pos: -28.5,-18.5 - parent: 6 - type: Transform - - uid: 14324 - components: - - pos: 10.5,-20.5 - parent: 6 - type: Transform -- proto: TablePlasmaGlass - entities: - - uid: 210 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,8.5 - parent: 6 - type: Transform - - uid: 1719 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-75.5 - parent: 6 - type: Transform - - uid: 1720 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-75.5 - parent: 6 - type: Transform - - uid: 1721 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-73.5 - parent: 6 - type: Transform - - uid: 1725 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-72.5 - parent: 6 - type: Transform - - uid: 4504 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,8.5 - parent: 6 - type: Transform - - uid: 4735 - components: - - pos: -77.5,-42.5 - parent: 6 - type: Transform - - uid: 4736 - components: - - pos: -77.5,-43.5 - parent: 6 - type: Transform - - uid: 4738 - components: - - pos: -77.5,-45.5 - parent: 6 - type: Transform - - uid: 4739 - components: - - pos: -77.5,-46.5 - parent: 6 - type: Transform - - uid: 4782 - components: - - pos: -22.5,4.5 - parent: 6 - type: Transform - - uid: 4794 - components: - - pos: -22.5,3.5 - parent: 6 - type: Transform - - uid: 4795 - components: - - pos: -22.5,2.5 - parent: 6 - type: Transform - - uid: 4796 - components: - - pos: -18.5,4.5 - parent: 6 - type: Transform - - uid: 4797 - components: - - pos: -18.5,3.5 - parent: 6 - type: Transform - - uid: 4798 - components: - - pos: -18.5,2.5 - parent: 6 - type: Transform - - uid: 5647 - components: - - pos: -4.5,-78.5 - parent: 6 - type: Transform - - uid: 13817 - components: - - rot: 3.141592653589793 rad - pos: -70.5,-13.5 - parent: 6 - type: Transform - - uid: 13818 - components: - - rot: 3.141592653589793 rad - pos: -70.5,-10.5 - parent: 6 - type: Transform -- proto: TableReinforced - entities: - - uid: 274 - components: - - pos: 9.5,-5.5 - parent: 6 - type: Transform - - uid: 275 - components: - - pos: 8.5,-5.5 - parent: 6 - type: Transform - - uid: 466 - components: - - pos: -6.5,9.5 - parent: 6 - type: Transform - - uid: 539 - components: - - pos: 29.5,3.5 - parent: 6 - type: Transform - - uid: 607 - components: - - pos: -6.5,10.5 - parent: 6 - type: Transform - - uid: 612 - components: - - pos: -2.5,10.5 - parent: 6 - type: Transform - - uid: 613 - components: - - pos: -2.5,9.5 - parent: 6 - type: Transform - - uid: 614 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,8.5 - parent: 6 - type: Transform - - uid: 615 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,8.5 - parent: 6 - type: Transform - - uid: 616 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,8.5 - parent: 6 - type: Transform - - uid: 617 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,8.5 - parent: 6 - type: Transform - - uid: 619 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,10.5 - parent: 6 - type: Transform - - uid: 620 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,10.5 - parent: 6 - type: Transform - - uid: 875 - components: - - pos: 0.5,-18.5 - parent: 6 - type: Transform - - uid: 890 - components: - - pos: 1.5,-18.5 - parent: 6 - type: Transform - - uid: 893 - components: - - pos: -11.5,-49.5 - parent: 6 - type: Transform - - uid: 907 - components: - - pos: -4.5,-26.5 - parent: 6 - type: Transform - - uid: 908 - components: - - pos: -4.5,-25.5 - parent: 6 - type: Transform - - uid: 945 - components: - - pos: 2.5,-18.5 - parent: 6 - type: Transform - - uid: 946 - components: - - pos: 3.5,-17.5 - parent: 6 - type: Transform - - uid: 947 - components: - - pos: 3.5,-16.5 - parent: 6 - type: Transform - - uid: 948 - components: - - pos: 3.5,-15.5 - parent: 6 - type: Transform - - uid: 949 - components: - - pos: 3.5,-14.5 - parent: 6 - type: Transform - - uid: 1131 - components: - - pos: 10.5,-36.5 - parent: 6 - type: Transform - - uid: 1132 - components: - - pos: 10.5,-35.5 - parent: 6 - type: Transform - - uid: 1222 - components: - - pos: 4.5,-46.5 - parent: 6 - type: Transform - - uid: 1231 - components: - - pos: 3.5,-51.5 - parent: 6 - type: Transform - - uid: 1494 - components: - - pos: -20.5,-15.5 - parent: 6 - type: Transform - - uid: 1495 - components: - - pos: -20.5,-15.5 - parent: 6 - type: Transform - - uid: 1505 - components: - - pos: -18.5,-21.5 - parent: 6 - type: Transform - - uid: 1515 - components: - - pos: -19.5,-21.5 - parent: 6 - type: Transform - - uid: 1518 - components: - - pos: -17.5,-21.5 - parent: 6 - type: Transform - - uid: 1586 - components: - - pos: -16.5,-29.5 - parent: 6 - type: Transform - - uid: 1597 - components: - - pos: -16.5,-30.5 - parent: 6 - type: Transform - - uid: 1692 - components: - - pos: -19.5,-27.5 - parent: 6 - type: Transform - - uid: 1695 - components: - - pos: -18.5,-27.5 - parent: 6 - type: Transform - - uid: 1696 - components: - - pos: -17.5,-27.5 - parent: 6 - type: Transform - - uid: 1753 - components: - - pos: -37.5,-13.5 - parent: 6 - type: Transform - - uid: 1754 - components: - - pos: -36.5,-13.5 - parent: 6 - type: Transform - - uid: 1757 - components: - - pos: -28.5,-8.5 - parent: 6 - type: Transform - - uid: 2031 - components: - - pos: -27.5,-8.5 - parent: 6 - type: Transform - - uid: 2032 - components: - - pos: -26.5,-8.5 - parent: 6 - type: Transform - - uid: 3342 - components: - - pos: 27.5,3.5 - parent: 6 - type: Transform - - uid: 3416 - components: - - pos: 15.5,-0.5 - parent: 6 - type: Transform - - uid: 4343 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-26.5 - parent: 6 - type: Transform - - uid: 4344 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-26.5 - parent: 6 - type: Transform - - uid: 4345 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-26.5 - parent: 6 - type: Transform - - uid: 4363 - components: - - pos: -13.5,-14.5 - parent: 6 - type: Transform - - uid: 4364 - components: - - pos: -13.5,-15.5 - parent: 6 - type: Transform - - uid: 4365 - components: - - pos: -13.5,-16.5 - parent: 6 - type: Transform - - uid: 4371 - components: - - pos: -0.5,-8.5 - parent: 6 - type: Transform - - uid: 4375 - components: - - pos: -13.5,8.5 - parent: 6 - type: Transform - - uid: 4376 - components: - - pos: -12.5,8.5 - parent: 6 - type: Transform - - uid: 4377 - components: - - pos: -12.5,7.5 - parent: 6 - type: Transform - - uid: 4378 - components: - - pos: -17.5,8.5 - parent: 6 - type: Transform - - uid: 4379 - components: - - pos: -18.5,8.5 - parent: 6 - type: Transform - - uid: 4463 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-15.5 - parent: 6 - type: Transform - - uid: 4464 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-15.5 - parent: 6 - type: Transform - - uid: 4532 - components: - - pos: 4.5,-51.5 - parent: 6 - type: Transform - - uid: 4533 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-31.5 - parent: 6 - type: Transform - - uid: 4534 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-32.5 - parent: 6 - type: Transform - - uid: 4662 - components: - - pos: 14.5,-2.5 - parent: 6 - type: Transform - - uid: 4663 - components: - - pos: 14.5,-1.5 - parent: 6 - type: Transform - - uid: 4816 - components: - - pos: -23.5,-18.5 - parent: 6 - type: Transform - - uid: 4845 - components: - - pos: -28.5,-5.5 - parent: 6 - type: Transform - - uid: 4846 - components: - - pos: -25.5,-5.5 - parent: 6 - type: Transform - - uid: 4850 - components: - - pos: -32.5,-4.5 - parent: 6 - type: Transform - - uid: 4851 - components: - - pos: -33.5,-4.5 - parent: 6 - type: Transform - - uid: 4852 - components: - - pos: -34.5,-4.5 - parent: 6 - type: Transform - - uid: 4871 - components: - - pos: 14.5,1.5 - parent: 6 - type: Transform - - uid: 4872 - components: - - pos: 14.5,0.5 - parent: 6 - type: Transform - - uid: 5040 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,0.5 - parent: 6 - type: Transform - - uid: 5146 - components: - - pos: -38.5,-4.5 - parent: 6 - type: Transform - - uid: 5576 - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-18.5 - parent: 6 - type: Transform - - uid: 5612 - components: - - pos: 14.5,-29.5 - parent: 6 - type: Transform - - uid: 5613 - components: - - pos: 15.5,-29.5 - parent: 6 - type: Transform - - uid: 5614 - components: - - pos: 16.5,-29.5 - parent: 6 - type: Transform - - uid: 5615 - components: - - pos: 17.5,-29.5 - parent: 6 - type: Transform - - uid: 5616 - components: - - pos: 14.5,-28.5 - parent: 6 - type: Transform - - uid: 5730 - components: - - pos: 27.5,-4.5 - parent: 6 - type: Transform - - uid: 5842 - components: - - pos: -20.5,-29.5 - parent: 6 - type: Transform - - uid: 6391 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-24.5 - parent: 6 - type: Transform - - uid: 6392 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-25.5 - parent: 6 - type: Transform - - uid: 6393 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-25.5 - parent: 6 - type: Transform - - uid: 6394 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-25.5 - parent: 6 - type: Transform - - uid: 6397 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-23.5 - parent: 6 - type: Transform - - uid: 6398 - components: - - pos: -46.5,-25.5 - parent: 6 - type: Transform - - uid: 6399 - components: - - pos: -46.5,-24.5 - parent: 6 - type: Transform - - uid: 6400 - components: - - pos: -46.5,-23.5 - parent: 6 - type: Transform - - uid: 10205 - components: - - pos: -56.5,-41.5 - parent: 6 - type: Transform - - uid: 14032 - components: - - pos: -3.5,-24.5 - parent: 6 - type: Transform - - uid: 14063 - components: - - pos: -3.5,-0.5 - parent: 6 - type: Transform - - uid: 14064 - components: - - pos: -3.5,-1.5 - parent: 6 - type: Transform - - uid: 14087 - components: - - pos: -32.5,0.5 - parent: 6 - type: Transform - - uid: 14088 - components: - - pos: -32.5,1.5 - parent: 6 - type: Transform -- proto: TableReinforcedGlass - entities: - - uid: 10 - components: - - pos: -1.5,-0.5 - parent: 6 - type: Transform - - uid: 41 - components: - - pos: 0.5,-0.5 - parent: 6 - type: Transform - - uid: 46 - components: - - pos: -0.5,-0.5 - parent: 6 - type: Transform - - uid: 52 - components: - - pos: -1.5,-1.5 - parent: 6 - type: Transform - - uid: 53 - components: - - pos: 0.5,-1.5 - parent: 6 - type: Transform - - uid: 58 - components: - - pos: -0.5,-1.5 - parent: 6 - type: Transform - - uid: 4480 - components: - - pos: -9.5,-53.5 - parent: 6 - type: Transform - - uid: 4482 - components: - - pos: -9.5,-54.5 - parent: 6 - type: Transform - - uid: 4545 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-52.5 - parent: 6 - type: Transform - - uid: 4546 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-51.5 - parent: 6 - type: Transform - - uid: 4547 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-50.5 - parent: 6 - type: Transform - - uid: 5362 - components: - - pos: -1.5,-56.5 - parent: 6 - type: Transform - - uid: 5363 - components: - - pos: -2.5,-56.5 - parent: 6 - type: Transform - - uid: 5364 - components: - - pos: -3.5,-56.5 - parent: 6 - type: Transform - - uid: 5374 - components: - - pos: -12.5,-55.5 - parent: 6 - type: Transform - - uid: 5375 - components: - - pos: -12.5,-56.5 - parent: 6 - type: Transform - - uid: 5376 - components: - - pos: -11.5,-56.5 - parent: 6 - type: Transform - - uid: 14071 - components: - - pos: -12.5,-51.5 - parent: 6 - type: Transform -- proto: TableWood - entities: - - uid: 3583 - components: - - pos: -51.5,-48.5 - parent: 6 - type: Transform - - uid: 3584 - components: - - pos: -50.5,-48.5 - parent: 6 - type: Transform - - uid: 3585 - components: - - pos: -50.5,-49.5 - parent: 6 - type: Transform - - uid: 4387 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,0.5 - parent: 6 - type: Transform - - uid: 4400 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-7.5 - parent: 6 - type: Transform - - uid: 4401 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 6 - type: Transform - - uid: 4423 - components: - - pos: -43.5,-49.5 - parent: 6 - type: Transform - - uid: 4424 - components: - - pos: -43.5,-50.5 - parent: 6 - type: Transform - - uid: 4425 - components: - - pos: -43.5,-51.5 - parent: 6 - type: Transform - - uid: 4426 - components: - - pos: -43.5,-52.5 - parent: 6 - type: Transform - - uid: 4427 - components: - - pos: -42.5,-52.5 - parent: 6 - type: Transform - - uid: 4428 - components: - - pos: -41.5,-52.5 - parent: 6 - type: Transform - - uid: 4471 - components: - - pos: -20.5,-40.5 - parent: 6 - type: Transform - - uid: 4472 - components: - - pos: -20.5,-41.5 - parent: 6 - type: Transform - - uid: 4475 - components: - - pos: -19.5,-37.5 - parent: 6 - type: Transform - - uid: 4486 - components: - - pos: 13.5,-16.5 - parent: 6 - type: Transform - - uid: 4487 - components: - - pos: 16.5,-15.5 - parent: 6 - type: Transform - - uid: 4488 - components: - - pos: 16.5,-16.5 - parent: 6 - type: Transform - - uid: 4489 - components: - - pos: 13.5,-15.5 - parent: 6 - type: Transform - - uid: 4490 - components: - - pos: 15.5,-18.5 - parent: 6 - type: Transform - - uid: 4491 - components: - - pos: 14.5,-18.5 - parent: 6 - type: Transform - - uid: 4493 - components: - - pos: 8.5,-15.5 - parent: 6 - type: Transform - - uid: 4494 - components: - - pos: 8.5,-16.5 - parent: 6 - type: Transform - - uid: 4495 - components: - - pos: 9.5,-16.5 - parent: 6 - type: Transform - - uid: 4615 - components: - - pos: 0.5,-14.5 - parent: 6 - type: Transform - - uid: 4616 - components: - - pos: 1.5,-14.5 - parent: 6 - type: Transform - - uid: 5847 - components: - - pos: -35.5,-26.5 - parent: 6 - type: Transform - - uid: 5874 - components: - - pos: -30.5,-50.5 - parent: 6 - type: Transform - - uid: 5880 - components: - - pos: -28.5,-47.5 - parent: 6 - type: Transform - - uid: 5881 - components: - - pos: -27.5,-47.5 - parent: 6 - type: Transform - - uid: 5894 - components: - - pos: -30.5,-51.5 - parent: 6 - type: Transform - - uid: 5917 - components: - - pos: 1.5,-23.5 - parent: 6 - type: Transform - - uid: 6006 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-26.5 - parent: 6 - type: Transform - - uid: 6007 - components: - - pos: -2.5,-22.5 - parent: 6 - type: Transform - - uid: 6008 - components: - - pos: 1.5,-22.5 - parent: 6 - type: Transform - - uid: 6012 - components: - - pos: -1.5,-22.5 - parent: 6 - type: Transform - - uid: 6014 - components: - - pos: -2.5,-21.5 - parent: 6 - type: Transform - - uid: 6015 - components: - - pos: -1.5,-21.5 - parent: 6 - type: Transform - - uid: 6770 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-49.5 - parent: 6 - type: Transform - - uid: 7603 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-47.5 - parent: 6 - type: Transform - - uid: 7731 - components: - - pos: -22.5,-39.5 - parent: 6 - type: Transform - - uid: 7807 - components: - - pos: 0.5,-16.5 - parent: 6 - type: Transform - - uid: 7808 - components: - - pos: 1.5,-16.5 - parent: 6 - type: Transform - - uid: 13639 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 10465 - type: Transform - - uid: 14075 - components: - - pos: 3.5,-5.5 - parent: 6 - type: Transform -- proto: TelecomServer - entities: - - uid: 14238 - components: - - pos: -55.5,-46.5 - parent: 6 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14239 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 14240 - components: - - pos: -55.5,-47.5 - parent: 6 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14241 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 14242 - components: - - pos: -53.5,-47.5 - parent: 6 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14243 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 14244 - components: - - pos: -53.5,-46.5 - parent: 6 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14245 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 14246 - components: - - pos: -53.5,-42.5 - parent: 6 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14247 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 14248 - components: - - pos: -53.5,-41.5 - parent: 6 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14249 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 14250 - components: - - pos: -55.5,-42.5 - parent: 6 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14251 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 14252 - components: - - pos: -55.5,-41.5 - parent: 6 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14253 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- proto: Thruster - entities: - - uid: 13650 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 13645 - type: Transform - - bodyType: Static - type: Physics - - uid: 13651 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 13645 - type: Transform - - bodyType: Static - type: Physics -- proto: TintedWindow - entities: - - uid: 1210 - components: - - pos: -48.5,-46.5 - parent: 6 - type: Transform - - uid: 1211 - components: - - pos: -41.5,-30.5 - parent: 6 - type: Transform - - uid: 1212 - components: - - pos: -44.5,-30.5 - parent: 6 - type: Transform - - uid: 1213 - components: - - pos: -41.5,-35.5 - parent: 6 - type: Transform - - uid: 1223 - components: - - pos: -41.5,-39.5 - parent: 6 - type: Transform - - uid: 1237 - components: - - pos: -44.5,-34.5 - parent: 6 - type: Transform - - uid: 1238 - components: - - pos: -44.5,-40.5 - parent: 6 - type: Transform - - uid: 1569 - components: - - pos: -30.5,-23.5 - parent: 6 - type: Transform - - uid: 1604 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-32.5 - parent: 6 - type: Transform - - uid: 1605 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-30.5 - parent: 6 - type: Transform - - uid: 1606 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-28.5 - parent: 6 - type: Transform - - uid: 1613 - components: - - pos: -28.5,-23.5 - parent: 6 - type: Transform - - uid: 4422 - components: - - pos: -28.5,-51.5 - parent: 6 - type: Transform -- proto: ToiletDirtyWater - entities: - - uid: 5158 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-4.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5998 - components: - - pos: 11.5,23.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics -- proto: ToiletEmpty - entities: - - uid: 5407 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-41.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5408 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-40.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics - - uid: 5409 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-39.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics -- proto: ToolboxArtistic - entities: - - uid: 14322 - components: - - pos: -51.957188,-16.428991 - parent: 6 - type: Transform -- proto: ToolboxElectricalFilled - entities: - - uid: 4888 - components: - - pos: -25.504246,-5.505117 - parent: 6 - type: Transform - - uid: 5191 - components: - - pos: -12.494616,7.947429 - parent: 6 - type: Transform - - uid: 10928 - components: - - pos: -17.727423,-59.27036 - parent: 6 - type: Transform -- proto: ToolboxEmergency - entities: - - uid: 13742 - components: - - pos: 4.055664,5.260956 - parent: 13645 - type: Transform - - nextAttack: 3861.317892 - type: MeleeWeapon -- proto: ToolboxEmergencyFilled - entities: - - uid: 5189 - components: - - pos: -12.496316,8.164643 - parent: 6 - type: Transform - - nextAttack: 416.6816706 - type: MeleeWeapon - - uid: 6330 - components: - - pos: 1.30425,8.527272 - parent: 6 - type: Transform -- proto: ToolboxGoldFilled - entities: - - uid: 5069 - components: - - pos: -18.519644,4.533372 - parent: 6 - type: Transform -- proto: ToolboxMechanicalFilled - entities: - - uid: 4887 - components: - - pos: -25.502045,-5.2071037 - parent: 6 - type: Transform - - uid: 5192 - components: - - pos: -12.494616,7.621034 - parent: 6 - type: Transform - - uid: 6329 - components: - - pos: 1.5626681,8.78555 - parent: 6 - type: Transform - - uid: 10929 - components: - - pos: -17.471846,-59.454845 - parent: 6 - type: Transform -- proto: ToyAi - entities: - - uid: 6746 - components: - - pos: -80.64318,-44.465263 - parent: 6 - type: Transform -- proto: ToyNuke - entities: - - uid: 5074 - components: - - pos: -22.32346,4.024728 - parent: 6 - type: Transform -- proto: trayScanner - entities: - - uid: 5196 - components: - - pos: -13.661372,8.742131 - parent: 6 - type: Transform -- proto: TubaInstrument - entities: - - uid: 5617 - components: - - pos: 17.5,-26.5 - parent: 6 - type: Transform -- proto: TwoWayLever - entities: - - uid: 6520 - components: - - pos: 17.5,-34.5 - parent: 6 - type: Transform - - outputs: - Left: - - port: Forward - uid: 6498 - - port: Forward - uid: 6497 - - port: Forward - uid: 6496 - - port: Forward - uid: 6495 - - port: Forward - uid: 6494 - - port: Forward - uid: 6499 - - port: Forward - uid: 6500 - - port: Forward - uid: 6501 - - port: Forward - uid: 6502 - - port: Forward - uid: 6503 - Right: - - port: Reverse - uid: 6498 - - port: Reverse - uid: 6497 - - port: Reverse - uid: 6496 - - port: Reverse - uid: 6495 - - port: Reverse - uid: 6494 - - port: Reverse - uid: 6499 - - port: Reverse - uid: 6500 - - port: Reverse - uid: 6501 - - port: Reverse - uid: 6502 - - port: Reverse - uid: 6503 - Middle: - - port: Off - uid: 6498 - - port: Off - uid: 6497 - - port: Off - uid: 6496 - - port: Off - uid: 6495 - - port: Off - uid: 6494 - - port: Off - uid: 6499 - - port: Off - uid: 6500 - - port: Off - uid: 6501 - - port: Off - uid: 6502 - - port: Off - uid: 6503 - type: SignalTransmitter - - uid: 13053 - components: - - pos: -52.5,-32.5 - parent: 6 - type: Transform - - outputs: - Left: - - port: Forward - uid: 5439 - - port: Forward - uid: 5438 - - port: Forward - uid: 5437 - - port: Forward - uid: 5436 - - port: Forward - uid: 5435 - - port: Forward - uid: 5434 - - port: Forward - uid: 5433 - - port: Forward - uid: 5440 - - port: Reverse - uid: 5427 - Right: - - port: Reverse - uid: 5439 - - port: Reverse - uid: 5438 - - port: Reverse - uid: 5437 - - port: Reverse - uid: 5436 - - port: Reverse - uid: 5435 - - port: Reverse - uid: 5434 - - port: Reverse - uid: 5433 - - port: Reverse - uid: 5440 - - port: Forward - uid: 5427 - Middle: - - port: Off - uid: 5439 - - port: Off - uid: 5438 - - port: Off - uid: 5437 - - port: Off - uid: 5436 - - port: Off - uid: 5435 - - port: Off - uid: 5434 - - port: Off - uid: 5433 - - port: Off - uid: 5440 - - port: Off - uid: 5427 - type: SignalTransmitter -- proto: UniformPrinter - entities: - - uid: 4402 - components: - - pos: -0.5,-5.5 - parent: 6 - type: Transform -- proto: UniformScrubsColorPurple - entities: - - uid: 6194 - components: - - pos: -32.70097,-14.485509 - parent: 6 - type: Transform -- proto: UprightPianoInstrument - entities: - - uid: 7601 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-53.5 - parent: 6 - type: Transform -- proto: Vaccinator - entities: - - uid: 859 - components: - - pos: -21.5,-33.5 - parent: 6 - type: Transform -- proto: VehicleJanicartDestroyed - entities: - - uid: 3725 - components: - - pos: -53.5,-31.5 - parent: 6 - type: Transform - - bodyType: Static - type: Physics -- proto: VehicleKeyATV - entities: - - uid: 3287 - components: - - pos: -22.22619,24.315828 - parent: 6 - type: Transform -- proto: VehicleKeyJanicart - entities: - - uid: 5112 - components: - - pos: 27.12483,3.775862 - parent: 6 - type: Transform -- proto: VehicleKeySyndicateSegway - entities: - - uid: 4324 - components: - - pos: 22.49579,-15.521695 - parent: 6 - type: Transform -- proto: VendingBarDrobe - entities: - - uid: 8451 - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,-14.5 - parent: 6 - type: Transform -- proto: VendingMachineAtmosDrobe - entities: - - uid: 2139 - components: - - flags: SessionSpecific - type: MetaData - - pos: -36.5,-8.5 - parent: 6 - type: Transform -- proto: VendingMachineBooze - entities: - - uid: 88 - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,-0.5 - parent: 6 - type: Transform - - uid: 4617 - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,-14.5 - parent: 6 - type: Transform - - uid: 6039 - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,-44.5 - parent: 6 - type: Transform -- proto: VendingMachineCargoDrobe - entities: - - uid: 5588 - components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,-41.5 - parent: 6 - type: Transform -- proto: VendingMachineCart - entities: - - uid: 3028 - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,-6.5 - parent: 6 - type: Transform -- proto: VendingMachineChang - entities: - - uid: 2042 - components: - - flags: SessionSpecific - type: MetaData - - pos: -42.5,-13.5 - parent: 6 - type: Transform -- proto: VendingMachineChapel - entities: - - uid: 5883 - components: - - flags: SessionSpecific - type: MetaData - - pos: -26.5,-47.5 - parent: 6 - type: Transform -- proto: VendingMachineChefDrobe - entities: - - uid: 4348 - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,-26.5 - parent: 6 - type: Transform -- proto: VendingMachineChefvend - entities: - - uid: 4346 - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,-26.5 - parent: 6 - type: Transform -- proto: VendingMachineChemDrobe - entities: - - uid: 6185 - components: - - flags: SessionSpecific - type: MetaData - - pos: -25.5,-14.5 - parent: 6 - type: Transform -- proto: VendingMachineCigs - entities: - - uid: 454 - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,-18.5 - parent: 6 - type: Transform - - uid: 3898 - components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,-46.5 - parent: 6 - type: Transform - - uid: 5135 - components: - - flags: SessionSpecific - type: MetaData - - pos: -12.5,-9.5 - parent: 6 - type: Transform - - uid: 5168 - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,-3.5 - parent: 6 - type: Transform - - uid: 6010 - components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,-26.5 - parent: 6 - type: Transform - - uid: 13819 - components: - - flags: SessionSpecific - type: MetaData - - pos: -66.5,-13.5 - parent: 6 - type: Transform -- proto: VendingMachineClothing - entities: - - uid: 4460 - components: - - flags: SessionSpecific - type: MetaData - - pos: -49.5,-14.5 - parent: 6 - type: Transform -- proto: VendingMachineCoffee - entities: - - uid: 3652 - components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,-54.5 - parent: 6 - type: Transform - - uid: 4462 - components: - - flags: SessionSpecific - type: MetaData - - pos: -38.5,-15.5 - parent: 6 - type: Transform - - uid: 5556 - components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,-3.5 - parent: 6 - type: Transform - - uid: 7830 - components: - - flags: SessionSpecific - type: MetaData - - pos: -19.5,-46.5 - parent: 6 - type: Transform -- proto: VendingMachineCola - entities: - - uid: 4818 - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,-46.5 - parent: 6 - type: Transform - - uid: 5137 - components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,-9.5 - parent: 6 - type: Transform - - uid: 6011 - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,-26.5 - parent: 6 - type: Transform - - uid: 6539 - components: - - flags: SessionSpecific - type: MetaData - - pos: -62.5,-12.5 - parent: 6 - type: Transform -- proto: VendingMachineCondiments - entities: - - uid: 9696 - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,-24.5 - parent: 6 - type: Transform -- proto: VendingMachineDetDrobe - entities: - - uid: 3595 - components: - - flags: SessionSpecific - type: MetaData - - pos: -48.5,-51.5 - parent: 6 - type: Transform -- proto: VendingMachineDinnerware - entities: - - uid: 4347 - components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,-26.5 - parent: 6 - type: Transform -- proto: VendingMachineDiscount - entities: - - uid: 5136 - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,-9.5 - parent: 6 - type: Transform -- proto: VendingMachineDonut - entities: - - uid: 4466 - components: - - flags: SessionSpecific - type: MetaData - - pos: -39.5,-15.5 - parent: 6 - type: Transform - - uid: 5152 - components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,1.5 - parent: 6 - type: Transform - - uid: 7831 - components: - - flags: SessionSpecific - type: MetaData - - pos: -20.5,-46.5 - parent: 6 - type: Transform - - uid: 13820 - components: - - flags: SessionSpecific - type: MetaData - - pos: -67.5,-13.5 - parent: 6 - type: Transform -- proto: VendingMachineEngiDrobe - entities: - - uid: 2140 - components: - - flags: SessionSpecific - type: MetaData - - pos: -36.5,-5.5 - parent: 6 - type: Transform -- proto: VendingMachineEngivend - entities: - - uid: 4879 - components: - - flags: SessionSpecific - type: MetaData - - pos: -32.5,-6.5 - parent: 6 - type: Transform -- proto: VendingMachineGames - entities: - - uid: 5278 - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,-38.5 - parent: 6 - type: Transform - - uid: 13545 - components: - - flags: SessionSpecific - type: MetaData - - pos: -25.5,-37.5 - parent: 6 - type: Transform - - uid: 13581 - components: - - flags: SessionSpecific - type: MetaData - - pos: -49.5,-15.5 - parent: 6 - type: Transform -- proto: VendingMachineHappyHonk - entities: - - uid: 6031 - components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,-17.5 - parent: 6 - type: Transform -- proto: VendingMachineHydrobe - entities: - - uid: 4350 - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,-17.5 - parent: 6 - type: Transform -- proto: VendingMachineJaniDrobe - entities: - - uid: 4406 - components: - - flags: SessionSpecific - type: MetaData - - pos: 26.5,5.5 - parent: 6 - type: Transform -- proto: VendingMachineLawDrobe - entities: - - uid: 4492 - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,-14.5 - parent: 6 - type: Transform -- proto: VendingMachineMedical - entities: - - uid: 1612 - components: - - flags: SessionSpecific - type: MetaData - - pos: -26.5,-24.5 - parent: 6 - type: Transform -- proto: VendingMachineMediDrobe - entities: - - uid: 6186 - components: - - flags: SessionSpecific - type: MetaData - - pos: -20.5,-27.5 - parent: 6 - type: Transform -- proto: VendingMachineNutri - entities: - - uid: 4351 - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,-16.5 - parent: 6 - type: Transform -- proto: VendingMachineRoboDrobe - entities: - - uid: 5395 - components: - - flags: SessionSpecific - type: MetaData - - pos: -14.5,-50.5 - parent: 6 - type: Transform -- proto: VendingMachineSalvage - entities: - - uid: 4531 - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,-51.5 - parent: 6 - type: Transform -- proto: VendingMachineSec - entities: - - uid: 3419 - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,-6.5 - parent: 6 - type: Transform -- proto: VendingMachineSecDrobe - entities: - - uid: 3420 - components: - - flags: SessionSpecific - type: MetaData - - pos: 18.5,-6.5 - parent: 6 - type: Transform -- proto: VendingMachineSeeds - entities: - - uid: 4352 - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,-15.5 - parent: 6 - type: Transform -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 5991 - components: - - flags: SessionSpecific - type: MetaData - - pos: 18.5,21.5 - parent: 6 - type: Transform -- proto: VendingMachineSmartFridge - entities: - - uid: 846 - components: - - flags: SessionSpecific - type: MetaData - - pos: -9.5,-23.5 - parent: 6 - type: Transform -- proto: VendingMachineSnack - entities: - - uid: 6540 - components: - - flags: SessionSpecific - type: MetaData - - pos: -58.5,-12.5 - parent: 6 - type: Transform -- proto: VendingMachineSovietSoda - entities: - - uid: 5493 - components: - - flags: SessionSpecific - type: MetaData - - pos: -31.5,-34.5 - parent: 6 - type: Transform - - uid: 10941 - components: - - flags: SessionSpecific - type: MetaData - - pos: -26.5,-58.5 - parent: 6 - type: Transform -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 3407 - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,6.5 - parent: 6 - type: Transform - - uid: 4435 - components: - - flags: SessionSpecific - type: MetaData - - pos: -47.5,-17.5 - parent: 6 - type: Transform - - uid: 4847 - components: - - flags: SessionSpecific - type: MetaData - - pos: -25.5,-7.5 - parent: 6 - type: Transform -- proto: VendingMachineTheater - entities: - - uid: 4373 - components: - - flags: SessionSpecific - type: MetaData - - pos: -15.5,8.5 - parent: 6 - type: Transform - - uid: 4461 - components: - - flags: SessionSpecific - type: MetaData - - pos: -54.5,-14.5 - parent: 6 - type: Transform - - uid: 5636 - components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,-27.5 - parent: 6 - type: Transform -- proto: VendingMachineVendomat - entities: - - uid: 4374 - components: - - flags: SessionSpecific - type: MetaData - - pos: -14.5,8.5 - parent: 6 - type: Transform -- proto: VendingMachineViroDrobe - entities: - - uid: 3605 - components: - - flags: SessionSpecific - type: MetaData - - pos: -32.5,-18.5 - parent: 6 - type: Transform -- proto: VendingMachineWallMedical - entities: - - uid: 6778 - components: - - flags: SessionSpecific - type: MetaData - - rot: 3.141592653589793 rad - pos: -23.5,-23.5 - parent: 6 - type: Transform -- proto: VendingMachineYouTool - entities: - - uid: 4372 - components: - - flags: SessionSpecific - type: MetaData - - pos: -16.5,8.5 - parent: 6 - type: Transform - - uid: 4878 - components: - - flags: SessionSpecific - type: MetaData - - pos: -34.5,-6.5 - parent: 6 - type: Transform -- proto: WallCult - entities: - - uid: 5864 - components: - - pos: -26.5,-53.5 - parent: 6 - type: Transform - - uid: 5967 - components: - - pos: -25.5,-53.5 - parent: 6 - type: Transform -- proto: WallmountTelescreen - entities: - - uid: 3593 - components: - - pos: -51.5,-48.5 - parent: 6 - type: Transform -- proto: WallReinforced - entities: - - uid: 1 - components: - - rot: 3.141592653589793 rad - pos: -16.5,5.5 - parent: 6 - type: Transform - - uid: 2 - components: - - rot: 3.141592653589793 rad - pos: -18.5,5.5 - parent: 6 - type: Transform - - uid: 3 - components: - - rot: 3.141592653589793 rad - pos: -16.5,4.5 - parent: 6 - type: Transform - - uid: 4 - components: - - rot: 3.141592653589793 rad - pos: -17.5,5.5 - parent: 6 - type: Transform - - uid: 7 - components: - - pos: 4.5,-8.5 - parent: 6 - type: Transform - - uid: 8 - components: - - pos: 4.5,-3.5 - parent: 6 - type: Transform - - uid: 9 - components: - - pos: 4.5,-4.5 - parent: 6 - type: Transform - - uid: 11 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-4.5 - parent: 6 - type: Transform - - uid: 15 - components: - - pos: 4.5,-6.5 - parent: 6 - type: Transform - - uid: 16 - components: - - pos: 4.5,-5.5 - parent: 6 - type: Transform - - uid: 21 - components: - - pos: -12.5,5.5 - parent: 6 - type: Transform - - uid: 23 - components: - - pos: 4.5,1.5 - parent: 6 - type: Transform - - uid: 24 - components: - - pos: 4.5,-7.5 - parent: 6 - type: Transform - - uid: 28 - components: - - pos: 4.5,2.5 - parent: 6 - type: Transform - - uid: 30 - components: - - pos: 1.5,2.5 - parent: 6 - type: Transform - - uid: 34 - components: - - pos: -4.5,-4.5 - parent: 6 - type: Transform - - uid: 35 - components: - - pos: -4.5,-0.5 - parent: 6 - type: Transform - - uid: 36 - components: - - pos: -11.5,5.5 - parent: 6 - type: Transform - - uid: 37 - components: - - pos: -4.5,-3.5 - parent: 6 - type: Transform - - uid: 42 - components: - - rot: 3.141592653589793 rad - pos: -16.5,3.5 - parent: 6 - type: Transform - - uid: 44 - components: - - rot: 3.141592653589793 rad - pos: -23.5,5.5 - parent: 6 - type: Transform - - uid: 50 - components: - - rot: 3.141592653589793 rad - pos: -23.5,4.5 - parent: 6 - type: Transform - - uid: 51 - components: - - pos: 0.5,-8.5 - parent: 6 - type: Transform - - uid: 54 - components: - - rot: 3.141592653589793 rad - pos: -16.5,2.5 - parent: 6 - type: Transform - - uid: 55 - components: - - pos: 1.5,-8.5 - parent: 6 - type: Transform - - uid: 60 - components: - - pos: 3.5,-8.5 - parent: 6 - type: Transform - - uid: 61 - components: - - pos: 2.5,-8.5 - parent: 6 - type: Transform - - uid: 67 - components: - - pos: -4.5,-8.5 - parent: 6 - type: Transform - - uid: 68 - components: - - pos: -4.5,-6.5 - parent: 6 - type: Transform - - uid: 69 - components: - - pos: -4.5,-7.5 - parent: 6 - type: Transform - - uid: 80 - components: - - pos: -8.5,-5.5 - parent: 6 - type: Transform - - uid: 81 - components: - - pos: -7.5,-5.5 - parent: 6 - type: Transform - - uid: 82 - components: - - pos: -7.5,-4.5 - parent: 6 - type: Transform - - uid: 83 - components: - - pos: -6.5,-1.5 - parent: 6 - type: Transform - - uid: 84 - components: - - pos: -6.5,-2.5 - parent: 6 - type: Transform - - uid: 85 - components: - - pos: -6.5,-3.5 - parent: 6 - type: Transform - - uid: 86 - components: - - pos: -6.5,-4.5 - parent: 6 - type: Transform - - uid: 87 - components: - - pos: -6.5,-0.5 - parent: 6 - type: Transform - - uid: 94 - components: - - pos: -9.5,-5.5 - parent: 6 - type: Transform - - uid: 95 - components: - - pos: -10.5,-5.5 - parent: 6 - type: Transform - - uid: 96 - components: - - pos: -10.5,-4.5 - parent: 6 - type: Transform - - uid: 102 - components: - - pos: -12.5,2.5 - parent: 6 - type: Transform - - uid: 103 - components: - - pos: -11.5,2.5 - parent: 6 - type: Transform - - uid: 104 - components: - - pos: -13.5,2.5 - parent: 6 - type: Transform - - uid: 108 - components: - - pos: -13.5,5.5 - parent: 6 - type: Transform - - uid: 113 - components: - - pos: -10.5,5.5 - parent: 6 - type: Transform - - uid: 118 - components: - - pos: -9.5,-1.5 - parent: 6 - type: Transform - - uid: 119 - components: - - pos: -9.5,-0.5 - parent: 6 - type: Transform - - uid: 120 - components: - - pos: -9.5,0.5 - parent: 6 - type: Transform - - uid: 121 - components: - - pos: -9.5,1.5 - parent: 6 - type: Transform - - uid: 122 - components: - - pos: -9.5,2.5 - parent: 6 - type: Transform - - uid: 123 - components: - - pos: -10.5,2.5 - parent: 6 - type: Transform - - uid: 124 - components: - - pos: -9.5,-2.5 - parent: 6 - type: Transform - - uid: 126 - components: - - pos: -10.5,-3.5 - parent: 6 - type: Transform - - uid: 127 - components: - - pos: -10.5,-2.5 - parent: 6 - type: Transform - - uid: 134 - components: - - pos: -11.5,8.5 - parent: 6 - type: Transform - - uid: 135 - components: - - pos: -11.5,7.5 - parent: 6 - type: Transform - - uid: 136 - components: - - pos: -11.5,6.5 - parent: 6 - type: Transform - - uid: 138 - components: - - pos: -2.5,5.5 - parent: 6 - type: Transform - - uid: 139 - components: - - pos: -6.5,5.5 - parent: 6 - type: Transform - - uid: 141 - components: - - pos: 1.5,5.5 - parent: 6 - type: Transform - - uid: 142 - components: - - pos: 4.5,5.5 - parent: 6 - type: Transform - - uid: 143 - components: - - pos: 2.5,5.5 - parent: 6 - type: Transform - - uid: 144 - components: - - pos: 3.5,5.5 - parent: 6 - type: Transform - - uid: 145 - components: - - pos: 2.5,9.5 - parent: 6 - type: Transform - - uid: 146 - components: - - pos: 2.5,8.5 - parent: 6 - type: Transform - - uid: 147 - components: - - pos: 2.5,7.5 - parent: 6 - type: Transform - - uid: 148 - components: - - pos: -12.5,9.5 - parent: 6 - type: Transform - - uid: 149 - components: - - pos: 2.5,6.5 - parent: 6 - type: Transform - - uid: 154 - components: - - pos: -9.5,11.5 - parent: 6 - type: Transform - - uid: 155 - components: - - pos: 0.5,11.5 - parent: 6 - type: Transform - - uid: 164 - components: - - pos: -4.5,11.5 - parent: 6 - type: Transform - - uid: 184 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-2.5 - parent: 6 - type: Transform - - uid: 185 - components: - - rot: 3.141592653589793 rad - pos: -17.5,0.5 - parent: 6 - type: Transform - - uid: 186 - components: - - rot: 3.141592653589793 rad - pos: -23.5,0.5 - parent: 6 - type: Transform - - uid: 187 - components: - - rot: 3.141592653589793 rad - pos: -23.5,1.5 - parent: 6 - type: Transform - - uid: 188 - components: - - rot: 3.141592653589793 rad - pos: -23.5,2.5 - parent: 6 - type: Transform - - uid: 189 - components: - - rot: 3.141592653589793 rad - pos: -23.5,3.5 - parent: 6 - type: Transform - - uid: 196 - components: - - pos: 13.5,-9.5 - parent: 6 - type: Transform - - uid: 197 - components: - - pos: 10.5,-5.5 - parent: 6 - type: Transform - - uid: 198 - components: - - pos: 11.5,-5.5 - parent: 6 - type: Transform - - uid: 199 - components: - - pos: 13.5,-5.5 - parent: 6 - type: Transform - - uid: 200 - components: - - pos: 12.5,-5.5 - parent: 6 - type: Transform - - uid: 201 - components: - - pos: 7.5,-2.5 - parent: 6 - type: Transform - - uid: 202 - components: - - pos: 7.5,-3.5 - parent: 6 - type: Transform - - uid: 204 - components: - - pos: 7.5,1.5 - parent: 6 - type: Transform - - uid: 205 - components: - - pos: 16.5,-9.5 - parent: 6 - type: Transform - - uid: 211 - components: - - pos: 10.5,5.5 - parent: 6 - type: Transform - - uid: 212 - components: - - pos: 9.5,5.5 - parent: 6 - type: Transform - - uid: 213 - components: - - pos: 8.5,5.5 - parent: 6 - type: Transform - - uid: 214 - components: - - pos: 7.5,5.5 - parent: 6 - type: Transform - - uid: 215 - components: - - pos: 7.5,10.5 - parent: 6 - type: Transform - - uid: 216 - components: - - rot: 3.141592653589793 rad - pos: -16.5,1.5 - parent: 6 - type: Transform - - uid: 217 - components: - - rot: 3.141592653589793 rad - pos: -16.5,0.5 - parent: 6 - type: Transform - - uid: 221 - components: - - pos: -19.5,8.5 - parent: 6 - type: Transform - - uid: 222 - components: - - pos: -18.5,9.5 - parent: 6 - type: Transform - - uid: 223 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,9.5 - parent: 6 - type: Transform - - uid: 224 - components: - - pos: 3.5,9.5 - parent: 6 - type: Transform - - uid: 225 - components: - - pos: -11.5,9.5 - parent: 6 - type: Transform - - uid: 226 - components: - - pos: -19.5,9.5 - parent: 6 - type: Transform - - uid: 235 - components: - - pos: 7.5,13.5 - parent: 6 - type: Transform - - uid: 236 - components: - - pos: 7.5,11.5 - parent: 6 - type: Transform - - uid: 245 - components: - - pos: 7.5,-34.5 - parent: 6 - type: Transform - - uid: 246 - components: - - pos: 7.5,-33.5 - parent: 6 - type: Transform - - uid: 254 - components: - - pos: 18.5,2.5 - parent: 6 - type: Transform - - uid: 270 - components: - - pos: 7.5,-4.5 - parent: 6 - type: Transform - - uid: 271 - components: - - pos: 7.5,-5.5 - parent: 6 - type: Transform - - uid: 292 - components: - - pos: 11.5,-9.5 - parent: 6 - type: Transform - - uid: 294 - components: - - pos: 18.5,0.5 - parent: 6 - type: Transform - - uid: 295 - components: - - pos: 18.5,-0.5 - parent: 6 - type: Transform - - uid: 298 - components: - - pos: 19.5,-5.5 - parent: 6 - type: Transform - - uid: 299 - components: - - pos: 18.5,-5.5 - parent: 6 - type: Transform - - uid: 300 - components: - - pos: 20.5,-9.5 - parent: 6 - type: Transform - - uid: 301 - components: - - pos: 15.5,-2.5 - parent: 6 - type: Transform - - uid: 302 - components: - - pos: 16.5,-2.5 - parent: 6 - type: Transform - - uid: 303 - components: - - pos: 18.5,-2.5 - parent: 6 - type: Transform - - uid: 304 - components: - - pos: 18.5,1.5 - parent: 6 - type: Transform - - uid: 305 - components: - - pos: 18.5,-1.5 - parent: 6 - type: Transform - - uid: 307 - components: - - pos: 16.5,2.5 - parent: 6 - type: Transform - - uid: 312 - components: - - pos: 13.5,5.5 - parent: 6 - type: Transform - - uid: 318 - components: - - pos: 15.5,2.5 - parent: 6 - type: Transform - - uid: 319 - components: - - pos: 17.5,2.5 - parent: 6 - type: Transform - - uid: 326 - components: - - pos: 18.5,3.5 - parent: 6 - type: Transform - - uid: 327 - components: - - pos: 17.5,3.5 - parent: 6 - type: Transform - - uid: 328 - components: - - pos: 16.5,3.5 - parent: 6 - type: Transform - - uid: 329 - components: - - pos: 10.5,10.5 - parent: 6 - type: Transform - - uid: 330 - components: - - pos: 13.5,10.5 - parent: 6 - type: Transform - - uid: 331 - components: - - pos: 13.5,6.5 - parent: 6 - type: Transform - - uid: 336 - components: - - pos: 13.5,13.5 - parent: 6 - type: Transform - - uid: 337 - components: - - pos: 16.5,13.5 - parent: 6 - type: Transform - - uid: 338 - components: - - pos: 16.5,10.5 - parent: 6 - type: Transform - - uid: 339 - components: - - pos: 17.5,10.5 - parent: 6 - type: Transform - - uid: 340 - components: - - pos: 18.5,10.5 - parent: 6 - type: Transform - - uid: 341 - components: - - pos: 19.5,10.5 - parent: 6 - type: Transform - - uid: 342 - components: - - pos: 16.5,9.5 - parent: 6 - type: Transform - - uid: 343 - components: - - pos: 17.5,9.5 - parent: 6 - type: Transform - - uid: 344 - components: - - pos: 18.5,9.5 - parent: 6 - type: Transform - - uid: 345 - components: - - pos: 19.5,9.5 - parent: 6 - type: Transform - - uid: 346 - components: - - pos: 19.5,2.5 - parent: 6 - type: Transform - - uid: 347 - components: - - pos: 19.5,3.5 - parent: 6 - type: Transform - - uid: 348 - components: - - pos: 16.5,8.5 - parent: 6 - type: Transform - - uid: 349 - components: - - pos: 16.5,7.5 - parent: 6 - type: Transform - - uid: 350 - components: - - pos: 16.5,4.5 - parent: 6 - type: Transform - - uid: 351 - components: - - pos: 16.5,5.5 - parent: 6 - type: Transform - - uid: 352 - components: - - pos: 20.5,10.5 - parent: 6 - type: Transform - - uid: 353 - components: - - pos: 20.5,9.5 - parent: 6 - type: Transform - - uid: 354 - components: - - pos: 21.5,10.5 - parent: 6 - type: Transform - - uid: 355 - components: - - pos: 21.5,9.5 - parent: 6 - type: Transform - - uid: 356 - components: - - pos: 20.5,8.5 - parent: 6 - type: Transform - - uid: 357 - components: - - pos: 20.5,7.5 - parent: 6 - type: Transform - - uid: 358 - components: - - pos: 21.5,8.5 - parent: 6 - type: Transform - - uid: 359 - components: - - pos: 21.5,7.5 - parent: 6 - type: Transform - - uid: 360 - components: - - pos: 21.5,6.5 - parent: 6 - type: Transform - - uid: 361 - components: - - pos: 21.5,5.5 - parent: 6 - type: Transform - - uid: 362 - components: - - pos: 21.5,4.5 - parent: 6 - type: Transform - - uid: 363 - components: - - pos: 21.5,3.5 - parent: 6 - type: Transform - - uid: 364 - components: - - pos: 21.5,2.5 - parent: 6 - type: Transform - - uid: 365 - components: - - pos: 20.5,6.5 - parent: 6 - type: Transform - - uid: 366 - components: - - pos: 20.5,5.5 - parent: 6 - type: Transform - - uid: 367 - components: - - pos: 20.5,4.5 - parent: 6 - type: Transform - - uid: 369 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 6 - type: Transform - - uid: 370 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-14.5 - parent: 6 - type: Transform - - uid: 371 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-13.5 - parent: 6 - type: Transform - - uid: 372 - components: - - pos: 20.5,3.5 - parent: 6 - type: Transform - - uid: 373 - components: - - pos: 20.5,2.5 - parent: 6 - type: Transform - - uid: 376 - components: - - pos: 20.5,-7.5 - parent: 6 - type: Transform - - uid: 392 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-15.5 - parent: 6 - type: Transform - - uid: 393 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-16.5 - parent: 6 - type: Transform - - uid: 394 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-18.5 - parent: 6 - type: Transform - - uid: 395 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-19.5 - parent: 6 - type: Transform - - uid: 398 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-19.5 - parent: 6 - type: Transform - - uid: 400 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-13.5 - parent: 6 - type: Transform - - uid: 401 - components: - - pos: 30.5,-13.5 - parent: 6 - type: Transform - - uid: 402 - components: - - pos: 34.5,-13.5 - parent: 6 - type: Transform - - uid: 403 - components: - - pos: 38.5,-13.5 - parent: 6 - type: Transform - - uid: 404 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-13.5 - parent: 6 - type: Transform - - uid: 405 - components: - - pos: 42.5,-13.5 - parent: 6 - type: Transform - - uid: 406 - components: - - pos: 44.5,-13.5 - parent: 6 - type: Transform - - uid: 407 - components: - - pos: 43.5,-13.5 - parent: 6 - type: Transform - - uid: 410 - components: - - pos: 44.5,-9.5 - parent: 6 - type: Transform - - uid: 411 - components: - - pos: 44.5,-10.5 - parent: 6 - type: Transform - - uid: 436 - components: - - pos: 20.5,-8.5 - parent: 6 - type: Transform - - uid: 438 - components: - - pos: 20.5,-6.5 - parent: 6 - type: Transform - - uid: 445 - components: - - pos: 20.5,-5.5 - parent: 6 - type: Transform - - uid: 487 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-9.5 - parent: 6 - type: Transform - - uid: 488 - components: - - pos: 38.5,-9.5 - parent: 6 - type: Transform - - uid: 494 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-9.5 - parent: 6 - type: Transform - - uid: 519 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-8.5 - parent: 6 - type: Transform - - uid: 521 - components: - - pos: 42.5,10.5 - parent: 6 - type: Transform - - uid: 546 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,10.5 - parent: 6 - type: Transform - - uid: 547 - components: - - pos: 42.5,-8.5 - parent: 6 - type: Transform - - uid: 548 - components: - - pos: 42.5,-9.5 - parent: 6 - type: Transform - - uid: 555 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,10.5 - parent: 6 - type: Transform - - uid: 557 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,7.5 - parent: 6 - type: Transform - - uid: 558 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,6.5 - parent: 6 - type: Transform - - uid: 559 - components: - - pos: 44.5,-8.5 - parent: 6 - type: Transform - - uid: 560 - components: - - pos: 44.5,-3.5 - parent: 6 - type: Transform - - uid: 561 - components: - - pos: 44.5,0.5 - parent: 6 - type: Transform - - uid: 562 - components: - - pos: 44.5,5.5 - parent: 6 - type: Transform - - uid: 573 - components: - - pos: 45.5,-3.5 - parent: 6 - type: Transform - - uid: 585 - components: - - pos: 48.5,-3.5 - parent: 6 - type: Transform - - uid: 586 - components: - - pos: 48.5,-8.5 - parent: 6 - type: Transform - - uid: 587 - components: - - pos: 48.5,0.5 - parent: 6 - type: Transform - - uid: 588 - components: - - pos: 48.5,5.5 - parent: 6 - type: Transform - - uid: 601 - components: - - pos: 45.5,0.5 - parent: 6 - type: Transform - - uid: 618 - components: - - pos: 24.5,12.5 - parent: 6 - type: Transform - - uid: 621 - components: - - pos: 24.5,13.5 - parent: 6 - type: Transform - - uid: 632 - components: - - pos: 24.5,10.5 - parent: 6 - type: Transform - - uid: 633 - components: - - pos: 24.5,11.5 - parent: 6 - type: Transform - - uid: 634 - components: - - pos: 17.5,13.5 - parent: 6 - type: Transform - - uid: 635 - components: - - rot: 3.141592653589793 rad - pos: 28.5,10.5 - parent: 6 - type: Transform - - uid: 638 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,10.5 - parent: 6 - type: Transform - - uid: 642 - components: - - pos: 42.5,6.5 - parent: 6 - type: Transform - - uid: 646 - components: - - pos: 23.5,13.5 - parent: 6 - type: Transform - - uid: 647 - components: - - pos: 12.5,10.5 - parent: 6 - type: Transform - - uid: 648 - components: - - pos: 11.5,10.5 - parent: 6 - type: Transform - - uid: 660 - components: - - pos: 42.5,3.5 - parent: 6 - type: Transform - - uid: 665 - components: - - pos: 32.5,-6.5 - parent: 6 - type: Transform - - uid: 666 - components: - - pos: 32.5,-5.5 - parent: 6 - type: Transform - - uid: 667 - components: - - pos: 42.5,-7.5 - parent: 6 - type: Transform - - uid: 668 - components: - - pos: 42.5,-6.5 - parent: 6 - type: Transform - - uid: 669 - components: - - pos: 42.5,-5.5 - parent: 6 - type: Transform - - uid: 672 - components: - - pos: 32.5,-7.5 - parent: 6 - type: Transform - - uid: 684 - components: - - pos: 32.5,3.5 - parent: 6 - type: Transform - - uid: 685 - components: - - pos: 42.5,-3.5 - parent: 6 - type: Transform - - uid: 686 - components: - - pos: 42.5,1.5 - parent: 6 - type: Transform - - uid: 687 - components: - - pos: 42.5,5.5 - parent: 6 - type: Transform - - uid: 688 - components: - - pos: 32.5,-3.5 - parent: 6 - type: Transform - - uid: 689 - components: - - pos: 32.5,6.5 - parent: 6 - type: Transform - - uid: 690 - components: - - pos: 32.5,5.5 - parent: 6 - type: Transform - - uid: 691 - components: - - pos: 32.5,1.5 - parent: 6 - type: Transform - - uid: 704 - components: - - rot: 3.141592653589793 rad - pos: -19.5,5.5 - parent: 6 - type: Transform - - uid: 706 - components: - - pos: 7.5,12.5 - parent: 6 - type: Transform - - uid: 750 - components: - - pos: 7.5,9.5 - parent: 6 - type: Transform - - uid: 756 - components: - - pos: 22.5,13.5 - parent: 6 - type: Transform - - uid: 757 - components: - - pos: 18.5,13.5 - parent: 6 - type: Transform - - uid: 762 - components: - - pos: 9.5,23.5 - parent: 6 - type: Transform - - uid: 804 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-19.5 - parent: 6 - type: Transform - - uid: 805 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-19.5 - parent: 6 - type: Transform - - uid: 806 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-19.5 - parent: 6 - type: Transform - - uid: 807 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-20.5 - parent: 6 - type: Transform - - uid: 808 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-23.5 - parent: 6 - type: Transform - - uid: 809 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-22.5 - parent: 6 - type: Transform - - uid: 810 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-23.5 - parent: 6 - type: Transform - - uid: 811 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-23.5 - parent: 6 - type: Transform - - uid: 812 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-23.5 - parent: 6 - type: Transform - - uid: 813 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-23.5 - parent: 6 - type: Transform - - uid: 814 - components: - - pos: 9.5,21.5 - parent: 6 - type: Transform - - uid: 815 - components: - - pos: 11.5,-32.5 - parent: 6 - type: Transform - - uid: 816 - components: - - pos: -27.5,-13.5 - parent: 6 - type: Transform - - uid: 818 - components: - - pos: -16.5,-28.5 - parent: 6 - type: Transform - - uid: 822 - components: - - pos: 13.5,17.5 - parent: 6 - type: Transform - - uid: 823 - components: - - pos: 16.5,17.5 - parent: 6 - type: Transform - - uid: 824 - components: - - pos: 9.5,17.5 - parent: 6 - type: Transform - - uid: 826 - components: - - pos: 9.5,22.5 - parent: 6 - type: Transform - - uid: 840 - components: - - pos: 20.5,17.5 - parent: 6 - type: Transform - - uid: 850 - components: - - pos: -74.5,-44.5 - parent: 6 - type: Transform - - uid: 851 - components: - - pos: -74.5,-46.5 - parent: 6 - type: Transform - - uid: 852 - components: - - pos: -79.5,-44.5 - parent: 6 - type: Transform - - uid: 853 - components: - - pos: -79.5,-43.5 - parent: 6 - type: Transform - - uid: 855 - components: - - pos: 1.5,-52.5 - parent: 6 - type: Transform - - uid: 888 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-27.5 - parent: 6 - type: Transform - - uid: 889 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-27.5 - parent: 6 - type: Transform - - uid: 903 - components: - - pos: 20.5,-23.5 - parent: 6 - type: Transform - - uid: 904 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-27.5 - parent: 6 - type: Transform - - uid: 905 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-27.5 - parent: 6 - type: Transform - - uid: 909 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-27.5 - parent: 6 - type: Transform - - uid: 910 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-27.5 - parent: 6 - type: Transform - - uid: 911 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-27.5 - parent: 6 - type: Transform - - uid: 912 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-27.5 - parent: 6 - type: Transform - - uid: 913 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-27.5 - parent: 6 - type: Transform - - uid: 926 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-27.5 - parent: 6 - type: Transform - - uid: 928 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-27.5 - parent: 6 - type: Transform - - uid: 974 - components: - - pos: -10.5,-29.5 - parent: 6 - type: Transform - - uid: 975 - components: - - pos: -10.5,-30.5 - parent: 6 - type: Transform - - uid: 976 - components: - - pos: -9.5,-29.5 - parent: 6 - type: Transform - - uid: 977 - components: - - pos: -0.5,-29.5 - parent: 6 - type: Transform - - uid: 978 - components: - - pos: 0.5,-29.5 - parent: 6 - type: Transform - - uid: 979 - components: - - pos: 0.5,-30.5 - parent: 6 - type: Transform - - uid: 980 - components: - - pos: 0.5,-40.5 - parent: 6 - type: Transform - - uid: 981 - components: - - pos: 0.5,-39.5 - parent: 6 - type: Transform - - uid: 982 - components: - - pos: -0.5,-40.5 - parent: 6 - type: Transform - - uid: 983 - components: - - pos: -10.5,-40.5 - parent: 6 - type: Transform - - uid: 984 - components: - - pos: -10.5,-39.5 - parent: 6 - type: Transform - - uid: 985 - components: - - pos: -9.5,-40.5 - parent: 6 - type: Transform - - uid: 988 - components: - - pos: 3.5,-28.5 - parent: 6 - type: Transform - - uid: 989 - components: - - pos: 3.5,-29.5 - parent: 6 - type: Transform - - uid: 990 - components: - - pos: 3.5,-30.5 - parent: 6 - type: Transform - - uid: 1015 - components: - - pos: 2.5,-30.5 - parent: 6 - type: Transform - - uid: 1016 - components: - - pos: 1.5,-30.5 - parent: 6 - type: Transform - - uid: 1022 - components: - - pos: 1.5,-39.5 - parent: 6 - type: Transform - - uid: 1023 - components: - - pos: 2.5,-39.5 - parent: 6 - type: Transform - - uid: 1031 - components: - - pos: -11.5,-33.5 - parent: 6 - type: Transform - - uid: 1032 - components: - - pos: -11.5,-36.5 - parent: 6 - type: Transform - - uid: 1033 - components: - - pos: -12.5,-30.5 - parent: 6 - type: Transform - - uid: 1034 - components: - - pos: -12.5,-29.5 - parent: 6 - type: Transform - - uid: 1035 - components: - - pos: -12.5,-28.5 - parent: 6 - type: Transform - - uid: 1036 - components: - - pos: -12.5,-39.5 - parent: 6 - type: Transform - - uid: 1037 - components: - - pos: -12.5,-40.5 - parent: 6 - type: Transform - - uid: 1038 - components: - - pos: -12.5,-41.5 - parent: 6 - type: Transform - - uid: 1039 - components: - - pos: -12.5,-42.5 - parent: 6 - type: Transform - - uid: 1040 - components: - - pos: -11.5,-42.5 - parent: 6 - type: Transform - - uid: 1041 - components: - - pos: -10.5,-42.5 - parent: 6 - type: Transform - - uid: 1042 - components: - - pos: -9.5,-42.5 - parent: 6 - type: Transform - - uid: 1043 - components: - - pos: -5.5,-42.5 - parent: 6 - type: Transform - - uid: 1044 - components: - - pos: -4.5,-42.5 - parent: 6 - type: Transform - - uid: 1045 - components: - - pos: -5.5,-40.5 - parent: 6 - type: Transform - - uid: 1046 - components: - - pos: -4.5,-40.5 - parent: 6 - type: Transform - - uid: 1047 - components: - - pos: -5.5,-29.5 - parent: 6 - type: Transform - - uid: 1048 - components: - - pos: -4.5,-29.5 - parent: 6 - type: Transform - - uid: 1049 - components: - - pos: -0.5,-42.5 - parent: 6 - type: Transform - - uid: 1050 - components: - - pos: 0.5,-42.5 - parent: 6 - type: Transform - - uid: 1051 - components: - - pos: 1.5,-42.5 - parent: 6 - type: Transform - - uid: 1052 - components: - - pos: 2.5,-42.5 - parent: 6 - type: Transform - - uid: 1053 - components: - - pos: 3.5,-42.5 - parent: 6 - type: Transform - - uid: 1054 - components: - - pos: 3.5,-41.5 - parent: 6 - type: Transform - - uid: 1055 - components: - - pos: 3.5,-40.5 - parent: 6 - type: Transform - - uid: 1056 - components: - - pos: 3.5,-39.5 - parent: 6 - type: Transform - - uid: 1057 - components: - - pos: 20.5,-24.5 - parent: 6 - type: Transform - - uid: 1058 - components: - - pos: 20.5,-25.5 - parent: 6 - type: Transform - - uid: 1059 - components: - - pos: 20.5,-26.5 - parent: 6 - type: Transform - - uid: 1060 - components: - - pos: 20.5,-30.5 - parent: 6 - type: Transform - - uid: 1061 - components: - - pos: 20.5,-31.5 - parent: 6 - type: Transform - - uid: 1062 - components: - - pos: 20.5,-32.5 - parent: 6 - type: Transform - - uid: 1063 - components: - - pos: 20.5,-33.5 - parent: 6 - type: Transform - - uid: 1106 - components: - - pos: 7.5,-32.5 - parent: 6 - type: Transform - - uid: 1107 - components: - - pos: 7.5,-30.5 - parent: 6 - type: Transform - - uid: 1108 - components: - - pos: 8.5,-30.5 - parent: 6 - type: Transform - - uid: 1109 - components: - - pos: 9.5,-30.5 - parent: 6 - type: Transform - - uid: 1110 - components: - - pos: 10.5,-30.5 - parent: 6 - type: Transform - - uid: 1111 - components: - - pos: 11.5,-30.5 - parent: 6 - type: Transform - - uid: 1113 - components: - - pos: 11.5,-31.5 - parent: 6 - type: Transform - - uid: 1114 - components: - - pos: 10.5,-34.5 - parent: 6 - type: Transform - - uid: 1115 - components: - - pos: 11.5,-34.5 - parent: 6 - type: Transform - - uid: 1133 - components: - - pos: 7.5,-31.5 - parent: 6 - type: Transform - - uid: 1156 - components: - - pos: 20.5,-39.5 - parent: 6 - type: Transform - - uid: 1165 - components: - - pos: 23.5,-33.5 - parent: 6 - type: Transform - - uid: 1166 - components: - - pos: 23.5,-39.5 - parent: 6 - type: Transform - - uid: 1167 - components: - - pos: 23.5,-36.5 - parent: 6 - type: Transform - - uid: 1170 - components: - - pos: 20.5,-36.5 - parent: 6 - type: Transform - - uid: 1181 - components: - - pos: 20.5,-40.5 - parent: 6 - type: Transform - - uid: 1182 - components: - - pos: 20.5,-41.5 - parent: 6 - type: Transform - - uid: 1183 - components: - - pos: 20.5,-42.5 - parent: 6 - type: Transform - - uid: 1184 - components: - - pos: 20.5,-43.5 - parent: 6 - type: Transform - - uid: 1185 - components: - - pos: 20.5,-44.5 - parent: 6 - type: Transform - - uid: 1186 - components: - - pos: 20.5,-45.5 - parent: 6 - type: Transform - - uid: 1187 - components: - - pos: 20.5,-46.5 - parent: 6 - type: Transform - - uid: 1188 - components: - - pos: 20.5,-47.5 - parent: 6 - type: Transform - - uid: 1189 - components: - - pos: 11.5,-48.5 - parent: 6 - type: Transform - - uid: 1190 - components: - - pos: 12.5,-48.5 - parent: 6 - type: Transform - - uid: 1191 - components: - - pos: 13.5,-48.5 - parent: 6 - type: Transform - - uid: 1196 - components: - - pos: 18.5,-48.5 - parent: 6 - type: Transform - - uid: 1197 - components: - - pos: 19.5,-48.5 - parent: 6 - type: Transform - - uid: 1214 - components: - - pos: 1.5,-60.5 - parent: 6 - type: Transform - - uid: 1234 - components: - - pos: -0.5,-49.5 - parent: 6 - type: Transform - - uid: 1239 - components: - - pos: 7.5,-52.5 - parent: 6 - type: Transform - - uid: 1240 - components: - - pos: 7.5,-49.5 - parent: 6 - type: Transform - - uid: 1241 - components: - - pos: 8.5,-49.5 - parent: 6 - type: Transform - - uid: 1242 - components: - - pos: 9.5,-49.5 - parent: 6 - type: Transform - - uid: 1243 - components: - - pos: 10.5,-49.5 - parent: 6 - type: Transform - - uid: 1244 - components: - - pos: 11.5,-49.5 - parent: 6 - type: Transform - - uid: 1245 - components: - - pos: 7.5,-55.5 - parent: 6 - type: Transform - - uid: 1248 - components: - - pos: 20.5,-48.5 - parent: 6 - type: Transform - - uid: 1250 - components: - - pos: 4.5,-55.5 - parent: 6 - type: Transform - - uid: 1251 - components: - - pos: 1.5,-55.5 - parent: 6 - type: Transform - - uid: 1252 - components: - - pos: 1.5,-54.5 - parent: 6 - type: Transform - - uid: 1253 - components: - - pos: 1.5,-53.5 - parent: 6 - type: Transform - - uid: 1254 - components: - - pos: -0.5,-50.5 - parent: 6 - type: Transform - - uid: 1255 - components: - - pos: -0.5,-51.5 - parent: 6 - type: Transform - - uid: 1256 - components: - - pos: -0.5,-52.5 - parent: 6 - type: Transform - - uid: 1257 - components: - - pos: -0.5,-53.5 - parent: 6 - type: Transform - - uid: 1258 - components: - - pos: -1.5,-49.5 - parent: 6 - type: Transform - - uid: 1259 - components: - - pos: -3.5,-49.5 - parent: 6 - type: Transform - - uid: 1260 - components: - - pos: -2.5,-49.5 - parent: 6 - type: Transform - - uid: 1272 - components: - - pos: 1.5,-56.5 - parent: 6 - type: Transform - - uid: 1273 - components: - - pos: 1.5,-57.5 - parent: 6 - type: Transform - - uid: 1274 - components: - - pos: 1.5,-58.5 - parent: 6 - type: Transform - - uid: 1275 - components: - - pos: 1.5,-59.5 - parent: 6 - type: Transform - - uid: 1282 - components: - - pos: 0.5,-60.5 - parent: 6 - type: Transform - - uid: 1283 - components: - - pos: -0.5,-60.5 - parent: 6 - type: Transform - - uid: 1284 - components: - - pos: -1.5,-60.5 - parent: 6 - type: Transform - - uid: 1285 - components: - - pos: -2.5,-60.5 - parent: 6 - type: Transform - - uid: 1286 - components: - - pos: -3.5,-60.5 - parent: 6 - type: Transform - - uid: 1287 - components: - - pos: -4.5,-60.5 - parent: 6 - type: Transform - - uid: 1290 - components: - - pos: -7.5,-60.5 - parent: 6 - type: Transform - - uid: 1291 - components: - - pos: -8.5,-60.5 - parent: 6 - type: Transform - - uid: 1292 - components: - - pos: -9.5,-60.5 - parent: 6 - type: Transform - - uid: 1293 - components: - - pos: -10.5,-60.5 - parent: 6 - type: Transform - - uid: 1297 - components: - - pos: -14.5,-60.5 - parent: 6 - type: Transform - - uid: 1298 - components: - - pos: -15.5,-60.5 - parent: 6 - type: Transform - - uid: 1348 - components: - - pos: -3.5,-50.5 - parent: 6 - type: Transform - - uid: 1349 - components: - - pos: -3.5,-51.5 - parent: 6 - type: Transform - - uid: 1350 - components: - - pos: -3.5,-52.5 - parent: 6 - type: Transform - - uid: 1351 - components: - - pos: -3.5,-53.5 - parent: 6 - type: Transform - - uid: 1352 - components: - - pos: -2.5,-53.5 - parent: 6 - type: Transform - - uid: 1361 - components: - - pos: -8.5,-64.5 - parent: 6 - type: Transform - - uid: 1362 - components: - - pos: -7.5,-64.5 - parent: 6 - type: Transform - - uid: 1363 - components: - - pos: -3.5,-64.5 - parent: 6 - type: Transform - - uid: 1364 - components: - - pos: -4.5,-64.5 - parent: 6 - type: Transform - - uid: 1365 - components: - - pos: -7.5,-68.5 - parent: 6 - type: Transform - - uid: 1366 - components: - - pos: -8.5,-68.5 - parent: 6 - type: Transform - - uid: 1367 - components: - - pos: -4.5,-68.5 - parent: 6 - type: Transform - - uid: 1368 - components: - - pos: -3.5,-68.5 - parent: 6 - type: Transform - - uid: 1371 - components: - - pos: -8.5,-71.5 - parent: 6 - type: Transform - - uid: 1372 - components: - - pos: -7.5,-71.5 - parent: 6 - type: Transform - - uid: 1373 - components: - - pos: -4.5,-71.5 - parent: 6 - type: Transform - - uid: 1374 - components: - - pos: -3.5,-71.5 - parent: 6 - type: Transform - - uid: 1375 - components: - - pos: -3.5,-70.5 - parent: 6 - type: Transform - - uid: 1376 - components: - - pos: -3.5,-69.5 - parent: 6 - type: Transform - - uid: 1377 - components: - - pos: -8.5,-72.5 - parent: 6 - type: Transform - - uid: 1380 - components: - - pos: 0.5,-74.5 - parent: 6 - type: Transform - - uid: 1391 - components: - - pos: 2.5,-74.5 - parent: 6 - type: Transform - - uid: 1394 - components: - - pos: 1.5,-74.5 - parent: 6 - type: Transform - - uid: 1395 - components: - - pos: -0.5,-68.5 - parent: 6 - type: Transform - - uid: 1396 - components: - - pos: -0.5,-74.5 - parent: 6 - type: Transform - - uid: 1397 - components: - - pos: 2.5,-68.5 - parent: 6 - type: Transform - - uid: 1398 - components: - - pos: 2.5,-71.5 - parent: 6 - type: Transform - - uid: 1399 - components: - - pos: -0.5,-71.5 - parent: 6 - type: Transform - - uid: 1414 - components: - - pos: -4.5,-79.5 - parent: 6 - type: Transform - - uid: 1417 - components: - - pos: -4.5,-82.5 - parent: 6 - type: Transform - - uid: 1418 - components: - - pos: -8.5,-82.5 - parent: 6 - type: Transform - - uid: 1419 - components: - - pos: -0.5,-82.5 - parent: 6 - type: Transform - - uid: 1420 - components: - - pos: -0.5,-79.5 - parent: 6 - type: Transform - - uid: 1421 - components: - - pos: -8.5,-79.5 - parent: 6 - type: Transform - - uid: 1422 - components: - - pos: -8.5,-78.5 - parent: 6 - type: Transform - - uid: 1446 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-77.5 - parent: 6 - type: Transform - - uid: 1448 - components: - - pos: -0.5,-78.5 - parent: 6 - type: Transform - - uid: 1449 - components: - - pos: 2.5,-78.5 - parent: 6 - type: Transform - - uid: 1450 - components: - - pos: 2.5,-79.5 - parent: 6 - type: Transform - - uid: 1451 - components: - - pos: 2.5,-82.5 - parent: 6 - type: Transform - - uid: 1466 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-76.5 - parent: 6 - type: Transform - - uid: 1468 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-77.5 - parent: 6 - type: Transform - - uid: 1469 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-76.5 - parent: 6 - type: Transform - - uid: 1472 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-73.5 - parent: 6 - type: Transform - - uid: 1473 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-72.5 - parent: 6 - type: Transform - - uid: 1486 - components: - - pos: -8.5,-73.5 - parent: 6 - type: Transform - - uid: 1489 - components: - - pos: -16.5,-60.5 - parent: 6 - type: Transform - - uid: 1490 - components: - - pos: -17.5,-60.5 - parent: 6 - type: Transform - - uid: 1491 - components: - - pos: -18.5,-60.5 - parent: 6 - type: Transform - - uid: 1514 - components: - - pos: -20.5,-17.5 - parent: 6 - type: Transform - - uid: 1527 - components: - - pos: -25.5,-13.5 - parent: 6 - type: Transform - - uid: 1529 - components: - - pos: -23.5,-13.5 - parent: 6 - type: Transform - - uid: 1531 - components: - - pos: -21.5,-13.5 - parent: 6 - type: Transform - - uid: 1533 - components: - - pos: -20.5,-13.5 - parent: 6 - type: Transform - - uid: 1545 - components: - - pos: -16.5,-31.5 - parent: 6 - type: Transform - - uid: 1552 - components: - - pos: 12.5,13.5 - parent: 6 - type: Transform - - uid: 1553 - components: - - pos: 11.5,13.5 - parent: 6 - type: Transform - - uid: 1555 - components: - - pos: -16.5,-33.5 - parent: 6 - type: Transform - - uid: 1573 - components: - - pos: -35.5,-18.5 - parent: 6 - type: Transform - - uid: 1574 - components: - - pos: -35.5,-19.5 - parent: 6 - type: Transform - - uid: 1575 - components: - - pos: -20.5,-33.5 - parent: 6 - type: Transform - - uid: 1576 - components: - - pos: -17.5,-33.5 - parent: 6 - type: Transform - - uid: 1577 - components: - - pos: -18.5,-33.5 - parent: 6 - type: Transform - - uid: 1584 - components: - - pos: -19.5,-33.5 - parent: 6 - type: Transform - - uid: 1686 - components: - - pos: -39.5,-19.5 - parent: 6 - type: Transform - - uid: 1687 - components: - - pos: -31.5,-13.5 - parent: 6 - type: Transform - - uid: 1688 - components: - - pos: -29.5,-13.5 - parent: 6 - type: Transform - - uid: 1724 - components: - - pos: -19.5,-60.5 - parent: 6 - type: Transform - - uid: 1748 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-4.5 - parent: 6 - type: Transform - - uid: 1749 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-5.5 - parent: 6 - type: Transform - - uid: 1750 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-7.5 - parent: 6 - type: Transform - - uid: 1751 - components: - - rot: 3.141592653589793 rad - pos: -31.5,-9.5 - parent: 6 - type: Transform - - uid: 1752 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-6.5 - parent: 6 - type: Transform - - uid: 1755 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-2.5 - parent: 6 - type: Transform - - uid: 1756 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-3.5 - parent: 6 - type: Transform - - uid: 1758 - components: - - rot: 3.141592653589793 rad - pos: -35.5,-9.5 - parent: 6 - type: Transform - - uid: 1759 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-9.5 - parent: 6 - type: Transform - - uid: 1760 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-9.5 - parent: 6 - type: Transform - - uid: 1761 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-8.5 - parent: 6 - type: Transform - - uid: 1762 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-8.5 - parent: 6 - type: Transform - - uid: 1763 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-8.5 - parent: 6 - type: Transform - - uid: 1775 - components: - - pos: -39.5,-16.5 - parent: 6 - type: Transform - - uid: 1776 - components: - - pos: -36.5,-16.5 - parent: 6 - type: Transform - - uid: 1777 - components: - - pos: -38.5,-16.5 - parent: 6 - type: Transform - - uid: 1778 - components: - - pos: -37.5,-16.5 - parent: 6 - type: Transform - - uid: 1779 - components: - - pos: -35.5,-14.5 - parent: 6 - type: Transform - - uid: 1783 - components: - - pos: -35.5,-13.5 - parent: 6 - type: Transform - - uid: 1784 - components: - - pos: -35.5,-16.5 - parent: 6 - type: Transform - - uid: 1785 - components: - - pos: -35.5,-15.5 - parent: 6 - type: Transform - - uid: 1786 - components: - - pos: -33.5,-13.5 - parent: 6 - type: Transform - - uid: 1789 - components: - - pos: -40.5,-16.5 - parent: 6 - type: Transform - - uid: 1790 - components: - - pos: -20.5,-60.5 - parent: 6 - type: Transform - - uid: 1791 - components: - - pos: -21.5,-60.5 - parent: 6 - type: Transform - - uid: 1792 - components: - - pos: -22.5,-60.5 - parent: 6 - type: Transform - - uid: 1794 - components: - - pos: -24.5,-60.5 - parent: 6 - type: Transform - - uid: 1795 - components: - - pos: -25.5,-60.5 - parent: 6 - type: Transform - - uid: 1796 - components: - - pos: -29.5,-62.5 - parent: 6 - type: Transform - - uid: 1843 - components: - - pos: -35.5,-60.5 - parent: 6 - type: Transform - - uid: 1847 - components: - - pos: -39.5,-60.5 - parent: 6 - type: Transform - - uid: 1848 - components: - - pos: -40.5,-60.5 - parent: 6 - type: Transform - - uid: 1849 - components: - - pos: -40.5,-59.5 - parent: 6 - type: Transform - - uid: 1850 - components: - - pos: -40.5,-58.5 - parent: 6 - type: Transform - - uid: 1851 - components: - - pos: -42.5,-58.5 - parent: 6 - type: Transform - - uid: 1852 - components: - - pos: -41.5,-58.5 - parent: 6 - type: Transform - - uid: 1859 - components: - - pos: -40.5,-55.5 - parent: 6 - type: Transform - - uid: 1860 - components: - - pos: -40.5,-54.5 - parent: 6 - type: Transform - - uid: 1861 - components: - - pos: -40.5,-53.5 - parent: 6 - type: Transform - - uid: 1862 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-55.5 - parent: 6 - type: Transform - - uid: 1865 - components: - - rot: 3.141592653589793 rad - pos: -47.5,-46.5 - parent: 6 - type: Transform - - uid: 1924 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-22.5 - parent: 6 - type: Transform - - uid: 1927 - components: - - pos: -43.5,-14.5 - parent: 6 - type: Transform - - uid: 1929 - components: - - pos: -44.5,-18.5 - parent: 6 - type: Transform - - uid: 1930 - components: - - pos: -43.5,-18.5 - parent: 6 - type: Transform - - uid: 1939 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-55.5 - parent: 6 - type: Transform - - uid: 1940 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-53.5 - parent: 6 - type: Transform - - uid: 1941 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-54.5 - parent: 6 - type: Transform - - uid: 1942 - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-55.5 - parent: 6 - type: Transform - - uid: 1943 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-55.5 - parent: 6 - type: Transform - - uid: 1944 - components: - - rot: 3.141592653589793 rad - pos: -47.5,-52.5 - parent: 6 - type: Transform - - uid: 1945 - components: - - rot: 3.141592653589793 rad - pos: -47.5,-47.5 - parent: 6 - type: Transform - - uid: 1946 - components: - - rot: 3.141592653589793 rad - pos: -47.5,-48.5 - parent: 6 - type: Transform - - uid: 1947 - components: - - rot: 3.141592653589793 rad - pos: -47.5,-49.5 - parent: 6 - type: Transform - - uid: 1948 - components: - - rot: 3.141592653589793 rad - pos: -47.5,-51.5 - parent: 6 - type: Transform - - uid: 1949 - components: - - rot: 3.141592653589793 rad - pos: -47.5,-50.5 - parent: 6 - type: Transform - - uid: 1953 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-55.5 - parent: 6 - type: Transform - - uid: 1955 - components: - - pos: -52.5,-52.5 - parent: 6 - type: Transform - - uid: 1967 - components: - - pos: -74.5,-42.5 - parent: 6 - type: Transform - - uid: 1992 - components: - - rot: 3.141592653589793 rad - pos: -20.5,5.5 - parent: 6 - type: Transform - - uid: 1993 - components: - - rot: 3.141592653589793 rad - pos: -17.5,4.5 - parent: 6 - type: Transform - - uid: 1994 - components: - - rot: 3.141592653589793 rad - pos: -17.5,3.5 - parent: 6 - type: Transform - - uid: 1995 - components: - - rot: 3.141592653589793 rad - pos: -17.5,2.5 - parent: 6 - type: Transform - - uid: 1996 - components: - - rot: 3.141592653589793 rad - pos: -17.5,1.5 - parent: 6 - type: Transform - - uid: 1997 - components: - - rot: 3.141592653589793 rad - pos: -22.5,5.5 - parent: 6 - type: Transform - - uid: 1998 - components: - - rot: 3.141592653589793 rad - pos: -21.5,5.5 - parent: 6 - type: Transform - - uid: 1999 - components: - - rot: 3.141592653589793 rad - pos: -22.5,0.5 - parent: 6 - type: Transform - - uid: 2000 - components: - - rot: 3.141592653589793 rad - pos: -21.5,0.5 - parent: 6 - type: Transform - - uid: 2001 - components: - - rot: 3.141592653589793 rad - pos: -18.5,0.5 - parent: 6 - type: Transform - - uid: 2002 - components: - - rot: 3.141592653589793 rad - pos: -19.5,0.5 - parent: 6 - type: Transform - - uid: 2003 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-2.5 - parent: 6 - type: Transform - - uid: 2004 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-2.5 - parent: 6 - type: Transform - - uid: 2005 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-2.5 - parent: 6 - type: Transform - - uid: 2006 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-2.5 - parent: 6 - type: Transform - - uid: 2007 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-2.5 - parent: 6 - type: Transform - - uid: 2008 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-2.5 - parent: 6 - type: Transform - - uid: 2009 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-3.5 - parent: 6 - type: Transform - - uid: 2010 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-4.5 - parent: 6 - type: Transform - - uid: 2012 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-6.5 - parent: 6 - type: Transform - - uid: 2013 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-7.5 - parent: 6 - type: Transform - - uid: 2014 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-8.5 - parent: 6 - type: Transform - - uid: 2016 - components: - - pos: -24.5,0.5 - parent: 6 - type: Transform - - uid: 2017 - components: - - pos: -25.5,0.5 - parent: 6 - type: Transform - - uid: 2018 - components: - - pos: -74.5,-40.5 - parent: 6 - type: Transform - - uid: 2019 - components: - - pos: -28.5,0.5 - parent: 6 - type: Transform - - uid: 2020 - components: - - pos: -29.5,0.5 - parent: 6 - type: Transform - - uid: 2021 - components: - - pos: -29.5,1.5 - parent: 6 - type: Transform - - uid: 2022 - components: - - pos: -29.5,2.5 - parent: 6 - type: Transform - - uid: 2023 - components: - - pos: -29.5,3.5 - parent: 6 - type: Transform - - uid: 2024 - components: - - pos: -29.5,4.5 - parent: 6 - type: Transform - - uid: 2025 - components: - - pos: -29.5,5.5 - parent: 6 - type: Transform - - uid: 2026 - components: - - pos: -28.5,5.5 - parent: 6 - type: Transform - - uid: 2027 - components: - - pos: -27.5,5.5 - parent: 6 - type: Transform - - uid: 2028 - components: - - pos: -26.5,5.5 - parent: 6 - type: Transform - - uid: 2029 - components: - - pos: -25.5,5.5 - parent: 6 - type: Transform - - uid: 2030 - components: - - pos: -24.5,5.5 - parent: 6 - type: Transform - - uid: 2033 - components: - - pos: -28.5,-2.5 - parent: 6 - type: Transform - - uid: 2034 - components: - - pos: -28.5,-3.5 - parent: 6 - type: Transform - - uid: 2035 - components: - - pos: -28.5,-4.5 - parent: 6 - type: Transform - - uid: 2036 - components: - - pos: -27.5,-4.5 - parent: 6 - type: Transform - - uid: 2037 - components: - - pos: -26.5,-4.5 - parent: 6 - type: Transform - - uid: 2038 - components: - - pos: -25.5,-4.5 - parent: 6 - type: Transform - - uid: 2039 - components: - - pos: -24.5,-4.5 - parent: 6 - type: Transform - - uid: 2040 - components: - - pos: -20.5,-2.5 - parent: 6 - type: Transform - - uid: 2041 - components: - - pos: -45.5,-18.5 - parent: 6 - type: Transform - - uid: 2043 - components: - - pos: -43.5,-13.5 - parent: 6 - type: Transform - - uid: 2044 - components: - - pos: -44.5,-13.5 - parent: 6 - type: Transform - - uid: 2075 - components: - - pos: -74.5,-37.5 - parent: 6 - type: Transform - - uid: 2093 - components: - - rot: 3.141592653589793 rad - pos: -31.5,-8.5 - parent: 6 - type: Transform - - uid: 2094 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-8.5 - parent: 6 - type: Transform - - uid: 2095 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-8.5 - parent: 6 - type: Transform - - uid: 2100 - components: - - pos: -39.5,-0.5 - parent: 6 - type: Transform - - uid: 2101 - components: - - pos: -39.5,0.5 - parent: 6 - type: Transform - - uid: 2102 - components: - - pos: -39.5,1.5 - parent: 6 - type: Transform - - uid: 2103 - components: - - pos: -39.5,2.5 - parent: 6 - type: Transform - - uid: 2104 - components: - - pos: -39.5,3.5 - parent: 6 - type: Transform - - uid: 2110 - components: - - pos: -39.5,4.5 - parent: 6 - type: Transform - - uid: 2111 - components: - - pos: -39.5,5.5 - parent: 6 - type: Transform - - uid: 2113 - components: - - pos: -35.5,5.5 - parent: 6 - type: Transform - - uid: 2114 - components: - - pos: -34.5,5.5 - parent: 6 - type: Transform - - uid: 2115 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,7.5 - parent: 6 - type: Transform - - uid: 2116 - components: - - pos: -36.5,5.5 - parent: 6 - type: Transform - - uid: 2118 - components: - - pos: -33.5,5.5 - parent: 6 - type: Transform - - uid: 2122 - components: - - pos: -33.5,1.5 - parent: 6 - type: Transform - - uid: 2123 - components: - - pos: -33.5,0.5 - parent: 6 - type: Transform - - uid: 2124 - components: - - pos: -33.5,-0.5 - parent: 6 - type: Transform - - uid: 2143 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-7.5 - parent: 6 - type: Transform - - uid: 2144 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-7.5 - parent: 6 - type: Transform - - uid: 2145 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-7.5 - parent: 6 - type: Transform - - uid: 2148 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,5.5 - parent: 6 - type: Transform - - uid: 2149 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,5.5 - parent: 6 - type: Transform - - uid: 2150 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,7.5 - parent: 6 - type: Transform - - uid: 2151 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,8.5 - parent: 6 - type: Transform - - uid: 2152 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,8.5 - parent: 6 - type: Transform - - uid: 2153 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,8.5 - parent: 6 - type: Transform - - uid: 2154 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,8.5 - parent: 6 - type: Transform - - uid: 2155 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,7.5 - parent: 6 - type: Transform - - uid: 2157 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,9.5 - parent: 6 - type: Transform - - uid: 2158 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,10.5 - parent: 6 - type: Transform - - uid: 2162 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,14.5 - parent: 6 - type: Transform - - uid: 2163 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,15.5 - parent: 6 - type: Transform - - uid: 2164 - components: - - pos: -38.5,7.5 - parent: 6 - type: Transform - - uid: 2257 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,8.5 - parent: 6 - type: Transform - - uid: 2258 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,8.5 - parent: 6 - type: Transform - - uid: 2259 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,8.5 - parent: 6 - type: Transform - - uid: 2260 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,8.5 - parent: 6 - type: Transform - - uid: 2261 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,15.5 - parent: 6 - type: Transform - - uid: 2262 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,10.5 - parent: 6 - type: Transform - - uid: 2263 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,16.5 - parent: 6 - type: Transform - - uid: 2264 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,12.5 - parent: 6 - type: Transform - - uid: 2265 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,17.5 - parent: 6 - type: Transform - - uid: 2266 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,14.5 - parent: 6 - type: Transform - - uid: 2267 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,18.5 - parent: 6 - type: Transform - - uid: 2268 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,16.5 - parent: 6 - type: Transform - - uid: 2269 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,19.5 - parent: 6 - type: Transform - - uid: 2270 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,18.5 - parent: 6 - type: Transform - - uid: 2271 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,20.5 - parent: 6 - type: Transform - - uid: 2272 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,20.5 - parent: 6 - type: Transform - - uid: 2273 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,10.5 - parent: 6 - type: Transform - - uid: 2274 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,10.5 - parent: 6 - type: Transform - - uid: 2275 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,10.5 - parent: 6 - type: Transform - - uid: 2276 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,12.5 - parent: 6 - type: Transform - - uid: 2277 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,12.5 - parent: 6 - type: Transform - - uid: 2278 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,12.5 - parent: 6 - type: Transform - - uid: 2279 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,14.5 - parent: 6 - type: Transform - - uid: 2280 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,14.5 - parent: 6 - type: Transform - - uid: 2281 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,14.5 - parent: 6 - type: Transform - - uid: 2282 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,16.5 - parent: 6 - type: Transform - - uid: 2283 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,16.5 - parent: 6 - type: Transform - - uid: 2284 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,16.5 - parent: 6 - type: Transform - - uid: 2285 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,18.5 - parent: 6 - type: Transform - - uid: 2286 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,18.5 - parent: 6 - type: Transform - - uid: 2287 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,18.5 - parent: 6 - type: Transform - - uid: 2288 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,20.5 - parent: 6 - type: Transform - - uid: 2289 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,20.5 - parent: 6 - type: Transform - - uid: 2290 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,20.5 - parent: 6 - type: Transform - - uid: 2345 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,14.5 - parent: 6 - type: Transform - - uid: 2346 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,13.5 - parent: 6 - type: Transform - - uid: 2347 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,12.5 - parent: 6 - type: Transform - - uid: 2348 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,11.5 - parent: 6 - type: Transform - - uid: 2349 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,10.5 - parent: 6 - type: Transform - - uid: 2350 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,9.5 - parent: 6 - type: Transform - - uid: 2351 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,8.5 - parent: 6 - type: Transform - - uid: 2372 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,23.5 - parent: 6 - type: Transform - - uid: 2380 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,23.5 - parent: 6 - type: Transform - - uid: 2387 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,20.5 - parent: 6 - type: Transform - - uid: 2392 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,19.5 - parent: 6 - type: Transform - - uid: 2393 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,20.5 - parent: 6 - type: Transform - - uid: 2394 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,21.5 - parent: 6 - type: Transform - - uid: 2395 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,22.5 - parent: 6 - type: Transform - - uid: 2396 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,23.5 - parent: 6 - type: Transform - - uid: 2398 - components: - - pos: -31.5,21.5 - parent: 6 - type: Transform - - uid: 2399 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,25.5 - parent: 6 - type: Transform - - uid: 2400 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,25.5 - parent: 6 - type: Transform - - uid: 2401 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,27.5 - parent: 6 - type: Transform - - uid: 2402 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,27.5 - parent: 6 - type: Transform - - uid: 2451 - components: - - pos: -47.5,-13.5 - parent: 6 - type: Transform - - uid: 2452 - components: - - pos: -48.5,-14.5 - parent: 6 - type: Transform - - uid: 2453 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-22.5 - parent: 6 - type: Transform - - uid: 2454 - components: - - rot: 3.141592653589793 rad - pos: -52.5,-46.5 - parent: 6 - type: Transform - - uid: 2455 - components: - - pos: -43.5,-15.5 - parent: 6 - type: Transform - - uid: 2456 - components: - - pos: -43.5,-16.5 - parent: 6 - type: Transform - - uid: 2457 - components: - - pos: -43.5,-17.5 - parent: 6 - type: Transform - - uid: 2458 - components: - - rot: 3.141592653589793 rad - pos: -52.5,-42.5 - parent: 6 - type: Transform - - uid: 2459 - components: - - pos: -47.5,-18.5 - parent: 6 - type: Transform - - uid: 2460 - components: - - pos: -46.5,-18.5 - parent: 6 - type: Transform - - uid: 2461 - components: - - pos: -48.5,-15.5 - parent: 6 - type: Transform - - uid: 2462 - components: - - pos: -48.5,-16.5 - parent: 6 - type: Transform - - uid: 2463 - components: - - pos: -48.5,-17.5 - parent: 6 - type: Transform - - uid: 2464 - components: - - pos: -48.5,-18.5 - parent: 6 - type: Transform - - uid: 2474 - components: - - rot: 3.141592653589793 rad - pos: -52.5,-36.5 - parent: 6 - type: Transform - - uid: 2479 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-22.5 - parent: 6 - type: Transform - - uid: 2481 - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-26.5 - parent: 6 - type: Transform - - uid: 2482 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-25.5 - parent: 6 - type: Transform - - uid: 2483 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-23.5 - parent: 6 - type: Transform - - uid: 2484 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-24.5 - parent: 6 - type: Transform - - uid: 2485 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-26.5 - parent: 6 - type: Transform - - uid: 2486 - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-26.5 - parent: 6 - type: Transform - - uid: 2487 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-26.5 - parent: 6 - type: Transform - - uid: 2488 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-26.5 - parent: 6 - type: Transform - - uid: 2491 - components: - - pos: -42.5,-1.5 - parent: 6 - type: Transform - - uid: 2492 - components: - - pos: -47.5,-9.5 - parent: 6 - type: Transform - - uid: 2493 - components: - - pos: -46.5,-9.5 - parent: 6 - type: Transform - - uid: 2494 - components: - - pos: -45.5,-9.5 - parent: 6 - type: Transform - - uid: 2495 - components: - - pos: -44.5,-9.5 - parent: 6 - type: Transform - - uid: 2496 - components: - - pos: -43.5,-9.5 - parent: 6 - type: Transform - - uid: 2497 - components: - - pos: -42.5,-9.5 - parent: 6 - type: Transform - - uid: 2498 - components: - - pos: -42.5,-8.5 - parent: 6 - type: Transform - - uid: 2499 - components: - - pos: -42.5,-6.5 - parent: 6 - type: Transform - - uid: 2505 - components: - - rot: 3.141592653589793 rad - pos: -51.5,-42.5 - parent: 6 - type: Transform - - uid: 2506 - components: - - rot: 3.141592653589793 rad - pos: -52.5,-40.5 - parent: 6 - type: Transform - - uid: 2507 - components: - - rot: 3.141592653589793 rad - pos: -52.5,-41.5 - parent: 6 - type: Transform - - uid: 2508 - components: - - rot: 3.141592653589793 rad - pos: -52.5,-47.5 - parent: 6 - type: Transform - - uid: 2509 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-48.5 - parent: 6 - type: Transform - - uid: 2510 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-48.5 - parent: 6 - type: Transform - - uid: 2514 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-46.5 - parent: 6 - type: Transform - - uid: 2515 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-42.5 - parent: 6 - type: Transform - - uid: 2519 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-40.5 - parent: 6 - type: Transform - - uid: 2526 - components: - - rot: 3.141592653589793 rad - pos: -51.5,-46.5 - parent: 6 - type: Transform - - uid: 2527 - components: - - rot: 3.141592653589793 rad - pos: -51.5,-44.5 - parent: 6 - type: Transform - - uid: 2534 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-22.5 - parent: 6 - type: Transform - - uid: 2535 - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-22.5 - parent: 6 - type: Transform - - uid: 2536 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-23.5 - parent: 6 - type: Transform - - uid: 2537 - components: - - pos: -48.5,-13.5 - parent: 6 - type: Transform - - uid: 2560 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-9.5 - parent: 6 - type: Transform - - uid: 2561 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,-9.5 - parent: 6 - type: Transform - - uid: 2562 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,-6.5 - parent: 6 - type: Transform - - uid: 2563 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-6.5 - parent: 6 - type: Transform - - uid: 2564 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-9.5 - parent: 6 - type: Transform - - uid: 2565 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-6.5 - parent: 6 - type: Transform - - uid: 2566 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-9.5 - parent: 6 - type: Transform - - uid: 2567 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-6.5 - parent: 6 - type: Transform - - uid: 2568 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-9.5 - parent: 6 - type: Transform - - uid: 2569 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-9.5 - parent: 6 - type: Transform - - uid: 2570 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-6.5 - parent: 6 - type: Transform - - uid: 2571 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-6.5 - parent: 6 - type: Transform - - uid: 2572 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-9.5 - parent: 6 - type: Transform - - uid: 2573 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-8.5 - parent: 6 - type: Transform - - uid: 2574 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-8.5 - parent: 6 - type: Transform - - uid: 2577 - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-9.5 - parent: 6 - type: Transform - - uid: 2578 - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-9.5 - parent: 6 - type: Transform - - uid: 2579 - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-14.5 - parent: 6 - type: Transform - - uid: 2580 - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-14.5 - parent: 6 - type: Transform - - uid: 2582 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,-14.5 - parent: 6 - type: Transform - - uid: 2583 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,-15.5 - parent: 6 - type: Transform - - uid: 2597 - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-17.5 - parent: 6 - type: Transform - - uid: 2610 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-24.5 - parent: 6 - type: Transform - - uid: 2611 - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-25.5 - parent: 6 - type: Transform - - uid: 2618 - components: - - pos: -75.5,-37.5 - parent: 6 - type: Transform - - uid: 2626 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-55.5 - parent: 6 - type: Transform - - uid: 2627 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-55.5 - parent: 6 - type: Transform - - uid: 2628 - components: - - pos: -42.5,-7.5 - parent: 6 - type: Transform - - uid: 2629 - components: - - pos: -42.5,0.5 - parent: 6 - type: Transform - - uid: 2630 - components: - - pos: -42.5,-0.5 - parent: 6 - type: Transform - - uid: 2631 - components: - - pos: -42.5,4.5 - parent: 6 - type: Transform - - uid: 2632 - components: - - pos: -42.5,5.5 - parent: 6 - type: Transform - - uid: 2633 - components: - - pos: -42.5,6.5 - parent: 6 - type: Transform - - uid: 2758 - components: - - pos: -76.5,-37.5 - parent: 6 - type: Transform - - uid: 2821 - components: - - pos: -77.5,-37.5 - parent: 6 - type: Transform - - uid: 2824 - components: - - pos: -77.5,-36.5 - parent: 6 - type: Transform - - uid: 2827 - components: - - pos: -78.5,-36.5 - parent: 6 - type: Transform - - uid: 2859 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,-16.5 - parent: 6 - type: Transform - - uid: 2860 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,-17.5 - parent: 6 - type: Transform - - uid: 2861 - components: - - rot: 1.5707963267948966 rad - pos: -67.5,-18.5 - parent: 6 - type: Transform - - uid: 2862 - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-18.5 - parent: 6 - type: Transform - - uid: 2863 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-18.5 - parent: 6 - type: Transform - - uid: 2864 - components: - - rot: 1.5707963267948966 rad - pos: -64.5,-18.5 - parent: 6 - type: Transform - - uid: 2865 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-18.5 - parent: 6 - type: Transform - - uid: 2866 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-17.5 - parent: 6 - type: Transform - - uid: 2867 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-20.5 - parent: 6 - type: Transform - - uid: 2868 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-19.5 - parent: 6 - type: Transform - - uid: 2869 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-17.5 - parent: 6 - type: Transform - - uid: 2870 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-17.5 - parent: 6 - type: Transform - - uid: 2871 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-18.5 - parent: 6 - type: Transform - - uid: 2872 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-19.5 - parent: 6 - type: Transform - - uid: 2873 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-20.5 - parent: 6 - type: Transform - - uid: 2874 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-21.5 - parent: 6 - type: Transform - - uid: 2875 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-22.5 - parent: 6 - type: Transform - - uid: 2876 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-23.5 - parent: 6 - type: Transform - - uid: 2877 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-21.5 - parent: 6 - type: Transform - - uid: 2878 - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-21.5 - parent: 6 - type: Transform - - uid: 2879 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-21.5 - parent: 6 - type: Transform - - uid: 2884 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-7.5 - parent: 6 - type: Transform - - uid: 2885 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-7.5 - parent: 6 - type: Transform - - uid: 2916 - components: - - rot: 3.141592653589793 rad - pos: -57.5,-23.5 - parent: 6 - type: Transform - - uid: 2919 - components: - - rot: 3.141592653589793 rad - pos: -54.5,-23.5 - parent: 6 - type: Transform - - uid: 2920 - components: - - rot: 3.141592653589793 rad - pos: -53.5,-23.5 - parent: 6 - type: Transform - - uid: 2921 - components: - - rot: 3.141592653589793 rad - pos: -52.5,-23.5 - parent: 6 - type: Transform - - uid: 2922 - components: - - rot: 3.141592653589793 rad - pos: -53.5,-29.5 - parent: 6 - type: Transform - - uid: 2923 - components: - - rot: 3.141592653589793 rad - pos: -52.5,-29.5 - parent: 6 - type: Transform - - uid: 2924 - components: - - rot: 3.141592653589793 rad - pos: -51.5,-29.5 - parent: 6 - type: Transform - - uid: 2925 - components: - - rot: 3.141592653589793 rad - pos: -53.5,-28.5 - parent: 6 - type: Transform - - uid: 2929 - components: - - rot: 3.141592653589793 rad - pos: -53.5,-24.5 - parent: 6 - type: Transform - - uid: 2953 - components: - - rot: 3.141592653589793 rad - pos: -53.5,-36.5 - parent: 6 - type: Transform - - uid: 2954 - components: - - rot: 3.141592653589793 rad - pos: -54.5,-36.5 - parent: 6 - type: Transform - - uid: 2955 - components: - - rot: 3.141592653589793 rad - pos: -55.5,-36.5 - parent: 6 - type: Transform - - uid: 2956 - components: - - rot: 3.141592653589793 rad - pos: -53.5,-30.5 - parent: 6 - type: Transform - - uid: 2957 - components: - - rot: 3.141592653589793 rad - pos: -54.5,-30.5 - parent: 6 - type: Transform - - uid: 2958 - components: - - rot: 3.141592653589793 rad - pos: -55.5,-30.5 - parent: 6 - type: Transform - - uid: 2997 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-4.5 - parent: 6 - type: Transform - - uid: 3015 - components: - - pos: 1.5,-3.5 - parent: 6 - type: Transform - - uid: 3027 - components: - - pos: 1.5,1.5 - parent: 6 - type: Transform - - uid: 3067 - components: - - pos: -48.5,-52.5 - parent: 6 - type: Transform - - uid: 3068 - components: - - rot: 3.141592653589793 rad - pos: -50.5,-46.5 - parent: 6 - type: Transform - - uid: 3144 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,8.5 - parent: 6 - type: Transform - - uid: 3146 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,9.5 - parent: 6 - type: Transform - - uid: 3147 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,7.5 - parent: 6 - type: Transform - - uid: 3151 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,8.5 - parent: 6 - type: Transform - - uid: 3156 - components: - - pos: -26.5,15.5 - parent: 6 - type: Transform - - uid: 3157 - components: - - pos: -27.5,15.5 - parent: 6 - type: Transform - - uid: 3161 - components: - - pos: -27.5,19.5 - parent: 6 - type: Transform - - uid: 3162 - components: - - pos: -26.5,19.5 - parent: 6 - type: Transform - - uid: 3163 - components: - - pos: -24.5,19.5 - parent: 6 - type: Transform - - uid: 3164 - components: - - pos: -23.5,19.5 - parent: 6 - type: Transform - - uid: 3165 - components: - - pos: -23.5,18.5 - parent: 6 - type: Transform - - uid: 3166 - components: - - pos: -23.5,17.5 - parent: 6 - type: Transform - - uid: 3167 - components: - - pos: -23.5,16.5 - parent: 6 - type: Transform - - uid: 3168 - components: - - pos: -23.5,15.5 - parent: 6 - type: Transform - - uid: 3169 - components: - - pos: -24.5,15.5 - parent: 6 - type: Transform - - uid: 3397 - components: - - pos: -35.5,-17.5 - parent: 6 - type: Transform - - uid: 3404 - components: - - pos: 18.5,-3.5 - parent: 6 - type: Transform - - uid: 3405 - components: - - pos: 16.5,-5.5 - parent: 6 - type: Transform - - uid: 3406 - components: - - pos: 17.5,-5.5 - parent: 6 - type: Transform - - uid: 3414 - components: - - pos: 10.5,24.5 - parent: 6 - type: Transform - - uid: 3415 - components: - - pos: 10.5,23.5 - parent: 6 - type: Transform - - uid: 3426 - components: - - pos: 15.5,-1.5 - parent: 6 - type: Transform - - uid: 3639 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-71.5 - parent: 6 - type: Transform - - uid: 3755 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-62.5 - parent: 6 - type: Transform - - uid: 3756 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-63.5 - parent: 6 - type: Transform - - uid: 3757 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-61.5 - parent: 6 - type: Transform - - uid: 3759 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-61.5 - parent: 6 - type: Transform - - uid: 3761 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-62.5 - parent: 6 - type: Transform - - uid: 3764 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-63.5 - parent: 6 - type: Transform - - uid: 3766 - components: - - pos: -35.5,-61.5 - parent: 6 - type: Transform - - uid: 3767 - components: - - pos: -35.5,-62.5 - parent: 6 - type: Transform - - uid: 3768 - components: - - pos: -35.5,-63.5 - parent: 6 - type: Transform - - uid: 3769 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-64.5 - parent: 6 - type: Transform - - uid: 3770 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-64.5 - parent: 6 - type: Transform - - uid: 3772 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-64.5 - parent: 6 - type: Transform - - uid: 3773 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-64.5 - parent: 6 - type: Transform - - uid: 3775 - components: - - pos: -34.5,-63.5 - parent: 6 - type: Transform - - uid: 3782 - components: - - pos: -30.5,-62.5 - parent: 6 - type: Transform - - uid: 3784 - components: - - pos: -30.5,-63.5 - parent: 6 - type: Transform - - uid: 3824 - components: - - pos: -43.5,-58.5 - parent: 6 - type: Transform - - uid: 3825 - components: - - pos: -43.5,-57.5 - parent: 6 - type: Transform - - uid: 3826 - components: - - pos: -43.5,-56.5 - parent: 6 - type: Transform - - uid: 3849 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-47.5 - parent: 6 - type: Transform - - uid: 3853 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-48.5 - parent: 6 - type: Transform - - uid: 3854 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-48.5 - parent: 6 - type: Transform - - uid: 3870 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-40.5 - parent: 6 - type: Transform - - uid: 3873 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-40.5 - parent: 6 - type: Transform - - uid: 3874 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-41.5 - parent: 6 - type: Transform - - uid: 4181 - components: - - pos: 11.5,24.5 - parent: 6 - type: Transform - - uid: 4182 - components: - - pos: 12.5,24.5 - parent: 6 - type: Transform - - uid: 4183 - components: - - pos: 13.5,24.5 - parent: 6 - type: Transform - - uid: 4184 - components: - - pos: 14.5,24.5 - parent: 6 - type: Transform - - uid: 4185 - components: - - pos: 14.5,23.5 - parent: 6 - type: Transform - - uid: 4186 - components: - - pos: 15.5,22.5 - parent: 6 - type: Transform - - uid: 4187 - components: - - pos: 14.5,22.5 - parent: 6 - type: Transform - - uid: 4188 - components: - - pos: 19.5,22.5 - parent: 6 - type: Transform - - uid: 4189 - components: - - pos: 20.5,22.5 - parent: 6 - type: Transform - - uid: 4190 - components: - - pos: 20.5,21.5 - parent: 6 - type: Transform - - uid: 4667 - components: - - pos: 9.5,8.5 - parent: 6 - type: Transform - - uid: 4668 - components: - - pos: 9.5,7.5 - parent: 6 - type: Transform - - uid: 4669 - components: - - pos: 9.5,6.5 - parent: 6 - type: Transform - - uid: 4670 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,10.5 - parent: 6 - type: Transform - - uid: 4731 - components: - - pos: -79.5,-45.5 - parent: 6 - type: Transform - - uid: 4732 - components: - - pos: -79.5,-46.5 - parent: 6 - type: Transform - - uid: 4733 - components: - - pos: -79.5,-42.5 - parent: 6 - type: Transform - - uid: 4734 - components: - - pos: -77.5,-51.5 - parent: 6 - type: Transform - - uid: 4737 - components: - - pos: -77.5,-48.5 - parent: 6 - type: Transform - - uid: 4740 - components: - - pos: -79.5,-41.5 - parent: 6 - type: Transform - - uid: 4741 - components: - - pos: -78.5,-41.5 - parent: 6 - type: Transform - - uid: 4742 - components: - - pos: -77.5,-41.5 - parent: 6 - type: Transform - - uid: 4743 - components: - - pos: -77.5,-40.5 - parent: 6 - type: Transform - - uid: 4744 - components: - - pos: -77.5,-47.5 - parent: 6 - type: Transform - - uid: 4745 - components: - - pos: -78.5,-47.5 - parent: 6 - type: Transform - - uid: 4746 - components: - - pos: -79.5,-47.5 - parent: 6 - type: Transform - - uid: 4747 - components: - - pos: -76.5,-51.5 - parent: 6 - type: Transform - - uid: 4748 - components: - - pos: -75.5,-51.5 - parent: 6 - type: Transform - - uid: 4749 - components: - - pos: -74.5,-51.5 - parent: 6 - type: Transform - - uid: 4752 - components: - - pos: -74.5,-48.5 - parent: 6 - type: Transform - - uid: 4754 - components: - - pos: -77.5,-52.5 - parent: 6 - type: Transform - - uid: 4755 - components: - - pos: -78.5,-52.5 - parent: 6 - type: Transform - - uid: 4756 - components: - - pos: -78.5,-53.5 - parent: 6 - type: Transform - - uid: 4757 - components: - - pos: -80.5,-53.5 - parent: 6 - type: Transform - - uid: 4758 - components: - - pos: -80.5,-52.5 - parent: 6 - type: Transform - - uid: 4759 - components: - - pos: -81.5,-52.5 - parent: 6 - type: Transform - - uid: 4760 - components: - - pos: -81.5,-51.5 - parent: 6 - type: Transform - - uid: 4761 - components: - - pos: -82.5,-51.5 - parent: 6 - type: Transform - - uid: 4762 - components: - - pos: -83.5,-51.5 - parent: 6 - type: Transform - - uid: 4763 - components: - - pos: -84.5,-51.5 - parent: 6 - type: Transform - - uid: 4764 - components: - - pos: -80.5,-47.5 - parent: 6 - type: Transform - - uid: 4765 - components: - - pos: -81.5,-47.5 - parent: 6 - type: Transform - - uid: 4767 - components: - - pos: -81.5,-48.5 - parent: 6 - type: Transform - - uid: 4772 - components: - - pos: -85.5,-42.5 - parent: 6 - type: Transform - - uid: 4773 - components: - - pos: -84.5,-50.5 - parent: 6 - type: Transform - - uid: 4774 - components: - - pos: -85.5,-49.5 - parent: 6 - type: Transform - - uid: 4775 - components: - - pos: -85.5,-48.5 - parent: 6 - type: Transform - - uid: 4776 - components: - - pos: -85.5,-47.5 - parent: 6 - type: Transform - - uid: 4777 - components: - - pos: -80.5,-41.5 - parent: 6 - type: Transform - - uid: 4780 - components: - - pos: -80.5,-42.5 - parent: 6 - type: Transform - - uid: 4781 - components: - - pos: -80.5,-43.5 - parent: 6 - type: Transform - - uid: 4783 - components: - - pos: -80.5,-45.5 - parent: 6 - type: Transform - - uid: 4784 - components: - - pos: -80.5,-46.5 - parent: 6 - type: Transform - - uid: 4785 - components: - - pos: -81.5,-43.5 - parent: 6 - type: Transform - - uid: 4787 - components: - - pos: -81.5,-45.5 - parent: 6 - type: Transform - - uid: 4788 - components: - - pos: -84.5,-49.5 - parent: 6 - type: Transform - - uid: 4789 - components: - - pos: -85.5,-46.5 - parent: 6 - type: Transform - - uid: 4790 - components: - - pos: -85.5,-44.5 - parent: 6 - type: Transform - - uid: 4913 - components: - - pos: -37.5,5.5 - parent: 6 - type: Transform - - uid: 4918 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,7.5 - parent: 6 - type: Transform - - uid: 4919 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,7.5 - parent: 6 - type: Transform - - uid: 4923 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,8.5 - parent: 6 - type: Transform - - uid: 4924 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,8.5 - parent: 6 - type: Transform - - uid: 4925 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,9.5 - parent: 6 - type: Transform - - uid: 4927 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,7.5 - parent: 6 - type: Transform - - uid: 4929 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,7.5 - parent: 6 - type: Transform - - uid: 4933 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,9.5 - parent: 6 - type: Transform - - uid: 4949 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-4.5 - parent: 6 - type: Transform - - uid: 5041 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,7.5 - parent: 6 - type: Transform - - uid: 5118 - components: - - pos: -4.5,-1.5 - parent: 6 - type: Transform - - uid: 5169 - components: - - pos: -5.5,-1.5 - parent: 6 - type: Transform - - uid: 5905 - components: - - pos: 17.5,12.5 - parent: 6 - type: Transform - - uid: 5906 - components: - - pos: 12.5,12.5 - parent: 6 - type: Transform - - uid: 5935 - components: - - pos: 37.5,-9.5 - parent: 6 - type: Transform - - uid: 5943 - components: - - pos: 29.5,-13.5 - parent: 6 - type: Transform - - uid: 6177 - components: - - pos: -40.5,-19.5 - parent: 6 - type: Transform - - uid: 6178 - components: - - pos: -40.5,-18.5 - parent: 6 - type: Transform - - uid: 6179 - components: - - pos: -40.5,-17.5 - parent: 6 - type: Transform - - uid: 6202 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-3.5 - parent: 6 - type: Transform - - uid: 6203 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-6.5 - parent: 6 - type: Transform - - uid: 6357 - components: - - pos: -38.5,5.5 - parent: 6 - type: Transform - - uid: 6370 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,7.5 - parent: 6 - type: Transform - - uid: 6390 - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-26.5 - parent: 6 - type: Transform - - uid: 6451 - components: - - pos: -26.5,-62.5 - parent: 6 - type: Transform - - uid: 8323 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,6.5 - parent: 6 - type: Transform - - uid: 8347 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,6.5 - parent: 6 - type: Transform - - uid: 8369 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,6.5 - parent: 6 - type: Transform - - uid: 8370 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,6.5 - parent: 6 - type: Transform - - uid: 8371 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,6.5 - parent: 6 - type: Transform -- proto: WallShuttle - entities: - - uid: 13652 - components: - - pos: 3.5,0.5 - parent: 13645 - type: Transform - - uid: 13653 - components: - - pos: 0.5,0.5 - parent: 13645 - type: Transform - - uid: 13654 - components: - - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 13645 - type: Transform - - uid: 13655 - components: - - pos: 6.5,0.5 - parent: 13645 - type: Transform - - uid: 13657 - components: - - pos: 4.5,0.5 - parent: 13645 - type: Transform - - uid: 13661 - components: - - pos: 2.5,0.5 - parent: 13645 - type: Transform - - uid: 13672 - components: - - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 13645 - type: Transform -- proto: WallShuttleDiagonal - entities: - - uid: 13646 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 13645 - type: Transform - - uid: 13647 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-0.5 - parent: 13645 - type: Transform - - uid: 13648 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 13645 - type: Transform - - uid: 13649 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-0.5 - parent: 13645 - type: Transform -- proto: WallSolid - entities: - - uid: 13 - components: - - pos: 0.5,-4.5 - parent: 6 - type: Transform - - uid: 14 - components: - - pos: -0.5,-4.5 - parent: 6 - type: Transform - - uid: 18 - components: - - pos: -4.5,2.5 - parent: 6 - type: Transform - - uid: 25 - components: - - pos: -3.5,2.5 - parent: 6 - type: Transform - - uid: 26 - components: - - pos: -2.5,2.5 - parent: 6 - type: Transform - - uid: 31 - components: - - pos: -2.5,-4.5 - parent: 6 - type: Transform - - uid: 32 - components: - - pos: -3.5,-4.5 - parent: 6 - type: Transform - - uid: 62 - components: - - pos: 0.5,-7.5 - parent: 6 - type: Transform - - uid: 70 - components: - - pos: 0.5,-5.5 - parent: 6 - type: Transform - - uid: 76 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-8.5 - parent: 6 - type: Transform - - uid: 77 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-8.5 - parent: 6 - type: Transform - - uid: 78 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-7.5 - parent: 6 - type: Transform - - uid: 79 - components: - - pos: -8.5,-8.5 - parent: 6 - type: Transform - - uid: 89 - components: - - pos: -9.5,-8.5 - parent: 6 - type: Transform - - uid: 90 - components: - - pos: -10.5,-8.5 - parent: 6 - type: Transform - - uid: 91 - components: - - pos: -11.5,-8.5 - parent: 6 - type: Transform - - uid: 92 - components: - - pos: -12.5,-8.5 - parent: 6 - type: Transform - - uid: 93 - components: - - pos: -13.5,-8.5 - parent: 6 - type: Transform - - uid: 97 - components: - - pos: -13.5,-7.5 - parent: 6 - type: Transform - - uid: 99 - components: - - pos: -13.5,-6.5 - parent: 6 - type: Transform - - uid: 100 - components: - - pos: -13.5,-5.5 - parent: 6 - type: Transform - - uid: 101 - components: - - pos: -13.5,-4.5 - parent: 6 - type: Transform - - uid: 105 - components: - - pos: -11.5,-1.5 - parent: 6 - type: Transform - - uid: 106 - components: - - pos: -13.5,-0.5 - parent: 6 - type: Transform - - uid: 107 - components: - - pos: -13.5,0.5 - parent: 6 - type: Transform - - uid: 109 - components: - - pos: -11.5,-2.5 - parent: 6 - type: Transform - - uid: 110 - components: - - pos: -13.5,-3.5 - parent: 6 - type: Transform - - uid: 111 - components: - - pos: -13.5,-2.5 - parent: 6 - type: Transform - - uid: 112 - components: - - pos: -13.5,-1.5 - parent: 6 - type: Transform - - uid: 114 - components: - - pos: -5.5,2.5 - parent: 6 - type: Transform - - uid: 115 - components: - - pos: -6.5,2.5 - parent: 6 - type: Transform - - uid: 116 - components: - - pos: -7.5,2.5 - parent: 6 - type: Transform - - uid: 117 - components: - - pos: -8.5,2.5 - parent: 6 - type: Transform - - uid: 125 - components: - - pos: -8.5,-2.5 - parent: 6 - type: Transform - - uid: 128 - components: - - pos: -11.5,-0.5 - parent: 6 - type: Transform - - uid: 129 - components: - - pos: -11.5,0.5 - parent: 6 - type: Transform - - uid: 181 - components: - - pos: 0.5,2.5 - parent: 6 - type: Transform - - uid: 190 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-9.5 - parent: 6 - type: Transform - - uid: 191 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-9.5 - parent: 6 - type: Transform - - uid: 192 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-9.5 - parent: 6 - type: Transform - - uid: 193 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-9.5 - parent: 6 - type: Transform - - uid: 237 - components: - - pos: -7.5,-9.5 - parent: 6 - type: Transform - - uid: 238 - components: - - pos: -5.5,-9.5 - parent: 6 - type: Transform - - uid: 239 - components: - - pos: 0.5,-9.5 - parent: 6 - type: Transform - - uid: 240 - components: - - pos: 4.5,-9.5 - parent: 6 - type: Transform - - uid: 241 - components: - - pos: 7.5,-9.5 - parent: 6 - type: Transform - - uid: 242 - components: - - pos: -13.5,-9.5 - parent: 6 - type: Transform - - uid: 243 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-9.5 - parent: 6 - type: Transform - - uid: 244 - components: - - pos: -16.5,-13.5 - parent: 6 - type: Transform - - uid: 247 - components: - - pos: -13.5,-17.5 - parent: 6 - type: Transform - - uid: 248 - components: - - pos: -12.5,-13.5 - parent: 6 - type: Transform - - uid: 252 - components: - - pos: -8.5,-13.5 - parent: 6 - type: Transform - - uid: 253 - components: - - pos: -7.5,-13.5 - parent: 6 - type: Transform - - uid: 256 - components: - - pos: -4.5,-13.5 - parent: 6 - type: Transform - - uid: 257 - components: - - pos: -3.5,-13.5 - parent: 6 - type: Transform - - uid: 258 - components: - - pos: -2.5,-13.5 - parent: 6 - type: Transform - - uid: 259 - components: - - pos: -1.5,-13.5 - parent: 6 - type: Transform - - uid: 260 - components: - - pos: -0.5,-13.5 - parent: 6 - type: Transform - - uid: 265 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-17.5 - parent: 6 - type: Transform - - uid: 266 - components: - - pos: 3.5,-13.5 - parent: 6 - type: Transform - - uid: 268 - components: - - pos: 7.5,-13.5 - parent: 6 - type: Transform - - uid: 276 - components: - - pos: 8.5,-2.5 - parent: 6 - type: Transform - - uid: 277 - components: - - pos: 9.5,-2.5 - parent: 6 - type: Transform - - uid: 278 - components: - - pos: 10.5,-2.5 - parent: 6 - type: Transform - - uid: 279 - components: - - pos: 11.5,-2.5 - parent: 6 - type: Transform - - uid: 280 - components: - - pos: 11.5,-4.5 - parent: 6 - type: Transform - - uid: 285 - components: - - pos: 10.5,1.5 - parent: 6 - type: Transform - - uid: 286 - components: - - pos: 9.5,1.5 - parent: 6 - type: Transform - - uid: 287 - components: - - pos: 8.5,1.5 - parent: 6 - type: Transform - - uid: 297 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-15.5 - parent: 6 - type: Transform - - uid: 317 - components: - - pos: 14.5,2.5 - parent: 6 - type: Transform - - uid: 322 - components: - - pos: -12.5,-26.5 - parent: 6 - type: Transform - - uid: 368 - components: - - pos: 20.5,-14.5 - parent: 6 - type: Transform - - uid: 377 - components: - - pos: 7.5,-17.5 - parent: 6 - type: Transform - - uid: 378 - components: - - pos: 8.5,-17.5 - parent: 6 - type: Transform - - uid: 379 - components: - - pos: 9.5,-17.5 - parent: 6 - type: Transform - - uid: 380 - components: - - pos: 10.5,-17.5 - parent: 6 - type: Transform - - uid: 381 - components: - - pos: 11.5,-17.5 - parent: 6 - type: Transform - - uid: 382 - components: - - pos: 8.5,-13.5 - parent: 6 - type: Transform - - uid: 383 - components: - - pos: 10.5,-13.5 - parent: 6 - type: Transform - - uid: 384 - components: - - pos: 11.5,-13.5 - parent: 6 - type: Transform - - uid: 385 - components: - - pos: 11.5,-14.5 - parent: 6 - type: Transform - - uid: 386 - components: - - pos: 11.5,-15.5 - parent: 6 - type: Transform - - uid: 387 - components: - - pos: 18.5,-13.5 - parent: 6 - type: Transform - - uid: 388 - components: - - pos: 18.5,-14.5 - parent: 6 - type: Transform - - uid: 389 - components: - - pos: 18.5,-15.5 - parent: 6 - type: Transform - - uid: 390 - components: - - pos: 18.5,-16.5 - parent: 6 - type: Transform - - uid: 391 - components: - - pos: 18.5,-17.5 - parent: 6 - type: Transform - - uid: 396 - components: - - pos: 20.5,-19.5 - parent: 6 - type: Transform - - uid: 397 - components: - - pos: 21.5,-20.5 - parent: 6 - type: Transform - - uid: 399 - components: - - pos: 21.5,-22.5 - parent: 6 - type: Transform - - uid: 427 - components: - - pos: 11.5,-18.5 - parent: 6 - type: Transform - - uid: 428 - components: - - pos: 11.5,-19.5 - parent: 6 - type: Transform - - uid: 429 - components: - - pos: 11.5,-20.5 - parent: 6 - type: Transform - - uid: 430 - components: - - pos: 12.5,-20.5 - parent: 6 - type: Transform - - uid: 431 - components: - - pos: 13.5,-20.5 - parent: 6 - type: Transform - - uid: 432 - components: - - pos: 14.5,-20.5 - parent: 6 - type: Transform - - uid: 433 - components: - - pos: 15.5,-20.5 - parent: 6 - type: Transform - - uid: 434 - components: - - pos: 16.5,-20.5 - parent: 6 - type: Transform - - uid: 435 - components: - - pos: 17.5,-20.5 - parent: 6 - type: Transform - - uid: 437 - components: - - pos: 18.5,-18.5 - parent: 6 - type: Transform - - uid: 439 - components: - - pos: 18.5,-20.5 - parent: 6 - type: Transform - - uid: 442 - components: - - pos: 17.5,-13.5 - parent: 6 - type: Transform - - uid: 443 - components: - - pos: 12.5,-13.5 - parent: 6 - type: Transform - - uid: 444 - components: - - pos: 21.5,-6.5 - parent: 6 - type: Transform - - uid: 448 - components: - - pos: 20.5,-4.5 - parent: 6 - type: Transform - - uid: 449 - components: - - pos: 20.5,-3.5 - parent: 6 - type: Transform - - uid: 451 - components: - - pos: 20.5,-1.5 - parent: 6 - type: Transform - - uid: 452 - components: - - pos: 20.5,-0.5 - parent: 6 - type: Transform - - uid: 453 - components: - - pos: 20.5,0.5 - parent: 6 - type: Transform - - uid: 455 - components: - - pos: 22.5,0.5 - parent: 6 - type: Transform - - uid: 457 - components: - - pos: 24.5,0.5 - parent: 6 - type: Transform - - uid: 458 - components: - - pos: 24.5,1.5 - parent: 6 - type: Transform - - uid: 459 - components: - - pos: 24.5,2.5 - parent: 6 - type: Transform - - uid: 460 - components: - - pos: 24.5,3.5 - parent: 6 - type: Transform - - uid: 461 - components: - - pos: 24.5,4.5 - parent: 6 - type: Transform - - uid: 462 - components: - - pos: 24.5,5.5 - parent: 6 - type: Transform - - uid: 463 - components: - - pos: 24.5,6.5 - parent: 6 - type: Transform - - uid: 464 - components: - - pos: 23.5,6.5 - parent: 6 - type: Transform - - uid: 471 - components: - - pos: 25.5,-9.5 - parent: 6 - type: Transform - - uid: 475 - components: - - pos: 29.5,-9.5 - parent: 6 - type: Transform - - uid: 477 - components: - - pos: 29.5,-7.5 - parent: 6 - type: Transform - - uid: 479 - components: - - pos: 29.5,-5.5 - parent: 6 - type: Transform - - uid: 481 - components: - - pos: 29.5,-3.5 - parent: 6 - type: Transform - - uid: 482 - components: - - pos: 29.5,-2.5 - parent: 6 - type: Transform - - uid: 483 - components: - - pos: 29.5,-1.5 - parent: 6 - type: Transform - - uid: 484 - components: - - pos: 29.5,-0.5 - parent: 6 - type: Transform - - uid: 485 - components: - - pos: 29.5,0.5 - parent: 6 - type: Transform - - uid: 486 - components: - - pos: 29.5,1.5 - parent: 6 - type: Transform - - uid: 495 - components: - - pos: 22.5,-6.5 - parent: 6 - type: Transform - - uid: 498 - components: - - pos: 23.5,-6.5 - parent: 6 - type: Transform - - uid: 499 - components: - - pos: 23.5,-5.5 - parent: 6 - type: Transform - - uid: 500 - components: - - pos: 23.5,-4.5 - parent: 6 - type: Transform - - uid: 501 - components: - - pos: 23.5,-3.5 - parent: 6 - type: Transform - - uid: 502 - components: - - pos: 22.5,-3.5 - parent: 6 - type: Transform - - uid: 503 - components: - - pos: 25.5,-1.5 - parent: 6 - type: Transform - - uid: 504 - components: - - pos: 25.5,-2.5 - parent: 6 - type: Transform - - uid: 505 - components: - - pos: 25.5,-3.5 - parent: 6 - type: Transform - - uid: 506 - components: - - pos: 25.5,-4.5 - parent: 6 - type: Transform - - uid: 507 - components: - - pos: 25.5,-5.5 - parent: 6 - type: Transform - - uid: 508 - components: - - pos: 25.5,-6.5 - parent: 6 - type: Transform - - uid: 509 - components: - - pos: 25.5,-8.5 - parent: 6 - type: Transform - - uid: 510 - components: - - pos: 26.5,-3.5 - parent: 6 - type: Transform - - uid: 511 - components: - - pos: 27.5,-3.5 - parent: 6 - type: Transform - - uid: 512 - components: - - pos: 28.5,-3.5 - parent: 6 - type: Transform - - uid: 518 - components: - - pos: 24.5,-1.5 - parent: 6 - type: Transform - - uid: 538 - components: - - pos: 29.5,2.5 - parent: 6 - type: Transform - - uid: 540 - components: - - pos: 29.5,4.5 - parent: 6 - type: Transform - - uid: 542 - components: - - pos: 29.5,6.5 - parent: 6 - type: Transform - - uid: 543 - components: - - rot: 3.141592653589793 rad - pos: 28.5,7.5 - parent: 6 - type: Transform - - uid: 544 - components: - - rot: 3.141592653589793 rad - pos: 28.5,9.5 - parent: 6 - type: Transform - - uid: 622 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,6.5 - parent: 6 - type: Transform - - uid: 623 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,6.5 - parent: 6 - type: Transform - - uid: 624 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,6.5 - parent: 6 - type: Transform - - uid: 625 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,6.5 - parent: 6 - type: Transform - - uid: 626 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,7.5 - parent: 6 - type: Transform - - uid: 627 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,8.5 - parent: 6 - type: Transform - - uid: 630 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,8.5 - parent: 6 - type: Transform - - uid: 703 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,0.5 - parent: 6 - type: Transform - - uid: 715 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-1.5 - parent: 6 - type: Transform - - uid: 747 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,2.5 - parent: 6 - type: Transform - - uid: 748 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,2.5 - parent: 6 - type: Transform - - uid: 749 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,2.5 - parent: 6 - type: Transform - - uid: 819 - components: - - pos: -16.5,-27.5 - parent: 6 - type: Transform - - uid: 820 - components: - - pos: -16.5,-17.5 - parent: 6 - type: Transform - - uid: 821 - components: - - pos: -16.5,-19.5 - parent: 6 - type: Transform - - uid: 827 - components: - - pos: -12.5,-23.5 - parent: 6 - type: Transform - - uid: 849 - components: - - pos: -4.5,-46.5 - parent: 6 - type: Transform - - uid: 876 - components: - - pos: 3.5,-18.5 - parent: 6 - type: Transform - - uid: 877 - components: - - pos: -7.5,-14.5 - parent: 6 - type: Transform - - uid: 878 - components: - - pos: -7.5,-15.5 - parent: 6 - type: Transform - - uid: 879 - components: - - pos: -7.5,-16.5 - parent: 6 - type: Transform - - uid: 880 - components: - - pos: -7.5,-17.5 - parent: 6 - type: Transform - - uid: 881 - components: - - pos: -4.5,-16.5 - parent: 6 - type: Transform - - uid: 883 - components: - - pos: -4.5,-17.5 - parent: 6 - type: Transform - - uid: 884 - components: - - pos: -1.5,-14.5 - parent: 6 - type: Transform - - uid: 885 - components: - - pos: -2.5,-18.5 - parent: 6 - type: Transform - - uid: 886 - components: - - pos: -4.5,-22.5 - parent: 6 - type: Transform - - uid: 891 - components: - - pos: -4.5,-20.5 - parent: 6 - type: Transform - - uid: 892 - components: - - pos: -4.5,-19.5 - parent: 6 - type: Transform - - uid: 894 - components: - - pos: -3.5,-18.5 - parent: 6 - type: Transform - - uid: 895 - components: - - pos: -4.5,-18.5 - parent: 6 - type: Transform - - uid: 896 - components: - - pos: 17.5,-23.5 - parent: 6 - type: Transform - - uid: 897 - components: - - pos: -1.5,-16.5 - parent: 6 - type: Transform - - uid: 898 - components: - - pos: -1.5,-17.5 - parent: 6 - type: Transform - - uid: 899 - components: - - pos: -1.5,-18.5 - parent: 6 - type: Transform - - uid: 900 - components: - - pos: 19.5,-23.5 - parent: 6 - type: Transform - - uid: 901 - components: - - pos: 13.5,-25.5 - parent: 6 - type: Transform - - uid: 902 - components: - - pos: 13.5,-27.5 - parent: 6 - type: Transform - - uid: 906 - components: - - pos: -4.5,-24.5 - parent: 6 - type: Transform - - uid: 914 - components: - - pos: -5.5,-22.5 - parent: 6 - type: Transform - - uid: 915 - components: - - pos: 18.5,-23.5 - parent: 6 - type: Transform - - uid: 916 - components: - - pos: -8.5,-23.5 - parent: 6 - type: Transform - - uid: 917 - components: - - pos: -7.5,-19.5 - parent: 6 - type: Transform - - uid: 918 - components: - - pos: -7.5,-18.5 - parent: 6 - type: Transform - - uid: 925 - components: - - pos: 3.5,-23.5 - parent: 6 - type: Transform - - uid: 936 - components: - - pos: -12.5,-24.5 - parent: 6 - type: Transform - - uid: 937 - components: - - pos: -8.5,-20.5 - parent: 6 - type: Transform - - uid: 938 - components: - - pos: -8.5,-21.5 - parent: 6 - type: Transform - - uid: 939 - components: - - pos: -8.5,-22.5 - parent: 6 - type: Transform - - uid: 940 - components: - - pos: -6.5,-22.5 - parent: 6 - type: Transform - - uid: 942 - components: - - pos: 4.5,-13.5 - parent: 6 - type: Transform - - uid: 943 - components: - - pos: 4.5,-18.5 - parent: 6 - type: Transform - - uid: 944 - components: - - pos: -8.5,-19.5 - parent: 6 - type: Transform - - uid: 950 - components: - - pos: -6.5,-19.5 - parent: 6 - type: Transform - - uid: 951 - components: - - pos: 13.5,-21.5 - parent: 6 - type: Transform - - uid: 952 - components: - - pos: 13.5,-23.5 - parent: 6 - type: Transform - - uid: 953 - components: - - pos: 13.5,-24.5 - parent: 6 - type: Transform - - uid: 954 - components: - - pos: 14.5,-25.5 - parent: 6 - type: Transform - - uid: 955 - components: - - pos: 15.5,-25.5 - parent: 6 - type: Transform - - uid: 956 - components: - - pos: 8.5,-27.5 - parent: 6 - type: Transform - - uid: 957 - components: - - pos: 18.5,-30.5 - parent: 6 - type: Transform - - uid: 958 - components: - - pos: 18.5,-29.5 - parent: 6 - type: Transform - - uid: 959 - components: - - pos: 18.5,-28.5 - parent: 6 - type: Transform - - uid: 960 - components: - - pos: 13.5,-28.5 - parent: 6 - type: Transform - - uid: 961 - components: - - pos: 13.5,-29.5 - parent: 6 - type: Transform - - uid: 962 - components: - - pos: 13.5,-30.5 - parent: 6 - type: Transform - - uid: 963 - components: - - pos: 14.5,-30.5 - parent: 6 - type: Transform - - uid: 964 - components: - - pos: 15.5,-30.5 - parent: 6 - type: Transform - - uid: 965 - components: - - pos: 16.5,-30.5 - parent: 6 - type: Transform - - uid: 966 - components: - - pos: 17.5,-30.5 - parent: 6 - type: Transform - - uid: 967 - components: - - pos: 18.5,-27.5 - parent: 6 - type: Transform - - uid: 968 - components: - - pos: 18.5,-26.5 - parent: 6 - type: Transform - - uid: 969 - components: - - pos: 7.5,-27.5 - parent: 6 - type: Transform - - uid: 970 - components: - - pos: 12.5,-27.5 - parent: 6 - type: Transform - - uid: 971 - components: - - pos: 11.5,-27.5 - parent: 6 - type: Transform - - uid: 972 - components: - - pos: 10.5,-27.5 - parent: 6 - type: Transform - - uid: 973 - components: - - pos: 9.5,-27.5 - parent: 6 - type: Transform - - uid: 986 - components: - - pos: 18.5,-25.5 - parent: 6 - type: Transform - - uid: 987 - components: - - pos: 17.5,-25.5 - parent: 6 - type: Transform - - uid: 1017 - components: - - pos: 3.5,-31.5 - parent: 6 - type: Transform - - uid: 1018 - components: - - pos: 3.5,-32.5 - parent: 6 - type: Transform - - uid: 1019 - components: - - pos: 3.5,-33.5 - parent: 6 - type: Transform - - uid: 1020 - components: - - pos: 3.5,-36.5 - parent: 6 - type: Transform - - uid: 1021 - components: - - pos: 3.5,-37.5 - parent: 6 - type: Transform - - uid: 1024 - components: - - pos: 3.5,-38.5 - parent: 6 - type: Transform - - uid: 1064 - components: - - pos: 19.5,-33.5 - parent: 6 - type: Transform - - uid: 1065 - components: - - pos: 18.5,-33.5 - parent: 6 - type: Transform - - uid: 1066 - components: - - pos: 17.5,-33.5 - parent: 6 - type: Transform - - uid: 1067 - components: - - pos: 15.5,-33.5 - parent: 6 - type: Transform - - uid: 1068 - components: - - pos: 14.5,-33.5 - parent: 6 - type: Transform - - uid: 1069 - components: - - pos: 14.5,-32.5 - parent: 6 - type: Transform - - uid: 1112 - components: - - pos: 8.5,-28.5 - parent: 6 - type: Transform - - uid: 1127 - components: - - pos: -13.5,-13.5 - parent: 6 - type: Transform - - uid: 1134 - components: - - pos: 12.5,-32.5 - parent: 6 - type: Transform - - uid: 1135 - components: - - pos: 13.5,-32.5 - parent: 6 - type: Transform - - uid: 1137 - components: - - pos: 10.5,-38.5 - parent: 6 - type: Transform - - uid: 1138 - components: - - pos: 11.5,-38.5 - parent: 6 - type: Transform - - uid: 1139 - components: - - pos: 10.5,-41.5 - parent: 6 - type: Transform - - uid: 1140 - components: - - pos: 9.5,-41.5 - parent: 6 - type: Transform - - uid: 1141 - components: - - pos: 8.5,-41.5 - parent: 6 - type: Transform - - uid: 1142 - components: - - pos: 7.5,-41.5 - parent: 6 - type: Transform - - uid: 1149 - components: - - pos: 12.5,-38.5 - parent: 6 - type: Transform - - uid: 1150 - components: - - pos: 10.5,-42.5 - parent: 6 - type: Transform - - uid: 1151 - components: - - pos: 10.5,-43.5 - parent: 6 - type: Transform - - uid: 1152 - components: - - pos: 11.5,-43.5 - parent: 6 - type: Transform - - uid: 1153 - components: - - pos: 12.5,-43.5 - parent: 6 - type: Transform - - uid: 1154 - components: - - pos: 13.5,-43.5 - parent: 6 - type: Transform - - uid: 1155 - components: - - pos: 14.5,-43.5 - parent: 6 - type: Transform - - uid: 1173 - components: - - pos: 15.5,-43.5 - parent: 6 - type: Transform - - uid: 1174 - components: - - pos: 15.5,-42.5 - parent: 6 - type: Transform - - uid: 1175 - components: - - pos: 15.5,-41.5 - parent: 6 - type: Transform - - uid: 1176 - components: - - pos: 15.5,-40.5 - parent: 6 - type: Transform - - uid: 1177 - components: - - pos: 15.5,-39.5 - parent: 6 - type: Transform - - uid: 1178 - components: - - pos: 15.5,-38.5 - parent: 6 - type: Transform - - uid: 1179 - components: - - pos: 19.5,-39.5 - parent: 6 - type: Transform - - uid: 1180 - components: - - pos: 16.5,-39.5 - parent: 6 - type: Transform - - uid: 1201 - components: - - pos: 15.5,-44.5 - parent: 6 - type: Transform - - uid: 1202 - components: - - pos: 16.5,-44.5 - parent: 6 - type: Transform - - uid: 1203 - components: - - pos: 8.5,-43.5 - parent: 6 - type: Transform - - uid: 1204 - components: - - pos: 19.5,-44.5 - parent: 6 - type: Transform - - uid: 1206 - components: - - pos: -36.5,-58.5 - parent: 6 - type: Transform - - uid: 1207 - components: - - pos: 1.5,-46.5 - parent: 6 - type: Transform - - uid: 1209 - components: - - pos: -30.5,-56.5 - parent: 6 - type: Transform - - uid: 1215 - components: - - pos: -6.5,-46.5 - parent: 6 - type: Transform - - uid: 1216 - components: - - pos: -13.5,-47.5 - parent: 6 - type: Transform - - uid: 1217 - components: - - pos: -13.5,-46.5 - parent: 6 - type: Transform - - uid: 1224 - components: - - pos: 6.5,-46.5 - parent: 6 - type: Transform - - uid: 1225 - components: - - pos: 7.5,-46.5 - parent: 6 - type: Transform - - uid: 1226 - components: - - pos: 8.5,-46.5 - parent: 6 - type: Transform - - uid: 1227 - components: - - pos: 7.5,-42.5 - parent: 6 - type: Transform - - uid: 1228 - components: - - pos: 7.5,-43.5 - parent: 6 - type: Transform - - uid: 1229 - components: - - pos: 7.5,-45.5 - parent: 6 - type: Transform - - uid: 1230 - components: - - pos: 1.5,-47.5 - parent: 6 - type: Transform - - uid: 1232 - components: - - pos: 1.5,-49.5 - parent: 6 - type: Transform - - uid: 1233 - components: - - pos: 1.5,-50.5 - parent: 6 - type: Transform - - uid: 1236 - components: - - pos: -41.5,-31.5 - parent: 6 - type: Transform - - uid: 1261 - components: - - pos: -0.5,-54.5 - parent: 6 - type: Transform - - uid: 1263 - components: - - pos: -0.5,-56.5 - parent: 6 - type: Transform - - uid: 1276 - components: - - pos: -0.5,-57.5 - parent: 6 - type: Transform - - uid: 1277 - components: - - pos: -1.5,-57.5 - parent: 6 - type: Transform - - uid: 1278 - components: - - pos: -5.5,-49.5 - parent: 6 - type: Transform - - uid: 1279 - components: - - pos: -6.5,-49.5 - parent: 6 - type: Transform - - uid: 1280 - components: - - pos: -6.5,-48.5 - parent: 6 - type: Transform - - uid: 1281 - components: - - pos: -6.5,-47.5 - parent: 6 - type: Transform - - uid: 1299 - components: - - pos: -13.5,-48.5 - parent: 6 - type: Transform - - uid: 1300 - components: - - pos: -13.5,-49.5 - parent: 6 - type: Transform - - uid: 1306 - components: - - pos: -8.5,-49.5 - parent: 6 - type: Transform - - uid: 1307 - components: - - pos: -8.5,-50.5 - parent: 6 - type: Transform - - uid: 1308 - components: - - pos: -5.5,-50.5 - parent: 6 - type: Transform - - uid: 1309 - components: - - pos: -5.5,-51.5 - parent: 6 - type: Transform - - uid: 1310 - components: - - pos: -5.5,-52.5 - parent: 6 - type: Transform - - uid: 1311 - components: - - pos: -5.5,-53.5 - parent: 6 - type: Transform - - uid: 1312 - components: - - pos: -6.5,-53.5 - parent: 6 - type: Transform - - uid: 1313 - components: - - pos: -8.5,-51.5 - parent: 6 - type: Transform - - uid: 1314 - components: - - pos: -8.5,-52.5 - parent: 6 - type: Transform - - uid: 1315 - components: - - pos: -8.5,-53.5 - parent: 6 - type: Transform - - uid: 1316 - components: - - pos: -13.5,-50.5 - parent: 6 - type: Transform - - uid: 1317 - components: - - pos: -13.5,-51.5 - parent: 6 - type: Transform - - uid: 1318 - components: - - pos: -15.5,-54.5 - parent: 6 - type: Transform - - uid: 1319 - components: - - pos: -14.5,-54.5 - parent: 6 - type: Transform - - uid: 1320 - components: - - pos: -13.5,-54.5 - parent: 6 - type: Transform - - uid: 1321 - components: - - pos: -13.5,-56.5 - parent: 6 - type: Transform - - uid: 1322 - components: - - pos: -13.5,-55.5 - parent: 6 - type: Transform - - uid: 1323 - components: - - pos: -13.5,-57.5 - parent: 6 - type: Transform - - uid: 1324 - components: - - pos: -12.5,-57.5 - parent: 6 - type: Transform - - uid: 1325 - components: - - pos: -11.5,-57.5 - parent: 6 - type: Transform - - uid: 1326 - components: - - pos: -10.5,-57.5 - parent: 6 - type: Transform - - uid: 1327 - components: - - pos: -9.5,-57.5 - parent: 6 - type: Transform - - uid: 1328 - components: - - pos: -8.5,-54.5 - parent: 6 - type: Transform - - uid: 1329 - components: - - pos: -8.5,-57.5 - parent: 6 - type: Transform - - uid: 1330 - components: - - pos: -16.5,-54.5 - parent: 6 - type: Transform - - uid: 1331 - components: - - pos: -17.5,-54.5 - parent: 6 - type: Transform - - uid: 1332 - components: - - pos: -18.5,-54.5 - parent: 6 - type: Transform - - uid: 1333 - components: - - pos: -15.5,-58.5 - parent: 6 - type: Transform - - uid: 1334 - components: - - pos: -15.5,-57.5 - parent: 6 - type: Transform - - uid: 1335 - components: - - pos: -17.5,-57.5 - parent: 6 - type: Transform - - uid: 1336 - components: - - pos: -18.5,-57.5 - parent: 6 - type: Transform - - uid: 1337 - components: - - pos: -18.5,-52.5 - parent: 6 - type: Transform - - uid: 1338 - components: - - pos: -18.5,-51.5 - parent: 6 - type: Transform - - uid: 1340 - components: - - pos: -18.5,-49.5 - parent: 6 - type: Transform - - uid: 1341 - components: - - pos: -18.5,-48.5 - parent: 6 - type: Transform - - uid: 1342 - components: - - pos: -18.5,-47.5 - parent: 6 - type: Transform - - uid: 1343 - components: - - pos: -18.5,-46.5 - parent: 6 - type: Transform - - uid: 1344 - components: - - pos: -14.5,-46.5 - parent: 6 - type: Transform - - uid: 1347 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-46.5 - parent: 6 - type: Transform - - uid: 1353 - components: - - pos: -7.5,-57.5 - parent: 6 - type: Transform - - uid: 1355 - components: - - pos: -4.5,-57.5 - parent: 6 - type: Transform - - uid: 1356 - components: - - pos: -2.5,-57.5 - parent: 6 - type: Transform - - uid: 1357 - components: - - pos: -3.5,-57.5 - parent: 6 - type: Transform - - uid: 1436 - components: - - pos: -16.5,-24.5 - parent: 6 - type: Transform - - uid: 1437 - components: - - pos: -16.5,-21.5 - parent: 6 - type: Transform - - uid: 1487 - components: - - pos: -18.5,-58.5 - parent: 6 - type: Transform - - uid: 1488 - components: - - pos: -18.5,-59.5 - parent: 6 - type: Transform - - uid: 1498 - components: - - pos: -19.5,-28.5 - parent: 6 - type: Transform - - uid: 1499 - components: - - pos: -18.5,-28.5 - parent: 6 - type: Transform - - uid: 1501 - components: - - pos: -26.5,-23.5 - parent: 6 - type: Transform - - uid: 1507 - components: - - pos: -21.5,-28.5 - parent: 6 - type: Transform - - uid: 1508 - components: - - pos: -17.5,-28.5 - parent: 6 - type: Transform - - uid: 1509 - components: - - pos: -22.5,-23.5 - parent: 6 - type: Transform - - uid: 1510 - components: - - pos: -23.5,-23.5 - parent: 6 - type: Transform - - uid: 1517 - components: - - pos: -18.5,-24.5 - parent: 6 - type: Transform - - uid: 1520 - components: - - pos: -22.5,-26.5 - parent: 6 - type: Transform - - uid: 1521 - components: - - pos: -22.5,-25.5 - parent: 6 - type: Transform - - uid: 1522 - components: - - pos: -22.5,-24.5 - parent: 6 - type: Transform - - uid: 1523 - components: - - pos: -22.5,-28.5 - parent: 6 - type: Transform - - uid: 1524 - components: - - pos: -19.5,-24.5 - parent: 6 - type: Transform - - uid: 1525 - components: - - pos: -20.5,-28.5 - parent: 6 - type: Transform - - uid: 1526 - components: - - pos: -20.5,-18.5 - parent: 6 - type: Transform - - uid: 1534 - components: - - pos: -27.5,-14.5 - parent: 6 - type: Transform - - uid: 1535 - components: - - pos: -27.5,-15.5 - parent: 6 - type: Transform - - uid: 1536 - components: - - pos: -27.5,-16.5 - parent: 6 - type: Transform - - uid: 1537 - components: - - pos: -27.5,-17.5 - parent: 6 - type: Transform - - uid: 1538 - components: - - pos: -27.5,-18.5 - parent: 6 - type: Transform - - uid: 1539 - components: - - pos: -27.5,-19.5 - parent: 6 - type: Transform - - uid: 1541 - components: - - pos: -26.5,-19.5 - parent: 6 - type: Transform - - uid: 1542 - components: - - pos: -25.5,-19.5 - parent: 6 - type: Transform - - uid: 1543 - components: - - pos: -24.5,-19.5 - parent: 6 - type: Transform - - uid: 1544 - components: - - pos: -24.5,-18.5 - parent: 6 - type: Transform - - uid: 1546 - components: - - pos: -27.5,-24.5 - parent: 6 - type: Transform - - uid: 1547 - components: - - pos: -27.5,-29.5 - parent: 6 - type: Transform - - uid: 1548 - components: - - pos: -27.5,-30.5 - parent: 6 - type: Transform - - uid: 1549 - components: - - pos: -27.5,-31.5 - parent: 6 - type: Transform - - uid: 1554 - components: - - pos: -4.5,-21.5 - parent: 6 - type: Transform - - uid: 1556 - components: - - pos: -31.5,-19.5 - parent: 6 - type: Transform - - uid: 1557 - components: - - pos: -31.5,-18.5 - parent: 6 - type: Transform - - uid: 1558 - components: - - pos: -31.5,-17.5 - parent: 6 - type: Transform - - uid: 1559 - components: - - pos: -31.5,-15.5 - parent: 6 - type: Transform - - uid: 1560 - components: - - pos: -28.5,-28.5 - parent: 6 - type: Transform - - uid: 1561 - components: - - pos: -27.5,-28.5 - parent: 6 - type: Transform - - uid: 1562 - components: - - pos: -30.5,-28.5 - parent: 6 - type: Transform - - uid: 1563 - components: - - pos: -31.5,-28.5 - parent: 6 - type: Transform - - uid: 1564 - components: - - pos: -31.5,-27.5 - parent: 6 - type: Transform - - uid: 1565 - components: - - pos: -31.5,-26.5 - parent: 6 - type: Transform - - uid: 1566 - components: - - pos: -31.5,-25.5 - parent: 6 - type: Transform - - uid: 1567 - components: - - pos: -31.5,-24.5 - parent: 6 - type: Transform - - uid: 1568 - components: - - pos: -31.5,-23.5 - parent: 6 - type: Transform - - uid: 1570 - components: - - pos: -27.5,-23.5 - parent: 6 - type: Transform - - uid: 1571 - components: - - pos: -15.5,-59.5 - parent: 6 - type: Transform - - uid: 1572 - components: - - pos: -31.5,-14.5 - parent: 6 - type: Transform - - uid: 1578 - components: - - pos: -27.5,-25.5 - parent: 6 - type: Transform - - uid: 1579 - components: - - pos: -27.5,-26.5 - parent: 6 - type: Transform - - uid: 1580 - components: - - pos: -20.5,-31.5 - parent: 6 - type: Transform - - uid: 1581 - components: - - pos: -21.5,-31.5 - parent: 6 - type: Transform - - uid: 1585 - components: - - pos: -27.5,-27.5 - parent: 6 - type: Transform - - uid: 1587 - components: - - pos: -27.5,-32.5 - parent: 6 - type: Transform - - uid: 1588 - components: - - pos: -27.5,-33.5 - parent: 6 - type: Transform - - uid: 1589 - components: - - pos: -27.5,-34.5 - parent: 6 - type: Transform - - uid: 1590 - components: - - pos: -26.5,-34.5 - parent: 6 - type: Transform - - uid: 1591 - components: - - pos: -25.5,-34.5 - parent: 6 - type: Transform - - uid: 1592 - components: - - pos: -24.5,-34.5 - parent: 6 - type: Transform - - uid: 1593 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-34.5 - parent: 6 - type: Transform - - uid: 1595 - components: - - pos: -21.5,-34.5 - parent: 6 - type: Transform - - uid: 1596 - components: - - pos: -20.5,-34.5 - parent: 6 - type: Transform - - uid: 1620 - components: - - pos: -16.5,-34.5 - parent: 6 - type: Transform - - uid: 1621 - components: - - pos: -16.5,-36.5 - parent: 6 - type: Transform - - uid: 1622 - components: - - pos: -17.5,-36.5 - parent: 6 - type: Transform - - uid: 1623 - components: - - pos: -18.5,-36.5 - parent: 6 - type: Transform - - uid: 1624 - components: - - pos: -19.5,-36.5 - parent: 6 - type: Transform - - uid: 1625 - components: - - pos: -20.5,-36.5 - parent: 6 - type: Transform - - uid: 1627 - components: - - pos: -22.5,-36.5 - parent: 6 - type: Transform - - uid: 1628 - components: - - pos: -23.5,-36.5 - parent: 6 - type: Transform - - uid: 1629 - components: - - pos: -24.5,-36.5 - parent: 6 - type: Transform - - uid: 1630 - components: - - pos: -25.5,-36.5 - parent: 6 - type: Transform - - uid: 1631 - components: - - pos: -26.5,-36.5 - parent: 6 - type: Transform - - uid: 1632 - components: - - pos: -27.5,-36.5 - parent: 6 - type: Transform - - uid: 1633 - components: - - pos: -28.5,-36.5 - parent: 6 - type: Transform - - uid: 1634 - components: - - pos: -29.5,-36.5 - parent: 6 - type: Transform - - uid: 1635 - components: - - pos: -30.5,-36.5 - parent: 6 - type: Transform - - uid: 1636 - components: - - pos: -30.5,-35.5 - parent: 6 - type: Transform - - uid: 1637 - components: - - pos: -30.5,-34.5 - parent: 6 - type: Transform - - uid: 1638 - components: - - pos: -30.5,-33.5 - parent: 6 - type: Transform - - uid: 1639 - components: - - pos: -30.5,-32.5 - parent: 6 - type: Transform - - uid: 1640 - components: - - pos: -30.5,-31.5 - parent: 6 - type: Transform - - uid: 1641 - components: - - pos: -33.5,-31.5 - parent: 6 - type: Transform - - uid: 1642 - components: - - pos: -33.5,-32.5 - parent: 6 - type: Transform - - uid: 1643 - components: - - pos: -33.5,-33.5 - parent: 6 - type: Transform - - uid: 1644 - components: - - pos: -32.5,-33.5 - parent: 6 - type: Transform - - uid: 1645 - components: - - pos: -31.5,-33.5 - parent: 6 - type: Transform - - uid: 1646 - components: - - pos: -33.5,-30.5 - parent: 6 - type: Transform - - uid: 1647 - components: - - pos: -32.5,-30.5 - parent: 6 - type: Transform - - uid: 1648 - components: - - pos: -30.5,-30.5 - parent: 6 - type: Transform - - uid: 1649 - components: - - pos: -34.5,-30.5 - parent: 6 - type: Transform - - uid: 1651 - components: - - pos: -34.5,-28.5 - parent: 6 - type: Transform - - uid: 1654 - components: - - pos: -34.5,-25.5 - parent: 6 - type: Transform - - uid: 1655 - components: - - pos: -16.5,-37.5 - parent: 6 - type: Transform - - uid: 1656 - components: - - pos: -16.5,-41.5 - parent: 6 - type: Transform - - uid: 1657 - components: - - pos: -16.5,-42.5 - parent: 6 - type: Transform - - uid: 1658 - components: - - pos: -17.5,-42.5 - parent: 6 - type: Transform - - uid: 1659 - components: - - pos: -18.5,-42.5 - parent: 6 - type: Transform - - uid: 1660 - components: - - pos: -20.5,-42.5 - parent: 6 - type: Transform - - uid: 1661 - components: - - pos: -21.5,-42.5 - parent: 6 - type: Transform - - uid: 1662 - components: - - pos: -22.5,-42.5 - parent: 6 - type: Transform - - uid: 1663 - components: - - pos: -22.5,-41.5 - parent: 6 - type: Transform - - uid: 1664 - components: - - pos: -22.5,-40.5 - parent: 6 - type: Transform - - uid: 1665 - components: - - pos: -23.5,-40.5 - parent: 6 - type: Transform - - uid: 1666 - components: - - pos: -24.5,-40.5 - parent: 6 - type: Transform - - uid: 1667 - components: - - pos: -25.5,-40.5 - parent: 6 - type: Transform - - uid: 1668 - components: - - pos: -26.5,-40.5 - parent: 6 - type: Transform - - uid: 1669 - components: - - pos: -26.5,-39.5 - parent: 6 - type: Transform - - uid: 1670 - components: - - pos: -26.5,-38.5 - parent: 6 - type: Transform - - uid: 1671 - components: - - pos: -26.5,-37.5 - parent: 6 - type: Transform - - uid: 1672 - components: - - pos: -23.5,-39.5 - parent: 6 - type: Transform - - uid: 1673 - components: - - pos: -23.5,-38.5 - parent: 6 - type: Transform - - uid: 1701 - components: - - pos: -23.5,-47.5 - parent: 6 - type: Transform - - uid: 1702 - components: - - pos: -22.5,-47.5 - parent: 6 - type: Transform - - uid: 1703 - components: - - pos: -19.5,-47.5 - parent: 6 - type: Transform - - uid: 1704 - components: - - pos: -20.5,-47.5 - parent: 6 - type: Transform - - uid: 1705 - components: - - pos: -21.5,-47.5 - parent: 6 - type: Transform - - uid: 1706 - components: - - pos: -23.5,-42.5 - parent: 6 - type: Transform - - uid: 1707 - components: - - pos: -25.5,-46.5 - parent: 6 - type: Transform - - uid: 1708 - components: - - pos: -25.5,-47.5 - parent: 6 - type: Transform - - uid: 1709 - components: - - pos: -25.5,-48.5 - parent: 6 - type: Transform - - uid: 1710 - components: - - pos: -25.5,-49.5 - parent: 6 - type: Transform - - uid: 1711 - components: - - pos: -24.5,-49.5 - parent: 6 - type: Transform - - uid: 1712 - components: - - pos: -23.5,-49.5 - parent: 6 - type: Transform - - uid: 1713 - components: - - pos: -22.5,-49.5 - parent: 6 - type: Transform - - uid: 1714 - components: - - pos: -21.5,-49.5 - parent: 6 - type: Transform - - uid: 1715 - components: - - pos: -20.5,-49.5 - parent: 6 - type: Transform - - uid: 1716 - components: - - pos: -20.5,-50.5 - parent: 6 - type: Transform - - uid: 1717 - components: - - pos: -20.5,-51.5 - parent: 6 - type: Transform - - uid: 1718 - components: - - pos: -20.5,-52.5 - parent: 6 - type: Transform - - uid: 1722 - components: - - pos: -20.5,-56.5 - parent: 6 - type: Transform - - uid: 1723 - components: - - pos: -20.5,-57.5 - parent: 6 - type: Transform - - uid: 1726 - components: - - pos: -22.5,-57.5 - parent: 6 - type: Transform - - uid: 1728 - components: - - pos: -24.5,-57.5 - parent: 6 - type: Transform - - uid: 1730 - components: - - pos: -26.5,-57.5 - parent: 6 - type: Transform - - uid: 1731 - components: - - pos: -27.5,-57.5 - parent: 6 - type: Transform - - uid: 1732 - components: - - pos: -27.5,-56.5 - parent: 6 - type: Transform - - uid: 1733 - components: - - pos: -27.5,-55.5 - parent: 6 - type: Transform - - uid: 1734 - components: - - pos: -27.5,-54.5 - parent: 6 - type: Transform - - uid: 1735 - components: - - pos: -27.5,-53.5 - parent: 6 - type: Transform - - uid: 1736 - components: - - pos: -27.5,-52.5 - parent: 6 - type: Transform - - uid: 1737 - components: - - pos: -27.5,-51.5 - parent: 6 - type: Transform - - uid: 1738 - components: - - pos: -27.5,-50.5 - parent: 6 - type: Transform - - uid: 1739 - components: - - pos: -27.5,-49.5 - parent: 6 - type: Transform - - uid: 1740 - components: - - pos: -26.5,-49.5 - parent: 6 - type: Transform - - uid: 1745 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-9.5 - parent: 6 - type: Transform - - uid: 1746 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-9.5 - parent: 6 - type: Transform - - uid: 1747 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-9.5 - parent: 6 - type: Transform - - uid: 1765 - components: - - pos: -32.5,-23.5 - parent: 6 - type: Transform - - uid: 1766 - components: - - pos: -34.5,-23.5 - parent: 6 - type: Transform - - uid: 1767 - components: - - pos: -35.5,-23.5 - parent: 6 - type: Transform - - uid: 1768 - components: - - pos: -36.5,-23.5 - parent: 6 - type: Transform - - uid: 1769 - components: - - pos: -37.5,-23.5 - parent: 6 - type: Transform - - uid: 1770 - components: - - pos: -38.5,-23.5 - parent: 6 - type: Transform - - uid: 1771 - components: - - pos: -39.5,-23.5 - parent: 6 - type: Transform - - uid: 1772 - components: - - pos: -40.5,-23.5 - parent: 6 - type: Transform - - uid: 1774 - components: - - pos: -40.5,-21.5 - parent: 6 - type: Transform - - uid: 1780 - components: - - pos: -40.5,-15.5 - parent: 6 - type: Transform - - uid: 1781 - components: - - pos: -40.5,-14.5 - parent: 6 - type: Transform - - uid: 1782 - components: - - pos: -40.5,-13.5 - parent: 6 - type: Transform - - uid: 1793 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-42.5 - parent: 6 - type: Transform - - uid: 1797 - components: - - pos: -26.5,-60.5 - parent: 6 - type: Transform - - uid: 1798 - components: - - pos: -27.5,-60.5 - parent: 6 - type: Transform - - uid: 1799 - components: - - pos: -28.5,-60.5 - parent: 6 - type: Transform - - uid: 1800 - components: - - pos: -22.5,-58.5 - parent: 6 - type: Transform - - uid: 1801 - components: - - pos: -27.5,-58.5 - parent: 6 - type: Transform - - uid: 1802 - components: - - pos: -26.5,-46.5 - parent: 6 - type: Transform - - uid: 1803 - components: - - pos: -27.5,-46.5 - parent: 6 - type: Transform - - uid: 1804 - components: - - pos: -28.5,-46.5 - parent: 6 - type: Transform - - uid: 1805 - components: - - pos: -29.5,-46.5 - parent: 6 - type: Transform - - uid: 1806 - components: - - pos: -30.5,-46.5 - parent: 6 - type: Transform - - uid: 1808 - components: - - pos: -29.5,-49.5 - parent: 6 - type: Transform - - uid: 1809 - components: - - pos: -30.5,-49.5 - parent: 6 - type: Transform - - uid: 1810 - components: - - pos: -30.5,-48.5 - parent: 6 - type: Transform - - uid: 1811 - components: - - pos: -29.5,-51.5 - parent: 6 - type: Transform - - uid: 1812 - components: - - pos: -28.5,-53.5 - parent: 6 - type: Transform - - uid: 1813 - components: - - pos: -29.5,-53.5 - parent: 6 - type: Transform - - uid: 1814 - components: - - pos: -28.5,-57.5 - parent: 6 - type: Transform - - uid: 1815 - components: - - pos: -29.5,-57.5 - parent: 6 - type: Transform - - uid: 1816 - components: - - pos: -30.5,-57.5 - parent: 6 - type: Transform - - uid: 1817 - components: - - pos: -36.5,-56.5 - parent: 6 - type: Transform - - uid: 1818 - components: - - pos: -32.5,-57.5 - parent: 6 - type: Transform - - uid: 1819 - components: - - pos: -33.5,-57.5 - parent: 6 - type: Transform - - uid: 1822 - components: - - pos: -36.5,-55.5 - parent: 6 - type: Transform - - uid: 1823 - components: - - pos: -36.5,-54.5 - parent: 6 - type: Transform - - uid: 1824 - components: - - pos: -36.5,-53.5 - parent: 6 - type: Transform - - uid: 1825 - components: - - pos: -36.5,-52.5 - parent: 6 - type: Transform - - uid: 1826 - components: - - pos: -36.5,-51.5 - parent: 6 - type: Transform - - uid: 1827 - components: - - pos: -36.5,-50.5 - parent: 6 - type: Transform - - uid: 1828 - components: - - pos: -36.5,-49.5 - parent: 6 - type: Transform - - uid: 1829 - components: - - pos: -36.5,-48.5 - parent: 6 - type: Transform - - uid: 1830 - components: - - pos: -36.5,-47.5 - parent: 6 - type: Transform - - uid: 1831 - components: - - pos: -36.5,-46.5 - parent: 6 - type: Transform - - uid: 1834 - components: - - pos: -34.5,-57.5 - parent: 6 - type: Transform - - uid: 1835 - components: - - pos: -35.5,-57.5 - parent: 6 - type: Transform - - uid: 1836 - components: - - pos: -36.5,-57.5 - parent: 6 - type: Transform - - uid: 1837 - components: - - pos: -30.5,-53.5 - parent: 6 - type: Transform - - uid: 1838 - components: - - pos: -30.5,-54.5 - parent: 6 - type: Transform - - uid: 1842 - components: - - pos: -31.5,-60.5 - parent: 6 - type: Transform - - uid: 1853 - components: - - pos: -37.5,-57.5 - parent: 6 - type: Transform - - uid: 1854 - components: - - pos: -38.5,-57.5 - parent: 6 - type: Transform - - uid: 1855 - components: - - pos: -38.5,-56.5 - parent: 6 - type: Transform - - uid: 1856 - components: - - pos: -38.5,-55.5 - parent: 6 - type: Transform - - uid: 1857 - components: - - pos: -39.5,-52.5 - parent: 6 - type: Transform - - uid: 1858 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-49.5 - parent: 6 - type: Transform - - uid: 1863 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-50.5 - parent: 6 - type: Transform - - uid: 1864 - components: - - pos: -31.5,-6.5 - parent: 6 - type: Transform - - uid: 1867 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-48.5 - parent: 6 - type: Transform - - uid: 1868 - components: - - pos: -25.5,-42.5 - parent: 6 - type: Transform - - uid: 1869 - components: - - pos: -26.5,-42.5 - parent: 6 - type: Transform - - uid: 1870 - components: - - pos: -27.5,-42.5 - parent: 6 - type: Transform - - uid: 1871 - components: - - pos: -28.5,-42.5 - parent: 6 - type: Transform - - uid: 1872 - components: - - pos: -29.5,-42.5 - parent: 6 - type: Transform - - uid: 1873 - components: - - pos: -29.5,-41.5 - parent: 6 - type: Transform - - uid: 1874 - components: - - pos: -29.5,-40.5 - parent: 6 - type: Transform - - uid: 1875 - components: - - pos: -29.5,-39.5 - parent: 6 - type: Transform - - uid: 1876 - components: - - pos: -29.5,-38.5 - parent: 6 - type: Transform - - uid: 1877 - components: - - pos: -30.5,-38.5 - parent: 6 - type: Transform - - uid: 1878 - components: - - pos: -31.5,-38.5 - parent: 6 - type: Transform - - uid: 1879 - components: - - pos: -32.5,-38.5 - parent: 6 - type: Transform - - uid: 1880 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-28.5 - parent: 6 - type: Transform - - uid: 1881 - components: - - pos: -34.5,-38.5 - parent: 6 - type: Transform - - uid: 1882 - components: - - pos: -35.5,-38.5 - parent: 6 - type: Transform - - uid: 1883 - components: - - pos: -36.5,-38.5 - parent: 6 - type: Transform - - uid: 1884 - components: - - pos: -37.5,-38.5 - parent: 6 - type: Transform - - uid: 1885 - components: - - pos: -37.5,-37.5 - parent: 6 - type: Transform - - uid: 1886 - components: - - pos: -37.5,-36.5 - parent: 6 - type: Transform - - uid: 1887 - components: - - pos: -37.5,-35.5 - parent: 6 - type: Transform - - uid: 1888 - components: - - pos: -37.5,-34.5 - parent: 6 - type: Transform - - uid: 1889 - components: - - pos: -37.5,-33.5 - parent: 6 - type: Transform - - uid: 1890 - components: - - pos: -37.5,-32.5 - parent: 6 - type: Transform - - uid: 1891 - components: - - pos: -37.5,-31.5 - parent: 6 - type: Transform - - uid: 1892 - components: - - pos: -37.5,-30.5 - parent: 6 - type: Transform - - uid: 1893 - components: - - pos: -37.5,-29.5 - parent: 6 - type: Transform - - uid: 1894 - components: - - pos: -37.5,-28.5 - parent: 6 - type: Transform - - uid: 1896 - components: - - pos: -35.5,-28.5 - parent: 6 - type: Transform - - uid: 1900 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-28.5 - parent: 6 - type: Transform - - uid: 1904 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-39.5 - parent: 6 - type: Transform - - uid: 1905 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-40.5 - parent: 6 - type: Transform - - uid: 1906 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-41.5 - parent: 6 - type: Transform - - uid: 1907 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-42.5 - parent: 6 - type: Transform - - uid: 1908 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-42.5 - parent: 6 - type: Transform - - uid: 1909 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-42.5 - parent: 6 - type: Transform - - uid: 1910 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-42.5 - parent: 6 - type: Transform - - uid: 1911 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-42.5 - parent: 6 - type: Transform - - uid: 1912 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-42.5 - parent: 6 - type: Transform - - uid: 1913 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-42.5 - parent: 6 - type: Transform - - uid: 1914 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-28.5 - parent: 6 - type: Transform - - uid: 1915 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-28.5 - parent: 6 - type: Transform - - uid: 1916 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-28.5 - parent: 6 - type: Transform - - uid: 1917 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-27.5 - parent: 6 - type: Transform - - uid: 1918 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-26.5 - parent: 6 - type: Transform - - uid: 1919 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-25.5 - parent: 6 - type: Transform - - uid: 1920 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-24.5 - parent: 6 - type: Transform - - uid: 1922 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-22.5 - parent: 6 - type: Transform - - uid: 1923 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-21.5 - parent: 6 - type: Transform - - uid: 1925 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-19.5 - parent: 6 - type: Transform - - uid: 1926 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-18.5 - parent: 6 - type: Transform - - uid: 1928 - components: - - pos: -44.5,-28.5 - parent: 6 - type: Transform - - uid: 1931 - components: - - rot: 3.141592653589793 rad - pos: -35.5,-25.5 - parent: 6 - type: Transform - - uid: 1932 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-25.5 - parent: 6 - type: Transform - - uid: 1933 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-25.5 - parent: 6 - type: Transform - - uid: 1934 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-25.5 - parent: 6 - type: Transform - - uid: 1935 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-26.5 - parent: 6 - type: Transform - - uid: 1936 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-27.5 - parent: 6 - type: Transform - - uid: 1937 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-25.5 - parent: 6 - type: Transform - - uid: 1938 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-52.5 - parent: 6 - type: Transform - - uid: 1950 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-48.5 - parent: 6 - type: Transform - - uid: 1951 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-48.5 - parent: 6 - type: Transform - - uid: 1952 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-48.5 - parent: 6 - type: Transform - - uid: 1954 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-46.5 - parent: 6 - type: Transform - - uid: 1956 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-46.5 - parent: 6 - type: Transform - - uid: 1957 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-46.5 - parent: 6 - type: Transform - - uid: 1958 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-46.5 - parent: 6 - type: Transform - - uid: 1959 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-46.5 - parent: 6 - type: Transform - - uid: 1962 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-32.5 - parent: 6 - type: Transform - - uid: 1963 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-32.5 - parent: 6 - type: Transform - - uid: 1964 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-32.5 - parent: 6 - type: Transform - - uid: 1965 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-32.5 - parent: 6 - type: Transform - - uid: 1966 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-33.5 - parent: 6 - type: Transform - - uid: 1968 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-36.5 - parent: 6 - type: Transform - - uid: 1969 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-37.5 - parent: 6 - type: Transform - - uid: 1970 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-37.5 - parent: 6 - type: Transform - - uid: 1971 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-37.5 - parent: 6 - type: Transform - - uid: 1972 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-36.5 - parent: 6 - type: Transform - - uid: 1973 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-36.5 - parent: 6 - type: Transform - - uid: 1974 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-38.5 - parent: 6 - type: Transform - - uid: 1976 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-41.5 - parent: 6 - type: Transform - - uid: 1977 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-42.5 - parent: 6 - type: Transform - - uid: 1978 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-42.5 - parent: 6 - type: Transform - - uid: 1979 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-42.5 - parent: 6 - type: Transform - - uid: 1980 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-42.5 - parent: 6 - type: Transform - - uid: 1981 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-42.5 - parent: 6 - type: Transform - - uid: 1982 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-46.5 - parent: 6 - type: Transform - - uid: 1983 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-46.5 - parent: 6 - type: Transform - - uid: 1984 - components: - - rot: 3.141592653589793 rad - pos: -45.5,-46.5 - parent: 6 - type: Transform - - uid: 1985 - components: - - rot: 3.141592653589793 rad - pos: -46.5,-46.5 - parent: 6 - type: Transform - - uid: 2011 - components: - - pos: -38.5,-13.5 - parent: 6 - type: Transform - - uid: 2046 - components: - - pos: -45.5,-28.5 - parent: 6 - type: Transform - - uid: 2047 - components: - - pos: -44.5,-29.5 - parent: 6 - type: Transform - - uid: 2049 - components: - - pos: -44.5,-32.5 - parent: 6 - type: Transform - - uid: 2050 - components: - - pos: -45.5,-32.5 - parent: 6 - type: Transform - - uid: 2051 - components: - - pos: -46.5,-32.5 - parent: 6 - type: Transform - - uid: 2052 - components: - - pos: -47.5,-32.5 - parent: 6 - type: Transform - - uid: 2053 - components: - - pos: -48.5,-32.5 - parent: 6 - type: Transform - - uid: 2054 - components: - - pos: -48.5,-31.5 - parent: 6 - type: Transform - - uid: 2055 - components: - - pos: -48.5,-30.5 - parent: 6 - type: Transform - - uid: 2056 - components: - - pos: -48.5,-29.5 - parent: 6 - type: Transform - - uid: 2057 - components: - - pos: -48.5,-28.5 - parent: 6 - type: Transform - - uid: 2058 - components: - - pos: -47.5,-28.5 - parent: 6 - type: Transform - - uid: 2059 - components: - - pos: -46.5,-28.5 - parent: 6 - type: Transform - - uid: 2060 - components: - - pos: -44.5,-33.5 - parent: 6 - type: Transform - - uid: 2062 - components: - - pos: -44.5,-36.5 - parent: 6 - type: Transform - - uid: 2063 - components: - - pos: -44.5,-37.5 - parent: 6 - type: Transform - - uid: 2064 - components: - - pos: -45.5,-37.5 - parent: 6 - type: Transform - - uid: 2065 - components: - - pos: -46.5,-37.5 - parent: 6 - type: Transform - - uid: 2066 - components: - - pos: -48.5,-33.5 - parent: 6 - type: Transform - - uid: 2067 - components: - - pos: -48.5,-34.5 - parent: 6 - type: Transform - - uid: 2068 - components: - - pos: -48.5,-35.5 - parent: 6 - type: Transform - - uid: 2069 - components: - - pos: -48.5,-36.5 - parent: 6 - type: Transform - - uid: 2070 - components: - - pos: -48.5,-37.5 - parent: 6 - type: Transform - - uid: 2071 - components: - - pos: -48.5,-38.5 - parent: 6 - type: Transform - - uid: 2072 - components: - - pos: -46.5,-38.5 - parent: 6 - type: Transform - - uid: 2073 - components: - - pos: -47.5,-38.5 - parent: 6 - type: Transform - - uid: 2074 - components: - - pos: -44.5,-38.5 - parent: 6 - type: Transform - - uid: 2076 - components: - - pos: -44.5,-41.5 - parent: 6 - type: Transform - - uid: 2077 - components: - - pos: -44.5,-42.5 - parent: 6 - type: Transform - - uid: 2078 - components: - - pos: -45.5,-42.5 - parent: 6 - type: Transform - - uid: 2079 - components: - - pos: -46.5,-42.5 - parent: 6 - type: Transform - - uid: 2080 - components: - - pos: -47.5,-42.5 - parent: 6 - type: Transform - - uid: 2081 - components: - - pos: -48.5,-42.5 - parent: 6 - type: Transform - - uid: 2082 - components: - - pos: -48.5,-41.5 - parent: 6 - type: Transform - - uid: 2083 - components: - - pos: -48.5,-40.5 - parent: 6 - type: Transform - - uid: 2084 - components: - - pos: -48.5,-39.5 - parent: 6 - type: Transform - - uid: 2085 - components: - - pos: -31.5,-5.5 - parent: 6 - type: Transform - - uid: 2086 - components: - - pos: -31.5,-4.5 - parent: 6 - type: Transform - - uid: 2087 - components: - - pos: -32.5,-5.5 - parent: 6 - type: Transform - - uid: 2088 - components: - - pos: -33.5,-5.5 - parent: 6 - type: Transform - - uid: 2089 - components: - - pos: -34.5,-5.5 - parent: 6 - type: Transform - - uid: 2090 - components: - - pos: -35.5,-5.5 - parent: 6 - type: Transform - - uid: 2091 - components: - - pos: -35.5,-6.5 - parent: 6 - type: Transform - - uid: 2092 - components: - - pos: -35.5,-8.5 - parent: 6 - type: Transform - - uid: 2465 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-40.5 - parent: 6 - type: Transform - - uid: 2466 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-39.5 - parent: 6 - type: Transform - - uid: 2467 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-38.5 - parent: 6 - type: Transform - - uid: 2468 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-37.5 - parent: 6 - type: Transform - - uid: 2469 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-36.5 - parent: 6 - type: Transform - - uid: 2470 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-36.5 - parent: 6 - type: Transform - - uid: 2473 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-33.5 - parent: 6 - type: Transform - - uid: 2477 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-29.5 - parent: 6 - type: Transform - - uid: 2478 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-28.5 - parent: 6 - type: Transform - - uid: 2489 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-22.5 - parent: 6 - type: Transform - - uid: 2490 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-22.5 - parent: 6 - type: Transform - - uid: 2538 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-13.5 - parent: 6 - type: Transform - - uid: 2586 - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-14.5 - parent: 6 - type: Transform - - uid: 2587 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-14.5 - parent: 6 - type: Transform - - uid: 2596 - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-15.5 - parent: 6 - type: Transform - - uid: 2598 - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-15.5 - parent: 6 - type: Transform - - uid: 2599 - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-15.5 - parent: 6 - type: Transform - - uid: 2600 - components: - - rot: 1.5707963267948966 rad - pos: -61.5,-15.5 - parent: 6 - type: Transform - - uid: 2601 - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-15.5 - parent: 6 - type: Transform - - uid: 2602 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-15.5 - parent: 6 - type: Transform - - uid: 2603 - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-15.5 - parent: 6 - type: Transform - - uid: 2604 - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-15.5 - parent: 6 - type: Transform - - uid: 2605 - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-15.5 - parent: 6 - type: Transform - - uid: 2606 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-15.5 - parent: 6 - type: Transform - - uid: 2607 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-14.5 - parent: 6 - type: Transform - - uid: 2608 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-13.5 - parent: 6 - type: Transform - - uid: 2609 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-13.5 - parent: 6 - type: Transform - - uid: 2612 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-19.5 - parent: 6 - type: Transform - - uid: 2613 - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-20.5 - parent: 6 - type: Transform - - uid: 2614 - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-20.5 - parent: 6 - type: Transform - - uid: 2615 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-20.5 - parent: 6 - type: Transform - - uid: 2616 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-20.5 - parent: 6 - type: Transform - - uid: 2617 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-20.5 - parent: 6 - type: Transform - - uid: 2619 - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-20.5 - parent: 6 - type: Transform - - uid: 2620 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-20.5 - parent: 6 - type: Transform - - uid: 2621 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-19.5 - parent: 6 - type: Transform - - uid: 2622 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-18.5 - parent: 6 - type: Transform - - uid: 2623 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-17.5 - parent: 6 - type: Transform - - uid: 2624 - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-16.5 - parent: 6 - type: Transform - - uid: 3010 - components: - - pos: 3.5,-24.5 - parent: 6 - type: Transform - - uid: 3373 - components: - - pos: -40.5,-20.5 - parent: 6 - type: Transform - - uid: 3791 - components: - - pos: -34.5,-60.5 - parent: 6 - type: Transform - - uid: 3819 - components: - - pos: -29.5,-60.5 - parent: 6 - type: Transform - - uid: 4191 - components: - - pos: 14.5,21.5 - parent: 6 - type: Transform - - uid: 4192 - components: - - pos: 13.5,21.5 - parent: 6 - type: Transform - - uid: 4193 - components: - - pos: 12.5,21.5 - parent: 6 - type: Transform - - uid: 4194 - components: - - pos: 11.5,21.5 - parent: 6 - type: Transform - - uid: 4530 - components: - - pos: 1.5,-51.5 - parent: 6 - type: Transform - - uid: 4589 - components: - - pos: -31.5,-16.5 - parent: 6 - type: Transform - - uid: 4725 - components: - - pos: -4.5,-47.5 - parent: 6 - type: Transform - - uid: 4726 - components: - - pos: -3.5,-47.5 - parent: 6 - type: Transform - - uid: 4727 - components: - - pos: -2.5,-47.5 - parent: 6 - type: Transform - - uid: 4728 - components: - - pos: -1.5,-47.5 - parent: 6 - type: Transform - - uid: 4729 - components: - - pos: -0.5,-47.5 - parent: 6 - type: Transform - - uid: 4730 - components: - - pos: 0.5,-47.5 - parent: 6 - type: Transform - - uid: 4905 - components: - - pos: -28.5,7.5 - parent: 6 - type: Transform - - uid: 4943 - components: - - pos: -33.5,-23.5 - parent: 6 - type: Transform - - uid: 5117 - components: - - pos: -4.5,1.5 - parent: 6 - type: Transform - - uid: 5155 - components: - - pos: 26.5,1.5 - parent: 6 - type: Transform - - uid: 5250 - components: - - pos: -4.5,-14.5 - parent: 6 - type: Transform - - uid: 5549 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-25.5 - parent: 6 - type: Transform - - uid: 5555 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-26.5 - parent: 6 - type: Transform - - uid: 5865 - components: - - pos: -22.5,-52.5 - parent: 6 - type: Transform - - uid: 5866 - components: - - pos: -24.5,-51.5 - parent: 6 - type: Transform - - uid: 5868 - components: - - pos: -23.5,-53.5 - parent: 6 - type: Transform - - uid: 5869 - components: - - pos: -24.5,-53.5 - parent: 6 - type: Transform - - uid: 5872 - components: - - pos: -24.5,-56.5 - parent: 6 - type: Transform - - uid: 5922 - components: - - pos: -29.5,-50.5 - parent: 6 - type: Transform - - uid: 5974 - components: - - pos: -22.5,-51.5 - parent: 6 - type: Transform - - uid: 6771 - components: - - pos: -43.5,-48.5 - parent: 6 - type: Transform - - uid: 7390 - components: - - pos: -3.5,-59.5 - parent: 6 - type: Transform - - uid: 7391 - components: - - pos: -8.5,-59.5 - parent: 6 - type: Transform - - uid: 7464 - components: - - pos: -5.5,-14.5 - parent: 6 - type: Transform - - uid: 7537 - components: - - pos: -40.5,-8.5 - parent: 6 - type: Transform - - uid: 7815 - components: - - pos: 22.5,-8.5 - parent: 6 - type: Transform - - uid: 7816 - components: - - pos: 23.5,-8.5 - parent: 6 - type: Transform - - uid: 7817 - components: - - pos: 24.5,-8.5 - parent: 6 - type: Transform - - uid: 7844 - components: - - pos: -42.5,-14.5 - parent: 6 - type: Transform - - uid: 8053 - components: - - pos: -26.5,7.5 - parent: 6 - type: Transform - - uid: 8054 - components: - - pos: -40.5,-3.5 - parent: 6 - type: Transform - - uid: 8055 - components: - - pos: -40.5,5.5 - parent: 6 - type: Transform - - uid: 8289 - components: - - pos: -38.5,-54.5 - parent: 6 - type: Transform - - uid: 11016 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-22.5 - parent: 6 - type: Transform - - uid: 13051 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-50.5 - parent: 6 - type: Transform -- proto: WallSolidRust - entities: - - uid: 2142 - components: - - pos: -20.5,-8.5 - parent: 6 - type: Transform - - uid: 3783 - components: - - pos: -32.5,-60.5 - parent: 6 - type: Transform - - uid: 3790 - components: - - pos: -33.5,-60.5 - parent: 6 - type: Transform - - uid: 4906 - components: - - pos: -27.5,7.5 - parent: 6 - type: Transform - - uid: 5867 - components: - - pos: -24.5,-55.5 - parent: 6 - type: Transform - - uid: 5870 - components: - - pos: -24.5,-52.5 - parent: 6 - type: Transform - - uid: 5871 - components: - - pos: -24.5,-54.5 - parent: 6 - type: Transform - - uid: 5923 - components: - - pos: -34.5,-26.5 - parent: 6 - type: Transform - - uid: 5928 - components: - - pos: -25.5,-57.5 - parent: 6 - type: Transform - - uid: 5929 - components: - - pos: -23.5,-57.5 - parent: 6 - type: Transform - - uid: 5930 - components: - - pos: -20.5,-53.5 - parent: 6 - type: Transform - - uid: 5931 - components: - - pos: -20.5,-54.5 - parent: 6 - type: Transform - - uid: 5932 - components: - - pos: -21.5,-57.5 - parent: 6 - type: Transform - - uid: 5933 - components: - - pos: -36.5,-28.5 - parent: 6 - type: Transform - - uid: 5934 - components: - - pos: -34.5,-27.5 - parent: 6 - type: Transform - - uid: 5936 - components: - - pos: 24.5,8.5 - parent: 6 - type: Transform - - uid: 5942 - components: - - pos: 21.5,0.5 - parent: 6 - type: Transform - - uid: 5979 - components: - - pos: 25.5,8.5 - parent: 6 - type: Transform - - uid: 5980 - components: - - pos: 23.5,0.5 - parent: 6 - type: Transform -- proto: WallWeaponCapacitorRecharger - entities: - - uid: 13826 - components: - - pos: -68.5,-9.5 - parent: 6 - type: Transform -- proto: WallWood - entities: - - uid: 10805 - components: - - pos: 4.5,-9.5 - parent: 10465 - type: Transform - - uid: 10806 - components: - - pos: 5.5,-9.5 - parent: 10465 - type: Transform - - uid: 10808 - components: - - pos: 7.5,-9.5 - parent: 10465 - type: Transform - - uid: 10810 - components: - - pos: 9.5,-9.5 - parent: 10465 - type: Transform - - uid: 11174 - components: - - pos: 9.5,-8.5 - parent: 10465 - type: Transform - - uid: 11175 - components: - - pos: 9.5,-7.5 - parent: 10465 - type: Transform - - uid: 13065 - components: - - pos: 5.5,-4.5 - parent: 10465 - type: Transform - - uid: 13092 - components: - - pos: 6.5,-4.5 - parent: 10465 - type: Transform - - uid: 13251 - components: - - pos: 7.5,-4.5 - parent: 10465 - type: Transform - - uid: 13316 - components: - - pos: 8.5,-6.5 - parent: 10465 - type: Transform - - uid: 13345 - components: - - pos: 7.5,-6.5 - parent: 10465 - type: Transform - - uid: 13346 - components: - - pos: 9.5,-6.5 - parent: 10465 - type: Transform - - uid: 13599 - components: - - pos: 4.5,-4.5 - parent: 10465 - type: Transform - - uid: 13614 - components: - - pos: 4.5,-6.5 - parent: 10465 - type: Transform - - uid: 13615 - components: - - pos: 4.5,-7.5 - parent: 10465 - type: Transform - - uid: 13616 - components: - - pos: 4.5,-8.5 - parent: 10465 - type: Transform - - uid: 13617 - components: - - pos: 4.5,-5.5 - parent: 10465 - type: Transform - - uid: 13626 - components: - - pos: 6.5,-6.5 - parent: 10465 - type: Transform -- proto: WardrobeBlackFilled - entities: - - uid: 6209 - components: - - pos: -40.5,-33.5 - parent: 6 - 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: WardrobeBlueFilled - entities: - - uid: 4459 - components: - - pos: -49.5,-19.5 - parent: 6 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.25,-0.48 - - 0.25,0.48 - - -0.25,0.48 - - -0.25,-0.48 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 145 - hard: True - restitution: 0 - friction: 0.4 - id: null - type: Fixtures - - open: True - removedMasks: 20 - type: EntityStorage -- proto: WardrobeGreenFilled - entities: - - uid: 4661 - components: - - pos: -49.5,-18.5 - parent: 6 - 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: 5425 - components: - - pos: -45.5,-38.5 - parent: 6 - 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: WardrobeMixedFilled - entities: - - uid: 4660 - components: - - pos: -49.5,-17.5 - parent: 6 - 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: WardrobePinkFilled - entities: - - uid: 4642 - components: - - pos: -54.5,-17.5 - parent: 6 - 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: WardrobePrisonFilled - entities: - - uid: 1699 - components: - - pos: 9.5,-1.5 - parent: 6 - 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: 1700 - components: - - pos: 9.5,4.5 - parent: 6 - 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: WardrobeWhiteFilled - entities: - - uid: 4641 - components: - - pos: -54.5,-18.5 - parent: 6 - 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: WardrobeYellowFilled - entities: - - uid: 4454 - components: - - pos: -54.5,-19.5 - parent: 6 - 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: WarningCO2 - entities: - - uid: 13173 - components: - - pos: -41.5,14.5 - parent: 6 - type: Transform -- proto: WarningN2 - entities: - - uid: 13174 - components: - - pos: -41.5,10.5 - parent: 6 - type: Transform -- proto: WarningN2O - entities: - - uid: 13175 - components: - - pos: -41.5,16.5 - parent: 6 - type: Transform -- proto: WarningO2 - entities: - - uid: 13176 - components: - - pos: -41.5,12.5 - parent: 6 - type: Transform -- proto: WarningPlasma - entities: - - uid: 13183 - components: - - pos: -41.5,18.5 - parent: 6 - type: Transform -- proto: WarningWaste - entities: - - uid: 13177 - components: - - pos: -41.5,20.5 - parent: 6 - type: Transform -- proto: WarpPoint - entities: - - uid: 13526 - components: - - rot: 3.141592653589793 rad - pos: -60.5,-12.5 - parent: 6 - type: Transform - - location: Evac - type: WarpPoint - - uid: 13527 - components: - - rot: 3.141592653589793 rad - pos: -32.5,1.5 - parent: 6 - type: Transform - - location: Engineering - type: WarpPoint - - uid: 13528 - components: - - rot: 3.141592653589793 rad - pos: -4.5,6.5 - parent: 6 - type: Transform - - location: Bridge - type: WarpPoint - - uid: 13529 - components: - - rot: 3.141592653589793 rad - pos: 12.5,1.5 - parent: 6 - type: Transform - - location: Security - type: WarpPoint - - uid: 13530 - components: - - rot: 3.141592653589793 rad - pos: 14.5,20.5 - parent: 6 - type: Transform - - uid: 13532 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-22.5 - parent: 6 - type: Transform - - location: Cafeteria - type: WarpPoint - - uid: 13533 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-37.5 - parent: 6 - type: Transform - - location: Cargo - type: WarpPoint - - uid: 13535 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-53.5 - parent: 6 - type: Transform - - location: Science - type: WarpPoint - - uid: 13536 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-75.5 - parent: 6 - type: Transform - - location: XenoArch - type: WarpPoint - - uid: 13537 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-44.5 - parent: 6 - type: Transform - - location: Dorms - type: WarpPoint - - uid: 13538 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-20.5 - parent: 6 - type: Transform - - location: Medbay - type: WarpPoint - - uid: 13539 - components: - - rot: 3.141592653589793 rad - pos: -82.5,-44.5 - parent: 6 - type: Transform - - location: Destroyed AI Core - type: WarpPoint -- proto: WaterCooler - entities: - - uid: 2657 - components: - - pos: -5.5,-54.5 - parent: 6 - type: Transform - - uid: 3374 - components: - - pos: -34.5,-20.5 - parent: 6 - type: Transform - - uid: 5172 - components: - - pos: -2.5,-3.5 - parent: 6 - type: Transform - - uid: 6025 - components: - - pos: 15.5,21.5 - parent: 6 - type: Transform - - uid: 8452 - components: - - pos: -38.5,-2.5 - parent: 6 - type: Transform -- proto: WaterTank - entities: - - uid: 11035 - components: - - pos: -40.5,1.5 - parent: 6 - type: Transform -- proto: WaterTankFull - entities: - - uid: 3797 - components: - - pos: -31.5,-62.5 - parent: 6 - type: Transform - - uid: 5311 - components: - - pos: 19.5,-47.5 - parent: 6 - type: Transform - - uid: 10891 - components: - - pos: 23.5,4.5 - parent: 6 - type: Transform - - uid: 10911 - components: - - pos: 17.5,-21.5 - parent: 6 - type: Transform - - uid: 10931 - components: - - pos: -9.5,-59.5 - parent: 6 - type: Transform - - uid: 10978 - components: - - pos: -27.5,-39.5 - parent: 6 - type: Transform - - uid: 11002 - components: - - pos: -52.5,-25.5 - parent: 6 - type: Transform - - uid: 11049 - components: - - pos: -11.5,-4.5 - parent: 6 - type: Transform -- proto: WaterTankHighCapacity - entities: - - uid: 5222 - components: - - pos: -9.5,-18.5 - parent: 6 - type: Transform -- proto: WaterVaporCanister - entities: - - uid: 4861 - components: - - pos: -30.5,13.5 - parent: 6 - type: Transform - - uid: 6096 - components: - - pos: -3.5,-75.5 - parent: 6 - type: Transform -- proto: WeaponCapacitorRecharger - entities: - - uid: 5838 - components: - - pos: -9.5,8.5 - parent: 6 - type: Transform - - uid: 5839 - components: - - pos: 10.5,8.5 - parent: 6 - type: Transform - - uid: 5840 - components: - - pos: 14.5,-2.5 - parent: 6 - type: Transform - - uid: 5841 - components: - - pos: -20.5,-29.5 - parent: 6 - type: Transform -- proto: WeaponDisabler - entities: - - uid: 3422 - components: - - pos: 17.400164,-6.338389 - parent: 6 - type: Transform - - uid: 3423 - components: - - pos: 17.6085,-6.525889 - parent: 6 - type: Transform - - uid: 3472 - components: - - pos: 16.416548,1.6528546 - parent: 6 - type: Transform -- proto: WeaponDisablerPractice - entities: - - uid: 13544 - components: - - pos: 14.422362,-2.081512 - parent: 6 - type: Transform -- proto: WeaponLaserCarbine - entities: - - uid: 4717 - components: - - pos: 19.388641,8.763136 - parent: 6 - type: Transform - - uid: 4718 - components: - - pos: 19.672617,8.479313 - parent: 6 - type: Transform -- proto: WeaponPistolMk58 - entities: - - uid: 3473 - components: - - pos: 16.68738,1.4445212 - parent: 6 - type: Transform - - uid: 4713 - components: - - pos: 17.392387,8.703319 - parent: 6 - type: Transform - - uid: 4714 - components: - - pos: 17.562773,8.47626 - parent: 6 - type: Transform -- proto: WeaponRifleLecter - entities: - - uid: 4721 - components: - - pos: 19.451618,4.56048 - parent: 6 - type: Transform -- proto: WeaponShotgunKammerer - entities: - - uid: 4719 - components: - - pos: 18.596813,4.6059422 - parent: 6 - type: Transform - - uid: 4720 - components: - - pos: 18.696205,4.3505025 - parent: 6 - type: Transform -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 6477 - components: - - pos: 11.262755,8.721378 - parent: 6 - type: Transform -- proto: WeaponTurretSyndicateBroken - entities: - - uid: 6689 - components: - - pos: -83.5,-39.5 - parent: 6 - type: Transform - - uid: 6690 - components: - - pos: -83.5,-49.5 - parent: 6 - type: Transform -- proto: Welder - entities: - - uid: 7423 - components: - - pos: -17.525263,-51.629738 - parent: 6 - type: Transform -- proto: WelderIndustrialAdvanced - entities: - - uid: 6377 - components: - - pos: -37.47009,22.519089 - parent: 6 - type: Transform -- proto: WelderMini - entities: - - uid: 5201 - components: - - pos: -12.333718,8.362022 - parent: 6 - type: Transform -- proto: WeldingFuelTankFull - entities: - - uid: 4895 - components: - - pos: -35.5,-4.5 - parent: 6 - type: Transform - - uid: 4914 - components: - - pos: -35.5,22.5 - parent: 6 - type: Transform - - uid: 10890 - components: - - pos: 23.5,5.5 - parent: 6 - type: Transform - - uid: 10912 - components: - - pos: 16.5,-21.5 - parent: 6 - type: Transform - - uid: 10932 - components: - - pos: -10.5,-59.5 - parent: 6 - type: Transform - - uid: 10977 - components: - - pos: -27.5,-38.5 - parent: 6 - type: Transform - - uid: 11001 - components: - - pos: -52.5,-24.5 - parent: 6 - type: Transform - - uid: 11034 - components: - - pos: -40.5,2.5 - parent: 6 - type: Transform - - uid: 11048 - components: - - pos: -11.5,-3.5 - parent: 6 - type: Transform -- proto: WetFloorSign - entities: - - uid: 7637 - components: - - pos: 27.873884,5.368929 - parent: 6 - type: Transform - - uid: 7638 - components: - - pos: 30.477365,5.5147624 - parent: 6 - type: Transform -- proto: Windoor - entities: - - uid: 5416 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-39.5 - parent: 6 - type: Transform - - uid: 7744 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-40.5 - parent: 6 - type: Transform -- proto: WindoorArmoryLocked - entities: - - uid: 272 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-5.5 - parent: 6 - type: Transform - - uid: 273 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-5.5 - parent: 6 - type: Transform - - uid: 4698 - components: - - pos: 17.5,8.5 - parent: 6 - type: Transform - - uid: 4699 - components: - - pos: 18.5,8.5 - parent: 6 - type: Transform - - uid: 4700 - components: - - pos: 19.5,8.5 - parent: 6 - type: Transform - - uid: 4701 - components: - - rot: 3.141592653589793 rad - pos: 17.5,4.5 - parent: 6 - type: Transform - - uid: 4702 - components: - - rot: 3.141592653589793 rad - pos: 18.5,4.5 - parent: 6 - type: Transform - - uid: 4703 - components: - - rot: 3.141592653589793 rad - pos: 19.5,4.5 - parent: 6 - type: Transform - - uid: 4889 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 6 - type: Transform -- proto: WindoorBarLocked - entities: - - uid: 828 - components: - - pos: -0.5,-18.5 - parent: 6 - type: Transform -- proto: WindoorBrigLocked - entities: - - uid: 7796 - components: - - pos: 12.5,-18.5 - parent: 6 - type: Transform -- proto: WindoorChemistryLocked - entities: - - uid: 4817 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-18.5 - parent: 6 - type: Transform - - uid: 4819 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-15.5 - parent: 6 - type: Transform -- proto: WindoorCommandLocked - entities: - - uid: 3866 - components: - - pos: -54.5,-45.5 - parent: 6 - type: Transform - - uid: 13264 - components: - - rot: 3.141592653589793 rad - pos: -54.5,-43.5 - parent: 6 - type: Transform -- proto: WindoorEngineeringLocked - entities: - - uid: 4899 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-8.5 - parent: 6 - type: Transform - - uid: 4900 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-8.5 - parent: 6 - type: Transform - - uid: 4901 - components: - - rot: 3.141592653589793 rad - pos: -28.5,-8.5 - parent: 6 - type: Transform - - uid: 5053 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-5.5 - parent: 6 - type: Transform -- proto: WindoorHeadOfPersonnelLocked - entities: - - uid: 707 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-8.5 - parent: 6 - type: Transform -- proto: WindoorHydroponicsLocked - entities: - - uid: 5219 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-16.5 - parent: 6 - type: Transform - - uid: 5220 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-15.5 - parent: 6 - type: Transform - - uid: 5221 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-14.5 - parent: 6 - type: Transform -- proto: WindoorJanitorLocked - entities: - - uid: 4405 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,3.5 - parent: 6 - type: Transform -- proto: WindoorKitchenHydroponicsLocked - entities: - - uid: 8550 - components: - - pos: -10.5,-23.5 - parent: 6 - type: Transform -- proto: WindoorMedicalLocked - entities: - - uid: 4836 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-23.5 - parent: 6 - type: Transform -- proto: WindoorScienceLocked - entities: - - uid: 7592 - components: - - pos: -11.5,-49.5 - parent: 6 - type: Transform -- proto: WindoorSecure - entities: - - uid: 5101 - components: - - pos: -0.5,-8.5 - parent: 6 - type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 5608 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-36.5 - parent: 6 - type: Transform - - uid: 5609 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-35.5 - parent: 6 - type: Transform -- proto: WindoorSecureSalvageLocked - entities: - - uid: 5285 - components: - - pos: 4.5,-46.5 - parent: 6 - type: Transform -- proto: WindoorSecurityLocked - entities: - - uid: 5251 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-30.5 - parent: 6 - type: Transform - - uid: 5252 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-29.5 - parent: 6 - type: Transform -- proto: Window - entities: - - uid: 249 - components: - - pos: -11.5,-13.5 - parent: 6 - type: Transform - - uid: 250 - components: - - pos: -10.5,-13.5 - parent: 6 - type: Transform - - uid: 251 - components: - - pos: -9.5,-13.5 - parent: 6 - type: Transform - - uid: 261 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-13.5 - parent: 6 - type: Transform - - uid: 262 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-13.5 - parent: 6 - type: Transform - - uid: 263 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-13.5 - parent: 6 - type: Transform - - uid: 313 - components: - - pos: -12.5,-18.5 - parent: 6 - type: Transform - - uid: 314 - components: - - pos: -12.5,-19.5 - parent: 6 - type: Transform - - uid: 473 - components: - - pos: 26.5,-9.5 - parent: 6 - type: Transform - - uid: 513 - components: - - pos: 28.5,-9.5 - parent: 6 - type: Transform - - uid: 589 - components: - - pos: 44.5,-4.5 - parent: 6 - type: Transform - - uid: 590 - components: - - pos: 44.5,-7.5 - parent: 6 - type: Transform - - uid: 591 - components: - - pos: 44.5,4.5 - parent: 6 - type: Transform - - uid: 592 - components: - - pos: 44.5,1.5 - parent: 6 - type: Transform - - uid: 764 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-13.5 - parent: 6 - type: Transform - - uid: 765 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-13.5 - parent: 6 - type: Transform - - uid: 829 - components: - - pos: 3.5,-19.5 - parent: 6 - type: Transform - - uid: 836 - components: - - pos: -12.5,-22.5 - parent: 6 - type: Transform - - uid: 843 - components: - - pos: -12.5,-21.5 - parent: 6 - type: Transform - - uid: 847 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-46.5 - parent: 6 - type: Transform - - uid: 854 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-46.5 - parent: 6 - type: Transform - - uid: 872 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-19.5 - parent: 6 - type: Transform - - uid: 873 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-19.5 - parent: 6 - type: Transform - - uid: 920 - components: - - pos: -16.5,-26.5 - parent: 6 - type: Transform - - uid: 921 - components: - - pos: -16.5,-25.5 - parent: 6 - type: Transform - - uid: 922 - components: - - pos: -32.5,-19.5 - parent: 6 - type: Transform - - uid: 941 - components: - - pos: -34.5,-19.5 - parent: 6 - type: Transform - - uid: 1145 - components: - - pos: 7.5,-37.5 - parent: 6 - type: Transform - - uid: 1146 - components: - - pos: 7.5,-38.5 - parent: 6 - type: Transform - - uid: 1147 - components: - - pos: 10.5,-37.5 - parent: 6 - type: Transform - - uid: 1218 - components: - - pos: -10.5,-46.5 - parent: 6 - type: Transform - - uid: 1219 - components: - - pos: -9.5,-46.5 - parent: 6 - type: Transform - - uid: 1302 - components: - - pos: -9.5,-49.5 - parent: 6 - type: Transform - - uid: 1303 - components: - - pos: -10.5,-49.5 - parent: 6 - type: Transform - - uid: 1435 - components: - - pos: -17.5,-17.5 - parent: 6 - type: Transform - - uid: 1550 - components: - - pos: -20.5,-24.5 - parent: 6 - type: Transform - - uid: 1551 - components: - - pos: -21.5,-24.5 - parent: 6 - type: Transform - - uid: 1626 - components: - - pos: -16.5,-38.5 - parent: 6 - type: Transform - - uid: 1674 - components: - - pos: -16.5,-39.5 - parent: 6 - type: Transform - - uid: 1675 - components: - - pos: -16.5,-40.5 - parent: 6 - type: Transform - - uid: 2471 - components: - - pos: -50.5,-35.5 - parent: 6 - type: Transform - - uid: 2472 - components: - - pos: -50.5,-34.5 - parent: 6 - type: Transform - - uid: 2475 - components: - - pos: -50.5,-30.5 - parent: 6 - type: Transform - - uid: 2476 - components: - - pos: -50.5,-31.5 - parent: 6 - type: Transform - - uid: 2540 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-13.5 - parent: 6 - type: Transform - - uid: 2541 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-13.5 - parent: 6 - type: Transform - - uid: 3645 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-49.5 - parent: 6 - type: Transform - - uid: 3662 - components: - - pos: -16.5,-18.5 - parent: 6 - type: Transform - - uid: 4303 - components: - - pos: -16.5,-23.5 - parent: 6 - type: Transform - - uid: 4309 - components: - - pos: -16.5,-20.5 - parent: 6 - type: Transform - - uid: 4312 - components: - - pos: -16.5,-22.5 - parent: 6 - type: Transform - - uid: 5537 - components: - - pos: -27.5,-21.5 - parent: 6 - type: Transform - - uid: 5560 - components: - - pos: 3.5,-22.5 - parent: 6 - type: Transform - - uid: 5924 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-46.5 - parent: 6 - type: Transform - - uid: 5925 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-46.5 - parent: 6 - type: Transform - - uid: 5926 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-46.5 - parent: 6 - type: Transform - - uid: 5939 - components: - - pos: 29.5,-4.5 - parent: 6 - type: Transform - - uid: 5940 - components: - - pos: 29.5,-6.5 - parent: 6 - type: Transform - - uid: 5941 - components: - - pos: 29.5,-8.5 - parent: 6 - type: Transform - - uid: 5944 - components: - - pos: 7.5,-14.5 - parent: 6 - type: Transform - - uid: 5945 - components: - - pos: 7.5,-16.5 - parent: 6 - type: Transform - - uid: 8526 - components: - - pos: -11.5,-23.5 - parent: 6 - type: Transform - - uid: 10807 - components: - - pos: 6.5,-9.5 - parent: 10465 - type: Transform - - uid: 10809 - components: - - pos: 8.5,-9.5 - parent: 10465 - type: Transform -- proto: WindowDirectional - entities: - - uid: 3654 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 6 - type: Transform - - uid: 4834 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-21.5 - parent: 6 - type: Transform - - uid: 4835 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-22.5 - parent: 6 - type: Transform - - uid: 6525 - components: - - rot: 3.141592653589793 rad - pos: -61.5,-12.5 - parent: 6 - type: Transform - - uid: 6526 - components: - - rot: 3.141592653589793 rad - pos: -59.5,-12.5 - parent: 6 - type: Transform - - uid: 6527 - components: - - rot: 3.141592653589793 rad - pos: -60.5,-12.5 - parent: 6 - type: Transform - - uid: 6528 - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-12.5 - parent: 6 - type: Transform - - uid: 6529 - components: - - pos: -59.5,-12.5 - parent: 6 - type: Transform - - uid: 6530 - components: - - pos: -60.5,-12.5 - parent: 6 - type: Transform - - uid: 6531 - components: - - pos: -61.5,-12.5 - parent: 6 - type: Transform - - uid: 6532 - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-12.5 - parent: 6 - type: Transform - - uid: 7743 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-40.5 - parent: 6 - type: Transform -- proto: WindowReinforcedDirectional - entities: - - uid: 63 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-10.5 - parent: 6 - type: Transform - - uid: 64 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-10.5 - parent: 6 - type: Transform - - uid: 65 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-10.5 - parent: 6 - type: Transform - - uid: 2136 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-5.5 - parent: 6 - type: Transform - - uid: 2137 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-5.5 - parent: 6 - type: Transform - - uid: 2517 - components: - - rot: 3.141592653589793 rad - pos: -53.5,-43.5 - parent: 6 - type: Transform - - uid: 3860 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-47.5 - parent: 6 - type: Transform - - uid: 3863 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-41.5 - parent: 6 - type: Transform - - uid: 4709 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,4.5 - parent: 6 - type: Transform - - uid: 4710 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,4.5 - parent: 6 - type: Transform - - uid: 4711 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,8.5 - parent: 6 - type: Transform - - uid: 4712 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,8.5 - parent: 6 - type: Transform - - uid: 5442 - components: - - pos: -53.5,-45.5 - parent: 6 - type: Transform - - uid: 5444 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-46.5 - parent: 6 - type: Transform - - uid: 5445 - components: - - rot: 3.141592653589793 rad - pos: -55.5,-43.5 - parent: 6 - type: Transform - - uid: 5456 - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-42.5 - parent: 6 - type: Transform - - uid: 5457 - components: - - pos: -55.5,-45.5 - parent: 6 - type: Transform - - uid: 7797 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-19.5 - parent: 6 - type: Transform - - uid: 8385 - components: - - pos: -8.5,12.5 - parent: 6 - type: Transform - - uid: 8386 - components: - - pos: -7.5,12.5 - parent: 6 - type: Transform - - uid: 8387 - components: - - pos: -6.5,12.5 - parent: 6 - type: Transform - - uid: 8388 - components: - - pos: -5.5,12.5 - parent: 6 - type: Transform - - uid: 8389 - components: - - pos: -3.5,12.5 - parent: 6 - type: Transform - - uid: 8390 - components: - - pos: -2.5,12.5 - parent: 6 - type: Transform - - uid: 8391 - components: - - pos: -1.5,12.5 - parent: 6 - type: Transform - - uid: 8392 - components: - - pos: -0.5,12.5 - parent: 6 - type: Transform -- proto: WindowTintedDirectional - entities: - - uid: 1601 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-32.5 - parent: 6 - type: Transform - - uid: 1602 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-30.5 - parent: 6 - type: Transform - - uid: 1603 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-28.5 - parent: 6 - type: Transform - - uid: 1650 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-41.5 - parent: 6 - type: Transform - - uid: 1897 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-40.5 - parent: 6 - type: Transform - - uid: 1898 - components: - - rot: 3.141592653589793 rad - pos: -31.5,-41.5 - parent: 6 - type: Transform - - uid: 1899 - components: - - rot: 3.141592653589793 rad - pos: -31.5,-40.5 - parent: 6 - type: Transform - - uid: 1901 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-40.5 - parent: 6 - type: Transform - - uid: 1902 - components: - - pos: -35.5,-40.5 - parent: 6 - type: Transform - - uid: 1903 - components: - - pos: -36.5,-40.5 - parent: 6 - type: Transform - - uid: 5159 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-4.5 - parent: 6 - type: Transform - - uid: 5999 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,23.5 - parent: 6 - type: Transform -- proto: Wirecutter - entities: - - uid: 5380 - components: - - pos: -2.846246,-56.288673 - parent: 6 - type: Transform -- proto: WoodDoor - entities: - - uid: 4421 - components: - - pos: -29.5,-52.5 - parent: 6 - type: Transform - - SecondsUntilStateChange: -241557.64 - state: Opening - type: Door - - uid: 13315 - components: - - pos: 7.5,-5.5 - parent: 10465 - type: Transform - - uid: 13627 - components: - - pos: 5.5,-6.5 - parent: 10465 - type: Transform -- proto: Wrench - entities: - - uid: 5378 - components: - - pos: -3.4851913,-56.444775 - parent: 6 - type: Transform - - uid: 7387 - components: - - pos: -7.495751,-72.485725 - parent: 6 - type: Transform -... +meta: + format: 4 + name: DemoStation + author: Space-Wizards + postmapinit: false +tilemap: + 0: Space + 1: FloorArcadeBlue + 3: FloorArcadeRed + 4: FloorAsteroidCoarseSand0 + 5: FloorAsteroidCoarseSandDug + 6: FloorAsteroidIronsand1 + 7: FloorAsteroidIronsand2 + 8: FloorAsteroidIronsand3 + 10: FloorAsteroidSand + 15: FloorBlueCircuit + 16: FloorBoxing + 17: FloorCarpetClown + 18: FloorCarpetOffice + 22: FloorDark + 25: FloorDarkHerringbone + 26: FloorDarkMini + 27: FloorDarkMono + 28: FloorDarkOffset + 29: FloorDarkPavement + 30: FloorDarkPavementVertical + 31: FloorDarkPlastic + 33: FloorDirt + 34: FloorEighties + 37: FloorFreezer + 41: FloorGrassDark + 44: FloorGreenCircuit + 46: FloorHydro + 47: FloorKitchen + 48: FloorLaundry + 49: FloorLino + 51: FloorMetalDiamond + 58: FloorReinforced + 59: FloorRockVault + 60: FloorShowroom + 63: FloorShuttlePurple + 65: FloorShuttleWhite + 68: FloorSteel + 71: FloorSteelDirty + 74: FloorSteelMono + 75: FloorSteelOffset + 78: FloorTechMaint + 79: FloorTechMaint2 + 80: FloorTechMaint3 + 81: FloorWhite + 85: FloorWhiteMini + 87: FloorWhiteOffset + 91: FloorWood + 93: Lattice + 94: Plating +entities: +- proto: "" + entities: + - uid: 5 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 6 + components: + - type: MetaData + - pos: 0.6031583,0.44106165 + parent: 5 + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: RAAAAEQAAAFEAAADLgAAABYAAAAuAAAAFgAAAi4AAABeAAAAXgAAAF4AAABPAAAAEgAAABIAAABPAAAAWwAAAUQAAANEAAADRAAAAhYAAAAuAAAAFgAAAy4AAAAWAAACXgAAAE8AAABeAAAAXgAAABIAAAASAAAAXgAAAFsAAAFEAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAADRAAAAEQAAANEAAACRAAAAUQAAABEAAADRAAAAEQAAAJEAAAARAAAA0QAAAFEAAACRAAAA0QAAAJEAAADRAAAAUQAAAJEAAABRAAAAUQAAAJEAAAARAAAAUQAAAFEAAADRAAAAEQAAABEAAAARAAAAEQAAAFEAAACRAAAAkQAAAJEAAABRAAAA0QAAANEAAABRAAAAUQAAANEAAAARAAAAkQAAANEAAABRAAAAUQAAABEAAACRAAAAkQAAABeAAAAFgAAARYAAAIWAAABFgAAARYAAAJeAAAATwAAAF4AAABKAAADSgAAAkoAAANKAAAASgAAAkQAAANEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADEAAABEAAAARAAAA14AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAAAxAAAARAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAAMQAAAEQAAAFEAAADXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATwAAADEAAAAxAAAAMQAAADEAAABEAAADRAAAA14AAABeAAAATgAAAF4AAABVAAADVQAAAl4AAABeAAAATgAAAF4AAABeAAAAXgAAADEAAABeAAAARAAAA0QAAAFeAAAAXgAAAE4AAABeAAAAVQAAAVUAAABVAAADXgAAAE4AAABeAAAAWwAAAFsAAAJbAAACWwAAAkQAAANEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAVQAAAF4AAABOAAAATwAAAFsAAAM7AAAAOwAAADsAAABEAAACRAAAAF4AAABeAAAAXgAAAE4AAABeAAAAWwAAAlsAAAJeAAAAXgAAAF4AAABbAAABOwAAAFsAAAJbAAADRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAJbAAACXgAAAFsAAAFeAAAAWwAAATsAAABbAAABWwAAAQ== + 0,-1: + ind: 0,-1 + tiles: WwAAAFsAAANbAAADWwAAA1sAAAJEAAACRAAAAl4AAAAxAAAAMQAAADEAAABeAAAAWwAAAVsAAAFbAAACWwAAA1sAAANbAAACWwAAA1sAAANbAAADRAAAAUQAAABeAAAAMQAAADEAAAAxAAAAXgAAAFsAAANbAAABWwAAAVsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABXgAAAF4AAAAxAAAAXgAAAF4AAABeAAAARAAAA14AAABeAAAARAAAAEQAAABEAAACRAAAAEQAAAFEAAADRAAAAUQAAAJEAAABRAAAAEQAAABEAAABRAAAAEQAAABEAAAARAAAAEQAAABEAAADRAAAA0QAAANEAAADRAAAAkQAAAFEAAACRAAAAEQAAAFEAAABRAAAAkQAAABEAAABRAAAA0QAAAFEAAADRAAAAkQAAANEAAACRAAAAUQAAAFEAAACRAAAA0QAAANEAAACRAAAA0QAAAFEAAADRAAAA0QAAANEAAAAXgAAABYAAAAWAAACFgAAAF4AAABEAAAARAAAAl4AAABEAAADRAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAACRAAAAUQAAAJEAAACSgAAABYAAAFKAAABRAAAAkQAAAJeAAAAWwAAA1sAAABbAAAAXgAAAEQAAANEAAABRAAAAEQAAAFEAAACRAAAA14AAAAcAAAAXgAAAEQAAAFEAAACMQAAAFsAAANbAAABWwAAAF4AAABEAAADRAAAA0QAAANEAAAARAAAAEQAAAJKAAABFgAAAkoAAABEAAADRAAAAl4AAABbAAABWwAAAlsAAANeAAAARAAAAEQAAANeAAAAFgAAAhYAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAACXgAAABYAAAEWAAACFgAAAF4AAABEAAACRAAAAUQAAAJEAAABWwAAAl4AAAAEAAACBAAAAV4AAABEAAADRAAAAF4AAAAWAAAAFgAAAhYAAAAWAAADRAAAAEQAAAFEAAABRAAAAzsAAABeAAAABQAAAAQAAAJeAAAARAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAAV4AAABbAAAAXgAAAAQAAAIEAAACXgAAAEQAAAJEAAADXgAAAEcAAABHAAAAXgAAAEQAAAJEAAABRAAAAEQAAAJeAAAAWwAAAl4AAAAEAAACBAAAAl4AAABEAAABRAAAA14AAABHAAAARwAAAF4AAABEAAABRAAAA0QAAABEAAADGgAAAQ== + -1,0: + ind: -1,0 + tiles: RAAAAkQAAABeAAAAXgAAAF4AAABPAAAAXgAAAFsAAAFbAAABWwAAAlsAAAIWAAABWwAAADsAAAA7AAAAOwAAAEQAAABEAAAATwAAAF4AAABeAAAAXgAAAF4AAABbAAADWwAAAlsAAAJbAAABXgAAAFsAAANbAAADWwAAAFsAAAJEAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAACRAAAAkQAAAMbAAABFgAAAhYAAAIbAAABHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAAEQAAAFEAAABGwAAAxYAAAMWAAADGwAAAhwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAABEAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAAxsAAAIbAAABXgAAAF4AAABeAAAARAAAAkQAAAFEAAABRAAAAV4AAAAWAAACFgAAAxYAAAEWAAABFgAAAxYAAAMWAAAAFgAAAxYAAAEWAAAAFgAAAEQAAABEAAADRAAAAEQAAAJeAAAAFgAAARYAAAEcAAAAHAAAABYAAAEcAAAAHAAAABwAAAAWAAAAHAAAABwAAABEAAACRAAAAUQAAANEAAACXgAAABYAAAEWAAADHAAAABwAAAAWAAAAHAAAABwAAAAcAAAAFgAAARwAAAAcAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAADFgAAAhYAAAMWAAABFgAAAhYAAAAWAAABFgAAAAQAAAEEAAABBAAAAgQAAAEEAAAABAAAAF4AAAAWAAABFgAAAhYAAAEWAAADFgAAABYAAAMWAAACFgAAARYAAAEEAAACBAAAAAQAAAIEAAAABAAAAQQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAIEAAACBAAAAAQAAAAEAAAABAAAAgQAAAIEAAACBAAAAgQAAAIEAAABBAAAAgQAAAEEAAACBAAAAQQAAAEEAAABBAAAAQQAAAEEAAACBAAAAAUAAAAEAAAABAAAAgQAAAEEAAACBAAAAgQAAAEEAAACBQAAAAQAAAAKAAAACgAAAAoAAAAEAAAABAAAAAQAAAAEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 0,0: + ind: 0,0 + tiles: OwAAAF4AAAAEAAACBAAAAl4AAABEAAADRAAAAV4AAABHAAAARwAAAFAAAANEAAABRAAAAEQAAANEAAADXgAAAFsAAAJbAAABBAAAAgUAAABeAAAARAAAAkQAAAJeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADXgAAAEcAAABHAAAAUAAAA0QAAANEAAABRAAAAl4AAABeAAAAHAAAABsAAAIWAAACFgAAARsAAAFEAAADRAAAAF4AAABHAAAARwAAAF4AAABEAAAARAAAA0QAAANEAAAARAAAABwAAAAbAAAAFgAAABYAAAMbAAACRAAAA0QAAAFeAAAARwAAAEcAAABeAAAARAAAAkQAAABEAAABRAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAAFgAAAxYAAABeAAAAKQAAAykAAABEAAADRAAAA0QAAABEAAAAXgAAABoAAAIaAAAAGgAAA14AAABEAAABRAAAARYAAAAWAAADXgAAACkAAAMpAAABRAAAAEQAAABEAAACRAAAA14AAAAaAAADGgAAABoAAAEbAAACRAAAAkQAAAEWAAABFgAAA14AAAApAAADKQAAA0QAAAFEAAAARAAAAkQAAANeAAAAGgAAABoAAAMaAAADXgAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAABoAAAEaAAAAGgAAA14AAABEAAADRAAAAl4AAAAEAAACBAAAAQQAAAEEAAACBQAAAAQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAARsAAANeAAAABAAAAQQAAAEEAAACBAAAAgQAAAIEAAABXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAGwAAABsAAAMbAAACBAAAAgQAAAAEAAABBAAAAgQAAAEEAAACBAAAAV4AAABeAAAATgAAAE4AAABOAAAAXgAAABsAAAAbAAAAGwAAAQQAAAEEAAABBAAAAQQAAAEAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAARsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAEQAAAJEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAADRAAAAQ== + 1,0: + ind: 1,0 + tiles: GgAAAhoAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAARoAAAIaAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAMAAAADAAAAAwAAAAMAAAAF4AAABEAAACRAAAAl4AAAAbAAACGwAAARsAAAFeAAAAXgAAAF4AAABOAAAAXgAAADAAAAAwAAAAMAAAADAAAABeAAAARAAAA0QAAANeAAAAFgAAAxYAAAMWAAAAXgAAAF4AAABeAAAATgAAAF4AAAAwAAAAMAAAADAAAAAwAAAAXgAAAEQAAAFEAAAAGwAAAhYAAAMWAAACFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAl4AAAAWAAABFgAAAhYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABRAAAAUQAAAFeAAAAGwAAABsAAAMbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAFgAAAUQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAABYAAAMWAAACFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAbAAADTwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAQQAAAIFAAAABAAAAQQAAAIEAAACGwAAAV4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAABAAAAAQAAAIEAAACBAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 1,-1: + ind: 1,-1 + tiles: WwAAAFsAAAFeAAAAXgAAAE4AAABeAAAABAAAAAQAAAAEAAACBAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAFsAAAFbAAADXgAAAE8AAABeAAAAXgAAAAQAAAEEAAACBAAAAAQAAAIEAAACBAAAAQQAAAEAAAAAAAAAAAAAAABEAAADXgAAAF4AAAAWAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAADRAAAAkQAAANEAAADRAAAAkQAAANEAAADRAAAAEQAAANEAAADRAAAAEQAAANEAAAARAAAA0QAAAFEAAAARAAAAUQAAAFEAAADRAAAAEQAAAJEAAAARAAAA0QAAANEAAADRAAAA0QAAANEAAACRAAAA0QAAAJEAAABRAAAAEQAAAFEAAAARAAAAEQAAAJEAAABRAAAA0QAAABEAAADRAAAA0QAAANEAAADRAAAAUQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAAhYAAAIWAAAAXgAAAF4AAAAiAAAAXgAAAF4AAABEAAADRAAAAF4AAAAWAAABFgAAAxYAAAFeAAAATwAAAF4AAABeAAAAXgAAAF4AAAAiAAAAIgAAACIAAABeAAAARAAAA0QAAAAWAAADFgAAAxYAAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAIgAAACIAAAAiAAAAXgAAAEQAAAFEAAADXgAAABYAAAEWAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAACIAAAAiAAAAIgAAAF4AAABEAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAiAAAAIgAAACIAAABeAAAARAAAAUQAAABEAAACRAAAAU8AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAIgAAACIAAAAiAAAAXgAAAEQAAABEAAAARAAAAkQAAAFeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAF4AAAAbAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAEaAAACGgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAAGgAAAhoAAANeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAg== + -2,0: + ind: -2,0 + tiles: RAAAAUQAAAFeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABXgAAABYAAAAWAAACFgAAARYAAAFOAAAAXgAAABkAAAAdAAADHQAAAx0AAAMZAAABXgAAAF4AAABEAAADRAAAAF4AAAAzAAAAMwAAADMAAAAWAAABTgAAAF4AAAAeAAABGwAAAiwAAAAbAAADHgAAAV4AAABeAAAARAAAAEQAAAFeAAAAMwAAADMAAAAzAAAAFgAAAk4AAABeAAAAHgAAAywAAAAbAAACLAAAAB4AAABeAAAAXgAAAEQAAAJEAAAAXgAAADMAAAAzAAAAMwAAABYAAABOAAAAXgAAAB4AAAMbAAACLAAAABsAAAEeAAACXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAA14AAABOAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAE8AAABEAAABRAAAAEQAAAFOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAACRAAAAkQAAAFeAAAAXgAAAF4AAABeAAAABAAAAAQAAAAEAAAABAAAAgQAAAAEAAABXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAAXgAAAAQAAAIEAAACBAAAAgQAAAAEAAACBAAAAgQAAAEEAAABBAAAAAQAAAEEAAACBAAAAgQAAABEAAABRAAAAF4AAAAEAAACBAAAAgQAAAIEAAAABAAAAQQAAAIEAAAABAAAAQQAAAIEAAACBAAAAgQAAAEEAAACRAAAA0QAAABeAAAACAAAAAcAAAAEAAACBQAAAAQAAAAEAAABBAAAAAQAAAAEAAACBAAAAgQAAAEEAAAABQAAAEQAAABEAAAAXgAAAAYAAAAHAAAABAAAAQQAAAAEAAAABAAAAgQAAAEEAAACBAAAAAQAAAIEAAACBAAAAgQAAABeAAAAXgAAAF4AAAAEAAACBgAAAAQAAAIKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXgAAAF4AAABeAAAABAAAAAYAAAAGAAAAXgAAAAYAAAAGAAAABAAAAQQAAAEEAAABBAAAAQQAAAAEAAABBAAAAQ== + -2,-1: + ind: -2,-1 + tiles: XgAAABYAAAMWAAACFgAAAF4AAABRAAABUQAAAFcAAABXAAAAVwAAAFEAAABRAAACRAAAAkQAAAJEAAADRAAAAl4AAAAWAAADFgAAARYAAABeAAAAUQAAAFEAAANRAAADUQAAAFEAAAJRAAADXgAAAEQAAAJEAAAARAAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAEQAAAJeAAAARAAAAUQAAAJEAAAARAAAAkQAAABEAAACRAAAAUQAAAFEAAACRAAAAEQAAAJEAAADRAAAA0QAAAJEAAABRAAAAEQAAABEAAACRAAAA0QAAABEAAACRAAAA0QAAABEAAAARAAAAEQAAAFEAAADRAAAAkQAAAJEAAADRAAAAkQAAANEAAADRAAAA0QAAAFEAAACRAAAAkQAAABEAAACRAAAAEQAAAFEAAABRAAAAkQAAABEAAABRAAAA0QAAANEAAAAXgAAABYAAAIWAAABFgAAABYAAAMWAAAAFgAAAxYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAACkAAAMpAAADKQAAASkAAAFOAAAARAAAA0QAAAJEAAAARAAAAkQAAANEAAADRAAAAF4AAABeAAAAXgAAAF4AAAApAAADKQAAACkAAAApAAAAXgAAAEQAAABEAAABRAAAAEQAAAFEAAABRAAAA0QAAAJeAAAAGgAAAhoAAANeAAAAKQAAACkAAAMpAAAAKQAAAV4AAABEAAADRAAAAUQAAABEAAADRAAAAEQAAAJEAAACRAAAABoAAAEaAAADXgAAACkAAAMpAAABKQAAASkAAANeAAAARAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAaAAABGgAAA14AAAApAAADKQAAAikAAAMpAAABRAAAAEQAAAFEAAADXgAAAEQAAAFEAAACRAAAAUQAAABeAAAAGgAAAxoAAANeAAAAKQAAACkAAAApAAAAKQAAAEQAAAFEAAABRAAAA14AAABEAAADRAAAAEQAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAAJOAAAARAAAAEQAAAFEAAAARAAAAE4AAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAABeAAAARAAAAEQAAANEAAAATgAAAEQAAANEAAAARAAAAUQAAABeAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAFgAAAA== + -2,-2: + ind: -2,-2 + tiles: XgAAAF4AAABeAAAATgAAAF4AAABRAAACUQAAAVEAAABRAAABUQAAAl4AAABeAAAAFgAAAhYAAAAWAAABXgAAAE8AAABeAAAAXgAAAE4AAABeAAAAUQAAAF4AAABRAAABUQAAAlEAAAMWAAACFgAAARYAAAIWAAADFgAAAEQAAANeAAAAXgAAAF4AAABOAAAAXgAAAFEAAAFRAAADUQAAAFEAAANRAAAAXgAAABYAAAMWAAABFgAAABYAAAFEAAADXgAAAF4AAABPAAAAXgAAAF4AAABRAAABXgAAAFEAAAJRAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAfAAABHwAAAh8AAABeAAAAUQAAAFEAAAFRAAABUQAAAlEAAAIfAAAAHwAAAh8AAAMfAAACHwAAAF4AAABeAAAAHwAAAR8AAAMfAAACXgAAAFEAAAFRAAABUQAAAVEAAAFeAAAAHwAAARwAAAAcAAAAHAAAAB8AAAFeAAAAXgAAAB8AAAAfAAAAHwAAAF4AAABRAAABUQAAA1EAAABRAAACXgAAAB8AAAIfAAABHwAAAB8AAAAfAAABXgAAAF4AAAAfAAABHwAAAR8AAABeAAAAUQAAAVEAAAFRAAABUQAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAF4AAABeAAAAXgAAAFEAAANeAAAAXgAAAF4AAABRAAADUQAAAV4AAABeAAAAUQAAAlEAAABRAAABUQAAA1EAAAJeAAAAUQAAA1EAAAJRAAADUQAAA1EAAAJRAAACUQAAAFEAAAJRAAADUQAAAFEAAANRAAABUQAAAVEAAANRAAADXgAAAFEAAAFRAAACUQAAA1EAAANeAAAAUQAAAFEAAAFRAAAAUQAAAlEAAABRAAAAUQAAA1EAAANRAAABUQAAAF4AAABRAAADUQAAAFEAAABRAAABUQAAAVEAAABRAAAAUQAAA1EAAAJRAAAAUQAAAlEAAAJRAAAAUQAAA1EAAABeAAAAXgAAAF4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABRAAAAUQAAAVEAAANRAAADUQAAAFEAAAJRAAACXgAAAF4AAAAWAAADFgAAAhYAAABeAAAAUQAAAVEAAAFeAAAAUQAAA14AAABeAAAAXgAAAFEAAANRAAABUQAAA14AAABeAAAAGwAAAhYAAAIbAAACXgAAAFEAAABRAAACUQAAAVEAAANRAAACUQAAAF4AAABRAAABUQAAAl4AAABeAAAAXgAAABYAAAIWAAACFgAAAl4AAABRAAABUQAAAVcAAABXAAAAVwAAAFEAAANeAAAARAAAA0QAAAJEAAADRAAAAw== + -1,-2: + ind: -1,-2 + tiles: RAAAAEQAAABEAAABXgAAAAAAAABeAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAEQAAABEAAACRAAAAV4AAABdAAAAXgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABEAAABRAAAA0QAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAABXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAEQAAAJEAAACRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAA0QAAAFeAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAAAWAAACFgAAABYAAAEWAAADRAAAAUQAAABEAAADXgAAAC8AAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAAFgAAARYAAAIWAAACFgAAAUQAAANEAAADRAAAA14AAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAAXgAAABYAAAEWAAADFgAAAhYAAAJEAAABRAAAAUQAAAFeAAAAXgAAAC4AAAAuAAAAXgAAAC8AAAAvAAAALwAAAC8AAAAWAAABFgAAAxYAAAAWAAACRAAAAUQAAAFEAAADXgAAAC4AAAAWAAACLgAAAF4AAABPAAAAXgAAAF4AAABeAAAAFgAAAxYAAAIWAAABFgAAAEQAAAJEAAAARAAAA14AAAAWAAABLgAAABYAAABeAAAAJQAAACUAAAAlAAAAXgAAABYAAAAWAAABFgAAABYAAAJEAAABRAAAAEQAAAAuAAAALgAAABYAAAMuAAAAXgAAACUAAAAlAAAAJQAAAF4AAAAWAAAAFgAAABYAAAEWAAABRAAAAkQAAANEAAADXgAAABYAAAEuAAAAFgAAAF4AAABeAAAAXgAAAE8AAABeAAAAFgAAAxYAAAAWAAADWwAAAEQAAAFEAAABRAAAAV4AAAAuAAAAFgAAAy4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAANEAAAARAAAAF4AAABeAAAAFgAAAC4AAAAWAAAALgAAAF4AAABeAAAAXgAAAF4AAAASAAAAEgAAAF4AAABbAAABRAAAAkQAAABEAAADFgAAAi4AAAAWAAACLgAAABYAAANeAAAAXgAAAF4AAABeAAAAEgAAABIAAABeAAAAWwAAAw== + 0,-2: + ind: 0,-2 + tiles: XgAAAE4AAABOAAAAXgAAAEQAAANEAAABRAAAAF4AAAAaAAAAGgAAAhoAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAARAAAAEQAAABEAAACFgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAACIAAAAiAAAAXQAAAF0AAABdAAAAXgAAAEQAAANEAAAARAAAAhYAAANeAAAATgAAAE4AAABOAAAAXgAAAF4AAAAiAAAAIgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAIgAAACIAAAAWAAABFgAAABYAAANeAAAARAAAAEQAAABEAAADFgAAAhYAAAEWAAACWwAAA1sAAANbAAABIgAAACIAAAAiAAAAFgAAABYAAAMWAAAAXgAAAEQAAANEAAAARAAAAhYAAAMWAAADFgAAAlsAAAJbAAACWwAAA14AAABeAAAAXgAAABYAAAMWAAACFgAAA14AAABEAAAARAAAAUQAAAMWAAADFgAAAhYAAAFbAAACWwAAAlsAAAJeAAAATgAAAE4AAAAWAAADFgAAARYAAANeAAAARAAAAEQAAANEAAADFgAAABYAAAIWAAACWwAAAFsAAABbAAADXgAAAE4AAABeAAAAFgAAAhYAAAIWAAAAXgAAAEQAAANEAAACRAAAAhYAAAMWAAACFgAAA1sAAABbAAADWwAAAU8AAABOAAAAXgAAABYAAAIWAAADFgAAAkQAAANEAAABRAAAAkQAAAAWAAAAFgAAARYAAAJbAAACWwAAAVsAAAJeAAAATgAAAF4AAAAWAAACFgAAAxYAAANEAAAARAAAAEQAAANEAAABFgAAAxYAAAIWAAADFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAWwAAAFsAAABbAAABXgAAAEQAAABEAAACRAAAAxYAAAEWAAABFgAAABYAAABeAAAAWwAAAVsAAAJbAAAAWwAAAVsAAANbAAACWwAAAF4AAABeAAAARAAAAUQAAAMWAAABFgAAAhYAAAIWAAACXgAAAFsAAAFbAAAAWwAAAFsAAABbAAADWwAAAlsAAANbAAAAWwAAAkQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAA1sAAAJbAAACWwAAAVsAAANbAAABWwAAA1sAAAFEAAACRAAAAF4AAAAxAAAAMQAAADEAAAAxAAAAWwAAAVsAAABbAAACWwAAAQ== + 1,-2: + ind: 1,-2 + tiles: XgAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAIgAAAF4AAABeAAAAXgAAAAUAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAACIAAABeAAAAXgAAAF4AAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIAAAAiAAAAXgAAAF4AAABeAAAABAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAiAAAAIgAAAF4AAABeAAAAXgAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAATwAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAl0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAJdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABdAAAAWwAAA1sAAAFPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAFsAAAFbAAAAXgAAAF4AAABOAAAAXgAAAAQAAAAEAAABBAAAAl0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABbAAADWwAAA14AAABeAAAATgAAAF4AAAAEAAAABAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAWwAAAlsAAAJeAAAAXgAAAE4AAABeAAAABAAAAgQAAAEFAAAABAAAAgAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAA== + 0,1: + ind: 0,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABEAAACRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAASgAAAkoAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARwAAAEQAAAJHAAAARwAAAEQAAANEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAFEAAAARAAAAUQAAANHAAAARAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAl4AAABEAAAARwAAAEQAAANEAAAARAAAAEcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAABeAAAAVQAAAV4AAABeAAAAXgAAAF4AAABHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAXgAAAFUAAABVAAABVQAAAFUAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAF4AAABeAAAAVQAAA1UAAAFVAAAAXgAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIEAAACBAAAAgQAAAIEAAACBAAAAQQAAAAEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAAEAAAABAAAAgQAAAEEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAACBAAAAgQAAAAFAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAQQAAAIEAAABBAAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAABBAAAAQQAAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAEEAAACBAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAQAAAIEAAACAAAAAA== + 2,0: + ind: 2,0 + tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAA14AAAAWAAADFgAAABsAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAJEAAACRAAAAkQAAAJEAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACRAAAA0QAAAJEAAAARAAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAF4AAAAWAAADFgAAAhsAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAAXgAAAF0AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAV4AAABdAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAFeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 2,-1: + ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAARAAAAEQAAAFEAAACRAAAAEQAAAJEAAABRAAAAUQAAAFEAAAARAAAAUQAAAFEAAABXgAAAAAAAAAAAAAAAAAAAEQAAAFEAAADRAAAAUQAAAFEAAABRAAAAEQAAAFEAAABRAAAA0QAAABEAAACRAAAAF4AAAAAAAAAAAAAAAAAAABEAAACRAAAAkQAAABEAAACRAAAA0QAAAFEAAABRAAAAEQAAABEAAACRAAAAEQAAANeAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAF0AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABeAAAAFgAAAxYAAAMbAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAADXgAAAEQAAABEAAADRAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAV4AAABEAAABRAAAAkQAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAFeAAAAFgAAAhYAAAIbAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAARYAAAFeAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAEWAAAAXgAAAF0AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAAFgAAAl4AAABdAAAAXQAAAA== + 3,0: + ind: 3,0 + tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 3,-1: + ind: 3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 2,-2: + ind: 2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAA== + 1,1: + ind: 1,1 + tiles: XgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAACEAAAAhAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAAIhAAAAIQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFHAAAARAAAAEQAAAFeAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAAkQAAAJEAAADXgAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAUAAAAEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAEEAAABBAAAAAQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAACBAAAAQQAAAIEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAAQAAAIEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAAEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -1,-3: + ind: -1,-3 + tiles: RAAAAw8AAABeAAAARAAAA0QAAABEAAADRAAAA0QAAANEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACXgAAAF4AAABEAAADRAAAAl4AAABPAAAAXgAAABYAAAAWAAAAFgAAAhYAAABEAAADRAAAAkQAAAJEAAADRAAAA0QAAANEAAABRAAAA0QAAAJEAAADRAAAAUQAAANEAAACRAAAA0QAAABEAAAARAAAAUQAAAFEAAACRAAAAUQAAANEAAAARAAAAUQAAABEAAADRAAAAEQAAANEAAADRAAAAUQAAANEAAAARAAAAkQAAANEAAABRAAAA0QAAABEAAADRAAAAkQAAANEAAACRAAAAkQAAAJEAAAARAAAAEQAAAJEAAADRAAAA0QAAAJEAAACRAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAANEAAACXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAEQAAANEAAACRAAAA14AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA0QAAAFeAAAAXQAAAF4AAAAQAAACEAAAARAAAAEQAAAAEAAAAxAAAAAQAAADEAAAABAAAAMQAAABRAAAA0QAAAFEAAABXgAAAAAAAABeAAAAEAAAAxAAAAAQAAACEAAAAxAAAAEQAAABEAAAABAAAAMQAAAAEAAAAkQAAAJEAAABRAAAAF4AAAAAAAAAXgAAABAAAAIQAAAAEAAAAhAAAAEQAAADEAAAAxAAAAEQAAACEAAAARAAAABEAAABRAAAAUQAAAJeAAAAXgAAAF4AAAAQAAAAEAAAAxAAAAMQAAAAEAAAAxAAAAIQAAABEAAAAxAAAAAQAAAARAAAAUQAAABEAAADTgAAAE4AAABOAAAAOgAAABAAAAMQAAADEAAAARAAAAEQAAABEAAAAhAAAAEQAAACOgAAAEQAAANEAAAARAAAAU4AAABOAAAATgAAADoAAAAKAAAACgAAABAAAAAQAAADEAAAAwoAAAAKAAAACgAAADoAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAARAAAAUQAAAFEAAADXgAAAAAAAABeAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAA== + 0,-3: + ind: 0,-3 + tiles: XgAAAF4AAAAWAAAAFgAAAxYAAAAWAAAAFgAAAxYAAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAARAAAAl4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAUQAAAFEAAADRAAAAkQAAANEAAADXgAAAE4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAARAAAAUQAAAFEAAABRAAAAUQAAAJEAAABRAAAAE8AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAAXgAAAEQAAAJEAAADRAAAAkQAAAFEAAADRAAAAkQAAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAANEAAABXgAAAF4AAABeAAAAXgAAABoAAAIaAAABGgAAARoAAAJeAAAAXQAAAF0AAABdAAAAXgAAAEQAAAFEAAAARAAAAV4AAABeAAAAXgAAAF4AAAAaAAAAGgAAAhoAAAEaAAABXgAAAF4AAABdAAAAXQAAAF4AAABEAAACRAAAAEQAAANEAAAARAAAAUQAAAFEAAADGgAAAxoAAAAaAAADGgAAAl4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAANEAAADRAAAA0QAAAFEAAACRAAAABoAAAIaAAABGgAAARoAAAJeAAAAXgAAAE4AAABOAAAAXgAAAEQAAANEAAAARAAAA14AAABEAAADRAAAAV4AAABeAAAAXgAAAEQAAAFEAAABXgAAAF4AAABOAAAATgAAAF4AAABEAAADRAAAAUQAAAJeAAAARAAAAkQAAAFeAAAARAAAAkQAAANEAAADRAAAA0QAAAJeAAAATgAAAE4AAABeAAAARAAAA0QAAANEAAADRAAAAkQAAABEAAADRAAAAEQAAANEAAACRAAAA0QAAANEAAAARAAAA0QAAAFEAAACRAAAAUQAAANEAAACRAAAAEQAAAJEAAAARAAAAEQAAABEAAAARAAAA0QAAANEAAABRAAAA0QAAAFEAAABRAAAAEQAAANEAAADRAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAAUQAAAFeAAAATgAAAE4AAABeAAAARAAAAUQAAABEAAABXgAAABoAAAEaAAAAGgAAAUQAAANEAAADRAAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAEQAAAFEAAABRAAAAF4AAAAaAAABGgAAAxoAAAJeAAAAXgAAAF4AAABeAAAAXgAAAA== + -2,-3: + ind: -2,-3 + tiles: WwAAAxsAAAIZAAACGQAAABkAAAEZAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAzAAAAMwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAARYAAAMWAAACFgAAARYAAAFeAAAAXgAAAF4AAABEAAACRAAAAkQAAABEAAADRAAAA0QAAAFEAAAARAAAA0QAAANEAAACRAAAAEQAAAJEAAABRAAAAEQAAABEAAACRAAAA0QAAABEAAACRAAAAEQAAABEAAACRAAAAEQAAAJEAAACRAAAAEQAAANEAAABRAAAAkQAAANEAAADRAAAA0QAAAFEAAAARAAAAUQAAAJEAAACRAAAAEQAAABEAAACRAAAAEQAAABEAAAARAAAAkQAAANEAAABRAAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABeAAAAVQAAA1UAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAANbAAABWwAAAlsAAABbAAACXgAAAFUAAAFVAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAAAWwAAA1sAAANbAAAAWwAAAV4AAABVAAABVQAAA14AAABeAAAATgAAAF4AAABbAAACWwAAA14AAABbAAABWwAAAFsAAAJbAAAAWwAAAVsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAWwAAA1sAAAFeAAAAWwAAA1sAAAFbAAABWwAAA1sAAABbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAADWwAAAFsAAAFbAAADWwAAAVsAAANbAAACWwAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAUAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAFAAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAJRAAAAUQAAA1EAAAJRAAACUQAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAABXgAAAFEAAANRAAADUQAAAVEAAANeAAAAFgAAABYAAAIWAAACGwAAAA== + 1,-3: + ind: 1,-3 + tiles: XgAAAF4AAABeAAAATgAAAF4AAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAE4AAABeAAAABAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAAXgAAAF4AAABOAAAAXgAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE8AAABPAAAAXgAAAF4AAAAEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAEWAAADFgAAAhYAAABeAAAABAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACFgAAAxYAAAEWAAACXgAAAAQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAxYAAAIWAAACFgAAAl4AAAAEAAABBAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAADFgAAABYAAAJeAAAABAAAAAUAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAGwAAABsAAANeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAAJEAAABRAAAAl4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAACRAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACRAAAAkQAAANEAAADXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAABEAAACRAAAAV4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFEAAACRAAAAkQAAANeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABOAAAATgAAAF4AAAAEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 0,-4: + ind: 0,-4 + tiles: BAAAAQQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAQQAAAEEAAACBAAAAgQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAAEAAACBQAAAAQAAAAEAAAABAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAEAAACBAAAAQQAAAEEAAAABAAAAgQAAAEEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAABAAAAQoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAKAAAACgAAAAoAAAAEAAAABAAAAgQAAAIEAAABBAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAACgAAAAoAAAAEAAAABAAAAQQAAAAEAAACBAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAUAAAAEAAABBAAAAAQAAAIEAAACBAAAAAQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAIEAAAABAAAAgQAAAIEAAABBAAAAAQAAAEEAAABXgAAAF4AAAAWAAACFgAAABYAAAEWAAACFgAAAl4AAAAEAAABBAAAAgQAAAEEAAAABAAAAQQAAAEEAAACBAAAAV4AAABeAAAAFgAAABYAAAIWAAAAFgAAAhYAAAJeAAAABAAAAgQAAAEEAAABBAAAAAQAAAIEAAABBAAAAQQAAAFeAAAAXgAAABYAAAIWAAAAFgAAAxYAAAMWAAACXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAQQAAAIEAAAAXgAAAE8AAAAWAAABFgAAABYAAAEWAAAAFgAAAxYAAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + 1,-4: + ind: 1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAACBAAAAQQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAgQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABQAAAAQAAAAEAAACBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -1,-4: + ind: -1,-4 + tiles: BAAAAgQAAAAEAAABBAAAAAQAAAIEAAACBAAAAV4AAAAWAAAAHgAAAh4AAAAWAAADXgAAAAQAAAAEAAABBAAAAQQAAAAEAAACBAAAAgQAAAAEAAACBAAAAAQAAAJeAAAAFgAAAh4AAAIeAAACFgAAAV4AAAAEAAAABAAAAQQAAAAEAAAABAAAAAQAAAIEAAAABAAAAQQAAAIEAAAAXgAAABYAAAIeAAACHgAAARYAAAFeAAAABAAAAgQAAAIEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAABsAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAFgAAAR4AAAEeAAABFgAAAl4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEeAAADHgAAARYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAAhsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAA0QAAAJEAAAARAAAAkQAAANEAAABRAAAA0QAAANEAAACRAAAAV4AAABOAAAATgAAAF4AAABEAAABRAAAAEQAAABEAAABRAAAA0QAAAFEAAAARAAAA0QAAAFEAAABRAAAA0QAAAJPAAAAXgAAAF4AAABeAAAARAAAAEQAAAFEAAABRAAAA14AAABEAAACRAAAAkQAAAJEAAADRAAAAkQAAAFEAAAAXgAAABYAAAIWAAABFgAAAkQAAAJEAAACRAAAAUQAAAJeAAAAGwAAAF4AAABeAAAATwAAAF4AAABeAAAAFgAAAV4AAAAWAAABFgAAAxYAAAJEAAACRAAAAEQAAAJEAAACXgAAAB4AAAFVAAABXgAAAE4AAABeAAAAGgAAABoAAAJeAAAAFgAAAxYAAABeAAAARAAAAkQAAAJEAAABRAAAAF4AAAAeAAACVQAAA14AAABOAAAAXgAAABoAAAMaAAAAXgAAABYAAAIWAAADXgAAAEQAAAFEAAACRAAAA0QAAAJeAAAAHgAAAFUAAANeAAAATgAAAF4AAAAaAAAAGgAAAF4AAABEAAADDwAAAF4AAABeAAAARAAAAl4AAABeAAAAXgAAABsAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAg8AAABeAAAARAAAAUQAAAFEAAABRAAAAUQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + -2,-4: + ind: -2,-4 + tiles: XgAAAF4AAAAEAAAABAAAAAQAAAEEAAACXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAQQAAAIEAAABBAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAIEAAABBAAAAgQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAIEAAACBAAAAQQAAAAEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAAXgAAAE4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAFsAAABeAAAAHwAAAR8AAAJeAAAAXgAAAEcAAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAABGwAAAR8AAAIfAAACXgAAAEcAAABeAAAAXgAAAEcAAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABOAAAAWwAAAl4AAAAfAAACHwAAAl4AAABeAAAARwAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABPAAAAFgAAAhYAAABbAAAAGwAAAlsAAAFbAAACXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAWwAAAhsAAAFeAAAAXgAAAF4AAABHAAAARwAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAVsAAAIbAAABXgAAAFsAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAFgAAABYAAAFbAAABXgAAAF4AAAAbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADMAAAAzAAAAWwAAAV4AAAAZAAABGQAAABkAAAAZAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAzAAAAMwAAAA== + -1,-5: + ind: -1,-5 + tiles: AAAAAAAAAAAEAAAABAAAAQQAAAIFAAAABAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAABAAAAgQAAAIEAAAABAAAAAQAAAFeAAAAFgAAABYAAAAWAAADFgAAAhYAAAMWAAACFgAAAV4AAAAAAAAABAAAAAQAAAJeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAABFgAAAhYAAAAWAAACFgAAAxYAAAMWAAACBAAAAAQAAAAEAAABXgAAAA8AAAAPAAAADwAAAF4AAAAWAAADFgAAABYAAAEWAAABFgAAAxYAAAMWAAADFgAAAQQAAAIEAAACBAAAAF4AAAAdAAAAHQAAAx0AAANeAAAAFgAAAhYAAAIWAAABXgAAAF4AAAAWAAAAFgAAABYAAAIEAAACBAAAAgQAAAJeAAAAHQAAAB0AAAIdAAADGwAAABYAAAAWAAAAFgAAA14AAABeAAAAFgAAARYAAAFeAAAABAAAAQQAAAIEAAAAXgAAAE4AAABOAAAATgAAAF4AAAAWAAACFgAAARYAAAJeAAAAXgAAABYAAAEWAAACXgAAAAAAAAAEAAACBAAAAV4AAABOAAAATgAAAE4AAABeAAAAFgAAAxYAAAMWAAAAXgAAAF4AAAAWAAABFgAAAxsAAAIAAAAAAAAAAAQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAbAAACGwAAA14AAABeAAAAFgAAABYAAAFeAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAACBAAAAF4AAAAWAAACHgAAAx4AAAIWAAADXgAAABYAAAMWAAABGwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAABeAAAAFgAAAR4AAAEeAAADFgAAAl4AAAAWAAABFgAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABXgAAAF4AAAAbAAACGwAAA14AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAFeAAAAXgAAAF4AAABeAAAABAAAAQUAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIFAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAl4AAABeAAAAXgAAAF4AAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAF4AAABeAAAAGwAAAhsAAANeAAAAXgAAAAQAAAAEAAAABAAAAg== + 0,-5: + ind: 0,-5 + tiles: FgAAARYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAIbAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAxYAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAMWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -1,-6: + ind: -1,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAgQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAABBAAAAQQAAAEEAAABBQAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAAABAAAAQQAAAEEAAACBAAAAQQAAAIEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAAABAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + 0,-6: + ind: 0,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADFgAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -3,-2: + ind: -3,-2 + tiles: EgAAABIAAAASAAAARAAAAUQAAAJEAAACXgAAABEAAAARAAAAEQAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAABIAAAASAAAAEgAAAF4AAABEAAADRAAAA14AAAARAAAAEQAAABEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAASAAAAEgAAABIAAABeAAAARAAAAUQAAANEAAAAEQAAABEAAAARAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAEAAAABAAAAAwAAAF4AAAAxAAAAMQAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAABAAAAAwAAAAMAAABeAAAAMQAAAF4AAAAxAAAAXgAAAF4AAABOAAAARAAAAUQAAAJeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAEoAAAJEAAABXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABKAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABRAAADUQAAA1EAAAJRAAABUQAAAlEAAAFRAAADUQAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAlEAAAJRAAAAUQAAAFEAAANRAAABUQAAAFEAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAFRAAACUQAAAlEAAAFRAAAAUQAAAFEAAAFRAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAUQAAAl4AAABeAAAAXgAAAF4AAABRAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGgAAAhoAAAIaAAACGgAAAF4AAABRAAAAUQAAAFEAAAI8AAAAPAAAADwAAAA8AAAAXgAAAE4AAABeAAAAXgAAABoAAAAaAAADGgAAAxoAAAFeAAAAUQAAAFEAAAJRAAAAPAAAADwAAAA8AAAAPAAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAANRAAADUQAAAg== + -3,-1: + ind: -3,-1 + tiles: PAAAADwAAAA8AAAAPAAAAF4AAABOAAAAXgAAAF4AAABbAAAAWwAAAlsAAAFbAAABXgAAAFEAAAJRAAABUQAAAzwAAAA8AAAAPAAAADwAAABeAAAAXgAAAE8AAABeAAAAWwAAAlsAAABbAAAAWwAAA14AAABRAAACUQAAA1EAAANeAAAAPAAAAF4AAABeAAAAXgAAABYAAAIWAAADXgAAAEQAAAJeAAAARAAAAEQAAANeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAACRAAAA0QAAANEAAADRAAAAUQAAABEAAACRAAAAUQAAAFEAAACRAAAAUQAAABEAAACRAAAAkQAAAJEAAAARAAAA0QAAAFEAAADRAAAAUQAAAJEAAAARAAAAEQAAAFEAAABRAAAAUQAAANEAAADRAAAAEQAAAJEAAACRAAAAkQAAANEAAADRAAAAUQAAAJEAAADRAAAA0QAAANEAAADRAAAA0QAAAJEAAAARAAAAUQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAAQAAAEEAAABBAAAAQQAAAEEAAABXgAAAE8AAABeAAAAXgAAABYAAAIWAAABFgAAAl4AAABOAAAARAAAAU4AAAAEAAAABAAAAAUAAAAEAAAABAAAAV4AAABeAAAATgAAAF4AAAAWAAABFgAAARYAAAJOAAAARAAAAkQAAAJEAAABBAAAAAQAAAEEAAACBAAAAAQAAAFeAAAAXgAAAE4AAABeAAAAFgAAAxYAAAMWAAABXgAAAE4AAABOAAAATgAAAAQAAAAEAAACBAAAAQQAAAAEAAACXgAAAF4AAABOAAAAXgAAABYAAAAWAAAAFgAAAV4AAABeAAAAXgAAAF4AAAAEAAACBAAAAgQAAAIEAAACBAAAAV4AAABeAAAATgAAAF4AAABEAAADRAAAA0QAAAJEAAACRAAAA0QAAAJEAAAABAAAAAQAAAIEAAAABAAAAAQAAAJeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAABRAAAAUQAAAJEAAAARAAAAgQAAAIEAAAABAAAAQQAAAIEAAABXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAA0QAAABEAAADRAAAA0QAAAIEAAAABAAAAgQAAAIEAAACBAAAAV4AAABeAAAAXgAAAE8AAABEAAAARAAAAkQAAABEAAACRAAAAkQAAAJEAAABAAAAAAQAAAIFAAAABAAAAgQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAARAAAAA== + -3,0: + ind: -3,0 + tiles: AAAAAAQAAAEEAAABBAAAAQQAAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABEAAACRAAAAEQAAANeAAAARAAAAgAAAAAEAAABBAAAAgQAAAIEAAAAXgAAAF4AAABOAAAAXgAAAEQAAAJEAAAAXgAAAEQAAAJEAAAAXgAAAEQAAAIAAAAABAAAAgQAAAAEAAAABAAAAF4AAABeAAAATgAAAF4AAABEAAABMwAAAF4AAAAzAAAARAAAAF4AAABEAAACAAAAAAQAAAAEAAAABAAAAQQAAAFeAAAAXgAAAE4AAABeAAAARAAAAF4AAABeAAAAXgAAAEQAAAJeAAAARAAAAQAAAAAEAAACBAAAAQQAAAAEAAABXgAAAF4AAABeAAAAXgAAAEQAAAIzAAAAMwAAADMAAABEAAABXgAAAEQAAAAAAAAABAAAAQQAAAEFAAAABAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAQAAAAEAAABBAAAAAQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAATgAAAAQAAAIEAAAABAAAAQQAAAIEAAACBgAAAAYAAAAGAAAABgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAAAEAAACBAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEEAAACXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAFAAAABAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + -3,-3: + ind: -3,-3 + tiles: XgAAAFsAAANeAAAAWwAAAlsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAlsAAAJbAAAAWwAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAAEQAAABEAAAARAAAAkQAAANEAAACRAAAAkQAAANEAAADRAAAAkQAAABEAAABRAAAAEQAAAFEAAACRAAAAEQAAAJEAAADRAAAAUQAAANEAAABRAAAAUQAAABEAAACRAAAAEQAAABEAAAARAAAAkQAAAFEAAADRAAAAEQAAAJEAAAARAAAA0QAAAJEAAABRAAAAkQAAANEAAADRAAAA0QAAAJEAAAARAAAAUQAAAFEAAAARAAAAEQAAABEAAABRAAAAkQAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFUAAANeAAAALgAAAC4AAAAuAAAAXgAAAEQAAABEAAABXgAAAFsAAAFbAAAAWwAAAl4AAABVAAADVQAAAVUAAANVAAABVQAAAC4AAAAuAAAALgAAAF4AAABEAAACRAAAA0QAAABbAAACWwAAA1sAAAFeAAAAVQAAAFUAAAJVAAADVQAAAFUAAAMuAAAALgAAAC4AAABEAAABRAAAAEQAAANeAAAAWwAAA1sAAABbAAACXgAAAFUAAANVAAAAVQAAAFUAAANVAAACXgAAAF4AAAAuAAAAXgAAAEQAAAJEAAAAXgAAAFsAAABbAAACWwAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAACIAAABeAAAAXgAAAF4AAABEAAAARAAAAV4AAABeAAAAXgAAAFsAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAiAAAAIgAAACIAAABeAAAARAAAA0QAAABeAAAAHwAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAIgAAACIAAAAiAAAARAAAAEQAAAFEAAACXgAAAB8AAAIfAAADHwAAAl4AAABeAAAAXgAAAF4AAABeAAAAUAAAAiIAAAAiAAAAIgAAAF4AAABEAAACRAAAAkQAAAMfAAABHwAAAh8AAAJeAAAAXgAAAF4AAABeAAAAUAAAAlAAAAAiAAAAIgAAACIAAABeAAAARAAAAEQAAAJeAAAAHwAAAh8AAAIfAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAA== + -3,-4: + ind: -3,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAQQAAAIEAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAIEAAACBQAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAAQAAAIEAAAABAAAAgQAAAFeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAAQAAAAEAAACXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAIEAAABBAAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAAABAAAAgQAAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAACWwAAA1sAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABbAAABWwAAAlsAAANbAAADXgAAAF4AAABbAAADXgAAAFsAAAFbAAADWwAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAFsAAABbAAAAWwAAAV4AAABeAAAAWwAAAFsAAANeAAAAXgAAAFsAAAFeAAAAXgAAAF4AAABeAAAAXgAAAFsAAANbAAAAWwAAAFsAAANeAAAAXgAAAFsAAABeAAAAXgAAAFsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAA1sAAANbAAACXgAAAFsAAANbAAABXgAAAFsAAANHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAA1sAAAFbAAACWwAAAl4AAABeAAAAWwAAA1sAAABbAAAAXgAAAEcAAABHAAAAXgAAAF4AAABOAAAAXgAAAFsAAANbAAAAWwAAAVsAAAJeAAAAWwAAAl4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAATgAAAF4AAABbAAAAWwAAA1sAAANbAAACXgAAAFsAAAJbAAACWwAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAWwAAA1sAAABbAAAAWwAAAA== + -4,-3: + ind: -4,-3 + tiles: XQAAAF0AAABdAAAABAAAAAQAAAIEAAABTgAAAE4AAAAPAAAAGwAAAQ8AAABeAAAAWwAAAFsAAAJbAAAAWwAAAF0AAABdAAAABAAAAAQAAAEEAAABXgAAAE4AAABOAAAADwAAABsAAAEPAAAAXgAAAF4AAABeAAAARAAAAV4AAABdAAAAXQAAAAQAAAEEAAACBAAAAV4AAAAWAAABFgAAABYAAAAWAAABFgAAABYAAAEbAAACRAAAAUQAAANEAAABAAAAAF0AAAAEAAACBAAAAQQAAAFeAAAAFgAAARYAAAIWAAADFgAAAxYAAAEWAAAAXgAAAEQAAAJEAAACRAAAA10AAABdAAAABAAAAgQAAAEEAAAAXgAAABYAAAEWAAADFgAAAhYAAAMWAAADFgAAARsAAABEAAABRAAAAUQAAAJdAAAAXQAAAAQAAAAEAAAABAAAAF4AAABOAAAATgAAAA8AAAAbAAADDwAAAF4AAABeAAAAXgAAAE8AAABeAAAAXQAAAF0AAAAEAAABBAAAAQQAAAEEAAAATgAAAE4AAAAPAAAAGwAAAQ8AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAABAAAAAQAAAAFAAAABAAAAQQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABdAAAAAAAAAAQAAAIEAAACBAAAAAQAAAAEAAACBAAAAAQAAAEEAAABBAAAAQQAAAFeAAAATgAAAF4AAABeAAAAAAAAAAAAAAAEAAACBAAAAQQAAAAEAAABBAAAAQQAAAAEAAACBAAAAAQAAAEEAAACXgAAAE4AAABeAAAAXgAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAgQAAAAEAAACBAAAAgQAAAAEAAACBAAAAl4AAABOAAAAXgAAAF4AAAAEAAABBAAAAAQAAAAEAAACBAAAAQQAAAIEAAACBAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAEEAAABBAAAAgQAAAEEAAACBAAAAgQAAAFeAAAARwAAAEcAAABHAAAARwAAAF4AAABeAAAAXgAAAAQAAAEEAAAABAAAAgQAAAEEAAABBAAAAgQAAAEEAAAAXgAAAEcAAABHAAAARwAAAEcAAABeAAAAXgAAAF4AAAAEAAACBAAAAQQAAAAEAAABBAAAAgQAAAAEAAAABAAAAV4AAABHAAAARwAAAEcAAABHAAAAXgAAAF4AAABeAAAABAAAAAQAAAEEAAACBAAAAQQAAAEEAAAABAAAAgQAAAJeAAAARwAAAEcAAABHAAAARwAAAE8AAABeAAAAXgAAAA== + -4,-2: + ind: -4,-2 + tiles: BAAAAQQAAAEEAAABBAAAAQQAAAEEAAACBAAAAgQAAAFeAAAARwAAAEcAAABHAAAARwAAAF4AAABeAAAAXgAAAAQAAAIEAAACBAAAAQQAAAIEAAABBAAAAQQAAAEEAAABXgAAAF4AAABeAAAARwAAAEcAAABeAAAAXgAAAF4AAAAEAAAABAAAAAQAAAIEAAACBAAAAQQAAAIEAAABBAAAAgQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAUAAAAEAAACBAAAAgQAAAAEAAABBAAAAQQAAAIEAAABBAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAACBAAAAgQAAAAFAAAABAAAAAQAAAIEAAAABAAAAQQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAgQAAAEEAAABBAAAAAQAAAAEAAABBAAAAAQAAAEEAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAIEAAAABAAAAAQAAAEEAAACBAAAAAQAAAEEAAACBAAAAF4AAABOAAAAXgAAAF4AAABEAAAARAAAAQoAAAAKAAAABAAAAgQAAAEEAAACBAAAAQQAAAIEAAACBAAAAgQAAAFeAAAATgAAAF4AAABeAAAARAAAAkoAAAMKAAAACgAAAAoAAAAKAAAABAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJKAAACBAAAAQQAAAAKAAAACgAAAAQAAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAARAAAA0QAAAJEAAABRAAAAkQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAJVAAAAVQAAA1UAAAFVAAACRAAAA14AAABeAAAAXgAAAE8AAABPAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAAAVQAAA1UAAABVAAABVQAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAFUAAABVAAAAVQAAAVUAAAJEAAABXgAAAA== + -4,-1: + ind: -4,-1 + tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAFUAAABVAAACVQAAAlUAAANEAAABXgAAAEQAAANEAAAARAAAAUQAAANEAAADRAAAA0QAAANEAAABXgAAAEQAAANEAAADRAAAAUQAAAFEAAAARAAAAl4AAABEAAAASwAAAEsAAABLAAAASwAAAEsAAABEAAADRAAAAF4AAABeAAAARAAAAl4AAABeAAAARAAAAl4AAABeAAAARAAAAUsAAAApAAADKQAAAikAAAJLAAAARAAAAEQAAAFEAAABRAAAAkQAAANEAAAARAAAA0QAAAFEAAAARAAAA0QAAANLAAAASwAAAEsAAABLAAAASwAAAEQAAAJEAAACRAAAAkQAAANEAAABRAAAA0QAAABEAAAARAAAAEQAAABEAAACRAAAA0QAAAJEAAAARAAAAEQAAAJEAAACRAAAA0QAAABEAAABRAAAAEQAAAJEAAACRAAAAUQAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAgQAAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEFAAAABAAAAgQAAAAEAAAABAAAAAQAAAFeAAAABAAAAgUAAAAEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAgQAAAEEAAAABAAAAAQAAAEEAAAAXgAAAAQAAAIEAAACBAAAAV4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAAEAAABBAAAAAQAAAEEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -3,1: + ind: -3,1 + tiles: BAAAAAQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAFAAAABAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEEAAABXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAAQAAAAEAAAABAAAAgQAAAEEAAAABAAAAQQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAEEAAACBQAAAAQAAAIEAAACBAAAAQUAAAAEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAIEAAAABAAAAAQAAAAEAAABBAAAAQQAAAEEAAABBAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAABAAAAAQAAAAEAAACBAAAAAQAAAAEAAAABAAAAQQAAAEEAAABBAAAAV0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAQAAAAEAAABBAAAAgQAAAAEAAACBAAAAAQAAAEEAAABBAAAAgQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAEAAAABAAAAgQAAAIEAAACBAAAAAQAAAIEAAABBAAAAgQAAAEEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAABAAAAQQAAAEEAAACBAAAAQQAAAIEAAABBAAAAQQAAAIEAAAABAAAAV4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAQAAAEEAAABBAAAAAQAAAAEAAAABAAAAAQAAAIEAAAABAAAAgQAAAAEAAABBAAAAQQAAAIEAAACBAAAAgAAAAAAAAAABAAAAAQAAAIEAAACBAAAAAQAAAAEAAACBAAAAAQAAAAEAAAABQAAAAQAAAIEAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAgQAAAAEAAABBAAAAQQAAAAEAAACBAAAAgQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAgQAAAAEAAAABAAAAA== + -2,1: + ind: -2,1 + tiles: XgAAAF4AAABeAAAABAAAAF4AAABeAAAAXgAAAF4AAAAGAAAABAAAAQQAAAEEAAABBAAAAAQAAAIEAAAAAAAAAF4AAABeAAAAXgAAAAQAAAFeAAAAXgAAAF4AAABeAAAABgAAAAQAAAAEAAAABAAAAQQAAAAEAAACAAAAAAAAAABeAAAAXgAAAF4AAAAEAAAAXgAAAF4AAABeAAAAXgAAAAYAAAAEAAAABAAAAgQAAAIFAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAABAAAAgYAAAAGAAAAXgAAAAYAAAAGAAAABAAAAQQAAAEEAAABBAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAQAAAEEAAAABAAAAAQAAAIEAAAABAAAAQQAAAAEAAABBAAAAAQAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAEAAAABAAAAQQAAAAEAAAABAAAAgQAAAAEAAABBAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAABAAAAAQAAAIEAAABBAAAAAQAAAIEAAACBAAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAQAAAEEAAACBAAAAgQAAAIEAAACBAAAAgQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAAEAAAABAAAAAQAAAAEAAABBAAAAAQAAAIEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAABBQAAAAQAAAIEAAABBAAAAAQAAAIEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAgQAAAEEAAAABAAAAgQAAAIEAAAABAAAAAQAAAEEAAABAAAAAF0AAABdAAAAXQAAAF0AAAAEAAACBAAAAQQAAAAEAAAABAAAAAQAAAEEAAACBAAAAgQAAAEEAAABBAAAAQAAAABdAAAAXQAAAF0AAABdAAAABAAAAgQAAAIEAAAABAAAAgQAAAEEAAAABAAAAQQAAAIEAAABBAAAAgQAAAIAAAAAXQAAAF0AAABdAAAAXQAAAAQAAAAEAAACBAAAAAQAAAIEAAAABAAAAgQAAAEEAAACBAAAAQQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAIEAAABBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAABAAAAgYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAA== + -4,-4: + ind: -4,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAEFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAABBAAAAgQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAACBAAAAQQAAAEEAAABBAAAAAQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAAQAAAIEAAABBAAAAAQAAAEEAAABBAAAAV0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAIEAAABBQAAAAQAAAAEAAACBAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAIEAAAABAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAIEAAAABAAAAQQAAABeAAAAWwAAAlsAAAFbAAABWwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAUAAAAEAAAABAAAAQQAAAEEAAABXgAAAFsAAANbAAADWwAAAFsAAABdAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAABBAAAAgQAAAIEAAAABAAAAF4AAABbAAACWwAAAlsAAAFbAAABAAAAAAAAAAAAAAAABAAAAQQAAAEEAAAABAAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAANbAAAAWwAAAg== + -5,-1: + ind: -5,-1 + tiles: AAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAQAAAIEAAACBAAAAAQAAAEEAAABXgAAAE4AAABeAAAATwAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAQAAAAEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAEAAAABAAAAV4AAAAWAAAAFgAAARYAAAMWAAAAFgAAA14AAABEAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAJeAAAAFgAAAhYAAAIWAAABFgAAAhYAAABKAAABRAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABXgAAABYAAAIWAAADFgAAAhYAAAEWAAAAXgAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAV4AAAAWAAACFgAAAxYAAAIWAAADFgAAA14AAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAIAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQUAAAAEAAAABAAAAV4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAAQAAAJeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -5,-2: + ind: -5,-2 + tiles: AAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIEAAABAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAABAAAAAQAAAIEAAABBAAAAV0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAEAAACBAAAAQQAAAIEAAABBAAAAgUAAAAEAAACAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAABAAAAAQAAAEEAAAABAAAAQAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAAQAAAIEAAACBAAAAgQAAAIAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAAEAAABBAAAAgQAAAAEAAACAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEFAAAABAAAAgQAAAIEAAACBAAAAQAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAABBAAAAl4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAQQAAAFeAAAATgAAAE4AAABOAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAQQAAAEEAAABXgAAAE4AAABOAAAAXgAAAA== + -4,0: + ind: -4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAA== + -4,1: + ind: -4,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -3,2: + ind: -3,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAEEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -2,2: + ind: -2,2 + tiles: BAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 1,2: + ind: 1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 0,2: + ind: 0,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIFAAAABAAAAgQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAEEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -2,-5: + ind: -2,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAAEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAgQAAAAEAAABBQAAAA== + -5,-3: + ind: -5,-3 + tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAAAAAABdAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABHAAAARwAAAF4AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQ== + -6,-3: + ind: -6,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABHAAAARwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAA== + -2,-6: + ind: -2,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAA== + -3,-5: + ind: -3,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -3,-6: + ind: -3,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAA== + -5,-4: + ind: -5,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAA== + -6,-4: + ind: -6,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAEcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARwAAAEcAAABHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAA== + -6,-2: + ind: -6,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAA== + -6,-1: + ind: -6,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -1,1: + ind: -1,1 + tiles: XQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAA== + -1,2: + ind: -1,2 + tiles: XQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + type: MapGrid + - type: Broadphase + - angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + + - type: OccluderTree + - type: Shuttle + - nextUpdate: 3754.1875118 + type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#DE3A3A96' + id: ArrowsGreyscale + decals: + 2769: -29.218893,-17.986204 + 2770: -28.793892,-17.994537 + - node: + angle: 3.141592653589793 rad + color: '#52B4E996' + id: ArrowsGreyscale + decals: + 2767: -31.248856,-18.00287 + 2768: -30.815523,-18.00287 + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 2812: -10,-31 + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 2813: -2,-34 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 2814: -4,-31 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 1227: 4,-51 + 1360: 47,1 + 1361: 47,4 + 1362: 47,-8 + 1363: 47,-5 + - node: + color: '#EFB34196' + id: Bot + decals: + 1370: 29,7 + 1371: 43,9 + 1372: 20,-14 + 1373: 11,1 + 1374: 7,8 + 1375: -7,8 + 1376: -4,1 + 1377: -6,-14 + 1378: -19,6 + 1379: -33,-1 + 1380: -41,-10 + 1381: -58,-15 + 1382: -40,-22 + 1383: -14,-31 + 1384: -22,-47 + 1385: -40,-46 + 1386: -3,-47 + 1387: -13,-55 + 1388: 4,-40 + 1389: 13,-34 + 1390: 7,-29 + 1391: -4,-20 + 2754: -12,-25 + - node: + angle: 3.141592653589793 rad + color: '#334E6DC8' + id: BotLeftGreyscale + decals: + 1164: -5,-10 + - node: + color: '#334E6DC8' + id: BotLeftGreyscale + decals: + 1158: -2,-10 + 1159: -3,-10 + 1160: -4,-10 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 1123: 16,-36 + 1124: 16,-37 + 1125: 15,-36 + 1126: 15,-37 + 1129: 16,-41 + 1130: 16,-42 + 1131: 16,-43 + 1132: 16,-44 + 1133: 19,-41 + 1134: 19,-42 + 1135: 19,-43 + 1136: 19,-44 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 238: 10,-32 + 246: 14,-40 + 437: 17,1 + 442: 12,9 + 481: 0,4 + 615: -8,8 + 616: -4,8 + 617: -1,8 + 663: -37,-18 + 819: -22,-4 + 1224: -2,-51 + 1242: -18,-1 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 240: 8,-32 + 248: 11,-40 + 438: 16,1 + 439: 10,9 + 479: -10,4 + 624: -9,8 + 625: -6,8 + 626: -2,8 + 662: -40,-18 + 816: -23,-4 + 1223: -3,-51 + 1245: -23,-1 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 239: 10,-34 + 247: 14,-43 + 432: 17,-2 + 441: 12,6 + 482: 0,3 + 618: -1,7 + 619: -4,7 + 620: -8,7 + 661: -37,-19 + 818: -22,-7 + 1225: -2,-53 + 1243: -18,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 64: -8,-79 + 237: 8,-34 + 245: 11,-43 + 431: 16,-2 + 440: 10,6 + 480: -10,3 + 621: -9,7 + 622: -6,7 + 623: -2,7 + 664: -40,-19 + 817: -23,-7 + 1226: -3,-53 + 1244: -23,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndE + decals: + 955: -19,-27 + 2828: -54,-45 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndW + decals: + 954: -21,-27 + 2827: -57,-45 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 185: -23,-32 + 368: 13,12 + 476: -15,2 + 1238: -25,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 366: 16,12 + 462: 5,2 + 512: -16,-34 + 1231: -16,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 184: -23,-30 + 367: 13,11 + 475: -15,5 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 365: 16,11 + 457: 5,5 + 511: -16,-32 + 1230: -16,0 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 91: -5,-70 + 92: -5,-71 + 99: -5,-62 + 100: -5,-63 + 101: -5,-64 + 183: -23,-31 + 242: 10,-33 + 251: 14,-41 + 252: 14,-42 + 433: 17,-1 + 434: 17,0 + 445: 12,8 + 446: 12,7 + 458: 3,4 + 459: 3,3 + 471: -12,4 + 472: -12,3 + 473: -15,4 + 474: -15,3 + 635: -5,-59 + 636: -5,-60 + 820: -22,-5 + 821: -22,-6 + 862: -37,-8 + 863: -37,-9 + 864: -37,-6 + 865: -37,-7 + 988: -15,-54 + 989: -15,-53 + 990: -15,-52 + 991: -15,-51 + 1200: 7,-48 + 1201: 7,-49 + 1202: 6,-50 + 1203: 6,-51 + 1204: 6,-52 + 1221: -2,-52 + 1236: -25,-1 + 1237: -25,-2 + 1353: -5,-26 + 1354: -5,-27 + 1355: -22,-49 + 1426: -67,-11 + 1427: -67,-12 + 1428: -67,-13 + 1429: -67,-14 + 2819: -55,-42 + 2820: -55,-43 + 2821: -55,-47 + 2822: -55,-48 + 2841: -53,-44 + 2842: -53,-46 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 172: -18,-30 + 173: -19,-30 + 174: -20,-30 + 175: -21,-30 + 244: 9,-32 + 249: 12,-40 + 250: 13,-40 + 328: 12,-8 + 329: 12,-7 + 338: 17,-7 + 339: 18,-7 + 340: 19,-7 + 369: 15,12 + 370: 14,12 + 444: 11,9 + 483: -1,4 + 484: -2,4 + 485: -3,4 + 486: -4,4 + 487: -5,4 + 488: -6,4 + 489: -7,4 + 490: -8,4 + 491: -9,4 + 562: -11,8 + 563: -10,8 + 564: -9,10 + 565: -8,10 + 566: -7,10 + 567: -6,10 + 568: -5,10 + 569: -4,10 + 570: -3,10 + 571: -2,10 + 572: -1,10 + 573: 0,8 + 574: 1,8 + 627: -5,8 + 667: -39,-18 + 668: -38,-18 + 937: -22,-26 + 938: -21,-26 + 939: -20,-26 + 940: -19,-26 + 941: -18,-26 + 952: -20,-27 + 1111: 8,-4 + 1112: 9,-4 + 1113: 10,-4 + 1246: -22,-1 + 1247: -21,-1 + 1248: -20,-1 + 1249: -19,-1 + 2756: -31,-15 + 2757: -30,-15 + 2758: -29,-15 + 2771: -12,-77 + 2772: -11,-77 + 2773: -10,-77 + 2831: -56,-45 + 2832: -55,-45 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 65: -7,-79 + 66: -6,-79 + 67: -5,-79 + 68: -4,-79 + 69: -3,-79 + 71: -2,-79 + 169: -18,-33 + 170: -19,-33 + 171: -20,-33 + 241: 9,-34 + 253: 13,-43 + 254: 12,-43 + 327: 12,-8 + 330: 12,-9 + 335: 19,-9 + 336: 18,-9 + 337: 17,-9 + 364: 14,11 + 371: 15,11 + 443: 11,6 + 492: -9,3 + 493: -8,3 + 494: -7,3 + 495: -6,3 + 496: -5,3 + 497: -4,3 + 498: -3,3 + 499: -2,3 + 500: -1,3 + 549: -11,6 + 550: -10,6 + 551: -9,6 + 552: -8,6 + 553: -7,6 + 554: -6,6 + 555: -5,6 + 556: -4,6 + 557: -3,6 + 558: -2,6 + 559: -1,6 + 560: 0,6 + 561: 1,6 + 628: -5,7 + 665: -39,-19 + 666: -38,-19 + 932: -20,-28 + 933: -21,-28 + 934: -22,-28 + 935: -19,-28 + 936: -18,-28 + 953: -20,-27 + 1117: 8,-6 + 1118: 9,-6 + 1250: -22,-2 + 1251: -21,-2 + 1252: -20,-2 + 1253: -19,-2 + 2755: -29,-19 + 2763: -31,-19 + 2764: -30,-19 + 2829: -56,-45 + 2830: -55,-45 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 58: -8,-73 + 59: -8,-74 + 60: -8,-75 + 61: -8,-76 + 62: -8,-77 + 63: -8,-78 + 89: -8,-70 + 90: -8,-71 + 102: -8,-62 + 103: -8,-63 + 104: -8,-64 + 243: 8,-33 + 255: 11,-42 + 256: 11,-41 + 435: 16,-1 + 436: 16,0 + 447: 10,8 + 448: 10,7 + 455: 5,3 + 456: 5,4 + 460: 2,4 + 461: 2,3 + 477: -13,4 + 478: -13,3 + 510: -16,-33 + 633: -8,-59 + 634: -8,-60 + 742: -51,-44 + 743: -51,-45 + 744: -51,-46 + 822: -23,-5 + 823: -23,-6 + 858: -39,-6 + 859: -39,-7 + 860: -39,-8 + 861: -39,-9 + 992: -18,-51 + 993: -18,-52 + 994: -18,-53 + 995: -18,-54 + 1195: 2,-48 + 1196: 2,-49 + 1197: 2,-50 + 1198: 2,-51 + 1199: 2,-52 + 1222: -3,-52 + 1228: -16,-1 + 1229: -16,-2 + 1422: -71,-11 + 1423: -71,-12 + 1424: -71,-13 + 1425: -71,-14 + 2815: -55,-47 + 2816: -55,-48 + 2817: -55,-43 + 2818: -55,-42 + 2843: -53,-46 + 2844: -53,-44 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 280: 13,-34 + 1146: -59,-12 + 1292: -51,-16 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 279: 12,-34 + 1148: -63,-12 + 1281: -54,-16 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 1147: -59,-14 + 1289: -51,-19 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 274: 16,-39 + 1149: -63,-14 + 1284: -54,-19 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNe + decals: + 281: 13,-35 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNw + decals: + 277: 12,-36 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSw + decals: + 275: 16,-38 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 449: 4,6 + 450: 4,7 + 451: 4,8 + 965: -2,-55 + 966: -2,-56 + 967: -2,-57 + 968: -10,-54 + 969: -10,-55 + 970: -10,-51 + 971: -10,-52 + 972: -10,-53 + 1097: -17,-4 + 1098: -17,-6 + 1099: -17,-5 + 1100: -17,-7 + 1101: -17,-8 + 1102: -17,-9 + 1157: -59,-13 + 1290: -51,-18 + 1291: -51,-17 + - node: + color: '#9FED5896' + id: BrickTileSteelLineE + decals: + 452: 4,6 + 453: 4,7 + 454: 4,8 + 1103: -17,-4 + 1104: -17,-5 + 1105: -17,-6 + 1106: -17,-7 + 1107: -17,-8 + 1108: -17,-9 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 276: 11,-36 + 282: 14,-35 + 283: 15,-35 + 284: 16,-35 + 285: 17,-35 + 286: 18,-35 + 287: 19,-35 + 347: 17,-4 + 348: 16,-4 + 349: 15,-4 + 350: 11,4 + 351: 12,4 + 352: 13,4 + 356: 14,9 + 357: 15,9 + 360: 15,16 + 361: 14,16 + 397: 14,1 + 881: -39,-2 + 882: -38,-2 + 883: -37,-2 + 884: -36,-2 + 885: -35,-2 + 886: -34,-2 + 887: -33,4 + 888: -32,4 + 889: -31,4 + 900: -31,-6 + 901: -30,-6 + 902: -29,-6 + 903: -28,-6 + 904: -27,-6 + 905: -26,-6 + 906: -25,-6 + 930: -30,-1 + 1150: -62,-12 + 1151: -61,-12 + 1152: -60,-12 + 1293: -52,-16 + 1294: -53,-16 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 269: 11,-38 + 270: 12,-38 + 271: 13,-38 + 272: 14,-38 + 273: 15,-38 + 341: 15,-9 + 342: 14,-9 + 343: 17,-5 + 344: 16,-5 + 345: 13,-5 + 346: 12,-5 + 353: 11,-2 + 354: 14,3 + 355: 15,3 + 358: 14,14 + 359: 15,14 + 874: -39,-5 + 875: -38,-5 + 876: -37,-5 + 877: -36,-5 + 878: -35,-5 + 879: -34,-5 + 880: -33,-5 + 890: -32,-4 + 891: -31,-4 + 892: -30,-4 + 893: -31,-8 + 894: -30,-8 + 895: -29,-8 + 896: -28,-8 + 897: -27,-8 + 898: -26,-8 + 899: -25,-8 + 1153: -62,-14 + 1154: -61,-14 + 1155: -60,-14 + 1285: -53,-19 + 1286: -52,-19 + 1288: -51,-19 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 135: 7,-19 + 136: 7,-20 + 137: 7,-21 + 138: 7,-22 + 139: 7,-23 + 140: 7,-24 + 141: 7,-25 + 142: 7,-26 + 143: 7,-27 + 278: 12,-35 + 958: -13,-51 + 959: -13,-52 + 960: -13,-53 + 961: -13,-54 + 962: -13,-55 + 963: -13,-56 + 964: -13,-57 + 1156: -63,-13 + 1282: -54,-17 + 1283: -54,-18 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNe + decals: + 257: 14,-40 + 299: 13,-34 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 693: -23,-16 + 1172: -5,-26 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 548: 0,4 + 1264: -18,-1 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 694: -25,-16 + 1165: -8,-24 + 1182: -12,-25 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNw + decals: + 260: 11,-40 + 298: 12,-34 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 538: -10,4 + 1263: -23,-1 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSe + decals: + 258: 14,-43 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 547: 0,3 + 1265: -18,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 698: -23,-17 + 1173: -5,-27 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 697: -25,-17 + 1180: -12,-27 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 537: -10,3 + 1262: -23,-2 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSw + decals: + 259: 11,-43 + 294: 16,-39 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndE + decals: + 1168: -5,-24 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNe + decals: + 1171: -6,-26 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 188: -23,-32 + 377: 13,12 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNe + decals: + 545: -15,2 + 1241: -25,-3 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerNe + decals: + 300: 13,-35 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNw + decals: + 1186: -8,-25 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerNw + decals: + 295: 12,-36 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNw + decals: + 376: 16,12 + 515: -16,-34 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNw + decals: + 467: 5,2 + 1235: -16,-3 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSe + decals: + 546: -15,5 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + decals: + 187: -23,-30 + 378: 13,11 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSe + decals: + 1169: -6,-24 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSw + decals: + 468: 5,5 + 1234: -16,0 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSw + decals: + 379: 16,11 + 514: -16,-32 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerSw + decals: + 293: 16,-38 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 803: -33,-19 + 804: -33,-18 + 805: -33,-17 + 806: -33,-16 + 807: -33,-15 + 1170: -6,-25 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 469: 3,3 + 470: 3,4 + 541: -15,4 + 542: -15,3 + 543: -12,4 + 544: -12,3 + 1239: -25,-1 + 1240: -25,-2 + 1434: -67,-11 + 1435: -67,-12 + 1436: -67,-13 + 1437: -67,-14 + - node: + color: '#A4610696' + id: BrickTileWhiteLineE + decals: + 263: 14,-42 + 264: 14,-41 + 1210: 7,-48 + 1211: 7,-49 + 1212: 6,-50 + 1213: 6,-51 + 1214: 6,-52 + - node: + color: '#D4D4D428' + id: BrickTileWhiteLineE + decals: + 2854: -55,-43 + - node: + color: '#D4D4D426' + id: BrickTileWhiteLineE + decals: + 2845: -53,-46 + 2846: -53,-44 + - node: + color: '#D381C996' + id: BrickTileWhiteLineE + decals: + 980: -10,-51 + 981: -10,-52 + 982: -10,-53 + 983: -10,-54 + 984: -10,-55 + 985: -2,-55 + 986: -2,-56 + 987: -2,-57 + 1000: -15,-54 + 1001: -15,-53 + 1002: -15,-52 + 1003: -15,-51 + 2852: -55,-48 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 866: -37,-6 + 867: -37,-7 + 868: -37,-8 + 869: -37,-9 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 2849: -55,-47 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 186: -23,-31 + 2848: -55,-42 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 767: -18,-19 + 768: -19,-19 + 769: -20,-19 + 770: -21,-20 + 771: -22,-20 + 772: -23,-20 + 773: -24,-20 + 774: -25,-21 + 775: -26,-21 + 776: -29,-21 + 777: -30,-21 + 778: -31,-21 + 779: -32,-21 + 780: -33,-21 + 781: -34,-21 + 782: -35,-21 + 783: -36,-21 + 784: -37,-21 + 785: -38,-21 + 786: -39,-21 + 787: -40,-21 + 947: -22,-26 + 948: -21,-26 + 949: -20,-26 + 950: -19,-26 + 951: -18,-26 + 1878: -28,-21 + 1879: -27,-21 + 2760: -31,-15 + 2761: -30,-15 + 2762: -29,-15 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 669: -27,-15 + 670: -26,-15 + 671: -25,-15 + 672: -24,-15 + 673: -23,-15 + 674: -22,-15 + 696: -24,-16 + 721: -40,-21 + 722: -39,-21 + 723: -38,-21 + 724: -37,-21 + 725: -36,-21 + 726: -35,-21 + 727: -34,-21 + 728: -33,-21 + 729: -32,-21 + 730: -31,-21 + 731: -30,-21 + 732: -29,-21 + 733: -26,-21 + 734: -25,-21 + 735: -24,-20 + 736: -23,-20 + 737: -22,-20 + 738: -21,-20 + 739: -20,-19 + 740: -19,-19 + 741: -18,-19 + 1166: -7,-24 + 1167: -6,-24 + 1183: -11,-25 + 1184: -10,-25 + 1185: -9,-25 + 1876: -28,-21 + 1877: -27,-21 + - node: + color: '#FF9F4196' + id: BrickTileWhiteLineN + decals: + 675: -27,-15 + 676: -26,-15 + 677: -25,-15 + 678: -24,-15 + 679: -23,-15 + 680: -22,-15 + - node: + color: '#A4610696' + id: BrickTileWhiteLineN + decals: + 267: 12,-40 + 268: 13,-40 + 296: 11,-36 + 301: 14,-35 + 302: 15,-35 + 303: 16,-35 + 304: 17,-35 + 305: 18,-35 + 306: 19,-35 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 176: -18,-30 + 177: -19,-30 + 178: -20,-30 + 179: -21,-30 + 333: 12,-8 + 334: 12,-7 + 374: 15,12 + 375: 14,12 + 380: 14,9 + 381: 15,9 + 382: 13,4 + 383: 12,4 + 384: 11,4 + 394: 17,-4 + 395: 16,-4 + 396: 15,-4 + 398: 14,1 + 399: 15,16 + 400: 14,16 + 408: 17,-7 + 409: 18,-7 + 410: 19,-7 + 1114: 8,-4 + 1115: 9,-4 + 1116: 10,-4 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineN + decals: + 914: -31,-6 + 915: -30,-6 + 916: -29,-6 + 917: -28,-6 + 918: -27,-6 + 919: -26,-6 + 920: -25,-6 + 921: -39,-2 + 922: -38,-2 + 923: -37,-2 + 924: -36,-2 + 925: -35,-2 + 926: -34,-2 + 927: -33,4 + 928: -32,4 + 929: -31,4 + 931: -30,-1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 528: -1,4 + 529: -2,4 + 530: -3,4 + 531: -4,4 + 532: -5,4 + 533: -6,4 + 534: -7,4 + 535: -8,4 + 536: -9,4 + 588: 1,8 + 589: 0,8 + 590: -1,10 + 591: -2,10 + 592: -3,10 + 593: -4,10 + 594: -5,10 + 595: -6,10 + 596: -7,10 + 597: -8,10 + 598: -9,10 + 599: -10,8 + 600: -11,8 + 1254: -22,-1 + 1255: -21,-1 + 1256: -20,-1 + 1257: -19,-1 + - node: + color: '#A4610696' + id: BrickTileWhiteLineS + decals: + 261: 12,-43 + 262: 13,-43 + 288: 11,-38 + 289: 12,-38 + 290: 13,-38 + 291: 14,-38 + 292: 15,-38 + - node: + color: '#FF9F4196' + id: BrickTileWhiteLineS + decals: + 681: -27,-19 + 682: -26,-19 + 683: -25,-18 + 684: -24,-18 + 685: -23,-18 + 686: -22,-18 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 907: -31,-8 + 908: -30,-8 + 909: -29,-8 + 910: -28,-8 + 911: -27,-8 + 912: -26,-8 + 913: -25,-8 + 1005: -39,-5 + 1006: -38,-5 + 1007: -37,-5 + 1008: -36,-5 + 1009: -35,-5 + 1010: -34,-5 + 1011: -33,-5 + 1012: -32,-4 + 1013: -31,-4 + 1014: -30,-4 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 647: -27,-19 + 648: -26,-19 + 649: -25,-18 + 650: -24,-18 + 651: -23,-18 + 652: -22,-18 + 695: -24,-17 + 699: -18,-24 + 700: -19,-24 + 701: -20,-24 + 702: -21,-24 + 703: -22,-24 + 704: -23,-23 + 705: -24,-23 + 706: -25,-23 + 707: -26,-23 + 708: -27,-23 + 709: -28,-23 + 710: -29,-23 + 711: -30,-23 + 712: -31,-23 + 713: -32,-23 + 714: -33,-23 + 715: -34,-23 + 716: -35,-23 + 717: -36,-23 + 718: -37,-23 + 719: -39,-23 + 720: -40,-23 + 1174: -6,-27 + 1175: -7,-27 + 1176: -8,-27 + 1177: -9,-27 + 1178: -10,-27 + 1179: -11,-27 + 2729: -38,-23 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 745: -40,-23 + 746: -39,-23 + 747: -37,-23 + 748: -36,-23 + 749: -35,-23 + 750: -34,-23 + 751: -33,-23 + 752: -32,-23 + 753: -31,-23 + 754: -30,-23 + 755: -29,-23 + 756: -28,-23 + 757: -27,-23 + 758: -26,-23 + 759: -25,-23 + 760: -24,-23 + 761: -23,-23 + 762: -22,-24 + 763: -21,-24 + 764: -20,-24 + 765: -19,-24 + 766: -18,-24 + 942: -22,-28 + 943: -21,-28 + 944: -20,-28 + 945: -19,-28 + 946: -18,-28 + 2730: -38,-23 + 2759: -29,-19 + 2765: -31,-19 + 2766: -30,-19 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 501: -9,3 + 502: -8,3 + 503: -7,3 + 504: -6,3 + 505: -5,3 + 506: -4,3 + 507: -3,3 + 508: -2,3 + 509: -1,3 + 575: -11,6 + 576: -10,6 + 577: -9,6 + 578: -8,6 + 579: -7,6 + 580: -6,6 + 581: -5,6 + 582: -4,6 + 583: -3,6 + 584: -2,6 + 585: -1,6 + 586: 0,6 + 587: 1,6 + 1258: -22,-2 + 1259: -21,-2 + 1260: -20,-2 + 1261: -19,-2 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 180: -18,-33 + 181: -19,-33 + 182: -20,-33 + 331: 12,-9 + 332: 12,-8 + 362: 14,14 + 363: 15,14 + 372: 14,11 + 373: 15,11 + 385: 15,3 + 386: 14,3 + 387: 11,-2 + 388: 12,-5 + 389: 13,-5 + 390: 14,-9 + 391: 15,-9 + 392: 16,-5 + 393: 17,-5 + 405: 17,-9 + 406: 18,-9 + 407: 19,-9 + 1119: 8,-6 + 1120: 9,-6 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 870: -39,-6 + 871: -39,-7 + 872: -39,-8 + 873: -39,-9 + 2851: -55,-43 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 2850: -55,-48 + - node: + color: '#A4610696' + id: BrickTileWhiteLineW + decals: + 265: 11,-42 + 266: 11,-41 + 297: 12,-35 + 1205: 2,-48 + 1206: 2,-49 + 1207: 2,-50 + 1208: 2,-51 + 1209: 2,-52 + 2853: -55,-47 + - node: + color: '#D381C996' + id: BrickTileWhiteLineW + decals: + 973: -13,-51 + 974: -13,-52 + 975: -13,-53 + 976: -13,-54 + 977: -13,-55 + 978: -13,-56 + 979: -13,-57 + 996: -18,-54 + 997: -18,-53 + 998: -18,-52 + 999: -18,-51 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 513: -16,-33 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 830: -27,-29 + 831: -27,-30 + 832: -27,-31 + 833: -27,-32 + 834: -27,-33 + 835: -27,-34 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 798: -35,-19 + 799: -35,-18 + 800: -35,-17 + 801: -35,-16 + 802: -35,-15 + 824: -27,-29 + 825: -27,-30 + 826: -27,-31 + 827: -27,-32 + 828: -27,-33 + 829: -27,-34 + 1181: -12,-26 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 463: 5,4 + 464: 5,3 + 465: 2,3 + 466: 2,4 + 539: -13,4 + 540: -13,3 + 1232: -16,-2 + 1233: -16,-1 + 1356: -51,-46 + 1357: -51,-45 + 1358: -51,-44 + 1430: -71,-11 + 1431: -71,-12 + 1432: -71,-13 + 1433: -71,-14 + 2847: -55,-42 + - node: + color: '#9FED5896' + id: Busha1 + decals: + 1026: -18.094267,-6.2415576 + 1027: -18.909277,-5.3673854 + 1028: -17.815971,-5.029637 + 1029: -20.241123,-4.0362597 + 1030: -20.101976,-5.864074 + 1031: -20.002584,-8.32765 + 1032: -20.161612,-9.082618 + 1033: -18.511711,-9.181956 + 1034: -19.048426,-8.049505 + 1035: -17.73646,-8.069372 + 1036: -17.398527,-9.420366 + 1037: -17.000961,-6.321028 + 1038: -19.048426,-6.2614245 + 1039: -20.161612,-7.3740087 + - node: + color: '#9FED5896' + id: Bushb3 + decals: + 1019: -19.545383,-4.6124187 + 1020: -17.815971,-4.4932137 + 1021: -19.56526,-6.2018223 + 1022: -19.783924,-8.24818 + 1023: -17.95512,-8.943545 + 1024: -17.557552,-7.294538 + 1025: -19.088182,-7.11573 + - node: + color: '#9FED5896' + id: Bushc2 + decals: + 1403: 3.3756588,6.1882553 + 1404: 3.2762673,7.1390595 + - node: + color: '#9FED5896' + id: Bushc3 + decals: + 1405: 3.8158202,7.9337606 + 1406: 2.8219063,6.103108 + 1407: 2.8361046,8.274347 + 1408: 2.8219063,7.2951617 + 1409: 3.9436097,6.656562 + - node: + color: '#9FED5896' + id: Bushn1 + decals: + 1040: -18.611103,-5.943545 + 1041: -19.505627,-4.6124187 + 1042: -17.378649,-8.566062 + 1043: -19.426113,-8.6852665 + 1044: -18.352684,-7.1753325 + - node: + color: '#79150036' + id: CheckerNESW + decals: + 1295: -4,-20 + 1296: -4,-21 + 1297: -4,-22 + 1298: -4,-23 + 1299: -4,-24 + 1300: -4,-25 + 1301: -4,-26 + 1302: -4,-27 + 1303: -3,-27 + 1304: -2,-27 + 1305: -1,-27 + 1306: 0,-27 + 1307: 1,-27 + 1308: 2,-27 + 1309: 2,-26 + 1310: 2,-25 + 1311: 2,-24 + 1312: 2,-23 + 1313: 2,-22 + 1314: 2,-21 + 1315: -3,-20 + 1316: -2,-20 + 1317: 1,-21 + 1318: 0,-21 + 1319: -1,-21 + 1320: -2,-21 + 1321: -3,-21 + 1322: -3,-22 + 1323: -2,-22 + 1324: -1,-22 + 1325: 0,-22 + 1326: 1,-22 + 1327: 1,-23 + 1328: 0,-23 + 1329: -1,-23 + 1330: -2,-23 + 1331: -3,-23 + 1332: -3,-24 + 1333: -2,-24 + 1334: -1,-24 + 1335: 0,-24 + 1336: 1,-24 + 1337: 1,-25 + 1338: 0,-25 + 1339: -1,-25 + 1340: -2,-25 + 1341: -3,-25 + 1342: -3,-26 + 1343: -2,-26 + 1344: -1,-26 + 1345: 0,-26 + 1346: 1,-26 + - node: + color: '#9FED5896' + id: Damaged + decals: + 1140: -62,-13 + 1141: -60,-13 + 1142: -61,-13 + - node: + cleanable: True + color: '#A461067F' + id: Damaged + decals: + 1870: -57,-34 + 1871: -59,-35 + 1872: -58,-36 + 1873: -58,-32 + 1874: -48,-25 + 1875: -45,-15 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 1127: 17,-36 + 1128: 17,-37 + - node: + color: '#334E6DC8' + id: DeliveryGreyscale + decals: + 1161: -1,-10 + - node: + color: '#F9801DFF' + id: Dirt + decals: + 2781: -8,-35 + 2782: -7,-34 + 2783: -9,-35 + 2784: -8,-34 + 2785: -6,-34 + 2786: -5,-34 + 2787: -4,-34 + 2788: -4,-35 + 2789: -3,-35 + 2790: -2,-35 + - node: + color: '#F9801D98' + id: Dirt + decals: + 2791: -10,-34 + 2792: -7,-32 + 2793: -4,-32 + 2794: -2,-34 + 2795: -1,-32 + 2796: -7,-31 + 2797: -7,-33 + 2798: -10,-31 + 2799: -5,-32 + 2800: -1,-33 + 2801: -2,-33 + - node: + cleanable: True + color: '#A4610696' + id: Dirt + decals: + 1596: -53,-15 + 1597: -38,-13 + 2155: -47,-46 + 2156: -48,-45 + 2157: -43,-45 + 2158: -41,-46 + 2159: -37,-44 + 2160: -43,-41 + 2161: -43,-39 + 2162: -44,-38 + 2163: -44,-37 + 2164: -44,-35 + 2165: -42,-34 + 2166: -44,-33 + 2167: -43,-32 + 2168: -43,-31 + 2169: -44,-30 + 2170: -44,-34 + 2171: -44,-36 + 2172: -43,-39 + 2173: -44,-41 + 2174: -30,-56 + 2175: -29,-56 + 2176: -30,-57 + 2177: -29,-57 + 2178: -44,-41 + 2179: -43,-33 + 2180: -43,-30 + 2181: -55,-44 + 2182: -56,-47 + 2183: -47,-46 + 2184: -43,-44 + 2185: -32,-46 + 2186: -29,-44 + 2187: -26,-45 + 2188: -21,-44 + 2189: -11,-45 + 2190: -9,-45 + 2191: -6,-46 + 2192: -4,-45 + 2193: -2,-45 + 2194: 3,-45 + 2195: 4,-45 + 2196: 6,-44 + 2197: 3,-48 + 2198: 4,-50 + 2199: 5,-51 + 2200: 5,-51 + 2201: 6,-49 + 2202: 7,-49 + 2203: 6,-51 + 2204: 5,-52 + 2205: 5,-52 + 2206: 3,-49 + 2207: 10,-46 + 2208: 11,-47 + 2209: 10,-46 + 2210: 11,-46 + 2211: 13,-45 + 2212: 14,-45 + 2213: 14,-46 + 2214: 11,-46 + 2215: 12,-47 + 2216: 15,-47 + 2217: 18,-47 + 2218: 18,-43 + 2219: 17,-42 + 2220: 18,-41 + 2221: 19,-42 + 2222: 19,-44 + 2223: 18,-44 + 2224: 17,-44 + 2225: 17,-44 + 2226: 17,-42 + 2227: 17,-41 + 2228: 17,-41 + 2229: 16,-41 + 2230: 13,-41 + 2231: 12,-41 + 2232: 12,-41 + 2233: 12,-42 + 2234: 11,-41 + 2235: 12,-38 + 2236: 14,-36 + 2237: 15,-37 + 2238: 17,-38 + 2239: 18,-36 + 2240: 18,-35 + 2241: 19,-38 + 2242: 14,-38 + 2243: 8,-36 + 2244: 8,-38 + 2245: 8,-40 + 2246: 4,-36 + 2247: 5,-33 + 2248: 5,-32 + 2249: 5,-30 + 2250: 5,-27 + 2251: 5,-25 + 2252: 5,-23 + 2253: 5,-21 + 2254: 5,-19 + 2255: 6,-18 + 2256: -14,-42 + 2257: -15,-40 + 2258: -15,-36 + 2259: -16,-33 + 2260: -15,-31 + 2261: -15,-29 + 2262: -15,-28 + 2263: -15,-26 + 2264: -15,-23 + 2265: -14,-22 + 2266: -16,-20 + 2267: -15,-18 + 2268: -17,-16 + 2269: -19,-14 + 2270: -20,-12 + 2271: -19,-14 + 2272: -17,-15 + 2273: -15,-12 + 2274: -16,-11 + 2275: -16,-8 + 2276: -15,-7 + 2277: -15,-5 + 2278: -16,-3 + 2279: -16,-1 + 2280: -15,2 + 2281: -16,3 + 2282: -15,5 + 2283: -14,7 + 2284: -16,7 + 2285: -18,7 + 2286: -18,7 + 2287: -14,6 + 2288: -9,3 + 2289: -6,4 + 2290: -3,3 + 2291: -1,3 + 2292: 0,4 + 2293: 3,3 + 2294: 2,4 + 2295: 4,4 + 2296: 6,6 + 2297: 8,8 + 2298: 5,-1 + 2299: 6,-3 + 2300: 5,-5 + 2301: 6,-7 + 2302: 6,-9 + 2303: 5,-10 + 2304: 6,-12 + 2305: 7,-13 + 2306: 8,-12 + 2307: 8,-9 + 2308: 10,-12 + 2309: 9,-9 + 2310: 8,-8 + 2311: 14,-9 + 2312: 15,-8 + 2313: 14,-6 + 2314: 16,-4 + 2315: 14,-5 + 2316: 13,-4 + 2317: 12,-2 + 2318: 11,0 + 2319: 12,1 + 2320: 13,4 + 2321: 9,2 + 2322: 8,2 + 2323: 8,2 + 2324: 8,3 + 2325: 8,4 + 2326: 9,3 + 2327: 8,0 + 2328: 8,-1 + 2329: 8,-2 + 2330: 9,-2 + 2331: 14,5 + 2332: 15,6 + 2333: 15,7 + 2334: 15,9 + 2335: 14,11 + 2336: 14,11 + 2337: 15,12 + 2338: 16,12 + 2339: 14,12 + 2340: 13,11 + 2341: 15,15 + 2342: 14,15 + 2343: 14,16 + 2344: 16,19 + 2345: 16,20 + 2346: 12,19 + 2347: 11,19 + 2348: 10,20 + 2349: 18,20 + 2350: 11,18 + 2351: 10,18 + 2352: 8,-13 + 2353: 13,-12 + 2354: 15,-12 + 2355: 20,-11 + 2356: 22,-12 + 2357: 26,-12 + 2358: 28,-11 + 2359: 34,-12 + 2360: 35,-12 + 2361: 37,-13 + 2362: 42,-12 + 2363: 42,-10 + 2364: 43,-6 + 2365: 43,-4 + 2366: 43,7 + 2367: 45,3 + 2368: 46,2 + 2369: 47,2 + 2370: 31,4 + 2371: 30,2 + 2372: 31,-1 + 2373: 30,-4 + 2374: 30,-6 + 2375: 31,-8 + 2376: 30,-12 + 2377: 26,-13 + 2378: 20,-11 + 2379: 13,-12 + 2380: 11,-11 + 2381: 8,-11 + 2382: 7,-12 + 2383: 1,-13 + 2384: -2,-12 + 2385: -5,-11 + 2386: -8,-13 + 2387: -9,-11 + 2388: -10,-12 + 2389: -5,-10 + 2390: -3,-10 + 2391: -2,-10 + 2392: -1,-10 + 2393: -1,-10 + 2394: -2,-13 + 2395: -4,-13 + 2396: -5,-12 + 2397: -7,-12 + 2398: -25,-22 + 2399: -30,-22 + 2400: -39,-22 + 2401: -30,-16 + 2402: -30,-15 + 2403: -14,-33 + 2404: -11,-26 + 2405: -10,-26 + 2406: -7,-25 + 2407: -6,-24 + 2408: -7,-26 + 2409: -6,-26 + 2410: -7,-24 + 2411: -8,-26 + 2412: -10,-26 + 2413: -10,-27 + 2414: -11,-25 + 2415: -7,-26 + 2423: -9,-25 + 2424: -7,-26 + 2425: -6,-26 + 2426: -6,-25 + 2427: -11,-26 + 2428: -11,-22 + 2429: -11,-21 + 2430: -10,-20 + 2431: -13,-16 + 2432: -12,-16 + 2433: -10,-16 + 2434: -11,-18 + 2435: -11,-19 + 2436: -11,-21 + 2437: -11,-21 + 2438: -3,-26 + 2439: -3,-25 + 2440: -1,-22 + 2441: 1,-21 + 2442: 2,-22 + 2443: -1,-22 + 2444: 1,-25 + 2445: 2,-25 + 2446: -1,-26 + 2447: -1,-26 + 2448: -4,-22 + 2449: -2,-20 + 2450: -37,-3 + 2451: -38,-4 + 2452: -39,-5 + 2453: -34,-3 + 2454: -32,-4 + 2455: -37,0 + 2456: -39,1 + 2457: -39,2 + 2458: -36,4 + 2459: -35,3 + 2460: -32,2 + 2461: -32,3 + 2462: -31,-3 + 2463: -31,-4 + 2464: -30,-3 + 2465: -27,-1 + 2466: -25,-1 + 2467: -25,-3 + 2468: -26,-3 + 2469: -23,-2 + 2470: -20,-2 + 2471: -18,-2 + 2472: -8,4 + 2473: -6,4 + 2474: -2,4 + 2475: 0,3 + 2476: -1,7 + 2477: -3,8 + 2478: -6,8 + 2479: -9,7 + 2480: -10,6 + 2481: -7,7 + 2482: -5,7 + 2483: -2,7 + 2484: -1,6 + 2485: -1,8 + 2486: -8,9 + 2487: -9,6 + 2488: -5,7 + 2489: -4,8 + 2490: -4,7 + 2491: -6,7 + 2492: -6,8 + 2493: -5,8 + 2494: -5,8 + 2495: -6,7 + 2496: -4,7 + 2497: -4,8 + 2498: -3,7 + 2499: -7,6 + 2500: -8,6 + 2501: -4,3 + 2502: -2,3 + 2503: -1,4 + 2504: -6,3 + 2505: -7,4 + 2506: -7,3 + 2507: 5,3 + 2508: 5,2 + 2509: 6,2 + 2510: 6,1 + 2511: 6,1 + 2512: 6,-8 + 2513: -3,-13 + 2514: -6,-12 + 2515: -13,-12 + 2516: -17,-12 + 2517: -19,-12 + 2518: -22,-12 + 2519: -25,-12 + 2520: -27,-12 + 2521: -29,-13 + 2522: -37,-12 + 2523: -39,-12 + 2524: -41,-13 + 2525: -36,-3 + 2526: -35,-2 + 2527: -35,-4 + 2528: -36,-4 + 2529: -31,4 + 2530: -32,4 + 2531: -33,9 + 2532: -32,11 + 2533: -32,13 + 2534: -32,12 + 2535: -32,10 + 2536: -32,10 + 2537: -31,13 + 2538: -33,18 + 2539: -35,20 + 2540: -36,20 + 2541: -38,18 + 2542: -36,15 + 2543: -33,14 + 2544: -36,13 + 2545: -36,11 + 2546: -36,10 + 2547: -37,10 + 2548: -35,13 + 2549: -33,16 + 2550: -33,17 + 2551: -32,17 + 2552: -21,1 + 2553: -20,1 + 2554: -22,1 + 2555: 7,-21 + 2556: 7,-24 + 2557: 7,-25 + 2558: 7,-30 + 2559: 7,-30 + 2560: 2,-46 + 2561: -6,-46 + 2562: -6,-46 + 2563: -25,-47 + 2564: -25,-47 + 2565: -41,-46 + 2566: -41,-48 + 2567: -39,-48 + 2568: -38,-48 + 2569: -19,-17 + 2570: -20,-17 + 2571: -18,-17 + 2572: -17,-17 + 2573: -16,-17 + 2574: -20,-13 + 2575: -21,-13 + 2576: -15,-14 + 2577: -15,-15 + 2578: -16,-15 + 2579: -14,-21 + 2580: -14,-26 + 2581: 4,-21 + 2582: 4,-22 + 2583: 9,-13 + 2584: 10,-9 + 2585: 10,-7 + 2586: 14,-7 + 2587: 14,-8 + 2588: 14,14 + 2589: 15,16 + 2590: 14,18 + 2591: 15,18 + 2592: 16,18 + 2593: 5,4 + 2594: -15,4 + 2595: -15,3 + 2596: -1,-11 + 2597: -8,-11 + 2598: -7,-11 + 2599: 14,-12 + 2600: 16,-13 + 2601: 19,-14 + 2602: 19,-13 + 2603: 20,-13 + 2604: 30,-11 + 2605: 29,-11 + 2606: 30,-10 + 2607: 43,-7 + 2608: 43,3 + 2609: 43,2 + 2610: 30,5 + 2611: 30,4 + 2612: 10,-8 + 2613: 9,-10 + 2614: 4,-35 + 2615: 2,-35 + 2616: 1,-35 + 2617: 1,-36 + 2618: 2,-36 + 2619: -14,-35 + 2620: -16,-36 + 2621: -16,-36 + 2622: -16,-32 + 2623: -20,-19 + 2624: -19,-20 + 2625: -19,-19 + 2626: -15,-44 + 2627: -14,-44 + 2628: -16,-44 + 2629: -13,-47 + 2630: -12,-47 + 2631: -8,-47 + 2632: 6,-45 + 2633: 7,-41 + 2634: 9,-40 + 2635: 9,-41 + 2636: 13,-38 + 2637: 14,-38 + 2638: 18,-40 + 2639: 17,-40 + 2640: -25,-2 + 2641: -30,-2 + 2642: -30,-1 + 2643: -30,-2 + 2644: -30,-4 + 2645: -32,4 + 2646: -38,-5 + 2647: -39,-2 + 2648: -38,-3 + 2649: -31,-8 + 2650: -30,-8 + 2651: -30,-7 + 2652: -31,-6 + 2653: -30,-6 + 2654: -31,-7 + 2655: -29,-7 + 2656: -28,-7 + 2657: -27,-8 + 2658: -47,-13 + 2659: -51,-13 + 2660: -54,-13 + 2661: -54,-15 + 2662: -51,-15 + 2663: -57,-11 + 2664: -59,-11 + 2665: -65,-11 + 2666: -65,-13 + 2667: -70,-13 + 2668: -69,-12 + 2669: -68,-11 + 2670: -67,-11 + 2671: -67,-13 + 2672: -68,-13 + 2673: -69,-13 + 2674: -67,-12 + 2675: -57,-12 + 2676: -54,-20 + 2677: -42,-14 + 2678: -42,-10 + 2679: -33,-13 + 2680: -29,-10 + 2681: -28,-10 + 2682: -27,-10 + 2683: -29,-11 + 2684: -28,-11 + 2685: -27,-11 + 2686: -26,-11 + 2687: -25,-12 + 2688: -20,-44 + 2689: -18,-46 + 2690: -17,-46 + 2691: 16,-35 + 2692: 16,-35 + 2693: 4,-22 + 2694: 27,-11 + 2695: 11,2 + 2696: 11,9 + 2697: 5,-14 + 2698: 6,-14 + 2699: 5,-13 + 2700: 3,-13 + 2701: 0,-12 + 2702: -4,-12 + 2735: -30,-25 + 2736: -30,-28 + 2737: -31,-28 + 2738: -26,-25 + 2739: -26,-27 + 2740: -25,-25 + 2741: -25,-23 + 2742: -26,-23 + 2743: -27,-21 + 2744: -27,-23 + 2745: -29,-21 + 2746: -29,-23 + 2747: -30,-21 + 2748: -30,-23 + 2749: -20,-27 + 2750: -18,-33 + 2751: -21,-31 + 2752: -18,-30 + 2753: -18,-31 + - node: + cleanable: True + color: '#A461067F' + id: Dirt + decals: + 1857: -54,-34 + 1858: -52,-33 + 1859: -52,-32 + 1860: -53,-36 + 1861: -55,-36 + 1862: -53,-33 + 1863: -53,-32 + - node: + cleanable: True + color: '#A4610641' + id: Dirt + decals: + 1598: -25,-13 + 1599: -16,-12 + 1600: -16,-5 + 1601: -15,2 + 1602: -15,7 + 1603: -37,-4 + 1604: -38,-3 + 1605: -31,-3 + 1606: -29,-7 + 1607: -26,-7 + 1608: -19,-15 + 1609: -19,-19 + 1610: -20,-21 + 1611: -24,-23 + 1612: -31,-22 + 1613: -37,-23 + 1614: -30,-15 + 1615: -35,-18 + 1616: -34,-18 + 1617: -33,-16 + 1618: -34,-16 + 1619: -25,-28 + 1620: -25,-31 + 1621: -24,-33 + 1622: -23,-31 + 1623: -23,-33 + 1624: -20,-32 + 1625: -19,-32 + 1626: -15,-29 + 1627: -14,-27 + 1628: -15,-23 + 1629: -15,-21 + 1630: -15,-18 + 1631: -16,-16 + 1632: -11,-18 + 1633: -12,-16 + 1634: -10,-16 + 1635: -11,-22 + 1636: -11,-20 + 1637: -10,-21 + 1638: -10,-23 + 1639: -10,-25 + 1640: -11,-26 + 1641: -8,-25 + 1642: -6,-24 + 1643: -6,-26 + 1644: -3,-25 + 1645: -3,-26 + 1646: -4,-26 + 1647: -14,-44 + 1648: -20,-46 + 1649: -25,-44 + 1650: -28,-46 + 1651: -30,-46 + 1652: -33,-45 + 1653: -36,-46 + 1654: -39,-44 + 1655: -42,-46 + 1656: -46,-45 + 1657: -48,-45 + 1658: -23,-45 + 1659: -20,-46 + 1660: -13,-46 + 1661: -9,-45 + 1662: -7,-46 + 1663: -3,-44 + 1664: 4,-44 + 1665: -9,-49 + 1666: -12,-49 + 1667: -11,-53 + 1668: -12,-55 + 1669: -10,-57 + 1670: -5,-57 + 1671: -4,-55 + 1672: -3,-56 + 1673: -6,-60 + 1674: -6,-64 + 1675: -6,-71 + 1676: -3,-72 + 1677: -2,-75 + 1678: -2,-77 + 1679: 0,-77 + 1680: -2,-77 + 1681: -5,-77 + 1682: -6,-77 + 1683: -5,-78 + 1684: -5,-78 + 1685: -5,-78 + 1686: -1,-77 + 1687: 1,-77 + 1688: 1,-80 + 1689: 1,-82 + 1690: -3,-74 + 1691: -3,-55 + 1692: 4,-44 + 1693: 5,-40 + 1694: 19,-38 + 1695: 19,-36 + 1696: 16,-37 + 1697: 17,-37 + 1698: 17,-42 + 1699: 18,-41 + 1700: 18,-43 + 1701: 17,-44 + 1702: 17,-44 + 1703: 17,-41 + 1704: 20,-41 + 1705: 12,-38 + 1706: 6,-34 + 1707: 5,-29 + 1708: 6,-25 + 1709: 8,-23 + 1710: 8,-21 + 1711: 9,-20 + 1712: 5,-18 + 1713: 6,-13 + 1714: 10,-11 + 1715: 10,-9 + 1716: 15,-8 + 1717: 15,-3 + 1718: 12,-2 + 1719: 13,1 + 1720: 14,5 + 1721: 14,8 + 1722: 16,18 + 1723: 17,19 + 1724: 18,20 + 1725: 18,20 + 1726: 14,20 + 1727: 11,20 + 1728: 10,20 + 1729: 11,19 + 1730: 13,19 + 1731: 13,19 + 1732: 12,19 + 1733: 12,19 + 1734: 12,19 + 1735: 12,19 + 1736: 13,19 + 1737: 17,19 + 1738: 17,20 + 1739: 17,20 + 1740: 17,19 + 1741: 17,19 + 1742: 10,19 + 1743: 10,20 + 1744: 11,22 + 1745: 12,23 + 1746: 11,23 + 1747: 12,22 + 1748: 12,22 + 1749: 10,22 + 1750: 10,22 + 1751: 13,23 + 1752: 13,23 + 1753: 13,23 + 1754: 12,22 + 1755: 13,22 + 1756: 12,22 + 1757: 17,18 + 1758: 15,14 + 1759: 15,8 + 1760: 17,-4 + 1761: 17,-4 + 1762: 20,-12 + 1763: 29,-11 + 1764: 34,-12 + 1765: 38,-12 + 1766: 43,-11 + 1767: 43,-4 + 1768: 43,0 + 1769: 43,3 + 1770: 46,2 + 1771: 47,3 + 1772: 31,4 + 1773: 31,1 + 1774: 30,-3 + 1775: 31,-5 + 1776: 31,-8 + 1777: 37,-11 + 1778: 23,-22 + 1779: 22,-22 + 1780: 19,-22 + 1781: 17,-23 + 1782: 16,-23 + 1783: 16,-25 + 1784: 20,-24 + 1785: 19,-25 + 1786: 19,-29 + 1787: 19,-31 + 1788: 18,-33 + 1789: 15,-32 + 1790: 12,-32 + 1791: 12,-30 + 1792: 9,-30 + 1793: 10,-46 + 1794: 10,-45 + 1795: 9,-45 + 1796: 6,-51 + 1797: 5,-51 + 1798: 4,-49 + 1799: 3,-49 + 1800: 5,-48 + 1801: 6,-48 + 1802: 6,-49 + 1803: 5,-50 + 1804: 4,-49 + 1805: 3,-49 + 1806: 5,-48 + 1807: 6,-48 + 1808: 5,-50 + 1809: 4,-50 + 1810: 2,-54 + 1811: 3,-54 + 1812: 4,-54 + 1813: 5,-54 + 1814: 6,-54 + 1815: 5,-54 + 1816: 3,-54 + 1817: 3,-55 + 1818: 3,-55 + 1819: 2,-55 + 1820: 2,-55 + 1821: 3,-54 + 1822: -33,-62 + 1823: -33,-62 + 1824: -28,-62 + 1825: -33,-62 + 1826: -57,-34 + 1827: -58,-34 + 1828: -58,-32 + 1829: -57,-32 + 1830: -59,-32 + 1831: -60,-33 + 1832: -59,-34 + 1833: -59,-36 + 1834: -58,-36 + 1835: -57,-36 + 1836: -58,-33 + 1837: -57,-32 + 1838: -54,-33 + 1839: -54,-32 + 1840: -53,-32 + 1841: -52,-32 + 1842: -52,-33 + 1843: -53,-33 + 1844: -54,-33 + 1845: -55,-33 + 1846: -53,-33 + 1847: -53,-32 + 1848: -54,-32 + 1849: -53,-34 + 1850: -52,-34 + 1851: -55,-33 + 1852: -55,-34 + 1853: -55,-35 + 1854: -54,-36 + 1855: -53,-36 + 1856: -52,-36 + - node: + cleanable: True + color: '#A461067F' + id: DirtHeavy + decals: + 1866: -52,-34 + 1867: -53,-31 + 1868: -54,-36 + 1869: -54,-33 + - node: + cleanable: True + color: '#A4610696' + id: DirtHeavy + decals: + 1880: 31,5 + 1881: 31,2 + 1882: 31,-1 + 1883: 31,-3 + 1884: 30,-5 + 1885: 30,-7 + 1886: 31,-9 + 1887: 31,-12 + 1888: 34,-13 + 1889: 36,-12 + 1890: 39,-12 + 1891: 41,-13 + 1892: 43,-12 + 1893: 43,-10 + 1894: 43,-8 + 1895: 43,-3 + 1896: 45,3 + 1897: 45,2 + 1898: 46,2 + 1899: 47,3 + 1900: 45,-6 + 1901: 47,-6 + 1902: 47,-7 + 1903: 46,-7 + 1904: 35,-13 + 1905: 26,-12 + 1906: 23,-13 + 1907: 21,-12 + 1908: 18,-12 + 1909: 15,-11 + 1910: 13,-12 + 1911: 10,-12 + 1912: 8,-11 + 1913: 6,-12 + 1914: 4,-11 + 1915: -1,-12 + 1916: -4,-13 + 1917: -6,-12 + 1918: -8,-13 + 1919: -11,-12 + 1920: -13,-12 + 1921: -16,-12 + 1922: -19,-12 + 1923: -21,-12 + 1924: -24,-12 + 1925: -26,-12 + 1926: -28,-12 + 1927: -31,-12 + 1928: -35,-13 + 1929: -38,-11 + 1930: -40,-13 + 1931: -43,-12 + 1932: -45,-13 + 1933: -50,-12 + 1934: -52,-12 + 1935: -53,-12 + 1936: -55,-12 + 1937: -56,-12 + 1938: -58,-13 + 1939: -60,-12 + 1940: -63,-12 + 1941: -64,-12 + 1942: -64,-13 + 1943: -63,-14 + 1944: -62,-15 + 1945: -59,-14 + 1946: -55,-15 + 1947: -51,-15 + 1948: -51,-19 + 1949: -53,-17 + 1950: -50,-16 + 1951: -53,-16 + 1952: -54,-19 + 1953: -55,-20 + 1954: -52,-19 + 1955: -53,-16 + 1956: -47,-16 + 1957: -48,-17 + 1958: -46,-18 + 1959: -45,-17 + 1960: -33,-23 + 1961: -30,-22 + 1962: -25,-22 + 1963: -21,-23 + 1964: -22,-24 + 1965: -19,-24 + 1966: -20,-20 + 1967: -18,-19 + 1968: -22,-17 + 1969: -26,-17 + 1970: -27,-17 + 1971: -25,-15 + 1972: -19,-15 + 1973: -19,-13 + 1974: -18,-16 + 1975: -17,-16 + 1976: -15,-13 + 1977: -16,-16 + 1978: -15,-20 + 1979: -15,-22 + 1980: -14,-25 + 1981: -16,-27 + 1982: -15,-30 + 1983: -14,-32 + 1984: -16,-33 + 1985: -14,-36 + 1986: -14,-40 + 1987: -16,-42 + 1988: -14,-41 + 1989: -18,-46 + 1990: -20,-45 + 1991: -23,-46 + 1992: -25,-46 + 1993: -27,-45 + 1994: -30,-46 + 1995: -32,-45 + 1996: -34,-44 + 1997: -36,-46 + 1998: -39,-45 + 1999: -41,-45 + 2000: -43,-46 + 2001: -45,-45 + 2002: -47,-44 + 2003: -49,-45 + 2004: -51,-46 + 2005: -15,-46 + 2006: -8,-45 + 2007: -5,-46 + 2008: -1,-45 + 2009: 1,-46 + 2010: 4,-45 + 2011: 6,-44 + 2012: 6,-41 + 2013: 8,-39 + 2014: 9,-38 + 2015: 9,-37 + 2016: 8,-40 + 2017: 4,-36 + 2018: 6,-33 + 2019: 5,-30 + 2020: 5,-27 + 2021: 5,-25 + 2022: 4,-23 + 2023: 5,-20 + 2024: 5,-18 + 2025: 8,-20 + 2026: 9,-22 + 2027: 8,-23 + 2028: 8,-28 + 2029: 17,-38 + 2030: 18,-37 + 2031: 18,-36 + 2032: 17,-36 + 2033: 13,-35 + 2034: 14,-37 + 2035: 12,-38 + 2036: 13,-40 + 2037: 12,-41 + 2038: 12,-42 + 2039: 13,-42 + 2040: 11,-40 + 2041: 17,-43 + 2042: 17,-44 + 2043: 18,-44 + 2044: 18,-44 + 2045: 18,-42 + 2046: 19,-41 + 2047: 18,-39 + 2048: 15,-36 + 2049: 4,-26 + 2050: 5,-24 + 2051: 5,-21 + 2052: 5,-19 + 2053: 6,-17 + 2054: 5,-9 + 2055: 6,-7 + 2056: 6,-5 + 2057: 5,-3 + 2058: 6,0 + 2059: 5,2 + 2060: 6,6 + 2061: 8,7 + 2062: 5,7 + 2063: 5,-1 + 2064: 16,-5 + 2065: 14,-4 + 2066: 13,-4 + 2067: 13,-3 + 2068: 12,1 + 2069: 12,2 + 2070: 13,3 + 2071: 14,4 + 2072: 14,7 + 2073: 14,8 + 2074: 15,8 + 2075: 15,14 + 2076: 14,15 + 2077: 14,16 + 2078: 14,7 + 2079: 15,5 + 2080: 13,3 + 2081: 11,1 + 2082: 11,0 + 2083: 12,-1 + 2084: 13,-2 + 2085: 13,-4 + 2086: 14,-5 + 2087: 16,-5 + 2088: 15,-9 + 2089: 14,-9 + 2090: 26,-11 + 2091: 28,-12 + 2092: 6,-36 + 2093: 5,-46 + 2094: 3,-46 + 2095: 0,-45 + 2096: 4,-48 + 2097: 4,-49 + 2098: 5,-50 + 2099: 5,-51 + 2100: 6,-51 + 2101: 6,-49 + 2102: 3,-48 + 2103: -3,-46 + 2104: -6,-45 + 2105: -8,-45 + 2106: -10,-46 + 2107: -13,-44 + 2108: -12,-48 + 2109: -10,-48 + 2110: -8,-48 + 2111: -12,-49 + 2112: -11,-52 + 2113: -12,-52 + 2114: -12,-55 + 2115: -12,-57 + 2116: -9,-57 + 2117: -6,-56 + 2118: -4,-55 + 2119: -3,-55 + 2120: -3,-56 + 2121: -6,-56 + 2122: -7,-60 + 2123: -7,-60 + 2124: -7,-63 + 2125: -6,-64 + 2126: -6,-62 + 2127: -6,-59 + 2128: -7,-71 + 2129: -6,-70 + 2130: -7,-75 + 2131: -6,-74 + 2132: -7,-76 + 2133: -7,-77 + 2134: -6,-78 + 2135: -5,-78 + 2136: -4,-77 + 2137: -2,-77 + 2138: 0,-77 + 2139: 0,-77 + 2140: -2,-78 + 2141: -3,-75 + 2142: -2,-71 + 2143: -3,-72 + 2144: -3,-73 + 2145: 1,-81 + 2146: 0,-82 + 2147: 1,-82 + 2148: -3,-77 + 2149: -22,-60 + 2150: -26,-60 + 2151: -30,-60 + 2152: -34,-60 + 2153: -37,-60 + 2154: -40,-58 + 2416: -7,-26 + 2417: -9,-25 + 2418: -9,-25 + 2419: -7,-26 + 2420: -12,-26 + 2421: -7,-25 + 2422: -6,-27 + 2731: -30,-27 + 2732: -30,-28 + - node: + cleanable: True + color: '#A4610696' + id: DirtLight + decals: + 1438: -32,12 + 1439: -36,0 + 1440: -37,-4 + 1441: -31,-3 + 1442: -32,0 + 1443: -27,-3 + 1444: -19,-2 + 1445: -31,-12 + 1446: -37,-13 + 1447: -46,-12 + 1448: -51,-13 + 1449: -58,-12 + 1450: -64,-14 + 1451: -60,-17 + 1452: -58,-14 + 1453: -52,-15 + 1454: -53,-19 + 1455: -51,-19 + 1456: -47,-16 + 1457: -38,-12 + 1458: -34,-13 + 1459: -34,-17 + 1460: -30,-16 + 1461: -29,-23 + 1462: -35,-23 + 1463: -39,-22 + 1464: -23,-23 + 1465: -19,-20 + 1466: -18,-20 + 1467: -24,-17 + 1468: -26,-16 + 1469: -23,-16 + 1470: -22,-17 + 1471: -24,-31 + 1472: -24,-33 + 1473: -26,-32 + 1474: -23,-34 + 1475: -20,-32 + 1476: -18,-32 + 1477: -16,-29 + 1478: -14,-24 + 1479: -15,-18 + 1480: -17,-14 + 1481: -15,-13 + 1482: -15,-8 + 1483: -15,-4 + 1484: -16,0 + 1485: -16,4 + 1486: -15,7 + 1487: -18,6 + 1488: -9,3 + 1489: -3,3 + 1490: 2,3 + 1491: -3,7 + 1492: -7,6 + 1493: -10,6 + 1494: 8,8 + 1495: 6,1 + 1496: 5,-4 + 1497: 6,-10 + 1498: 9,-11 + 1499: 15,-12 + 1500: 21,-13 + 1501: 15,-8 + 1502: 15,-4 + 1503: 12,-3 + 1504: 13,3 + 1505: 15,6 + 1506: 15,9 + 1507: 15,15 + 1508: 16,19 + 1509: 18,20 + 1510: 10,19 + 1511: 23,-12 + 1512: 26,-13 + 1513: 36,-11 + 1514: 40,-12 + 1515: 42,-12 + 1516: 43,-4 + 1517: 43,4 + 1518: 46,3 + 1519: 47,3 + 1520: 46,-7 + 1521: 47,-6 + 1522: 31,4 + 1523: 30,0 + 1524: 31,-4 + 1525: 30,-7 + 1526: 19,-17 + 1527: 19,-23 + 1528: 18,-22 + 1529: 15,-24 + 1530: 19,-25 + 1531: 8,-27 + 1532: 9,-20 + 1533: 6,-21 + 1534: 5,-16 + 1535: 1,-22 + 1536: -1,-23 + 1537: -3,-26 + 1538: -4,-25 + 1539: 0,-25 + 1540: 1,-25 + 1541: 6,-25 + 1542: 3,-29 + 1543: 5,-34 + 1544: 6,-36 + 1545: 4,-39 + 1546: 6,-40 + 1547: 4,-42 + 1548: 1,-38 + 1549: 1,-33 + 1550: 2,-34 + 1551: 8,-37 + 1552: 8,-39 + 1553: 12,-36 + 1554: 15,-36 + 1555: 16,-35 + 1556: 17,-38 + 1557: 18,-36 + 1558: 11,-40 + 1559: 14,-41 + 1560: 12,-42 + 1561: 18,-43 + 1562: 17,-41 + 1563: 18,-42 + 1564: 17,-44 + 1565: 18,-47 + 1566: 14,-48 + 1567: 10,-48 + 1568: 9,-46 + 1569: 10,-45 + 1570: 5,-51 + 1571: 2,-50 + 1572: 3,-49 + 1573: 6,-48 + 1574: -3,-45 + 1575: -8,-46 + 1576: -12,-45 + 1577: -17,-46 + 1578: -21,-45 + 1579: -25,-46 + 1580: -30,-45 + 1581: -34,-46 + 1582: -40,-45 + 1583: -44,-46 + 1584: -48,-45 + 1585: -55,-46 + 1586: -43,-41 + 1587: -44,-38 + 1588: -44,-34 + 1589: -43,-31 + 1590: -40,-36 + 1591: -48,-25 + 1592: -47,-25 + 1593: -52,-19 + 1594: -52,-16 + 1595: -47,-18 + 2703: -5,-11 + 2704: -1,-11 + 2705: -7,-14 + 2706: -13,-13 + 2707: -15,-14 + 2708: -33,-44 + 2709: -34,-44 + 2710: -33,-46 + 2711: -44,-44 + 2712: -43,-35 + 2713: -44,-32 + 2714: -44,-30 + 2733: -30,-26 + 2734: -30,-25 + - node: + cleanable: True + color: '#A461067F' + id: DirtMedium + decals: + 1864: -54,-33 + 1865: -53,-34 + - node: + cleanable: True + color: '#A4610696' + id: DirtMedium + decals: + 2715: -44,-30 + 2716: -50,-44 + 2717: -8,-49 + 2718: -8,-55 + 2719: -6,-62 + 2720: 0,-80 + 2721: 1,-82 + 2722: -26,-44 + 2723: -4,-46 + 2724: -1,-46 + 2725: -1,-47 + 2726: -12,-13 + 2727: -7,-13 + 2728: 7,7 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 1144: -61,-13 + - node: + color: '#9FED5896' + id: Flowerspv1 + decals: + 1049: -19.823679,-8.605797 + 1050: -19.903193,-7.095862 + 1051: -17.35877,-5.8044715 + 1052: -17.73646,-8.6654 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 1145: -60,-13 + - node: + color: '#9FED5896' + id: Flowerspv3 + decals: + 1045: -19.8038,-4.989902 + 1046: -17.776215,-4.8110943 + 1047: -18.710495,-6.2415576 + 1048: -17.93524,-7.4733458 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 1143: -62,-13 + - node: + color: '#9FED5896' + id: Flowersy1 + decals: + 1053: -18.750252,-7.572683 + 1054: -19.764044,-5.6455307 + 1055: -17.398527,-7.1355968 + 1056: -19.764044,-7.3541408 + 1057: -18.31293,-8.864074 + 1058: -17.537676,-5.16871 + - node: + color: '#9FED5896' + id: Grassa2 + decals: + 1137: -62,-13 + 1138: -60,-13 + 1139: -61,-13 + - node: + color: '#FFFFFFFF' + id: Grassb1 + decals: + 401: 18,19 + - node: + color: '#FFFFFFFF' + id: Grassb2 + decals: + 402: 18,18 + - node: + color: '#FFFFFFFF' + id: Grassb3 + decals: + 403: 19,18 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 404: 19,19 + - node: + color: '#9FED5896' + id: Grasse2 + decals: + 1088: -17.527288,-4.3816347 + 1089: -17.567047,-3.9445488 + 1090: -17.129723,-3.924681 + 1091: -17.427898,-5.3154097 + 1092: -18.819378,-4.083622 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + decals: + 53: -7,-79 + 54: -6,-79 + 55: -5,-79 + 56: -4,-79 + 57: -3,-79 + 70: -2,-79 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + decals: + 46: -8,-73 + 47: -8,-74 + 48: -8,-75 + 49: -8,-76 + 50: -8,-77 + 51: -8,-78 + 87: -8,-70 + 88: -8,-71 + 93: -8,-62 + 94: -8,-63 + 95: -8,-64 + 629: -8,-60 + 630: -8,-59 + - node: + color: '#D4D4D40C' + id: HalfTileOverlayGreyscale270 + decals: + 2839: -53,-44 + 2840: -53,-46 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 793: -35,-19 + 794: -35,-18 + 795: -35,-17 + 796: -35,-16 + 797: -35,-15 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 788: -33,-19 + 789: -33,-18 + 790: -33,-17 + 791: -33,-16 + 792: -33,-15 + - node: + color: '#D4D4D419' + id: HalfTileOverlayGreyscale90 + decals: + 2837: -53,-44 + 2838: -53,-46 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + decals: + 85: -5,-70 + 86: -5,-71 + 96: -5,-62 + 97: -5,-63 + 98: -5,-64 + 631: -5,-59 + 632: -5,-60 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1121: 18,-35 + 1122: 18,-39 + - node: + angle: 3.141592653589793 rad + color: '#334E6DC8' + id: LoadingAreaGreyscale + decals: + 1163: -5,-11 + - node: + color: '#334E6DC8' + id: LoadingAreaGreyscale + decals: + 1162: -1,-11 + - node: + color: '#EFB34196' + id: MiniTileCheckerAOverlay + decals: + 808: -23,-4 + 809: -22,-4 + 810: -23,-5 + 811: -22,-5 + 812: -23,-6 + 813: -22,-6 + 814: -23,-7 + 815: -22,-7 + - node: + color: '#52B4E9CB' + id: MiniTileCheckerAOverlay + decals: + 1266: -54,-16 + 1267: -53,-16 + 1268: -52,-16 + 1269: -51,-16 + 1270: -51,-17 + 1271: -52,-17 + 1272: -53,-17 + 1273: -54,-17 + 1274: -54,-18 + 1275: -53,-18 + 1276: -52,-18 + 1277: -51,-18 + 1278: -52,-19 + 1279: -53,-19 + 1280: -54,-19 + 1287: -51,-19 + - node: + color: '#334E6DC8' + id: MiniTileCheckerAOverlay + decals: + 2823: -57,-45 + 2824: -56,-45 + 2825: -55,-45 + 2826: -54,-45 + - node: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + decals: + 411: 10,9 + 412: 11,9 + 413: 12,9 + 414: 10,8 + 415: 11,8 + 416: 12,8 + 417: 10,7 + 418: 11,7 + 419: 12,7 + 420: 10,6 + 421: 11,6 + 422: 12,6 + 423: 16,1 + 424: 17,1 + 425: 16,0 + 426: 17,0 + 427: 16,-1 + 428: 17,-1 + 429: 16,-2 + 430: 17,-2 + - node: + color: '#D381C996' + id: MiniTileCheckerAOverlay + decals: + 1215: -3,-51 + 1216: -2,-51 + 1217: -3,-52 + 1218: -2,-52 + 1219: -3,-53 + 1220: -2,-53 + - node: + color: '#52B4E996' + id: MiniTileCheckerAOverlay + decals: + 653: -40,-18 + 654: -40,-19 + 655: -39,-18 + 656: -39,-19 + 657: -38,-18 + 658: -38,-19 + 659: -37,-18 + 660: -37,-19 + - node: + color: '#A4610696' + id: MiniTileCheckerBOverlay + decals: + 228: 8,-32 + 229: 9,-32 + 230: 10,-32 + 231: 8,-33 + 232: 9,-33 + 233: 10,-33 + 234: 8,-34 + 235: 9,-34 + 236: 10,-34 + - node: + color: '#FF9F4196' + id: OffsetCheckerBOverlay + decals: + 687: -25,-16 + 688: -25,-17 + 689: -24,-17 + 690: -23,-17 + 691: -23,-16 + 692: -24,-16 + - node: + color: '#334E6DC8' + id: OffsetCheckerBOverlay + decals: + 601: -9,8 + 602: -9,7 + 603: -8,7 + 604: -8,8 + 605: -6,8 + 606: -6,7 + 607: -5,8 + 608: -4,8 + 609: -4,7 + 610: -5,7 + 611: -2,8 + 612: -1,8 + 613: -2,7 + 614: -1,7 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 836: -39,-11 + 837: -38,-11 + 838: -37,-11 + 839: -36,-11 + 840: -35,-11 + 841: -34,-11 + 842: -33,-11 + 843: -32,-11 + 844: -31,-11 + 845: -30,-11 + 846: -29,-11 + 847: -28,-11 + 848: -27,-11 + 849: -26,-11 + 850: -25,-11 + 851: -24,-11 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + decals: + 156: -13,-49 + 157: -13,-48 + 158: -13,-47 + 165: -9,-48 + 166: -10,-48 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 316: 8,-11 + 323: 10,-7 + 324: 9,-7 + 325: 8,-7 + 326: 7,-7 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 516: -20,-14 + 517: -20,-15 + 518: -20,-16 + 519: -20,-17 + 525: -16,-15 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 311: 8,-40 + 312: 8,-39 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + decals: + 150: -8,-49 + 151: -9,-49 + 152: -10,-49 + 153: -11,-49 + 154: -12,-49 + 155: -13,-49 + 159: -8,-48 + 160: -8,-47 + 161: -12,-46 + 162: -11,-46 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 144: 6,-46 + 145: 5,-46 + 146: 4,-46 + 147: 3,-46 + 148: 2,-46 + 149: 1,-46 + 309: 6,-38 + 310: 6,-37 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 318: 6,-9 + 319: 10,-9 + 320: 10,-8 + 321: 10,-7 + 322: 10,-10 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 520: -20,-17 + 521: -19,-17 + 522: -18,-17 + 523: -17,-17 + 524: -18,-13 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 202: -22,-34 + 203: -23,-34 + 204: -24,-34 + 205: -25,-34 + 206: -25,-33 + 207: -25,-32 + 208: -25,-31 + 209: -25,-30 + 210: -25,-29 + 211: -25,-28 + 212: -26,-28 + 213: -27,-28 + 214: -27,-27 + 215: -27,-26 + 216: -27,-25 + 526: -16,-13 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 163: -10,-46 + 164: -9,-46 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 219: 7,-41 + 220: 8,-41 + 221: 9,-41 + 313: 8,-38 + 314: 8,-37 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 315: 8,-9 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 217: 8,-36 + 218: 7,-36 + 222: 9,-40 + 223: 9,-41 + 224: 9,-39 + 225: 9,-38 + 226: 9,-37 + 227: 9,-36 + 307: 6,-39 + 308: 6,-40 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 189: -24,-25 + 190: -25,-25 + 191: -26,-25 + 192: -27,-25 + 193: -24,-26 + 194: -24,-27 + 195: -24,-28 + 196: -24,-29 + 197: -24,-30 + 198: -23,-30 + 199: -23,-33 + 200: -22,-33 + 201: -22,-34 + 527: -18,-15 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 317: 6,-11 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 167: -11,-48 + 168: -12,-48 + - node: + color: '#9FED5866' + id: Rock05 + decals: + 1416: 3.0206888,6.2592106 + 1417: 3.9010134,6.64237 + 1418: 3.1768754,7.2951617 + 1419: 2.6941173,8.189201 + 1420: 3.801622,8.04729 + 1421: 2.9212978,7.2667794 + - node: + color: '#9FED5896' + id: Rock05 + decals: + 1069: -19.386356,-8.486591 + 1070: -17.756336,-8.32765 + 1071: -17.875607,-5.3872523 + 1072: -19.744167,-4.4932137 + 1073: -19.823679,-6.2018223 + 1074: -19.505627,-7.453478 + 1075: -18.591225,-7.4932137 + 1076: -17.776215,-7.572683 + 1077: -20.082096,-8.844207 + 1078: -17.815971,-5.943545 + 1079: -19.863436,-5.903809 + 1080: -17.080473,-7.791227 + 1081: -17.080473,-8.963412 + 1082: -19.028547,-9.122354 + 1083: -20.241123,-6.5594387 + 1084: -20.121855,-3.9766572 + 1085: -18.929155,-3.8773198 + 1086: -17.02084,-5.1885777 + 1087: -18.8894,-5.1289754 + - node: + color: '#FFFFFFFF' + id: Rust + decals: + 2802: -9,-35 + 2803: -8,-35 + 2804: -8,-34 + 2805: -7,-34 + 2806: -6,-34 + 2807: -5,-34 + 2808: -4,-34 + 2809: -4,-35 + 2810: -3,-35 + 2811: -2,-35 + - node: + color: '#52B4E9FF' + id: SpaceStationSign1 + decals: + 1396: 13,-12 + - node: + color: '#52B4E9FF' + id: SpaceStationSign2 + decals: + 1397: 14,-12 + - node: + color: '#52B4E9FF' + id: SpaceStationSign3 + decals: + 1398: 15,-12 + - node: + color: '#52B4E9FF' + id: SpaceStationSign4 + decals: + 1399: 16,-12 + - node: + color: '#52B4E9FF' + id: SpaceStationSign5 + decals: + 1400: 17,-12 + - node: + color: '#52B4E9FF' + id: SpaceStationSign6 + decals: + 1401: 18,-12 + - node: + color: '#52B4E9FF' + id: SpaceStationSign7 + decals: + 1402: 19,-12 + - node: + color: '#EFB34196' + id: StandClear + decals: + 44: 18,-40 + 45: 17,-40 + - node: + color: '#DE3A3A96' + id: StandClearGreyscale + decals: + 0: -14,4 + 1: -14,3 + 2: -11,4 + 3: -11,3 + 4: 1,4 + 5: 1,3 + 6: 4,4 + 7: 4,3 + 8: -6,5 + 9: -5,5 + 10: -4,5 + 11: 11,-7 + 12: 11,-9 + 13: 13,-7 + 14: 13,-9 + 15: 15,10 + 16: 14,10 + 17: 14,13 + 18: 15,13 + 19: 15,17 + 20: 14,17 + - node: + color: '#D381C996' + id: StandClearGreyscale + decals: + 42: -8,-54 + 43: -8,-50 + 81: -7,-69 + 82: -6,-69 + 83: -7,-72 + 84: -6,-72 + 125: 0,-79 + 126: 1,-79 + 127: -1,-81 + 128: -1,-82 + 129: -1,-73 + 130: -1,-71 + 1109: -7,-83 + 1110: -3,-83 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 52: -8,-79 + - node: + color: '#DE3A3A96' + id: WarnBox + decals: + 1359: -33,7 + - node: + color: '#52B4E996' + id: WarnBoxGreyscale + decals: + 1015: -31,-10 + 1016: -30,-10 + - node: + color: '#DE3A3A96' + id: WarnBoxGreyscale + decals: + 1017: -26,-10 + 1018: -25,-10 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 75: -6,-73 + 2780: -10,-35 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 1187: -7,-51 + 2778: -1,-35 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 2779: -10,-36 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 1188: -7,-53 + 2777: -1,-36 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 105: -6,-77 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 108: -3,-77 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 857: -34,-8 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 856: -34,-8 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 72: -6,-74 + 73: -6,-75 + 74: -6,-76 + 119: -2,-71 + 120: -2,-73 + 123: 1,-73 + 124: 1,-71 + 855: -34,-9 + 1392: -13,4 + 1393: -13,3 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 77: -7,-71 + 78: -6,-71 + 113: 0,-78 + 114: 1,-78 + 637: -7,-57 + 638: -6,-57 + 639: -7,-60 + 640: -6,-60 + 641: -7,-64 + 642: -6,-64 + 852: -35,-8 + 853: -33,-8 + 1004: -16,-50 + 1367: 17,5 + 1368: 18,5 + 1369: 19,5 + 2835: -58,-46 + 2836: -57,-46 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 109: -3,-76 + 110: -3,-75 + 111: -3,-74 + 112: -3,-73 + 117: 0,-81 + 118: 0,-82 + 121: 0,-73 + 122: 0,-71 + 854: -34,-9 + 1189: -7,-52 + 1394: 3,4 + 1395: 3,3 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 76: -7,-73 + 79: -7,-70 + 80: -6,-70 + 106: -5,-77 + 107: -4,-77 + 115: 0,-80 + 116: 1,-80 + 643: -7,-62 + 644: -6,-62 + 645: -7,-59 + 646: -6,-59 + 956: -8,-55 + 957: -5,-55 + 1364: 17,7 + 1365: 18,7 + 1366: 19,7 + 2774: -12,-75 + 2775: -11,-75 + 2776: -10,-75 + 2833: -57,-44 + 2834: -58,-44 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 40: -2,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 41: -2,-2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 38: -4,-4 + 1351: -2,-21 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 39: -4,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 28: -4,0 + 29: -4,-1 + 30: -4,-2 + 31: -4,-3 + 131: 4,-15 + 132: 4,-16 + 133: 4,-17 + 134: 4,-18 + 1352: -2,-20 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 32: -1,-1 + 33: 0,-1 + 34: -2,-4 + 35: -3,-4 + 36: -1,-4 + 37: 0,-4 + 1347: -1,-21 + 1348: 0,-21 + 1349: 1,-21 + 1350: 2,-21 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 21: -3,1 + 22: -2,1 + 23: -1,1 + 24: 0,1 + 25: 1,1 + 26: -1,-2 + 27: 0,-2 + 1193: -35,-47 + 1194: -33,-47 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 1190: -31,-53 + 1191: -31,-52 + 1192: -31,-51 + - node: + color: '#9FED5896' + id: grasssnow04 + decals: + 1412: 3.077484,6.3869305 + - node: + color: '#9FED5896' + id: grasssnow07 + decals: + 1059: -19.505627,-6.4402337 + 1060: -17.796093,-5.8442063 + 1061: -19.227331,-4.393875 + 1062: -18.949036,-8.109108 + 1063: -17.577433,-8.864074 + 1064: -19.704409,-8.943545 + 1065: -17.537676,-6.360763 + 1066: -17.756336,-7.989902 + 1067: -19.028547,-5.16871 + 1068: -19.167696,-6.9567895 + 1093: -17.785707,-4.560443 + 1094: -19.13743,-8.514086 + 1095: -17.547167,-9.030642 + 1096: -17.646559,-5.9313035 + 1410: 2.9070985,8.075672 + 1411: 3.4182546,7.025531 + - node: + color: '#9FED5896' + id: grasssnow08 + decals: + 1413: 3.6454349,6.571415 + 1414: 3.7732244,7.9479523 + - node: + color: '#9FED5896' + id: grasssnowb1 + decals: + 1415: 3.489249,6.2592106 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + 0,-2: + 0: 65533 + 1: 2 + 0,-1: + 0: 65535 + -4,-4: + 0: 65535 + -4,-3: + 0: 65535 + -4,-2: + 0: 65535 + -4,-1: + 0: 32767 + 1: 32768 + -3,-4: + 0: 65535 + -3,-3: + 0: 65535 + -3,-2: + 0: 65521 + 1: 14 + -3,-1: + 0: 32767 + 1: 32768 + -2,-4: + 0: 65535 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 63999 + 1: 1536 + 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: 62975 + 1: 2560 + 3,-4: + 0: 65535 + 3,-3: + 0: 65535 + 3,-2: + 0: 65535 + 3,-1: + 0: 65535 + -4,0: + 0: 65527 + 1: 8 + -4,1: + 0: 65535 + -4,2: + 0: 65535 + -4,3: + 0: 65535 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 65535 + -3,3: + 0: 32767 + -2,0: + 0: 65535 + -2,1: + 0: 65279 + 1: 256 + -2,2: + 0: 65535 + -2,3: + 0: 4095 + -1,0: + 0: 65535 + -1,1: + 0: 64511 + 1: 1024 + -1,2: + 0: 65535 + -1,3: + 0: 255 + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 255 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 2255 + 2,0: + 0: 65535 + 2,1: + 0: 65525 + 1: 10 + 2,2: + 0: 65471 + 1: 64 + 2,3: + 0: 2295 + 1: 8 + 3,0: + 0: 65535 + 3,1: + 0: 65535 + 3,2: + 0: 65535 + 3,3: + 0: 65533 + 1: 2 + 4,0: + 0: 65503 + 1: 32 + 4,1: + 0: 65535 + 4,2: + 0: 65535 + 4,3: + 1: 13 + 0: 14322 + 5,0: + 0: 32767 + 1: 32768 + 5,1: + 0: 65535 + 5,2: + 0: 65535 + 5,3: + 0: 3327 + 6,0: + 0: 65535 + 6,1: + 0: 61437 + 1: 4098 + 6,2: + 0: 65487 + 1: 48 + 6,3: + 0: 319 + 7,0: + 1: 1 + 0: 65534 + 7,1: + 0: 65535 + 7,2: + 0: 65535 + 7,3: + 0: 3 + 4,-4: + 0: 65535 + 4,-3: + 0: 8191 + 1: 57344 + 4,-2: + 0: 32767 + 1: 32768 + 4,-1: + 0: 65527 + 1: 8 + 5,-4: + 1: 1 + 0: 65534 + 5,-3: + 0: 62463 + 1: 3072 + 5,-2: + 0: 65521 + 1: 14 + 5,-1: + 0: 65535 + 6,-4: + 0: 65535 + 6,-3: + 0: 65535 + 6,-2: + 0: 65535 + 6,-1: + 0: 65535 + 7,-4: + 0: 65296 + 7,-3: + 0: 65535 + 7,-2: + 0: 65535 + 7,-1: + 0: 65535 + -8,0: + 0: 65535 + -8,1: + 0: 57343 + 1: 8192 + -8,2: + 0: 65535 + -8,3: + 0: 65535 + -7,0: + 0: 65535 + -7,1: + 0: 65535 + -7,2: + 0: 65535 + -7,3: + 0: 65535 + -6,0: + 0: 65503 + 1: 32 + -6,1: + 0: 16383 + 1: 49152 + -6,2: + 0: 65535 + -6,3: + 0: 65535 + -5,0: + 0: 65503 + 1: 32 + -5,1: + 0: 65535 + -5,2: + 0: 65535 + -5,3: + 0: 65535 + -8,-4: + 0: 65535 + -8,-3: + 0: 65535 + -8,-2: + 0: 65535 + -8,-1: + 0: 65535 + -7,-4: + 0: 65535 + -7,-3: + 0: 65535 + -7,-2: + 0: 65535 + -7,-1: + 0: 65535 + -6,-4: + 0: 65535 + -6,-3: + 0: 65535 + -6,-2: + 0: 65535 + -6,-1: + 0: 65531 + 1: 4 + -5,-4: + 0: 65535 + -5,-3: + 0: 65535 + -5,-2: + 0: 65535 + -5,-1: + 0: 65535 + -8,-8: + 0: 63487 + 1: 2048 + -8,-7: + 0: 48059 + 1: 17476 + -8,-6: + 0: 65535 + -8,-5: + 0: 65535 + -7,-8: + 0: 65535 + -7,-7: + 0: 65535 + -7,-6: + 0: 65535 + -7,-5: + 0: 65439 + 1: 96 + -6,-8: + 0: 65535 + -6,-7: + 0: 61183 + 1: 4352 + -6,-6: + 0: 65535 + -6,-5: + 0: 65535 + -5,-8: + 0: 65535 + -5,-7: + 0: 64767 + 1: 768 + -5,-6: + 0: 65535 + -5,-5: + 0: 65535 + -4,-8: + 0: 65535 + -4,-7: + 0: 65535 + -4,-6: + 0: 65535 + -4,-5: + 0: 65535 + -3,-8: + 0: 32766 + -3,-7: + 0: 65535 + -3,-6: + 0: 64447 + 1: 1088 + -3,-5: + 0: 65535 + -2,-8: + 0: 53247 + -2,-7: + 0: 65535 + -2,-6: + 0: 65535 + -2,-5: + 0: 48063 + 1: 17472 + -1,-8: + 0: 36863 + -1,-7: + 0: 65535 + -1,-6: + 0: 65535 + -1,-5: + 0: 57343 + 1: 8192 + 0,-8: + 0: 65535 + 0,-7: + 0: 65535 + 0,-6: + 0: 65535 + 0,-5: + 0: 65535 + 1,-8: + 0: 65535 + 1,-7: + 0: 65535 + 1,-6: + 0: 65535 + 1,-5: + 0: 65535 + 2,-8: + 1: 57345 + 0: 8190 + 2,-7: + 0: 65535 + 2,-6: + 0: 65535 + 2,-5: + 0: 65535 + 3,-8: + 0: 65535 + 3,-7: + 0: 65535 + 3,-6: + 0: 65535 + 3,-5: + 0: 65535 + 4,-8: + 0: 65535 + 4,-7: + 0: 65535 + 4,-6: + 0: 65535 + 4,-5: + 0: 65535 + 5,-8: + 0: 30591 + 5,-7: + 0: 65399 + 5,-6: + 0: 49151 + 1: 16384 + 5,-5: + 0: 61167 + 1: 4368 + 6,-7: + 0: 65280 + 6,-6: + 0: 65535 + 6,-5: + 0: 12671 + 7,-7: + 0: 65422 + 7,-6: + 0: 52428 + 7,-5: + 0: 52428 + 1,6: + 0: 36040 + 1,7: + 0: 8 + 2,5: + 0: 65535 + 2,6: + 0: 65535 + 2,7: + 0: 52991 + 2,4: + 0: 61170 + 3,4: + 0: 65023 + 1: 512 + 3,5: + 0: 65535 + 3,6: + 0: 32767 + 3,7: + 0: 30583 + 8,0: + 0: 56797 + 8,1: + 0: 49087 + 1: 16448 + 8,2: + 0: 56799 + 9,0: + 0: 65535 + 9,1: + 0: 65535 + 9,2: + 0: 65535 + 10,1: + 0: 65535 + 10,2: + 0: 12015 + 10,0: + 0: 61166 + 11,0: + 0: 65535 + 11,1: + 0: 16383 + 11,2: + 0: 4881 + 8,-4: + 0: 65280 + 8,-3: + 0: 8191 + 8,-2: + 0: 49113 + 1: 16384 + 8,-1: + 0: 57279 + 1: 64 + 9,-4: + 0: 65280 + 9,-3: + 0: 4095 + 9,-2: + 0: 65527 + 9,-1: + 0: 65535 + 10,-4: + 0: 65280 + 10,-3: + 0: 61439 + 10,-2: + 0: 65518 + 10,-1: + 0: 61439 + 11,-4: + 0: 4352 + 11,-3: + 0: 65329 + 11,-2: + 0: 65535 + 11,-1: + 0: 63487 + 12,0: + 0: 4369 + 12,1: + 0: 273 + 12,-3: + 0: 4352 + 12,-2: + 0: 4369 + 12,-1: + 0: 4113 + 8,-7: + 0: 65423 + 8,-6: + 0: 56797 + 8,-5: + 0: 56797 + 9,-7: + 0: 65423 + 9,-6: + 0: 56797 + 9,-5: + 0: 56797 + 10,-7: + 0: 65423 + 10,-6: + 0: 56797 + 10,-5: + 0: 56797 + 11,-7: + 0: 30019 + 11,-6: + 0: 21845 + 11,-5: + 0: 21845 + 4,4: + 0: 65523 + 4,5: + 0: 65535 + 4,6: + 0: 65535 + 4,7: + 0: 36046 + 5,4: + 0: 4401 + 5,5: + 0: 13107 + 5,6: + 0: 14199 + 5,7: + 0: 4371 + -4,-12: + 0: 65533 + 1: 2 + -4,-11: + 0: 65535 + -4,-10: + 0: 65535 + -4,-9: + 0: 65535 + -3,-12: + 0: 65535 + -3,-11: + 0: 63487 + -3,-10: + 0: 65263 + -3,-9: + 0: 61439 + -2,-12: + 0: 65535 + -2,-11: + 0: 64767 + -2,-10: + 0: 65535 + -2,-9: + 0: 65535 + -1,-12: + 0: 65535 + -1,-11: + 0: 63743 + -1,-10: + 0: 65535 + -1,-9: + 0: 65535 + 0,-12: + 0: 65535 + 0,-11: + 0: 65535 + 0,-10: + 0: 65535 + 0,-9: + 0: 65535 + 1,-12: + 0: 65535 + 1,-11: + 0: 65535 + 1,-10: + 0: 65535 + 1,-9: + 0: 65535 + 2,-12: + 0: 65279 + 1: 256 + 2,-11: + 0: 65535 + 2,-10: + 0: 65535 + 2,-9: + 0: 65535 + 3,-12: + 0: 63487 + 1: 2048 + 3,-11: + 0: 65535 + 3,-10: + 0: 65535 + 3,-9: + 0: 65535 + -8,-12: + 0: 65535 + -8,-11: + 0: 65535 + -8,-10: + 0: 65535 + -8,-9: + 0: 65535 + -7,-12: + 0: 65535 + -7,-11: + 0: 62463 + 1: 3072 + -7,-10: + 0: 65535 + -7,-9: + 0: 65535 + -6,-12: + 0: 65487 + 1: 48 + -6,-11: + 0: 65279 + 1: 256 + -6,-10: + 0: 65535 + -6,-9: + 0: 65535 + -5,-12: + 0: 65535 + -5,-11: + 0: 65535 + -5,-10: + 0: 65535 + -5,-9: + 0: 61327 + 1: 4208 + 4,-12: + 0: 65279 + 1: 256 + 4,-11: + 0: 65263 + 1: 272 + 4,-10: + 0: 65535 + 4,-9: + 0: 57343 + 1: 8192 + 5,-12: + 0: 30583 + 5,-11: + 0: 65399 + 5,-10: + 0: 65535 + 5,-9: + 0: 65535 + 0,-16: + 0: 65527 + 0,-15: + 0: 65535 + 0,-14: + 0: 65535 + 0,-13: + 0: 64447 + 1: 1088 + 1,-16: + 0: 65520 + 1,-15: + 0: 65535 + 1,-14: + 0: 65535 + 1,-13: + 0: 65535 + 2,-16: + 0: 29456 + 2,-15: + 0: 30583 + 2,-14: + 0: 65527 + 2,-13: + 0: 65535 + 3,-14: + 0: 65280 + 3,-13: + 0: 65535 + 4,-14: + 0: 61440 + 4,-13: + 0: 65535 + 5,-13: + 0: 13107 + -4,-16: + 0: 65535 + -4,-15: + 0: 65535 + -4,-14: + 0: 65535 + -4,-13: + 0: 65535 + -3,-16: + 0: 65535 + -3,-15: + 0: 40959 + 1: 24576 + -3,-14: + 0: 65535 + -3,-13: + 0: 65535 + -2,-16: + 0: 65399 + 1: 136 + -2,-15: + 0: 65535 + -2,-14: + 0: 57343 + 1: 8192 + -2,-13: + 0: 65501 + 1: 34 + -1,-16: + 0: 65535 + -1,-15: + 0: 65529 + 1: 6 + -1,-14: + 0: 65535 + -1,-13: + 0: 8159 + 1: 57376 + -8,-16: + 0: 65535 + -8,-15: + 0: 65343 + 1: 192 + -8,-14: + 0: 65403 + 1: 132 + -8,-13: + 0: 65535 + -7,-16: + 0: 63487 + 1: 2048 + -7,-15: + 0: 65535 + -7,-14: + 0: 65535 + -7,-13: + 0: 65535 + -6,-16: + 0: 65535 + -6,-15: + 0: 65343 + 1: 192 + -6,-14: + 0: 65535 + -6,-13: + 0: 36863 + 1: 28672 + -5,-16: + 0: 65535 + -5,-15: + 0: 65535 + -5,-14: + 0: 65535 + -5,-13: + 0: 65535 + -4,-20: + 0: 65228 + -4,-19: + 0: 61439 + -4,-18: + 0: 140 + -3,-20: + 0: 65535 + -3,-19: + 0: 65535 + -3,-18: + 0: 52991 + -3,-17: + 0: 60620 + -2,-20: + 0: 65535 + -2,-19: + 0: 65535 + -2,-18: + 0: 65535 + -2,-17: + 0: 65535 + -1,-20: + 0: 65535 + -1,-19: + 0: 65535 + -1,-18: + 0: 65535 + -1,-17: + 0: 62263 + 0,-20: + 0: 30583 + 0,-19: + 0: 30583 + 0,-18: + 0: 30583 + -4,-21: + 0: 32768 + -3,-21: + 0: 65516 + -3,-22: + 0: 32768 + -2,-22: + 0: 65024 + -2,-21: + 0: 65535 + -1,-22: + 0: 62208 + -1,-21: + 0: 65535 + 0,-21: + 0: 30579 + -12,-8: + 0: 65535 + -12,-7: + 0: 65535 + -12,-6: + 0: 65535 + -12,-5: + 0: 65535 + -11,-8: + 0: 65535 + -11,-7: + 0: 65471 + 1: 64 + -11,-6: + 0: 65535 + -11,-5: + 1: 8705 + 0: 56830 + -10,-8: + 0: 65535 + -10,-7: + 0: 65531 + 1: 4 + -10,-6: + 0: 65535 + -10,-5: + 0: 63487 + 1: 2048 + -9,-8: + 0: 65535 + -9,-7: + 0: 30583 + 1: 34952 + -9,-6: + 0: 65535 + -9,-5: + 0: 63487 + 1: 2048 + -12,-4: + 0: 65535 + -12,-3: + 0: 65535 + -12,-2: + 0: 65535 + -12,-1: + 0: 61439 + -11,-4: + 0: 65533 + 1: 2 + -11,-3: + 0: 65535 + -11,-2: + 0: 30591 + 1: 34944 + -11,-1: + 0: 65407 + 1: 128 + -10,-4: + 0: 65535 + -10,-3: + 0: 57343 + 1: 8192 + -10,-2: + 0: 32221 + 1: 33314 + -10,-1: + 0: 65535 + -9,-4: + 0: 65535 + -9,-3: + 0: 24575 + 1: 40960 + -9,-2: + 0: 65535 + -9,-1: + 0: 65535 + -12,1: + 0: 65262 + -12,2: + 0: 32639 + 2: 128 + 3: 32768 + -12,3: + 0: 32639 + 4: 32896 + -12,0: + 0: 61166 + -11,0: + 0: 32767 + 1: 32768 + -11,1: + 0: 65535 + -11,2: + 0: 53199 + 2: 48 + 3: 12288 + -11,3: + 0: 53199 + 4: 12336 + -10,0: + 0: 65533 + 1: 2 + -10,1: + 0: 65535 + -10,2: + 0: 65535 + -10,3: + 0: 65535 + -9,0: + 0: 30175 + 1: 35360 + -9,1: + 0: 65527 + 1: 8 + -9,2: + 0: 65535 + -9,3: + 0: 65535 + -12,-12: + 0: 65535 + -12,-11: + 0: 65535 + -12,-10: + 0: 65471 + 1: 64 + -12,-9: + 0: 65535 + -11,-12: + 0: 65535 + -11,-11: + 0: 65535 + -11,-10: + 0: 65535 + -11,-9: + 0: 63487 + 1: 2048 + -10,-12: + 0: 65535 + -10,-11: + 0: 65535 + -10,-10: + 0: 65535 + -10,-9: + 0: 65535 + -9,-12: + 0: 65535 + -9,-11: + 0: 65535 + -9,-10: + 0: 65535 + -9,-9: + 0: 65535 + -12,-15: + 0: 65528 + -12,-14: + 0: 65535 + -12,-13: + 0: 65535 + -11,-15: + 0: 65535 + -11,-14: + 0: 65535 + -11,-13: + 0: 64511 + 1: 1024 + -11,-16: + 0: 61064 + -10,-16: + 0: 65535 + -10,-15: + 0: 65439 + 1: 96 + -10,-14: + 0: 65535 + -10,-13: + 0: 48063 + 1: 17472 + -9,-16: + 0: 65535 + -9,-15: + 0: 65535 + -9,-14: + 0: 65535 + -9,-13: + 0: 65535 + -16,-12: + 0: 65521 + 4: 14 + -16,-11: + 0: 35327 + 4: 17920 + -16,-10: + 0: 64717 + -16,-9: + 0: 65535 + -15,-12: + 0: 65535 + -15,-11: + 0: 65535 + -15,-10: + 0: 65535 + -15,-9: + 0: 65535 + -14,-12: + 0: 65535 + -14,-11: + 0: 65535 + -14,-10: + 0: 65535 + -14,-9: + 0: 65535 + -13,-12: + 0: 65535 + -13,-11: + 0: 57087 + 1: 8448 + -13,-10: + 0: 65533 + 1: 2 + -13,-9: + 0: 65535 + -16,-8: + 0: 65535 + -16,-7: + 0: 65535 + -16,-6: + 0: 65535 + -16,-5: + 0: 65503 + 1: 32 + -15,-8: + 0: 65535 + -15,-7: + 0: 65535 + -15,-6: + 0: 65535 + -15,-5: + 0: 65535 + -14,-8: + 0: 32639 + 1: 32896 + -14,-7: + 0: 65535 + -14,-6: + 0: 65423 + 1: 112 + -14,-5: + 0: 64989 + 1: 546 + -13,-8: + 0: 61423 + 1: 4112 + -13,-7: + 0: 65535 + -13,-6: + 0: 65535 + -13,-5: + 1: 1091 + 0: 64444 + -16,-4: + 0: 65535 + -16,-3: + 0: 65535 + -16,-2: + 0: 255 + -15,-4: + 0: 63359 + 1: 2176 + -15,-3: + 0: 65535 + -15,-2: + 0: 255 + -14,-4: + 0: 65535 + -14,-3: + 0: 65535 + -14,-2: + 0: 255 + -13,-4: + 0: 65535 + -13,-3: + 0: 65535 + -13,-2: + 0: 2303 + -12,4: + 0: 32639 + 5: 128 + 4: 32768 + -12,5: + 0: 65535 + -12,6: + 0: 61166 + -12,7: + 0: 206 + -11,4: + 0: 53199 + 5: 48 + 4: 12288 + -11,5: + 0: 65535 + -11,6: + 0: 65535 + -11,7: + 0: 3839 + -10,4: + 0: 65535 + -10,5: + 0: 65535 + -10,6: + 0: 65535 + -10,7: + 0: 61439 + -9,4: + 0: 65535 + -9,5: + 0: 65535 + -9,6: + 0: 63743 + 4: 1792 + -9,7: + 0: 65535 + -8,4: + 0: 65535 + -8,5: + 0: 65535 + -8,6: + 0: 65535 + -8,7: + 0: 32767 + -7,4: + 0: 63487 + 1: 2048 + -7,5: + 0: 65535 + -7,6: + 0: 65535 + -7,7: + 0: 1023 + -6,4: + 0: 65535 + -6,5: + 0: 32767 + -6,6: + 0: 30583 + -6,7: + 0: 119 + -5,4: + 0: 4927 + -5,5: + 0: 1 + -15,-13: + 0: 65260 + 4: 258 + -15,-14: + 0: 51336 + -14,-14: + 0: 65535 + -14,-13: + 0: 65535 + -14,-15: + 0: 60928 + -13,-15: + 0: 32752 + 1: 32768 + -13,-14: + 0: 65535 + -13,-13: + 0: 65407 + 1: 128 + -19,-4: + 0: 52680 + -19,-3: + 0: 35020 + -18,-4: + 0: 63487 + 1: 2048 + -18,-3: + 0: 65535 + -18,-2: + 0: 207 + -17,-4: + 0: 65535 + -17,-3: + 0: 65535 + -17,-2: + 0: 255 + -19,-5: + 0: 32768 + -18,-5: + 0: 65534 + -18,-6: + 0: 61167 + -18,-8: + 0: 50252 + -18,-7: + 0: 65092 + -17,-8: + 0: 65485 + -17,-7: + 0: 65535 + -17,-6: + 0: 65535 + -17,-5: + 0: 61951 + 1: 3584 + -13,3: + 0: 52424 + -13,2: + 0: 34816 + -13,4: + 0: 36044 + -13,5: + 0: 136 + -9,8: + 0: 15 + -8,8: + 0: 1 + 5,8: + 0: 1 + 2,8: + 0: 2252 + 3,8: + 0: 13175 + 3,9: + 0: 2 + -8,-20: + 0: 65520 + -8,-19: + 0: 65520 + -8,-18: + 0: 65520 + -8,-17: + 0: 49152 + -7,-20: + 0: 65528 + -7,-19: + 0: 65528 + -7,-18: + 0: 65528 + -7,-17: + 0: 64648 + -6,-20: + 0: 13243 + -6,-19: + 0: 13107 + -6,-18: + 0: 13107 + -6,-17: + 0: 63283 + -5,-17: + 0: 61440 + -20,-12: + 0: 65535 + -20,-11: + 0: 65535 + -19,-12: + 0: 65523 + -19,-11: + 0: 13311 + -18,-12: + 0: 65527 + -18,-11: + 0: 10239 + -17,-12: + 0: 65532 + -17,-11: + 0: 36095 + -17,-9: + 0: 51339 + -22,-12: + 0: 65532 + -22,-11: + 0: 52479 + -21,-12: + 0: 65535 + -21,-11: + 0: 65535 + -8,-22: + 0: 61440 + -8,-21: + 0: 65520 + -7,-22: + 0: 13024 + -7,-21: + 0: 65528 + -6,-22: + 0: 39152 + -6,-21: + 0: 64507 + -9,-20: + 0: 60130 + -9,-19: + 0: 60130 + -9,-18: + 0: 60130 + -9,-17: + 0: 34 + -9,-22: + 0: 57344 + -9,-21: + 0: 60130 + 1,5: + 0: 32768 + -20,-10: + 0: 32767 + -20,-9: + 0: 57347 + -19,-10: + 0: 819 + -22,-10: + 0: 2188 + -21,-10: + 0: 53247 + -21,-9: + 0: 62008 + -20,-14: + 0: 29440 + -20,-13: + 0: 65535 + -19,-13: + 0: 13107 + -22,-13: + 0: 52360 + -21,-13: + 0: 65535 + -21,-14: + 0: 51200 + -10,8: + 0: 8 + -5,6: + 0: 65280 + -5,7: + 0: 65311 + -20,-4: + 0: 4014 + -20,-7: + 0: 65262 + -20,-6: + 0: 61167 + -20,-8: + 0: 61166 + -20,-5: + 0: 61166 + -19,-7: + 0: 65262 + -19,-6: + 0: 15 + -19,-8: + 0: 61166 + -19,-9: + 0: 57344 + -22,-9: + 0: 60144 + -22,-7: + 0: 62702 + -22,-6: + 0: 61164 + -22,-8: + 0: 61166 + -22,-5: + 0: 61166 + -21,-7: + 0: 65262 + -21,-6: + 0: 61167 + -21,-8: + 0: 61166 + -21,-5: + 0: 61166 + -22,-4: + 0: 4014 + -21,-4: + 0: 4015 + -4,6: + 0: 65484 + -4,7: + 0: 65487 + -4,4: + 0: 52943 + -4,5: + 0: 52428 + -3,4: + 0: 65280 + -3,5: + 0: 65295 + -3,6: + 0: 65295 + -3,7: + 0: 65295 + -2,4: + 0: 65408 + -2,5: + 0: 65423 + -2,6: + 0: 65423 + -2,7: + 0: 65455 + -16,-14: + 0: 256 + -16,-13: + 0: 256 + 4: 32768 + -18,-10: + 0: 8751 + -18,-9: + 0: 15 + -17,-10: + 0: 15 + -18,-14: + 0: 12032 + -18,-13: + 0: 12066 + -17,-14: + 0: 36608 + -17,-13: + 0: 36744 + -6,8: + 0: 19520 + -6,9: + 0: 3148 + -5,8: + 0: 65295 + -5,9: + 0: 3855 + -23,-9: + 0: 34944 + -23,-7: + 0: 41704 + -23,-6: + 0: 35042 + -23,-8: + 0: 34952 + -23,-5: + 0: 34952 + -23,-4: + 0: 2184 + -4,8: + 0: 65359 + -4,9: + 0: 5455 + -4,10: + 0: 15 + -3,8: + 0: 65295 + -3,9: + 0: 7951 + -3,10: + 0: 1 + -2,8: + 0: 65423 + -2,9: + 0: 3983 + -1,4: + 0: 8992 + -1,5: + 0: 8739 + -1,6: + 0: 8995 + -1,7: + 0: 8995 + -1,8: + 0: 8995 + -1,9: + 0: 803 + 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: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - id: Moose + type: BecomesStation + - type: RadiationGridResistance + - nextShake: 0 + shakeTimes: 10 + type: GravityShake + - type: GasTileOverlay + - nextUpdate: 0 + type: SpreaderGrid + - uid: 10465 + components: + - type: MetaData + - pos: -139.89185,-116.9631 + parent: 5 + type: Transform + - chunks: + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAABbAAAAWwAAAFsAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAWwAAAFsAAABbAAAAWwAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + type: MapGrid + - type: Broadphase + - angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + + - type: OccluderTree + - type: Shuttle + - nextUpdate: 0.45 + type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Remains + decals: + 0: 8.497086,-4.8336945 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 52428 + 0,-4: + 0: 61440 + 0,-3: + 0: 65535 + 0,-1: + 0: 65535 + -1,-4: + 0: 49152 + -1,-3: + 0: 52428 + -1,-2: + 0: 52428 + 0,-2: + 0: 65535 + 1,-4: + 0: 61440 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 61440 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-4: + 0: 4096 + 3,-3: + 0: 4369 + 3,-2: + 0: 4369 + 3,-1: + 0: 4369 + 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: RadiationGridResistance + - type: GasTileOverlay + - nextUpdate: 0 + type: SpreaderGrid + - uid: 13645 + components: + - type: MetaData + - pos: 139.06548,142.73047 + parent: 5 + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAA== + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAF4AAAAEAAAAXgAAAAQAAABeAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 0,0: + ind: 0,0 + tiles: XgAAAEEAAABeAAAAXgAAAF4AAABBAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABBAAAAPwAAAEEAAAA/AAAAQQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAQQAAAD8AAABBAAAAPwAAAEEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAQAAAA/AAAAQQAAAD8AAABBAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAQQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + type: MapGrid + - type: Broadphase + - angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + + - type: OccluderTree + - type: Shuttle + - nextUpdate: 0.45 + type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: [] + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 59392 + 0,-1: + 0: 65280 + 1,-1: + 0: 28928 + 1,0: + 0: 30583 + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 16383 + 1,1: + 0: 30583 + 1,2: + 0: 375 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 3311 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: RadiationGridResistance + - type: GasTileOverlay + - nextUpdate: 0 + type: SpreaderGrid +- proto: AcousticGuitarInstrument + entities: + - uid: 4891 + components: + - pos: 17.377642,0.53766143 + parent: 6 + type: Transform + - uid: 6351 + components: + - pos: -21.490076,-6.4055924 + parent: 6 + type: Transform +- proto: AdvancedCapacitorStockPart + entities: + - uid: 5390 + components: + - pos: -9.340726,-53.888344 + parent: 6 + type: Transform + - uid: 5391 + components: + - pos: -9.6389,-54.030254 + parent: 6 + type: Transform +- proto: AdvancedMatterBinStockPart + entities: + - uid: 5392 + components: + - pos: -9.354924,-54.413414 + parent: 6 + type: Transform +- proto: AirAlarm + entities: + - uid: 6045 + components: + - pos: 11.5,21.5 + parent: 6 + type: Transform + - devices: + - 12416 + - 12415 + - 12417 + - 12418 + - 11838 + - 11812 + - 11839 + - 11813 + type: DeviceList + - uid: 13054 + components: + - rot: 3.141592653589793 rad + pos: -60.5,-15.5 + parent: 6 + type: Transform + - devices: + - 6543 + - 6544 + - 6545 + - 6546 + - 11356 + - 11355 + type: DeviceList + - uid: 13056 + components: + - pos: -46.5,-9.5 + parent: 6 + type: Transform + - devices: + - 6543 + - 6544 + - 6545 + - 6548 + - 6547 + - 12546 + - 12547 + - 12218 + - 12219 + - 12228 + - 12229 + type: DeviceList + - uid: 13058 + components: + - pos: -31.5,-9.5 + parent: 6 + type: Transform + - devices: + - 6549 + - 6550 + - 6551 + - 3381 + - 3382 + - 6552 + - 6553 + - 6554 + - 12549 + - 12548 + - 3332 + - 3325 + - 3335 + type: DeviceList + - uid: 13060 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-2.5 + parent: 6 + type: Transform + - devices: + - 3323 + - 3337 + - 3336 + - 3339 + - 3338 + - 6260 + - 6262 + - 11187 + - 11185 + - 6379 + - 6300 + - 6321 + - 6322 + type: DeviceList + - uid: 13062 + components: + - pos: -18.5,-9.5 + parent: 6 + type: Transform + - devices: + - 6554 + - 6553 + - 6552 + - 6555 + - 6556 + - 6565 + - 6564 + - 6563 + - 6558 + - 6557 + - 6560 + - 6568 + - 6567 + - 6566 + - 11382 + - 11406 + - 6562 + - 2981 + type: DeviceList + - uid: 13066 + components: + - pos: -26.5,-19.5 + parent: 6 + type: Transform + - devices: + - 13064 + - 6560 + - 6632 + - 6631 + - 11573 + - 11592 + - 11593 + - 11585 + - 11586 + - 13071 + - 11508 + - 11509 + - 11558 + - 11549 + - 11513 + - 11512 + - 2981 + - 3643 + - 3635 + type: DeviceList + - uid: 13072 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-23.5 + parent: 6 + type: Transform + - devices: + - 6558 + - 6557 + - 6627 + - 6624 + - 6625 + - 6626 + - 11954 + - 11955 + - 11416 + - 13074 + type: DeviceList + - uid: 13075 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 6 + type: Transform + - devices: + - 6602 + - 6603 + - 6604 + - 6605 + - 5156 + - 13077 + - 12357 + - 12358 + - 12346 + - 12345 + - 11852 + - 11853 + - 830 + type: DeviceList + - uid: 13078 + components: + - pos: -5.5,-29.5 + parent: 6 + type: Transform + - devices: + - 6622 + - 6623 + - 6620 + - 6621 + - 11875 + - 11874 + - 12380 + - 12381 + type: DeviceList + - uid: 13080 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-39.5 + parent: 6 + type: Transform + - devices: + - 6626 + - 6625 + - 6624 + - 11590 + - 11589 + - 6620 + - 6621 + - 6634 + - 6635 + - 6636 + - 11957 + - 11956 + - 11859 + - 11863 + type: DeviceList + - uid: 13082 + components: + - pos: -10.5,-42.5 + parent: 6 + type: Transform + - devices: + - 6657 + - 6658 + - 6659 + - 6654 + - 6653 + - 6656 + - 6655 + - 6634 + - 6635 + - 6636 + - 5488 + - 5487 + - 5486 + - 12551 + - 12550 + - 12453 + - 12454 + type: DeviceList + - uid: 13084 + components: + - pos: -32.5,-42.5 + parent: 6 + type: Transform + - devices: + - 5488 + - 5487 + - 5486 + - 6641 + - 6642 + - 6646 + - 6647 + - 6648 + - 6649 + - 6650 + - 12029 + - 12028 + - 12053 + - 12030 + - 12027 + - 12054 + - 12031 + - 12026 + - 12044 + - 12560 + - 12561 + - 12544 + - 12545 + - 12008 + type: DeviceList + - uid: 13086 + components: + - pos: 0.5,-42.5 + parent: 6 + type: Transform + - devices: + - 6657 + - 6658 + - 6659 + - 6643 + - 6644 + - 6613 + - 6612 + - 6611 + - 12432 + - 12431 + - 11981 + - 11990 + type: DeviceList + - uid: 13088 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-53.5 + parent: 6 + type: Transform + - devices: + - 6652 + - 7413 + - 3344 + - 13090 + - 7414 + - 7415 + - 12458 + - 12460 + - 12465 + - 12467 + - 12480 + - 12478 + - 12440 + - 12535 + - 12489 + - 12491 + type: DeviceList + - uid: 13091 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-76.5 + parent: 6 + type: Transform + - devices: + - 13095 + - 13096 + - 13094 + - 13093 + - 13097 + - 12527 + - 12528 + - 12506 + - 12507 + - 12523 + type: DeviceList + - uid: 13098 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-37.5 + parent: 6 + type: Transform + - devices: + - 6608 + - 6609 + - 6610 + - 6616 + - 6617 + - 6614 + - 6615 + - 6611 + - 6612 + - 6613 + - 12383 + - 12305 + - 12420 + - 12419 + type: DeviceList + - uid: 13100 + components: + - pos: 14.5,-33.5 + parent: 6 + type: Transform + - devices: + - 6618 + - 6619 + - 13102 + - 13103 + - 12408 + - 12407 + - 12429 + - 12430 + - 12413 + - 12414 + type: DeviceList + - uid: 13104 + components: + - pos: 9.5,-17.5 + parent: 6 + type: Transform + - devices: + - 6577 + - 6578 + - 456 + - 476 + - 5947 + - 478 + - 480 + - 489 + - 496 + - 628 + - 629 + - 5156 + - 6602 + - 6603 + - 6604 + - 6605 + - 6610 + - 6609 + - 6608 + - 12364 + - 12363 + - 12369 + - 12368 + type: DeviceList + - uid: 13111 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,15.5 + parent: 6 + type: Transform + - devices: + - 3328 + - 13110 + - 6288 + - 6287 + type: DeviceList + - uid: 13113 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 6 + type: Transform + - devices: + - 6569 + - 6570 + - 6592 + - 6593 + - 6556 + - 6555 + - 3333 + - 11228 + - 11227 + - 11243 + - 11219 + - 11200 + - 11199 + type: DeviceList + - uid: 13115 + components: + - rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 6 + type: Transform + - devices: + - 6593 + - 6592 + - 6596 + - 6598 + - 6597 + - 6594 + - 6595 + - 6599 + - 6600 + - 11241 + - 11258 + - 11240 + - 11245 + - 11260 + - 11279 + - 11266 + - 11277 + type: DeviceList + - uid: 13118 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-13.5 + parent: 6 + type: Transform + - devices: + - 6575 + - 6574 + - 6573 + - 6563 + - 6564 + - 6565 + - 8275 + - 8276 + - 6576 + - 11681 + - 11682 + - 11671 + - 11676 + - 11687 + - 11686 + type: DeviceList + - uid: 13119 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 6 + type: Transform + - devices: + - 6582 + - 6583 + - 6595 + - 6594 + - 6571 + - 6572 + - 11688 + - 11689 + - 11291 + - 11294 + type: DeviceList + - uid: 13121 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-13.5 + parent: 6 + type: Transform + - devices: + - 6581 + - 6580 + - 6579 + - 6587 + - 6586 + - 6585 + - 6584 + - 6583 + - 6582 + - 6577 + - 6578 + - 6573 + - 6574 + - 6575 + - 11697 + - 11696 + - 12336 + type: DeviceList + - uid: 13123 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,4.5 + parent: 6 + type: Transform + - devices: + - 6591 + - 6590 + - 6589 + - 6588 + - 11825 + - 11827 + - 12235 + - 12234 + - 11783 + - 11770 + - 11704 + - 11766 + type: DeviceList + - uid: 13127 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-13.5 + parent: 6 + type: Transform + - devices: + - 7656 + - 7655 + - 7654 + - 6579 + - 6580 + - 6581 + - 13125 + - 13126 + - 12062 + - 12061 + - 12330 + - 12331 + - 12058 + - 12059 + type: DeviceList + - uid: 13129 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,2.5 + parent: 6 + type: Transform + - devices: + - 7659 + - 7658 + - 7653 + - 12208 + - 12209 + - 12199 + - 12200 + type: DeviceList + - uid: 13132 + components: + - pos: 37.5,-9.5 + parent: 6 + type: Transform + - devices: + - 7659 + - 7658 + - 7654 + - 7655 + - 7656 + - 7657 + - 12071 + - 12070 + type: DeviceList + - uid: 13134 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,0.5 + parent: 6 + type: Transform + - devices: + - 7657 + - 12170 + - 12168 + type: DeviceList +- proto: AirAlarmElectronics + entities: + - uid: 6374 + components: + - pos: -32.410076,21.578552 + parent: 6 + type: Transform +- proto: AirCanister + entities: + - uid: 4876 + components: + - pos: -30.5,-9.5 + parent: 6 + type: Transform + - uid: 4877 + components: + - pos: -29.5,-9.5 + parent: 6 + type: Transform + - uid: 5860 + components: + - pos: -23.5,-55.5 + parent: 6 + type: Transform + - uid: 7381 + components: + - pos: -7.5,-62.5 + parent: 6 + type: Transform + - uid: 10885 + components: + - pos: 23.5,12.5 + parent: 6 + type: Transform + - uid: 10913 + components: + - pos: 15.5,-21.5 + parent: 6 + type: Transform + - uid: 10921 + components: + - pos: 15.5,-32.5 + parent: 6 + type: Transform + - uid: 10922 + components: + - pos: -14.5,-55.5 + parent: 6 + type: Transform + - uid: 10947 + components: + - pos: -35.5,-58.5 + parent: 6 + type: Transform + - uid: 10980 + components: + - pos: -34.5,-31.5 + parent: 6 + type: Transform + - uid: 11003 + components: + - pos: -52.5,-26.5 + parent: 6 + type: Transform + - uid: 11025 + components: + - pos: -57.5,-17.5 + parent: 6 + type: Transform + - uid: 11046 + components: + - pos: -6.5,-5.5 + parent: 6 + type: Transform + - uid: 13632 + components: + - pos: 5.5,-8.5 + parent: 10465 + type: Transform +- proto: Airlock + entities: + - uid: 5494 + components: + - pos: -44.5,-39.5 + parent: 6 + type: Transform + - uid: 5495 + components: + - pos: -41.5,-40.5 + parent: 6 + type: Transform + - uid: 5496 + components: + - pos: -44.5,-35.5 + parent: 6 + type: Transform + - uid: 5497 + components: + - pos: -41.5,-34.5 + parent: 6 + type: Transform + - uid: 5498 + components: + - pos: -44.5,-31.5 + parent: 6 + type: Transform + - uid: 5499 + components: + - pos: -41.5,-29.5 + parent: 6 + type: Transform +- proto: AirlockArmoryGlassLocked + entities: + - uid: 4696 + components: + - pos: 17.5,-2.5 + parent: 6 + type: Transform +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 5042 + components: + - pos: -31.5,5.5 + parent: 6 + type: Transform + - uid: 5043 + components: + - pos: -31.5,8.5 + parent: 6 + type: Transform +- proto: AirlockBarLocked + entities: + - uid: 5249 + components: + - pos: -1.5,-15.5 + parent: 6 + type: Transform +- proto: AirlockBrigGlassLocked + entities: + - uid: 4672 + components: + - pos: 11.5,-6.5 + parent: 6 + type: Transform + - uid: 4673 + components: + - pos: 11.5,-8.5 + parent: 6 + type: Transform + - uid: 4674 + components: + - pos: 13.5,-6.5 + parent: 6 + type: Transform + - uid: 4675 + components: + - pos: 13.5,-8.5 + parent: 6 + type: Transform + - uid: 5231 + components: + - pos: 9.5,-13.5 + parent: 6 + type: Transform + - uid: 5232 + components: + - pos: 11.5,-16.5 + parent: 6 + type: Transform +- proto: AirlockCaptainLocked + entities: + - uid: 19 + components: + - pos: -4.5,0.5 + parent: 6 + type: Transform + - uid: 2998 + components: + - pos: -7.5,-2.5 + parent: 6 + type: Transform +- proto: AirlockCargoGlass + entities: + - uid: 5236 + components: + - pos: 14.5,-38.5 + parent: 6 + type: Transform + - uid: 5237 + components: + - pos: 13.5,-38.5 + parent: 6 + type: Transform +- proto: AirlockCargoLocked + entities: + - uid: 5241 + components: + - pos: 10.5,-40.5 + parent: 6 + type: Transform + - uid: 5242 + components: + - pos: 10.5,-39.5 + parent: 6 + type: Transform +- proto: AirlockChapelLocked + entities: + - uid: 5873 + components: + - pos: -30.5,-47.5 + parent: 6 + type: Transform + - uid: 5875 + components: + - pos: -28.5,-49.5 + parent: 6 + type: Transform + - uid: 5876 + components: + - pos: -30.5,-55.5 + parent: 6 + type: Transform +- proto: AirlockChemistryLocked + entities: + - uid: 4814 + components: + - pos: -21.5,-18.5 + parent: 6 + type: Transform +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 5611 + components: + - pos: -23.5,-5.5 + parent: 6 + type: Transform +- proto: AirlockChiefMedicalOfficerGlassLocked + entities: + - uid: 5610 + components: + - pos: -38.5,-19.5 + parent: 6 + type: Transform +- proto: AirlockCommandGlassLocked + entities: + - uid: 5119 + components: + - pos: 1.5,4.5 + parent: 6 + type: Transform + - uid: 5120 + components: + - pos: 1.5,3.5 + parent: 6 + type: Transform + - uid: 5121 + components: + - pos: 4.5,4.5 + parent: 6 + type: Transform + - uid: 5122 + components: + - pos: 4.5,3.5 + parent: 6 + type: Transform + - uid: 5123 + components: + - pos: -1.5,2.5 + parent: 6 + type: Transform + - uid: 5124 + components: + - pos: -0.5,2.5 + parent: 6 + type: Transform + - uid: 5125 + components: + - pos: -5.5,5.5 + parent: 6 + type: Transform + - uid: 5126 + components: + - pos: -4.5,5.5 + parent: 6 + type: Transform + - uid: 5127 + components: + - pos: -3.5,5.5 + parent: 6 + type: Transform + - uid: 5128 + components: + - pos: -10.5,4.5 + parent: 6 + type: Transform + - uid: 5129 + components: + - pos: -10.5,3.5 + parent: 6 + type: Transform + - uid: 5130 + components: + - pos: -13.5,4.5 + parent: 6 + type: Transform + - uid: 5131 + components: + - pos: -13.5,3.5 + parent: 6 + type: Transform + - uid: 13812 + components: + - pos: -65.5,-12.5 + parent: 6 + type: Transform +- proto: AirlockCommandLocked + entities: + - uid: 2994 + components: + - pos: -23.5,-1.5 + parent: 6 + type: Transform + - uid: 2995 + components: + - pos: -16.5,-0.5 + parent: 6 + type: Transform +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 5057 + components: + - pos: -36.5,-0.5 + parent: 6 + type: Transform + - uid: 5058 + components: + - pos: -29.5,-4.5 + parent: 6 + type: Transform + - uid: 5059 + components: + - pos: -30.5,-4.5 + parent: 6 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 5051 + components: + - pos: -28.5,-0.5 + parent: 6 + type: Transform + - uid: 5052 + components: + - pos: -28.5,-1.5 + parent: 6 + type: Transform + - uid: 5054 + components: + - pos: -33.5,-9.5 + parent: 6 + type: Transform + - uid: 5055 + components: + - pos: -35.5,-7.5 + parent: 6 + type: Transform + - uid: 5056 + components: + - pos: -31.5,-7.5 + parent: 6 + type: Transform + - uid: 7633 + components: + - pos: -10.5,0.5 + parent: 6 + type: Transform + - uid: 7634 + components: + - pos: 21.5,-3.5 + parent: 6 + type: Transform + - uid: 7644 + components: + - pos: 9.5,-43.5 + parent: 6 + type: Transform + - uid: 7645 + components: + - pos: -16.5,-57.5 + parent: 6 + type: Transform + - uid: 7646 + components: + - pos: -31.5,-30.5 + parent: 6 + type: Transform + - uid: 8290 + components: + - pos: -37.5,-54.5 + parent: 6 + type: Transform +- proto: AirlockEVAGlassLocked + entities: + - uid: 7631 + components: + - pos: -46.5,-13.5 + parent: 6 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 2973 + components: + - pos: -66.5,-9.5 + parent: 6 + type: Transform + - uid: 2974 + components: + - pos: -64.5,-9.5 + parent: 6 + type: Transform + - uid: 2975 + components: + - pos: -58.5,-9.5 + parent: 6 + type: Transform + - uid: 2976 + components: + - pos: -56.5,-9.5 + parent: 6 + type: Transform + - uid: 3484 + components: + - pos: 44.5,3.5 + parent: 6 + type: Transform + - uid: 3485 + components: + - pos: 44.5,2.5 + parent: 6 + type: Transform + - uid: 3486 + components: + - pos: 44.5,-6.5 + parent: 6 + type: Transform + - uid: 3487 + components: + - pos: 44.5,-5.5 + parent: 6 + type: Transform + - uid: 3692 + components: + - pos: -6.5,-64.5 + parent: 6 + type: Transform + - uid: 3693 + components: + - pos: -5.5,-64.5 + parent: 6 + type: Transform + - uid: 3694 + components: + - pos: -6.5,-68.5 + parent: 6 + type: Transform + - uid: 3695 + components: + - pos: -5.5,-68.5 + parent: 6 + type: Transform +- proto: AirlockExternalGlassAtmosphericsLocked + entities: + - uid: 3326 + components: + - pos: -30.5,23.5 + parent: 6 + type: Transform + - uid: 3398 + components: + - pos: -30.5,20.5 + parent: 6 + type: Transform +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 1270 + components: + - pos: 20.5,-35.5 + parent: 6 + type: Transform + - uid: 1271 + components: + - pos: 20.5,-37.5 + parent: 6 + type: Transform +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 3469 + components: + - pos: -25.5,15.5 + parent: 6 + type: Transform + - uid: 3470 + components: + - pos: -25.5,19.5 + parent: 6 + type: Transform +- proto: AirlockExternalGlassLocked + entities: + - uid: 848 + components: + - pos: -74.5,-45.5 + parent: 6 + type: Transform + - uid: 2969 + components: + - pos: -60.5,-21.5 + parent: 6 + type: Transform + - uid: 2970 + components: + - pos: -61.5,-21.5 + parent: 6 + type: Transform + - uid: 2971 + components: + - pos: -61.5,-17.5 + parent: 6 + type: Transform + - uid: 2972 + components: + - pos: -60.5,-17.5 + parent: 6 + type: Transform + - uid: 3394 + components: + - pos: -74.5,-43.5 + parent: 6 + type: Transform + - uid: 3505 + components: + - pos: 25.5,-21.5 + parent: 6 + type: Transform + - uid: 3506 + components: + - pos: 21.5,-21.5 + parent: 6 + type: Transform + - uid: 3760 + components: + - pos: -23.5,-64.5 + parent: 6 + type: Transform + - uid: 3762 + components: + - pos: -23.5,-60.5 + parent: 6 + type: Transform + - uid: 5339 + components: + - pos: 6.5,-52.5 + parent: 6 + type: Transform + - uid: 5340 + components: + - pos: 5.5,-52.5 + parent: 6 + type: Transform + - uid: 5341 + components: + - pos: 2.5,-55.5 + parent: 6 + type: Transform + - uid: 5342 + components: + - pos: 3.5,-55.5 + parent: 6 + type: Transform +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 523 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,2.5 + parent: 6 + type: Transform + + - uid: 652 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-4.5 + parent: 6 + type: Transform + + - uid: 670 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-4.5 + parent: 6 + type: Transform + + - uid: 699 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,2.5 + parent: 6 + type: Transform + +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 2880 + components: + - rot: 3.141592653589793 rad + pos: -66.5,-6.5 + parent: 6 + type: Transform + + - uid: 2881 + components: + - rot: 3.141592653589793 rad + pos: -64.5,-6.5 + parent: 6 + type: Transform + + - uid: 2882 + components: + - rot: 3.141592653589793 rad + pos: -58.5,-6.5 + parent: 6 + type: Transform + + - uid: 2883 + components: + - rot: 3.141592653589793 rad + pos: -56.5,-6.5 + parent: 6 + type: Transform + +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 1268 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-35.5 + parent: 6 + type: Transform + + - uid: 1269 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-37.5 + parent: 6 + type: Transform + + - uid: 3507 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,-6.5 + parent: 6 + type: Transform + + - uid: 3508 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,-5.5 + parent: 6 + type: Transform + + - uid: 3509 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,3.5 + parent: 6 + type: Transform + + - uid: 3510 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,2.5 + parent: 6 + type: Transform + + - uid: 3672 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-70.5 + parent: 6 + type: Transform + + - uid: 3673 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-72.5 + parent: 6 + type: Transform + +- proto: AirlockFreezerLocked + entities: + - uid: 5147 + components: + - pos: -7.5,-22.5 + parent: 6 + type: Transform + - uid: 5149 + components: + - pos: -5.5,-19.5 + parent: 6 + type: Transform +- proto: AirlockGlass + entities: + - uid: 924 + components: + - pos: 3.5,-21.5 + parent: 6 + type: Transform + - uid: 3001 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-20.5 + parent: 6 + type: Transform + - uid: 3606 + components: + - pos: 0.5,-34.5 + parent: 6 + type: Transform + - uid: 3607 + components: + - pos: 0.5,-35.5 + parent: 6 + type: Transform + - uid: 4691 + components: + - pos: 10.5,21.5 + parent: 6 + type: Transform + - uid: 5233 + components: + - pos: 13.5,-13.5 + parent: 6 + type: Transform + - uid: 5234 + components: + - pos: 16.5,-13.5 + parent: 6 + type: Transform + - uid: 5466 + components: + - pos: 27.5,-9.5 + parent: 6 + type: Transform + - uid: 5467 + components: + - pos: 29.5,-10.5 + parent: 6 + type: Transform + - uid: 5468 + components: + - pos: 29.5,-11.5 + parent: 6 + type: Transform + - uid: 5469 + components: + - pos: 29.5,-12.5 + parent: 6 + type: Transform + - uid: 5470 + components: + - pos: 4.5,-10.5 + parent: 6 + type: Transform + - uid: 5471 + components: + - pos: 4.5,-11.5 + parent: 6 + type: Transform + - uid: 5472 + components: + - pos: 4.5,-12.5 + parent: 6 + type: Transform + - uid: 5473 + components: + - pos: -13.5,-10.5 + parent: 6 + type: Transform + - uid: 5474 + components: + - pos: -13.5,-11.5 + parent: 6 + type: Transform + - uid: 5475 + components: + - pos: -13.5,-12.5 + parent: 6 + type: Transform + - uid: 5476 + components: + - pos: -43.5,-10.5 + parent: 6 + type: Transform + - uid: 5477 + components: + - pos: -43.5,-11.5 + parent: 6 + type: Transform + - uid: 5478 + components: + - pos: -43.5,-12.5 + parent: 6 + type: Transform + - uid: 5479 + components: + - pos: 4.5,-42.5 + parent: 6 + type: Transform + - uid: 5480 + components: + - pos: 5.5,-42.5 + parent: 6 + type: Transform + - uid: 5481 + components: + - pos: 6.5,-42.5 + parent: 6 + type: Transform + - uid: 5482 + components: + - pos: -19.5,-42.5 + parent: 6 + type: Transform + - uid: 5483 + components: + - pos: -13.5,-42.5 + parent: 6 + type: Transform + - uid: 5484 + components: + - pos: -14.5,-42.5 + parent: 6 + type: Transform + - uid: 5485 + components: + - pos: -15.5,-42.5 + parent: 6 + type: Transform + - uid: 5489 + components: + - pos: -34.5,-46.5 + parent: 6 + type: Transform + - uid: 5490 + components: + - pos: -32.5,-46.5 + parent: 6 + type: Transform + - uid: 5491 + components: + - pos: -33.5,-42.5 + parent: 6 + type: Transform + - uid: 5514 + components: + - pos: -53.5,-13.5 + parent: 6 + type: Transform + - uid: 5515 + components: + - pos: -50.5,-13.5 + parent: 6 + type: Transform + - uid: 6166 + components: + - pos: -39.5,-13.5 + parent: 6 + type: Transform + - uid: 6660 + components: + - pos: -26.5,-43.5 + parent: 6 + type: Transform + - uid: 6661 + components: + - pos: -26.5,-44.5 + parent: 6 + type: Transform + - uid: 6662 + components: + - pos: -26.5,-45.5 + parent: 6 + type: Transform + - uid: 7693 + components: + - pos: -10.5,-34.5 + parent: 6 + type: Transform + - uid: 7694 + components: + - pos: -10.5,-35.5 + parent: 6 + type: Transform + - uid: 7720 + components: + - pos: -42.5,-42.5 + parent: 6 + type: Transform + - uid: 7721 + components: + - pos: -43.5,-42.5 + parent: 6 + type: Transform +- proto: AirlockHeadOfPersonnelGlassLocked + entities: + - uid: 17 + components: + - pos: 0.5,-6.5 + parent: 6 + type: Transform +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 708 + components: + - pos: -1.5,-4.5 + parent: 6 + type: Transform +- proto: AirlockHeadOfSecurityGlassLocked + entities: + - uid: 4692 + components: + - pos: 13.5,7.5 + parent: 6 + type: Transform +- proto: AirlockHydroGlassLocked + entities: + - uid: 5140 + components: + - pos: -12.5,-20.5 + parent: 6 + type: Transform +- proto: AirlockJanitorLocked + entities: + - uid: 5464 + components: + - pos: 29.5,5.5 + parent: 6 + type: Transform +- proto: AirlockKitchenGlassLocked + entities: + - uid: 5139 + components: + - pos: -4.5,-23.5 + parent: 6 + type: Transform +- proto: AirlockKitchenLocked + entities: + - uid: 5141 + components: + - pos: -12.5,-25.5 + parent: 6 + type: Transform +- proto: AirlockMaintBarLocked + entities: + - uid: 882 + components: + - pos: -4.5,-15.5 + parent: 6 + type: Transform +- proto: AirlockMaintCaptainLocked + entities: + - uid: 2480 + components: + - pos: -47.5,-22.5 + parent: 6 + type: Transform +- proto: AirlockMaintCargoLocked + entities: + - uid: 3034 + components: + - pos: 17.5,-44.5 + parent: 6 + type: Transform + - uid: 3037 + components: + - pos: 18.5,-44.5 + parent: 6 + type: Transform + - uid: 8328 + components: + - pos: 16.5,-33.5 + parent: 6 + type: Transform +- proto: AirlockMaintChapelLocked + entities: + - uid: 5877 + components: + - pos: -31.5,-57.5 + parent: 6 + type: Transform +- proto: AirlockMaintCommandLocked + entities: + - uid: 33 + components: + - pos: -4.5,-2.5 + parent: 6 + type: Transform +- proto: AirlockMaintEngiLocked + entities: + - uid: 8333 + components: + - pos: -39.5,-1.5 + parent: 6 + type: Transform +- proto: AirlockMaintHOPLocked + entities: + - uid: 705 + components: + - pos: -4.5,-5.5 + parent: 6 + type: Transform +- proto: AirlockMaintJanitorLocked + entities: + - uid: 3182 + components: + - pos: 25.5,2.5 + parent: 6 + type: Transform +- proto: AirlockMaintLocked + entities: + - uid: 220 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,7.5 + parent: 6 + type: Transform + - uid: 3608 + components: + - pos: 3.5,-35.5 + parent: 6 + type: Transform + - uid: 3609 + components: + - pos: 3.5,-34.5 + parent: 6 + type: Transform + - uid: 5235 + components: + - pos: 18.5,-19.5 + parent: 6 + type: Transform + - uid: 8292 + components: + - pos: 8.5,9.5 + parent: 6 + type: Transform + - uid: 8293 + components: + - pos: 28.5,8.5 + parent: 6 + type: Transform + - uid: 8294 + components: + - pos: 21.5,-8.5 + parent: 6 + type: Transform + - uid: 8295 + components: + - pos: 25.5,-7.5 + parent: 6 + type: Transform + - uid: 8296 + components: + - pos: 19.5,-14.5 + parent: 6 + type: Transform + - uid: 8297 + components: + - pos: 8.5,-29.5 + parent: 6 + type: Transform + - uid: 8298 + components: + - pos: 7.5,-44.5 + parent: 6 + type: Transform + - uid: 8299 + components: + - pos: -5.5,-46.5 + parent: 6 + type: Transform + - uid: 8300 + components: + - pos: -3.5,-58.5 + parent: 6 + type: Transform + - uid: 8301 + components: + - pos: -8.5,-58.5 + parent: 6 + type: Transform + - uid: 8302 + components: + - pos: -40.5,-46.5 + parent: 6 + type: Transform + - uid: 8303 + components: + - pos: -49.5,-42.5 + parent: 6 + type: Transform + - uid: 8304 + components: + - pos: -24.5,-42.5 + parent: 6 + type: Transform + - uid: 8305 + components: + - pos: -16.5,-35.5 + parent: 6 + type: Transform + - uid: 8306 + components: + - pos: -21.5,-36.5 + parent: 6 + type: Transform + - uid: 8307 + components: + - pos: -41.5,-14.5 + parent: 6 + type: Transform + - uid: 8308 + components: + - pos: -53.5,-20.5 + parent: 6 + type: Transform + - uid: 8309 + components: + - pos: -64.5,-15.5 + parent: 6 + type: Transform + - uid: 8310 + components: + - pos: -43.5,-28.5 + parent: 6 + type: Transform + - uid: 8311 + components: + - pos: -50.5,-32.5 + parent: 6 + type: Transform + - uid: 8316 + components: + - pos: -33.5,-38.5 + parent: 6 + type: Transform + - uid: 8317 + components: + - pos: -6.5,-14.5 + parent: 6 + type: Transform + - uid: 8318 + components: + - pos: -6.5,-9.5 + parent: 6 + type: Transform + - uid: 8319 + components: + - pos: -13.5,1.5 + parent: 6 + type: Transform + - uid: 8320 + components: + - pos: -41.5,-8.5 + parent: 6 + type: Transform + - uid: 8321 + components: + - pos: -33.5,6.5 + parent: 6 + type: Transform + - uid: 8322 + components: + - pos: -29.5,6.5 + parent: 6 + type: Transform + - uid: 8324 + components: + - pos: 12.5,11.5 + parent: 6 + type: Transform + - uid: 8325 + components: + - pos: 17.5,11.5 + parent: 6 + type: Transform + - uid: 9758 + components: + - pos: -24.5,-47.5 + parent: 6 + type: Transform +- proto: AirlockMaintMedLocked + entities: + - uid: 3653 + components: + - pos: -40.5,-22.5 + parent: 6 + type: Transform + - uid: 8331 + components: + - pos: -29.5,-28.5 + parent: 6 + type: Transform + - uid: 8332 + components: + - pos: -23.5,-34.5 + parent: 6 + type: Transform +- proto: AirlockMaintRnDLocked + entities: + - uid: 1262 + components: + - pos: -0.5,-55.5 + parent: 6 + type: Transform + - uid: 5372 + components: + - pos: -18.5,-53.5 + parent: 6 + type: Transform + - uid: 5373 + components: + - pos: -4.5,-53.5 + parent: 6 + type: Transform +- proto: AirlockMaintSalvageLocked + entities: + - uid: 3043 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-47.5 + parent: 6 + type: Transform + - uid: 3180 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-48.5 + parent: 6 + type: Transform + - uid: 8329 + components: + - pos: 1.5,-48.5 + parent: 6 + type: Transform +- proto: AirlockMaintSecLocked + entities: + - uid: 8326 + components: + - pos: 18.5,-4.5 + parent: 6 + type: Transform +- proto: AirlockMaintTheatreLocked + entities: + - uid: 5637 + components: + - pos: 16.5,-25.5 + parent: 6 + type: Transform + - uid: 8327 + components: + - pos: 13.5,-22.5 + parent: 6 + type: Transform +- proto: AirlockMedicalGlass + entities: + - uid: 5557 + components: + - pos: -19.5,-17.5 + parent: 6 + type: Transform + - uid: 5558 + components: + - pos: -18.5,-17.5 + parent: 6 + type: Transform +- proto: AirlockMedicalGlassLocked + entities: + - uid: 3389 + components: + - pos: -27.5,-22.5 + parent: 6 + type: Transform + - uid: 4810 + components: + - pos: -22.5,-27.5 + parent: 6 + type: Transform + - uid: 4811 + components: + - pos: -25.5,-23.5 + parent: 6 + type: Transform + - uid: 4812 + components: + - pos: -24.5,-23.5 + parent: 6 + type: Transform + - uid: 4813 + components: + - pos: -17.5,-24.5 + parent: 6 + type: Transform + - uid: 4826 + components: + - pos: -29.5,-19.5 + parent: 6 + type: Transform + - uid: 4827 + components: + - pos: -29.5,-23.5 + parent: 6 + type: Transform + - uid: 5531 + components: + - pos: -27.5,-20.5 + parent: 6 + type: Transform +- proto: AirlockMedicalLocked + entities: + - uid: 4828 + components: + - pos: -33.5,-19.5 + parent: 6 + type: Transform +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 5238 + components: + - pos: 11.5,-33.5 + parent: 6 + type: Transform +- proto: AirlockResearchDirectorGlassLocked + entities: + - uid: 5361 + components: + - pos: -1.5,-53.5 + parent: 6 + type: Transform +- proto: AirlockSalvageGlassLocked + entities: + - uid: 5284 + components: + - pos: 2.5,-46.5 + parent: 6 + type: Transform +- proto: AirlockScienceGlassLocked + entities: + - uid: 1478 + components: + - pos: -4.5,-80.5 + parent: 6 + type: Transform + - uid: 1479 + components: + - pos: -4.5,-81.5 + parent: 6 + type: Transform + - uid: 1480 + components: + - pos: -0.5,-72.5 + parent: 6 + type: Transform + - uid: 1481 + components: + - pos: -0.5,-70.5 + parent: 6 + type: Transform + - uid: 1482 + components: + - pos: -5.5,-71.5 + parent: 6 + type: Transform + - uid: 1483 + components: + - pos: -6.5,-71.5 + parent: 6 + type: Transform + - uid: 3688 + components: + - pos: -0.5,-81.5 + parent: 6 + type: Transform + - uid: 3689 + components: + - pos: -0.5,-80.5 + parent: 6 + type: Transform + - uid: 3690 + components: + - pos: 0.5,-78.5 + parent: 6 + type: Transform + - uid: 3691 + components: + - pos: 1.5,-78.5 + parent: 6 + type: Transform + - uid: 5370 + components: + - pos: -13.5,-52.5 + parent: 6 + type: Transform + - uid: 5371 + components: + - pos: -13.5,-53.5 + parent: 6 + type: Transform + - uid: 5510 + components: + - pos: -8.5,-74.5 + parent: 6 + type: Transform +- proto: AirlockScienceLocked + entities: + - uid: 1484 + components: + - pos: -6.5,-60.5 + parent: 6 + type: Transform + - uid: 1485 + components: + - pos: -5.5,-60.5 + parent: 6 + type: Transform + - uid: 4484 + components: + - pos: -6.5,-57.5 + parent: 6 + type: Transform + - uid: 4485 + components: + - pos: -5.5,-57.5 + parent: 6 + type: Transform + - uid: 5368 + components: + - pos: -7.5,-53.5 + parent: 6 + type: Transform + - uid: 5369 + components: + - pos: -7.5,-49.5 + parent: 6 + type: Transform +- proto: AirlockSecurityGlassLocked + entities: + - uid: 4684 + components: + - pos: 11.5,-3.5 + parent: 6 + type: Transform + - uid: 4685 + components: + - pos: 15.5,10.5 + parent: 6 + type: Transform + - uid: 4686 + components: + - pos: 14.5,10.5 + parent: 6 + type: Transform + - uid: 4687 + components: + - pos: 14.5,13.5 + parent: 6 + type: Transform + - uid: 4688 + components: + - pos: 15.5,13.5 + parent: 6 + type: Transform + - uid: 4689 + components: + - pos: 15.5,17.5 + parent: 6 + type: Transform + - uid: 4690 + components: + - pos: 14.5,17.5 + parent: 6 + type: Transform + - uid: 4693 + components: + - pos: 10.5,0.5 + parent: 6 + type: Transform + - uid: 4694 + components: + - pos: 10.5,2.5 + parent: 6 + type: Transform + - uid: 4695 + components: + - pos: 16.5,-7.5 + parent: 6 + type: Transform + - uid: 4830 + components: + - pos: -21.5,-30.5 + parent: 6 + type: Transform + - uid: 4831 + components: + - pos: -16.5,-32.5 + parent: 6 + type: Transform + - uid: 5582 + components: + - pos: -49.5,-46.5 + parent: 6 + type: Transform +- proto: AirlockServiceLocked + entities: + - uid: 7752 + components: + - pos: -23.5,-37.5 + parent: 6 + type: Transform +- proto: AirlockTheatreLocked + entities: + - uid: 5638 + components: + - pos: 13.5,-26.5 + parent: 6 + type: Transform +- proto: AltarSpawner + entities: + - uid: 4476 + components: + - pos: -33.5,-54.5 + parent: 6 + type: Transform +- proto: AMEController + entities: + - uid: 4894 + components: + - pos: -34.5,0.5 + parent: 6 + type: Transform +- proto: AnomalyScanner + entities: + - uid: 14285 + components: + - pos: 1.0719459,-75.33638 + parent: 6 + type: Transform +- proto: APCBasic + entities: + - uid: 5153 + components: + - pos: 26.5,0.5 + parent: 6 + type: Transform + - uid: 6046 + components: + - rot: 3.141592653589793 rad + pos: 16.5,17.5 + parent: 6 + type: Transform + - uid: 8551 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,14.5 + parent: 6 + type: Transform + - uid: 8668 + components: + - pos: -33.5,-0.5 + parent: 6 + type: Transform + - uid: 8719 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,1.5 + parent: 6 + type: Transform + - uid: 8769 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-15.5 + parent: 6 + type: Transform + - uid: 8915 + components: + - rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 6 + type: Transform + - uid: 8996 + components: + - pos: -3.5,-4.5 + parent: 6 + type: Transform + - uid: 9086 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 6 + type: Transform + - uid: 9282 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-19.5 + parent: 6 + type: Transform + - uid: 9482 + components: + - pos: 17.5,-33.5 + parent: 6 + type: Transform + - uid: 9483 + components: + - pos: 7.5,-46.5 + parent: 6 + type: Transform + - uid: 9535 + components: + - pos: -5.5,-53.5 + parent: 6 + type: Transform + - uid: 9630 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-70.5 + parent: 6 + type: Transform + - uid: 9701 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-36.5 + parent: 6 + type: Transform + - uid: 9759 + components: + - pos: -1.5,-18.5 + parent: 6 + type: Transform + - uid: 9760 + components: + - pos: -6.5,-22.5 + parent: 6 + type: Transform + - uid: 9865 + components: + - pos: -25.5,-19.5 + parent: 6 + type: Transform + - uid: 9936 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-31.5 + parent: 6 + type: Transform + - uid: 10004 + components: + - pos: -35.5,-19.5 + parent: 6 + type: Transform + - uid: 10045 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-32.5 + parent: 6 + type: Transform + - uid: 10206 + components: + - pos: -56.5,-40.5 + parent: 6 + type: Transform + - uid: 10214 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-51.5 + parent: 6 + type: Transform + - uid: 13745 + components: + - rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 13645 + type: Transform +- proto: APCElectronics + entities: + - uid: 6367 + components: + - pos: -34.561337,-4.242736 + parent: 6 + type: Transform + - uid: 6414 + components: + - pos: -46.367,-23.650623 + parent: 6 + type: Transform + - uid: 13400 + components: + - pos: 28.588854,-2.4873984 + parent: 6 + type: Transform +- proto: Ash + entities: + - uid: 7441 + components: + - pos: -28.470121,-54.3469 + parent: 6 + type: Transform +- proto: AsteroidRock + entities: + - uid: 219 + components: + - pos: -21.5,10.5 + parent: 6 + type: Transform + - uid: 1430 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-73.5 + parent: 6 + type: Transform + - uid: 1433 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-74.5 + parent: 6 + type: Transform + - uid: 1434 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-76.5 + parent: 6 + type: Transform + - uid: 1439 + components: + - pos: -47.5,-7.5 + parent: 6 + type: Transform + - uid: 1443 + components: + - pos: -62.5,-6.5 + parent: 6 + type: Transform + - uid: 1502 + components: + - pos: -61.5,-6.5 + parent: 6 + type: Transform + - uid: 1504 + components: + - pos: -69.5,-6.5 + parent: 6 + type: Transform + - uid: 1506 + components: + - pos: -53.5,-6.5 + parent: 6 + type: Transform + - uid: 1511 + components: + - pos: -73.5,-14.5 + parent: 6 + type: Transform + - uid: 1512 + components: + - pos: -73.5,-10.5 + parent: 6 + type: Transform + - uid: 1540 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,13.5 + parent: 6 + type: Transform + - uid: 1679 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,14.5 + parent: 6 + type: Transform + - uid: 1681 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,12.5 + parent: 6 + type: Transform + - uid: 1689 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,13.5 + parent: 6 + type: Transform + - uid: 2112 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,14.5 + parent: 6 + type: Transform + - uid: 2511 + components: + - pos: -61.5,-26.5 + parent: 6 + type: Transform + - uid: 2513 + components: + - pos: -61.5,-42.5 + parent: 6 + type: Transform + - uid: 2516 + components: + - pos: -60.5,-40.5 + parent: 6 + type: Transform + - uid: 2518 + components: + - pos: -61.5,-41.5 + parent: 6 + type: Transform + - uid: 2634 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-8.5 + parent: 6 + type: Transform + - uid: 2635 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-7.5 + parent: 6 + type: Transform + - uid: 2636 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-6.5 + parent: 6 + type: Transform + - uid: 2637 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-8.5 + parent: 6 + type: Transform + - uid: 2639 + components: + - pos: -60.5,-6.5 + parent: 6 + type: Transform + - uid: 2641 + components: + - pos: -18.5,12.5 + parent: 6 + type: Transform + - uid: 2642 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-6.5 + parent: 6 + type: Transform + - uid: 2644 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-7.5 + parent: 6 + type: Transform + - uid: 2645 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-6.5 + parent: 6 + type: Transform + - uid: 2646 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-8.5 + parent: 6 + type: Transform + - uid: 2650 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-7.5 + parent: 6 + type: Transform + - uid: 2651 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-6.5 + parent: 6 + type: Transform + - uid: 2654 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-7.5 + parent: 6 + type: Transform + - uid: 2656 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-7.5 + parent: 6 + type: Transform + - uid: 2658 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-7.5 + parent: 6 + type: Transform + - uid: 2659 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-8.5 + parent: 6 + type: Transform + - uid: 2660 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-7.5 + parent: 6 + type: Transform + - uid: 2662 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,-7.5 + parent: 6 + type: Transform + - uid: 2664 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-6.5 + parent: 6 + type: Transform + - uid: 2665 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-6.5 + parent: 6 + type: Transform + - uid: 2666 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-6.5 + parent: 6 + type: Transform + - uid: 2667 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-5.5 + parent: 6 + type: Transform + - uid: 2668 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-4.5 + parent: 6 + type: Transform + - uid: 2669 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-3.5 + parent: 6 + type: Transform + - uid: 2670 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-3.5 + parent: 6 + type: Transform + - uid: 2671 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-3.5 + parent: 6 + type: Transform + - uid: 2672 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-2.5 + parent: 6 + type: Transform + - uid: 2673 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-1.5 + parent: 6 + type: Transform + - uid: 2674 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-2.5 + parent: 6 + type: Transform + - uid: 2675 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-1.5 + parent: 6 + type: Transform + - uid: 2676 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-0.5 + parent: 6 + type: Transform + - uid: 2677 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,0.5 + parent: 6 + type: Transform + - uid: 2678 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,1.5 + parent: 6 + type: Transform + - uid: 2679 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,2.5 + parent: 6 + type: Transform + - uid: 2680 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,3.5 + parent: 6 + type: Transform + - uid: 2681 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,4.5 + parent: 6 + type: Transform + - uid: 2682 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,5.5 + parent: 6 + type: Transform + - uid: 2683 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,5.5 + parent: 6 + type: Transform + - uid: 2684 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,4.5 + parent: 6 + type: Transform + - uid: 2685 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,3.5 + parent: 6 + type: Transform + - uid: 2687 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,1.5 + parent: 6 + type: Transform + - uid: 2688 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,0.5 + parent: 6 + type: Transform + - uid: 2689 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 6 + type: Transform + - uid: 2691 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-2.5 + parent: 6 + type: Transform + - uid: 2692 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-3.5 + parent: 6 + type: Transform + - uid: 2693 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-3.5 + parent: 6 + type: Transform + - uid: 2695 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,5.5 + parent: 6 + type: Transform + - uid: 2697 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,6.5 + parent: 6 + type: Transform + - uid: 2701 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,6.5 + parent: 6 + type: Transform + - uid: 2702 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,7.5 + parent: 6 + type: Transform + - uid: 2703 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,6.5 + parent: 6 + type: Transform + - uid: 2704 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,7.5 + parent: 6 + type: Transform + - uid: 2705 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,8.5 + parent: 6 + type: Transform + - uid: 2706 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,9.5 + parent: 6 + type: Transform + - uid: 2707 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,10.5 + parent: 6 + type: Transform + - uid: 2708 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,11.5 + parent: 6 + type: Transform + - uid: 2709 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,7.5 + parent: 6 + type: Transform + - uid: 2710 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,8.5 + parent: 6 + type: Transform + - uid: 2711 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,9.5 + parent: 6 + type: Transform + - uid: 2712 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,10.5 + parent: 6 + type: Transform + - uid: 2713 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,11.5 + parent: 6 + type: Transform + - uid: 2714 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,12.5 + parent: 6 + type: Transform + - uid: 2715 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,13.5 + parent: 6 + type: Transform + - uid: 2716 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,14.5 + parent: 6 + type: Transform + - uid: 2717 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,14.5 + parent: 6 + type: Transform + - uid: 2718 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,15.5 + parent: 6 + type: Transform + - uid: 2719 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,16.5 + parent: 6 + type: Transform + - uid: 2720 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,17.5 + parent: 6 + type: Transform + - uid: 2721 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,18.5 + parent: 6 + type: Transform + - uid: 2722 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,15.5 + parent: 6 + type: Transform + - uid: 2723 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,16.5 + parent: 6 + type: Transform + - uid: 2724 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,17.5 + parent: 6 + type: Transform + - uid: 2725 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,18.5 + parent: 6 + type: Transform + - uid: 2726 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,19.5 + parent: 6 + type: Transform + - uid: 2727 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,20.5 + parent: 6 + type: Transform + - uid: 2728 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,21.5 + parent: 6 + type: Transform + - uid: 2729 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,11.5 + parent: 6 + type: Transform + - uid: 2730 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,12.5 + parent: 6 + type: Transform + - uid: 2731 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,13.5 + parent: 6 + type: Transform + - uid: 2732 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,14.5 + parent: 6 + type: Transform + - uid: 2733 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,15.5 + parent: 6 + type: Transform + - uid: 2734 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,16.5 + parent: 6 + type: Transform + - uid: 2735 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,17.5 + parent: 6 + type: Transform + - uid: 2736 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,18.5 + parent: 6 + type: Transform + - uid: 2737 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,19.5 + parent: 6 + type: Transform + - uid: 2738 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,20.5 + parent: 6 + type: Transform + - uid: 2739 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,21.5 + parent: 6 + type: Transform + - uid: 2740 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,22.5 + parent: 6 + type: Transform + - uid: 2741 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,12.5 + parent: 6 + type: Transform + - uid: 2742 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,13.5 + parent: 6 + type: Transform + - uid: 2744 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,15.5 + parent: 6 + type: Transform + - uid: 2746 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,17.5 + parent: 6 + type: Transform + - uid: 2747 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,18.5 + parent: 6 + type: Transform + - uid: 2748 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,19.5 + parent: 6 + type: Transform + - uid: 2749 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,20.5 + parent: 6 + type: Transform + - uid: 2750 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,21.5 + parent: 6 + type: Transform + - uid: 2751 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,22.5 + parent: 6 + type: Transform + - uid: 2752 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,23.5 + parent: 6 + type: Transform + - uid: 2753 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,23.5 + parent: 6 + type: Transform + - uid: 2754 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,24.5 + parent: 6 + type: Transform + - uid: 2755 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,25.5 + parent: 6 + type: Transform + - uid: 2756 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,26.5 + parent: 6 + type: Transform + - uid: 2757 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,27.5 + parent: 6 + type: Transform + - uid: 2759 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,25.5 + parent: 6 + type: Transform + - uid: 2760 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,26.5 + parent: 6 + type: Transform + - uid: 2761 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,27.5 + parent: 6 + type: Transform + - uid: 2762 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,28.5 + parent: 6 + type: Transform + - uid: 2763 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,29.5 + parent: 6 + type: Transform + - uid: 2764 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,27.5 + parent: 6 + type: Transform + - uid: 2765 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,26.5 + parent: 6 + type: Transform + - uid: 2766 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,25.5 + parent: 6 + type: Transform + - uid: 2767 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,24.5 + parent: 6 + type: Transform + - uid: 2768 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 6 + type: Transform + - uid: 2769 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,29.5 + parent: 6 + type: Transform + - uid: 2770 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,31.5 + parent: 6 + type: Transform + - uid: 2771 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,32.5 + parent: 6 + type: Transform + - uid: 2772 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,33.5 + parent: 6 + type: Transform + - uid: 2773 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,25.5 + parent: 6 + type: Transform + - uid: 2774 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,26.5 + parent: 6 + type: Transform + - uid: 2775 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,27.5 + parent: 6 + type: Transform + - uid: 2776 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,28.5 + parent: 6 + type: Transform + - uid: 2777 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,29.5 + parent: 6 + type: Transform + - uid: 2778 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,30.5 + parent: 6 + type: Transform + - uid: 2779 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,31.5 + parent: 6 + type: Transform + - uid: 2780 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,32.5 + parent: 6 + type: Transform + - uid: 2781 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,33.5 + parent: 6 + type: Transform + - uid: 2782 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,25.5 + parent: 6 + type: Transform + - uid: 2783 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,26.5 + parent: 6 + type: Transform + - uid: 2784 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,27.5 + parent: 6 + type: Transform + - uid: 2785 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,28.5 + parent: 6 + type: Transform + - uid: 2786 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,29.5 + parent: 6 + type: Transform + - uid: 2787 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,30.5 + parent: 6 + type: Transform + - uid: 2788 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,31.5 + parent: 6 + type: Transform + - uid: 2789 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,32.5 + parent: 6 + type: Transform + - uid: 2790 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,33.5 + parent: 6 + type: Transform + - uid: 2791 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,25.5 + parent: 6 + type: Transform + - uid: 2792 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,26.5 + parent: 6 + type: Transform + - uid: 2794 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,28.5 + parent: 6 + type: Transform + - uid: 2795 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,29.5 + parent: 6 + type: Transform + - uid: 2796 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,30.5 + parent: 6 + type: Transform + - uid: 2797 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,31.5 + parent: 6 + type: Transform + - uid: 2798 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,32.5 + parent: 6 + type: Transform + - uid: 2799 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,33.5 + parent: 6 + type: Transform + - uid: 2800 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,25.5 + parent: 6 + type: Transform + - uid: 2801 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,26.5 + parent: 6 + type: Transform + - uid: 2802 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,27.5 + parent: 6 + type: Transform + - uid: 2803 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,28.5 + parent: 6 + type: Transform + - uid: 2804 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,29.5 + parent: 6 + type: Transform + - uid: 2805 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,30.5 + parent: 6 + type: Transform + - uid: 2806 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,31.5 + parent: 6 + type: Transform + - uid: 2807 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,32.5 + parent: 6 + type: Transform + - uid: 2808 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,33.5 + parent: 6 + type: Transform + - uid: 2809 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,25.5 + parent: 6 + type: Transform + - uid: 2810 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,26.5 + parent: 6 + type: Transform + - uid: 2811 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,27.5 + parent: 6 + type: Transform + - uid: 2812 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,28.5 + parent: 6 + type: Transform + - uid: 2813 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,29.5 + parent: 6 + type: Transform + - uid: 2815 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,34.5 + parent: 6 + type: Transform + - uid: 2816 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,35.5 + parent: 6 + type: Transform + - uid: 2817 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,34.5 + parent: 6 + type: Transform + - uid: 2818 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,35.5 + parent: 6 + type: Transform + - uid: 2819 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,26.5 + parent: 6 + type: Transform + - uid: 2820 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,25.5 + parent: 6 + type: Transform + - uid: 2822 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,26.5 + parent: 6 + type: Transform + - uid: 2823 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,25.5 + parent: 6 + type: Transform + - uid: 2825 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,26.5 + parent: 6 + type: Transform + - uid: 2826 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,25.5 + parent: 6 + type: Transform + - uid: 2828 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,26.5 + parent: 6 + type: Transform + - uid: 2835 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,25.5 + parent: 6 + type: Transform + - uid: 2836 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,26.5 + parent: 6 + type: Transform + - uid: 2837 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,25.5 + parent: 6 + type: Transform + - uid: 2838 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,26.5 + parent: 6 + type: Transform + - uid: 2839 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,27.5 + parent: 6 + type: Transform + - uid: 2840 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,28.5 + parent: 6 + type: Transform + - uid: 2841 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,29.5 + parent: 6 + type: Transform + - uid: 2842 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,30.5 + parent: 6 + type: Transform + - uid: 2843 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,29.5 + parent: 6 + type: Transform + - uid: 2844 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,28.5 + parent: 6 + type: Transform + - uid: 2845 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,27.5 + parent: 6 + type: Transform + - uid: 2846 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,28.5 + parent: 6 + type: Transform + - uid: 2847 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,27.5 + parent: 6 + type: Transform + - uid: 2848 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,30.5 + parent: 6 + type: Transform + - uid: 2849 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,29.5 + parent: 6 + type: Transform + - uid: 2850 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,28.5 + parent: 6 + type: Transform + - uid: 2851 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,31.5 + parent: 6 + type: Transform + - uid: 2852 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,26.5 + parent: 6 + type: Transform + - uid: 2853 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,25.5 + parent: 6 + type: Transform + - uid: 2854 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,26.5 + parent: 6 + type: Transform + - uid: 2855 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,25.5 + parent: 6 + type: Transform + - uid: 2856 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,24.5 + parent: 6 + type: Transform + - uid: 2857 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,23.5 + parent: 6 + type: Transform + - uid: 2858 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,22.5 + parent: 6 + type: Transform + - uid: 2936 + components: + - pos: 9.5,-55.5 + parent: 6 + type: Transform + - uid: 2937 + components: + - pos: 10.5,-55.5 + parent: 6 + type: Transform + - uid: 2938 + components: + - rot: 3.141592653589793 rad + pos: -69.5,-7.5 + parent: 6 + type: Transform + - uid: 2939 + components: + - pos: 23.5,-41.5 + parent: 6 + type: Transform + - uid: 2940 + components: + - rot: 3.141592653589793 rad + pos: -70.5,-7.5 + parent: 6 + type: Transform + - uid: 2941 + components: + - pos: 23.5,-31.5 + parent: 6 + type: Transform + - uid: 2942 + components: + - rot: 3.141592653589793 rad + pos: -71.5,-7.5 + parent: 6 + type: Transform + - uid: 2943 + components: + - rot: 3.141592653589793 rad + pos: -71.5,-8.5 + parent: 6 + type: Transform + - uid: 2944 + components: + - rot: 3.141592653589793 rad + pos: -72.5,-9.5 + parent: 6 + type: Transform + - uid: 2945 + components: + - rot: 3.141592653589793 rad + pos: -72.5,-10.5 + parent: 6 + type: Transform + - uid: 2946 + components: + - pos: 21.5,-26.5 + parent: 6 + type: Transform + - uid: 2949 + components: + - rot: 3.141592653589793 rad + pos: -73.5,-11.5 + parent: 6 + type: Transform + - uid: 2950 + components: + - rot: 3.141592653589793 rad + pos: -73.5,-12.5 + parent: 6 + type: Transform + - uid: 2951 + components: + - rot: 3.141592653589793 rad + pos: -73.5,-13.5 + parent: 6 + type: Transform + - uid: 2952 + components: + - rot: 3.141592653589793 rad + pos: -72.5,-14.5 + parent: 6 + type: Transform + - uid: 2977 + components: + - pos: -59.5,-39.5 + parent: 6 + type: Transform + - uid: 2978 + components: + - pos: -60.5,-45.5 + parent: 6 + type: Transform + - uid: 3130 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,11.5 + parent: 6 + type: Transform + - uid: 3131 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,11.5 + parent: 6 + type: Transform + - uid: 3138 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,11.5 + parent: 6 + type: Transform + - uid: 3139 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,10.5 + parent: 6 + type: Transform + - uid: 3142 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,10.5 + parent: 6 + type: Transform + - uid: 3143 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,10.5 + parent: 6 + type: Transform + - uid: 3150 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,10.5 + parent: 6 + type: Transform + - uid: 3154 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,12.5 + parent: 6 + type: Transform + - uid: 3155 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,11.5 + parent: 6 + type: Transform + - uid: 3187 + components: + - pos: 28.5,12.5 + parent: 6 + type: Transform + - uid: 3193 + components: + - pos: -41.5,25.5 + parent: 6 + type: Transform + - uid: 3194 + components: + - pos: -45.5,21.5 + parent: 6 + type: Transform + - uid: 3195 + components: + - pos: -45.5,22.5 + parent: 6 + type: Transform + - uid: 3196 + components: + - pos: -45.5,23.5 + parent: 6 + type: Transform + - uid: 3197 + components: + - pos: -45.5,24.5 + parent: 6 + type: Transform + - uid: 3198 + components: + - pos: -45.5,25.5 + parent: 6 + type: Transform + - uid: 3199 + components: + - pos: -44.5,21.5 + parent: 6 + type: Transform + - uid: 3200 + components: + - pos: -44.5,22.5 + parent: 6 + type: Transform + - uid: 3202 + components: + - pos: -44.5,24.5 + parent: 6 + type: Transform + - uid: 3203 + components: + - pos: -44.5,25.5 + parent: 6 + type: Transform + - uid: 3204 + components: + - pos: -43.5,21.5 + parent: 6 + type: Transform + - uid: 3205 + components: + - pos: -43.5,22.5 + parent: 6 + type: Transform + - uid: 3206 + components: + - pos: -43.5,23.5 + parent: 6 + type: Transform + - uid: 3208 + components: + - pos: -43.5,25.5 + parent: 6 + type: Transform + - uid: 3209 + components: + - pos: -42.5,21.5 + parent: 6 + type: Transform + - uid: 3210 + components: + - pos: -42.5,22.5 + parent: 6 + type: Transform + - uid: 3211 + components: + - pos: -42.5,23.5 + parent: 6 + type: Transform + - uid: 3212 + components: + - pos: -42.5,24.5 + parent: 6 + type: Transform + - uid: 3213 + components: + - pos: -42.5,25.5 + parent: 6 + type: Transform + - uid: 3214 + components: + - pos: -41.5,21.5 + parent: 6 + type: Transform + - uid: 3215 + components: + - pos: -41.5,22.5 + parent: 6 + type: Transform + - uid: 3216 + components: + - pos: -41.5,23.5 + parent: 6 + type: Transform + - uid: 3217 + components: + - pos: -41.5,24.5 + parent: 6 + type: Transform + - uid: 3218 + components: + - pos: -46.5,25.5 + parent: 6 + type: Transform + - uid: 3219 + components: + - pos: -45.5,26.5 + parent: 6 + type: Transform + - uid: 3220 + components: + - pos: -45.5,27.5 + parent: 6 + type: Transform + - uid: 3221 + components: + - pos: -45.5,28.5 + parent: 6 + type: Transform + - uid: 3222 + components: + - pos: -44.5,26.5 + parent: 6 + type: Transform + - uid: 3223 + components: + - pos: -44.5,27.5 + parent: 6 + type: Transform + - uid: 3224 + components: + - pos: -44.5,28.5 + parent: 6 + type: Transform + - uid: 3225 + components: + - pos: -43.5,26.5 + parent: 6 + type: Transform + - uid: 3226 + components: + - pos: -43.5,27.5 + parent: 6 + type: Transform + - uid: 3227 + components: + - pos: -43.5,28.5 + parent: 6 + type: Transform + - uid: 3228 + components: + - pos: -42.5,26.5 + parent: 6 + type: Transform + - uid: 3230 + components: + - pos: -42.5,28.5 + parent: 6 + type: Transform + - uid: 3231 + components: + - pos: -41.5,26.5 + parent: 6 + type: Transform + - uid: 3232 + components: + - pos: -41.5,27.5 + parent: 6 + type: Transform + - uid: 3233 + components: + - pos: -41.5,28.5 + parent: 6 + type: Transform + - uid: 3234 + components: + - pos: -40.5,26.5 + parent: 6 + type: Transform + - uid: 3235 + components: + - pos: -40.5,27.5 + parent: 6 + type: Transform + - uid: 3236 + components: + - pos: -40.5,28.5 + parent: 6 + type: Transform + - uid: 3237 + components: + - pos: -39.5,26.5 + parent: 6 + type: Transform + - uid: 3238 + components: + - pos: -39.5,27.5 + parent: 6 + type: Transform + - uid: 3239 + components: + - pos: -39.5,28.5 + parent: 6 + type: Transform + - uid: 3240 + components: + - pos: -43.5,29.5 + parent: 6 + type: Transform + - uid: 3241 + components: + - pos: -42.5,29.5 + parent: 6 + type: Transform + - uid: 3242 + components: + - pos: -41.5,29.5 + parent: 6 + type: Transform + - uid: 3243 + components: + - pos: -40.5,29.5 + parent: 6 + type: Transform + - uid: 3244 + components: + - pos: -39.5,29.5 + parent: 6 + type: Transform + - uid: 3245 + components: + - pos: -38.5,29.5 + parent: 6 + type: Transform + - uid: 3246 + components: + - pos: -37.5,29.5 + parent: 6 + type: Transform + - uid: 3247 + components: + - pos: -39.5,30.5 + parent: 6 + type: Transform + - uid: 3248 + components: + - pos: -38.5,30.5 + parent: 6 + type: Transform + - uid: 3249 + components: + - pos: -37.5,30.5 + parent: 6 + type: Transform + - uid: 3250 + components: + - pos: -36.5,30.5 + parent: 6 + type: Transform + - uid: 3251 + components: + - pos: -35.5,30.5 + parent: 6 + type: Transform + - uid: 3252 + components: + - pos: -36.5,31.5 + parent: 6 + type: Transform + - uid: 3253 + components: + - pos: -35.5,31.5 + parent: 6 + type: Transform + - uid: 3254 + components: + - pos: -34.5,31.5 + parent: 6 + type: Transform + - uid: 3255 + components: + - pos: -33.5,31.5 + parent: 6 + type: Transform + - uid: 3256 + components: + - pos: -32.5,31.5 + parent: 6 + type: Transform + - uid: 3257 + components: + - pos: -31.5,31.5 + parent: 6 + type: Transform + - uid: 3258 + components: + - pos: -37.5,31.5 + parent: 6 + type: Transform + - uid: 3259 + components: + - pos: -32.5,32.5 + parent: 6 + type: Transform + - uid: 3260 + components: + - pos: -30.5,31.5 + parent: 6 + type: Transform + - uid: 3261 + components: + - pos: -30.5,30.5 + parent: 6 + type: Transform + - uid: 3262 + components: + - pos: -30.5,29.5 + parent: 6 + type: Transform + - uid: 3263 + components: + - pos: -29.5,31.5 + parent: 6 + type: Transform + - uid: 3264 + components: + - pos: -29.5,30.5 + parent: 6 + type: Transform + - uid: 3265 + components: + - pos: -29.5,29.5 + parent: 6 + type: Transform + - uid: 3266 + components: + - pos: -28.5,30.5 + parent: 6 + type: Transform + - uid: 3267 + components: + - pos: -28.5,29.5 + parent: 6 + type: Transform + - uid: 3268 + components: + - pos: -28.5,28.5 + parent: 6 + type: Transform + - uid: 3269 + components: + - pos: -27.5,30.5 + parent: 6 + type: Transform + - uid: 3270 + components: + - pos: -27.5,29.5 + parent: 6 + type: Transform + - uid: 3271 + components: + - pos: -27.5,28.5 + parent: 6 + type: Transform + - uid: 3272 + components: + - pos: -28.5,27.5 + parent: 6 + type: Transform + - uid: 3273 + components: + - pos: -28.5,26.5 + parent: 6 + type: Transform + - uid: 3274 + components: + - pos: -27.5,27.5 + parent: 6 + type: Transform + - uid: 3275 + components: + - pos: -27.5,26.5 + parent: 6 + type: Transform + - uid: 3276 + components: + - pos: -26.5,27.5 + parent: 6 + type: Transform + - uid: 3277 + components: + - pos: -26.5,26.5 + parent: 6 + type: Transform + - uid: 3278 + components: + - pos: -25.5,27.5 + parent: 6 + type: Transform + - uid: 3279 + components: + - pos: -25.5,26.5 + parent: 6 + type: Transform + - uid: 3280 + components: + - pos: -24.5,27.5 + parent: 6 + type: Transform + - uid: 3281 + components: + - pos: -24.5,26.5 + parent: 6 + type: Transform + - uid: 3282 + components: + - pos: -23.5,27.5 + parent: 6 + type: Transform + - uid: 3283 + components: + - pos: -23.5,26.5 + parent: 6 + type: Transform + - uid: 3284 + components: + - pos: -22.5,27.5 + parent: 6 + type: Transform + - uid: 3285 + components: + - pos: -22.5,26.5 + parent: 6 + type: Transform + - uid: 3288 + components: + - pos: -24.5,28.5 + parent: 6 + type: Transform + - uid: 3289 + components: + - pos: -23.5,28.5 + parent: 6 + type: Transform + - uid: 3290 + components: + - pos: -22.5,28.5 + parent: 6 + type: Transform + - uid: 3291 + components: + - pos: -22.5,29.5 + parent: 6 + type: Transform + - uid: 3292 + components: + - pos: -23.5,29.5 + parent: 6 + type: Transform + - uid: 3293 + components: + - pos: -24.5,29.5 + parent: 6 + type: Transform + - uid: 3294 + components: + - pos: -25.5,29.5 + parent: 6 + type: Transform + - uid: 3295 + components: + - pos: -26.5,29.5 + parent: 6 + type: Transform + - uid: 3296 + components: + - pos: -21.5,28.5 + parent: 6 + type: Transform + - uid: 3297 + components: + - pos: -21.5,27.5 + parent: 6 + type: Transform + - uid: 3298 + components: + - pos: -21.5,26.5 + parent: 6 + type: Transform + - uid: 3299 + components: + - pos: -21.5,25.5 + parent: 6 + type: Transform + - uid: 3300 + components: + - pos: -21.5,24.5 + parent: 6 + type: Transform + - uid: 3301 + components: + - pos: -21.5,23.5 + parent: 6 + type: Transform + - uid: 3302 + components: + - pos: -23.5,25.5 + parent: 6 + type: Transform + - uid: 3303 + components: + - pos: -23.5,24.5 + parent: 6 + type: Transform + - uid: 3304 + components: + - pos: -23.5,23.5 + parent: 6 + type: Transform + - uid: 3305 + components: + - pos: -23.5,22.5 + parent: 6 + type: Transform + - uid: 3306 + components: + - pos: -23.5,21.5 + parent: 6 + type: Transform + - uid: 3307 + components: + - pos: -22.5,25.5 + parent: 6 + type: Transform + - uid: 3309 + components: + - pos: -22.5,23.5 + parent: 6 + type: Transform + - uid: 3310 + components: + - pos: -22.5,22.5 + parent: 6 + type: Transform + - uid: 3311 + components: + - pos: -22.5,21.5 + parent: 6 + type: Transform + - uid: 3312 + components: + - pos: -21.5,22.5 + parent: 6 + type: Transform + - uid: 3313 + components: + - pos: -21.5,21.5 + parent: 6 + type: Transform + - uid: 3314 + components: + - pos: -21.5,20.5 + parent: 6 + type: Transform + - uid: 3315 + components: + - pos: -21.5,19.5 + parent: 6 + type: Transform + - uid: 3316 + components: + - pos: -20.5,22.5 + parent: 6 + type: Transform + - uid: 3317 + components: + - pos: -20.5,21.5 + parent: 6 + type: Transform + - uid: 3318 + components: + - pos: -20.5,20.5 + parent: 6 + type: Transform + - uid: 3319 + components: + - pos: -20.5,19.5 + parent: 6 + type: Transform + - uid: 3320 + components: + - pos: -22.5,19.5 + parent: 6 + type: Transform + - uid: 3321 + components: + - pos: -22.5,20.5 + parent: 6 + type: Transform + - uid: 3322 + components: + - pos: -23.5,20.5 + parent: 6 + type: Transform + - uid: 3385 + components: + - pos: 2.5,10.5 + parent: 6 + type: Transform + - uid: 3386 + components: + - pos: 2.5,11.5 + parent: 6 + type: Transform + - uid: 3387 + components: + - pos: 3.5,10.5 + parent: 6 + type: Transform + - uid: 3430 + components: + - pos: -22.5,18.5 + parent: 6 + type: Transform + - uid: 3431 + components: + - pos: -22.5,17.5 + parent: 6 + type: Transform + - uid: 3432 + components: + - pos: -22.5,16.5 + parent: 6 + type: Transform + - uid: 3433 + components: + - pos: -21.5,18.5 + parent: 6 + type: Transform + - uid: 3434 + components: + - pos: -21.5,17.5 + parent: 6 + type: Transform + - uid: 3435 + components: + - pos: -21.5,16.5 + parent: 6 + type: Transform + - uid: 3436 + components: + - pos: -29.5,28.5 + parent: 6 + type: Transform + - uid: 3613 + components: + - pos: -12.5,-78.5 + parent: 6 + type: Transform + - uid: 3614 + components: + - pos: -12.5,-79.5 + parent: 6 + type: Transform + - uid: 3615 + components: + - pos: -12.5,-80.5 + parent: 6 + type: Transform + - uid: 3616 + components: + - pos: -11.5,-79.5 + parent: 6 + type: Transform + - uid: 3617 + components: + - pos: -11.5,-80.5 + parent: 6 + type: Transform + - uid: 3619 + components: + - pos: -10.5,-80.5 + parent: 6 + type: Transform + - uid: 3620 + components: + - pos: -9.5,-79.5 + parent: 6 + type: Transform + - uid: 3621 + components: + - pos: -9.5,-80.5 + parent: 6 + type: Transform + - uid: 3622 + components: + - pos: -11.5,-81.5 + parent: 6 + type: Transform + - uid: 3623 + components: + - pos: -10.5,-81.5 + parent: 6 + type: Transform + - uid: 3624 + components: + - pos: -9.5,-81.5 + parent: 6 + type: Transform + - uid: 3625 + components: + - pos: -9.5,-82.5 + parent: 6 + type: Transform + - uid: 3626 + components: + - pos: -13.5,-78.5 + parent: 6 + type: Transform + - uid: 3628 + components: + - pos: -13.5,-76.5 + parent: 6 + type: Transform + - uid: 3629 + components: + - pos: -13.5,-77.5 + parent: 6 + type: Transform + - uid: 3630 + components: + - pos: -14.5,-77.5 + parent: 6 + type: Transform + - uid: 3631 + components: + - pos: -14.5,-76.5 + parent: 6 + type: Transform + - uid: 3632 + components: + - pos: -14.5,-75.5 + parent: 6 + type: Transform + - uid: 3633 + components: + - pos: -14.5,-73.5 + parent: 6 + type: Transform + - uid: 3634 + components: + - pos: -14.5,-72.5 + parent: 6 + type: Transform + - uid: 3636 + components: + - pos: -13.5,-73.5 + parent: 6 + type: Transform + - uid: 3637 + components: + - pos: -13.5,-72.5 + parent: 6 + type: Transform + - uid: 3638 + components: + - pos: -13.5,-71.5 + parent: 6 + type: Transform + - uid: 3640 + components: + - pos: -12.5,-70.5 + parent: 6 + type: Transform + - uid: 3715 + components: + - pos: -9.5,-64.5 + parent: 6 + type: Transform + - uid: 3716 + components: + - pos: -10.5,-64.5 + parent: 6 + type: Transform + - uid: 3717 + components: + - pos: -10.5,-63.5 + parent: 6 + type: Transform + - uid: 3718 + components: + - pos: -10.5,-62.5 + parent: 6 + type: Transform + - uid: 3719 + components: + - pos: -10.5,-61.5 + parent: 6 + type: Transform + - uid: 3720 + components: + - pos: -11.5,-63.5 + parent: 6 + type: Transform + - uid: 3723 + components: + - pos: -12.5,-63.5 + parent: 6 + type: Transform + - uid: 3724 + components: + - pos: -12.5,-62.5 + parent: 6 + type: Transform + - uid: 3726 + components: + - pos: -13.5,-63.5 + parent: 6 + type: Transform + - uid: 3727 + components: + - pos: -13.5,-62.5 + parent: 6 + type: Transform + - uid: 3731 + components: + - pos: -14.5,-63.5 + parent: 6 + type: Transform + - uid: 3732 + components: + - pos: -14.5,-62.5 + parent: 6 + type: Transform + - uid: 3733 + components: + - pos: -14.5,-61.5 + parent: 6 + type: Transform + - uid: 3734 + components: + - pos: -15.5,-63.5 + parent: 6 + type: Transform + - uid: 3736 + components: + - pos: -15.5,-61.5 + parent: 6 + type: Transform + - uid: 3737 + components: + - pos: -16.5,-63.5 + parent: 6 + type: Transform + - uid: 3738 + components: + - pos: -16.5,-62.5 + parent: 6 + type: Transform + - uid: 3739 + components: + - pos: -16.5,-61.5 + parent: 6 + type: Transform + - uid: 3740 + components: + - pos: -17.5,-63.5 + parent: 6 + type: Transform + - uid: 3741 + components: + - pos: -17.5,-62.5 + parent: 6 + type: Transform + - uid: 3742 + components: + - pos: -17.5,-61.5 + parent: 6 + type: Transform + - uid: 3743 + components: + - pos: -18.5,-63.5 + parent: 6 + type: Transform + - uid: 3745 + components: + - pos: -18.5,-61.5 + parent: 6 + type: Transform + - uid: 3746 + components: + - pos: -19.5,-63.5 + parent: 6 + type: Transform + - uid: 3747 + components: + - pos: -19.5,-62.5 + parent: 6 + type: Transform + - uid: 3748 + components: + - pos: -19.5,-61.5 + parent: 6 + type: Transform + - uid: 3749 + components: + - pos: -18.5,-64.5 + parent: 6 + type: Transform + - uid: 3750 + components: + - pos: -19.5,-64.5 + parent: 6 + type: Transform + - uid: 3751 + components: + - pos: -20.5,-64.5 + parent: 6 + type: Transform + - uid: 3752 + components: + - pos: -20.5,-63.5 + parent: 6 + type: Transform + - uid: 3753 + components: + - pos: -20.5,-62.5 + parent: 6 + type: Transform + - uid: 3754 + components: + - pos: -20.5,-61.5 + parent: 6 + type: Transform + - uid: 3765 + components: + - pos: -26.5,-64.5 + parent: 6 + type: Transform + - uid: 3805 + components: + - pos: -39.5,-62.5 + parent: 6 + type: Transform + - uid: 3807 + components: + - pos: -40.5,-62.5 + parent: 6 + type: Transform + - uid: 3808 + components: + - pos: -40.5,-61.5 + parent: 6 + type: Transform + - uid: 3809 + components: + - pos: -41.5,-61.5 + parent: 6 + type: Transform + - uid: 3810 + components: + - pos: -41.5,-60.5 + parent: 6 + type: Transform + - uid: 3811 + components: + - pos: -42.5,-60.5 + parent: 6 + type: Transform + - uid: 3812 + components: + - pos: -43.5,-59.5 + parent: 6 + type: Transform + - uid: 3815 + components: + - pos: -42.5,-59.5 + parent: 6 + type: Transform + - uid: 3818 + components: + - pos: -41.5,-59.5 + parent: 6 + type: Transform + - uid: 3821 + components: + - pos: -44.5,-59.5 + parent: 6 + type: Transform + - uid: 3822 + components: + - pos: -44.5,-57.5 + parent: 6 + type: Transform + - uid: 3823 + components: + - pos: -44.5,-58.5 + parent: 6 + type: Transform + - uid: 3827 + components: + - pos: -44.5,-56.5 + parent: 6 + type: Transform + - uid: 3828 + components: + - pos: -45.5,-56.5 + parent: 6 + type: Transform + - uid: 3829 + components: + - pos: -46.5,-56.5 + parent: 6 + type: Transform + - uid: 3830 + components: + - pos: -47.5,-56.5 + parent: 6 + type: Transform + - uid: 3832 + components: + - pos: -48.5,-55.5 + parent: 6 + type: Transform + - uid: 3833 + components: + - pos: -48.5,-54.5 + parent: 6 + type: Transform + - uid: 3834 + components: + - pos: -49.5,-54.5 + parent: 6 + type: Transform + - uid: 3835 + components: + - pos: -50.5,-54.5 + parent: 6 + type: Transform + - uid: 3836 + components: + - pos: -51.5,-54.5 + parent: 6 + type: Transform + - uid: 3837 + components: + - pos: -52.5,-54.5 + parent: 6 + type: Transform + - uid: 3838 + components: + - pos: -53.5,-54.5 + parent: 6 + type: Transform + - uid: 3839 + components: + - pos: -54.5,-54.5 + parent: 6 + type: Transform + - uid: 3840 + components: + - pos: -54.5,-53.5 + parent: 6 + type: Transform + - uid: 3841 + components: + - pos: -54.5,-52.5 + parent: 6 + type: Transform + - uid: 3842 + components: + - pos: -54.5,-51.5 + parent: 6 + type: Transform + - uid: 3843 + components: + - pos: -54.5,-50.5 + parent: 6 + type: Transform + - uid: 3844 + components: + - pos: -55.5,-50.5 + parent: 6 + type: Transform + - uid: 3845 + components: + - pos: -56.5,-50.5 + parent: 6 + type: Transform + - uid: 3846 + components: + - pos: -56.5,-49.5 + parent: 6 + type: Transform + - uid: 3847 + components: + - pos: -57.5,-50.5 + parent: 6 + type: Transform + - uid: 3848 + components: + - pos: -57.5,-49.5 + parent: 6 + type: Transform + - uid: 3850 + components: + - pos: -59.5,-41.5 + parent: 6 + type: Transform + - uid: 3851 + components: + - pos: -58.5,-50.5 + parent: 6 + type: Transform + - uid: 3852 + components: + - pos: -58.5,-49.5 + parent: 6 + type: Transform + - uid: 3855 + components: + - pos: -52.5,-37.5 + parent: 6 + type: Transform + - uid: 3856 + components: + - pos: -52.5,-38.5 + parent: 6 + type: Transform + - uid: 3857 + components: + - pos: -52.5,-39.5 + parent: 6 + type: Transform + - uid: 3858 + components: + - pos: -53.5,-37.5 + parent: 6 + type: Transform + - uid: 3859 + components: + - pos: -53.5,-38.5 + parent: 6 + type: Transform + - uid: 3861 + components: + - pos: -54.5,-37.5 + parent: 6 + type: Transform + - uid: 3862 + components: + - pos: -54.5,-38.5 + parent: 6 + type: Transform + - uid: 3864 + components: + - pos: -55.5,-37.5 + parent: 6 + type: Transform + - uid: 3865 + components: + - pos: -55.5,-38.5 + parent: 6 + type: Transform + - uid: 3867 + components: + - pos: -56.5,-38.5 + parent: 6 + type: Transform + - uid: 3868 + components: + - pos: -56.5,-39.5 + parent: 6 + type: Transform + - uid: 3869 + components: + - pos: -57.5,-39.5 + parent: 6 + type: Transform + - uid: 3871 + components: + - pos: -60.5,-46.5 + parent: 6 + type: Transform + - uid: 3872 + components: + - pos: -58.5,-39.5 + parent: 6 + type: Transform + - uid: 3875 + components: + - pos: -64.5,-21.5 + parent: 6 + type: Transform + - uid: 3876 + components: + - pos: -64.5,-20.5 + parent: 6 + type: Transform + - uid: 3877 + components: + - pos: -64.5,-19.5 + parent: 6 + type: Transform + - uid: 3878 + components: + - pos: -65.5,-21.5 + parent: 6 + type: Transform + - uid: 3879 + components: + - pos: -65.5,-20.5 + parent: 6 + type: Transform + - uid: 3880 + components: + - pos: -65.5,-19.5 + parent: 6 + type: Transform + - uid: 3881 + components: + - pos: -66.5,-21.5 + parent: 6 + type: Transform + - uid: 3882 + components: + - pos: -66.5,-20.5 + parent: 6 + type: Transform + - uid: 3883 + components: + - pos: -66.5,-19.5 + parent: 6 + type: Transform + - uid: 3885 + components: + - pos: -67.5,-20.5 + parent: 6 + type: Transform + - uid: 3886 + components: + - pos: -67.5,-19.5 + parent: 6 + type: Transform + - uid: 3888 + components: + - pos: -68.5,-20.5 + parent: 6 + type: Transform + - uid: 3889 + components: + - pos: -68.5,-19.5 + parent: 6 + type: Transform + - uid: 3894 + components: + - pos: -69.5,-20.5 + parent: 6 + type: Transform + - uid: 3895 + components: + - pos: -69.5,-19.5 + parent: 6 + type: Transform + - uid: 3899 + components: + - pos: -72.5,-15.5 + parent: 6 + type: Transform + - uid: 3900 + components: + - pos: -72.5,-16.5 + parent: 6 + type: Transform + - uid: 3901 + components: + - pos: -71.5,-15.5 + parent: 6 + type: Transform + - uid: 3902 + components: + - pos: -71.5,-16.5 + parent: 6 + type: Transform + - uid: 3904 + components: + - pos: -70.5,-16.5 + parent: 6 + type: Transform + - uid: 3906 + components: + - pos: -69.5,-16.5 + parent: 6 + type: Transform + - uid: 3907 + components: + - pos: -68.5,-15.5 + parent: 6 + type: Transform + - uid: 3908 + components: + - pos: -68.5,-16.5 + parent: 6 + type: Transform + - uid: 3909 + components: + - pos: -70.5,-17.5 + parent: 6 + type: Transform + - uid: 3910 + components: + - pos: -70.5,-18.5 + parent: 6 + type: Transform + - uid: 3912 + components: + - pos: -69.5,-18.5 + parent: 6 + type: Transform + - uid: 3913 + components: + - pos: -68.5,-17.5 + parent: 6 + type: Transform + - uid: 3914 + components: + - pos: -68.5,-18.5 + parent: 6 + type: Transform + - uid: 3915 + components: + - pos: -45.5,-57.5 + parent: 6 + type: Transform + - uid: 3916 + components: + - pos: -45.5,-58.5 + parent: 6 + type: Transform + - uid: 3917 + components: + - pos: -46.5,-57.5 + parent: 6 + type: Transform + - uid: 3918 + components: + - pos: -46.5,-58.5 + parent: 6 + type: Transform + - uid: 3919 + components: + - pos: -47.5,-57.5 + parent: 6 + type: Transform + - uid: 3920 + components: + - pos: -47.5,-58.5 + parent: 6 + type: Transform + - uid: 3921 + components: + - pos: -48.5,-57.5 + parent: 6 + type: Transform + - uid: 3922 + components: + - pos: -48.5,-58.5 + parent: 6 + type: Transform + - uid: 3923 + components: + - pos: -49.5,-57.5 + parent: 6 + type: Transform + - uid: 3924 + components: + - pos: -49.5,-58.5 + parent: 6 + type: Transform + - uid: 3925 + components: + - pos: -50.5,-57.5 + parent: 6 + type: Transform + - uid: 3926 + components: + - pos: -50.5,-58.5 + parent: 6 + type: Transform + - uid: 3927 + components: + - pos: -49.5,-56.5 + parent: 6 + type: Transform + - uid: 3928 + components: + - pos: -49.5,-55.5 + parent: 6 + type: Transform + - uid: 3929 + components: + - pos: -50.5,-56.5 + parent: 6 + type: Transform + - uid: 3930 + components: + - pos: -61.5,-43.5 + parent: 6 + type: Transform + - uid: 3931 + components: + - pos: -51.5,-56.5 + parent: 6 + type: Transform + - uid: 3932 + components: + - pos: -51.5,-55.5 + parent: 6 + type: Transform + - uid: 3933 + components: + - pos: -52.5,-56.5 + parent: 6 + type: Transform + - uid: 3934 + components: + - pos: -52.5,-55.5 + parent: 6 + type: Transform + - uid: 3935 + components: + - pos: -53.5,-56.5 + parent: 6 + type: Transform + - uid: 3936 + components: + - pos: -53.5,-55.5 + parent: 6 + type: Transform + - uid: 3937 + components: + - pos: -54.5,-56.5 + parent: 6 + type: Transform + - uid: 3938 + components: + - pos: -54.5,-55.5 + parent: 6 + type: Transform + - uid: 3939 + components: + - pos: -52.5,-57.5 + parent: 6 + type: Transform + - uid: 3940 + components: + - pos: -53.5,-57.5 + parent: 6 + type: Transform + - uid: 3941 + components: + - pos: -55.5,-55.5 + parent: 6 + type: Transform + - uid: 3942 + components: + - pos: -55.5,-54.5 + parent: 6 + type: Transform + - uid: 3944 + components: + - pos: -56.5,-55.5 + parent: 6 + type: Transform + - uid: 3945 + components: + - pos: -56.5,-54.5 + parent: 6 + type: Transform + - uid: 3946 + components: + - pos: -56.5,-53.5 + parent: 6 + type: Transform + - uid: 3947 + components: + - pos: -57.5,-51.5 + parent: 6 + type: Transform + - uid: 3948 + components: + - pos: -56.5,-51.5 + parent: 6 + type: Transform + - uid: 3949 + components: + - pos: -55.5,-51.5 + parent: 6 + type: Transform + - uid: 3950 + components: + - pos: -55.5,-52.5 + parent: 6 + type: Transform + - uid: 3951 + components: + - pos: -56.5,-52.5 + parent: 6 + type: Transform + - uid: 3963 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-64.5 + parent: 6 + type: Transform + - uid: 3967 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-63.5 + parent: 6 + type: Transform + - uid: 3968 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-62.5 + parent: 6 + type: Transform + - uid: 3969 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-61.5 + parent: 6 + type: Transform + - uid: 3970 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-63.5 + parent: 6 + type: Transform + - uid: 3972 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-61.5 + parent: 6 + type: Transform + - uid: 3973 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-63.5 + parent: 6 + type: Transform + - uid: 3974 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-62.5 + parent: 6 + type: Transform + - uid: 3975 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-61.5 + parent: 6 + type: Transform + - uid: 3976 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-62.5 + parent: 6 + type: Transform + - uid: 3977 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-61.5 + parent: 6 + type: Transform + - uid: 4166 + components: + - pos: -59.5,-42.5 + parent: 6 + type: Transform + - uid: 4167 + components: + - pos: -59.5,-40.5 + parent: 6 + type: Transform + - uid: 4168 + components: + - pos: -61.5,-45.5 + parent: 6 + type: Transform + - uid: 4213 + components: + - pos: -59.5,-46.5 + parent: 6 + type: Transform + - uid: 4214 + components: + - pos: -60.5,-44.5 + parent: 6 + type: Transform + - uid: 4234 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-55.5 + parent: 6 + type: Transform + - uid: 4237 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-52.5 + parent: 6 + type: Transform + - uid: 4240 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-54.5 + parent: 6 + type: Transform + - uid: 4242 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-52.5 + parent: 6 + type: Transform + - uid: 4243 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-51.5 + parent: 6 + type: Transform + - uid: 4244 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-50.5 + parent: 6 + type: Transform + - uid: 4245 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-54.5 + parent: 6 + type: Transform + - uid: 4246 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-53.5 + parent: 6 + type: Transform + - uid: 4247 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-52.5 + parent: 6 + type: Transform + - uid: 4248 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-51.5 + parent: 6 + type: Transform + - uid: 4249 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-50.5 + parent: 6 + type: Transform + - uid: 4250 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-53.5 + parent: 6 + type: Transform + - uid: 4251 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-52.5 + parent: 6 + type: Transform + - uid: 4252 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-51.5 + parent: 6 + type: Transform + - uid: 4253 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-50.5 + parent: 6 + type: Transform + - uid: 4254 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-53.5 + parent: 6 + type: Transform + - uid: 4255 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-52.5 + parent: 6 + type: Transform + - uid: 4256 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-51.5 + parent: 6 + type: Transform + - uid: 4257 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-50.5 + parent: 6 + type: Transform + - uid: 4258 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-53.5 + parent: 6 + type: Transform + - uid: 4259 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-53.5 + parent: 6 + type: Transform + - uid: 4260 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-52.5 + parent: 6 + type: Transform + - uid: 4262 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-50.5 + parent: 6 + type: Transform + - uid: 4263 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-52.5 + parent: 6 + type: Transform + - uid: 4264 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-51.5 + parent: 6 + type: Transform + - uid: 4265 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-50.5 + parent: 6 + type: Transform + - uid: 4266 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-52.5 + parent: 6 + type: Transform + - uid: 4268 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-50.5 + parent: 6 + type: Transform + - uid: 4269 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-52.5 + parent: 6 + type: Transform + - uid: 4270 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-51.5 + parent: 6 + type: Transform + - uid: 4271 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-50.5 + parent: 6 + type: Transform + - uid: 4272 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-52.5 + parent: 6 + type: Transform + - uid: 4273 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-51.5 + parent: 6 + type: Transform + - uid: 4274 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-50.5 + parent: 6 + type: Transform + - uid: 4275 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-52.5 + parent: 6 + type: Transform + - uid: 4276 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-51.5 + parent: 6 + type: Transform + - uid: 4277 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-50.5 + parent: 6 + type: Transform + - uid: 4278 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-50.5 + parent: 6 + type: Transform + - uid: 4279 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-49.5 + parent: 6 + type: Transform + - uid: 4280 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-51.5 + parent: 6 + type: Transform + - uid: 4281 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-50.5 + parent: 6 + type: Transform + - uid: 4282 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-49.5 + parent: 6 + type: Transform + - uid: 4283 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-50.5 + parent: 6 + type: Transform + - uid: 4284 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-49.5 + parent: 6 + type: Transform + - uid: 4285 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-48.5 + parent: 6 + type: Transform + - uid: 4286 + components: + - pos: 21.5,-47.5 + parent: 6 + type: Transform + - uid: 4287 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-46.5 + parent: 6 + type: Transform + - uid: 4288 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-45.5 + parent: 6 + type: Transform + - uid: 4289 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-46.5 + parent: 6 + type: Transform + - uid: 4290 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-45.5 + parent: 6 + type: Transform + - uid: 4291 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-44.5 + parent: 6 + type: Transform + - uid: 4292 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-43.5 + parent: 6 + type: Transform + - uid: 4293 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-42.5 + parent: 6 + type: Transform + - uid: 4294 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-41.5 + parent: 6 + type: Transform + - uid: 4296 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-43.5 + parent: 6 + type: Transform + - uid: 4297 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-42.5 + parent: 6 + type: Transform + - uid: 4298 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-41.5 + parent: 6 + type: Transform + - uid: 4301 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-40.5 + parent: 6 + type: Transform + - uid: 4302 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-32.5 + parent: 6 + type: Transform + - uid: 4304 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-31.5 + parent: 6 + type: Transform + - uid: 4305 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-30.5 + parent: 6 + type: Transform + - uid: 4306 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-29.5 + parent: 6 + type: Transform + - uid: 4307 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-28.5 + parent: 6 + type: Transform + - uid: 4308 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-27.5 + parent: 6 + type: Transform + - uid: 4311 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-30.5 + parent: 6 + type: Transform + - uid: 4314 + components: + - pos: -12.5,12.5 + parent: 6 + type: Transform + - uid: 4315 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-26.5 + parent: 6 + type: Transform + - uid: 4316 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-25.5 + parent: 6 + type: Transform + - uid: 4317 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 6 + type: Transform + - uid: 4320 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-24.5 + parent: 6 + type: Transform + - uid: 4321 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 6 + type: Transform + - uid: 4322 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-17.5 + parent: 6 + type: Transform + - uid: 4323 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-16.5 + parent: 6 + type: Transform + - uid: 4325 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 6 + type: Transform + - uid: 4326 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 6 + type: Transform + - uid: 4327 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-16.5 + parent: 6 + type: Transform + - uid: 4328 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-15.5 + parent: 6 + type: Transform + - uid: 4329 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-17.5 + parent: 6 + type: Transform + - uid: 4330 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-16.5 + parent: 6 + type: Transform + - uid: 4331 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-15.5 + parent: 6 + type: Transform + - uid: 4332 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-14.5 + parent: 6 + type: Transform + - uid: 4333 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-16.5 + parent: 6 + type: Transform + - uid: 4334 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-15.5 + parent: 6 + type: Transform + - uid: 4335 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-14.5 + parent: 6 + type: Transform + - uid: 4336 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-14.5 + parent: 6 + type: Transform + - uid: 4337 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-14.5 + parent: 6 + type: Transform + - uid: 4338 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-14.5 + parent: 6 + type: Transform + - uid: 4339 + components: + - pos: 15.5,24.5 + parent: 6 + type: Transform + - uid: 4340 + components: + - pos: 16.5,24.5 + parent: 6 + type: Transform + - uid: 4341 + components: + - pos: 17.5,24.5 + parent: 6 + type: Transform + - uid: 4342 + components: + - pos: 18.5,24.5 + parent: 6 + type: Transform + - uid: 4349 + components: + - pos: 19.5,24.5 + parent: 6 + type: Transform + - uid: 4381 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,12.5 + parent: 6 + type: Transform + - uid: 4403 + components: + - pos: -19.5,12.5 + parent: 6 + type: Transform + - uid: 4455 + components: + - pos: 22.5,24.5 + parent: 6 + type: Transform + - uid: 4483 + components: + - pos: -20.5,12.5 + parent: 6 + type: Transform + - uid: 4525 + components: + - pos: -47.5,-4.5 + parent: 6 + type: Transform + - uid: 4526 + components: + - pos: -47.5,-5.5 + parent: 6 + type: Transform + - uid: 4527 + components: + - pos: -48.5,-5.5 + parent: 6 + type: Transform + - uid: 4595 + components: + - pos: -11.5,12.5 + parent: 6 + type: Transform + - uid: 4921 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,10.5 + parent: 6 + type: Transform + - uid: 4922 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,10.5 + parent: 6 + type: Transform + - uid: 4926 + components: + - pos: -21.5,9.5 + parent: 6 + type: Transform + - uid: 4931 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,9.5 + parent: 6 + type: Transform + - uid: 4932 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,10.5 + parent: 6 + type: Transform + - uid: 4939 + components: + - pos: 3.5,11.5 + parent: 6 + type: Transform + - uid: 4942 + components: + - pos: -20.5,9.5 + parent: 6 + type: Transform + - uid: 5177 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-74.5 + parent: 6 + type: Transform + - uid: 5449 + components: + - pos: -59.5,-48.5 + parent: 6 + type: Transform + - uid: 5450 + components: + - pos: -59.5,-47.5 + parent: 6 + type: Transform + - uid: 5451 + components: + - pos: -60.5,-26.5 + parent: 6 + type: Transform + - uid: 5452 + components: + - pos: -60.5,-41.5 + parent: 6 + type: Transform + - uid: 5453 + components: + - pos: -59.5,-25.5 + parent: 6 + type: Transform + - uid: 5465 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-75.5 + parent: 6 + type: Transform + - uid: 5561 + components: + - pos: -68.5,-6.5 + parent: 6 + type: Transform + - uid: 5562 + components: + - pos: -54.5,-6.5 + parent: 6 + type: Transform + - uid: 5721 + components: + - pos: 27.5,12.5 + parent: 6 + type: Transform + - uid: 5722 + components: + - pos: 26.5,12.5 + parent: 6 + type: Transform + - uid: 5723 + components: + - pos: 28.5,11.5 + parent: 6 + type: Transform + - uid: 5728 + components: + - pos: 25.5,12.5 + parent: 6 + type: Transform + - uid: 6181 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-63.5 + parent: 6 + type: Transform + - uid: 6182 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-63.5 + parent: 6 + type: Transform + - uid: 6183 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-63.5 + parent: 6 + type: Transform + - uid: 6460 + components: + - pos: -28.5,22.5 + parent: 6 + type: Transform + - uid: 6461 + components: + - pos: -28.5,21.5 + parent: 6 + type: Transform + - uid: 6462 + components: + - pos: -27.5,22.5 + parent: 6 + type: Transform + - uid: 6463 + components: + - pos: -27.5,21.5 + parent: 6 + type: Transform + - uid: 6464 + components: + - pos: -27.5,20.5 + parent: 6 + type: Transform + - uid: 6465 + components: + - pos: -28.5,20.5 + parent: 6 + type: Transform + - uid: 6466 + components: + - pos: -28.5,19.5 + parent: 6 + type: Transform + - uid: 6467 + components: + - pos: -34.5,30.5 + parent: 6 + type: Transform + - uid: 6468 + components: + - pos: -33.5,30.5 + parent: 6 + type: Transform + - uid: 6469 + components: + - pos: -29.5,27.5 + parent: 6 + type: Transform + - uid: 6470 + components: + - pos: -40.5,25.5 + parent: 6 + type: Transform + - uid: 6471 + components: + - pos: -40.5,24.5 + parent: 6 + type: Transform + - uid: 6472 + components: + - pos: -33.5,32.5 + parent: 6 + type: Transform + - uid: 6473 + components: + - pos: -34.5,32.5 + parent: 6 + type: Transform + - uid: 6474 + components: + - pos: -35.5,32.5 + parent: 6 + type: Transform + - uid: 6475 + components: + - pos: -36.5,32.5 + parent: 6 + type: Transform + - uid: 6606 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-64.5 + parent: 6 + type: Transform + - uid: 6607 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-64.5 + parent: 6 + type: Transform + - uid: 7845 + components: + - pos: -38.5,-62.5 + parent: 6 + type: Transform + - uid: 7847 + components: + - pos: -37.5,-62.5 + parent: 6 + type: Transform + - uid: 7849 + components: + - pos: -36.5,-62.5 + parent: 6 + type: Transform + - uid: 7850 + components: + - pos: -29.5,-63.5 + parent: 6 + type: Transform + - uid: 7853 + components: + - pos: -26.5,-63.5 + parent: 6 + type: Transform + - uid: 7854 + components: + - pos: -27.5,-64.5 + parent: 6 + type: Transform + - uid: 8023 + components: + - pos: -54.5,-24.5 + parent: 6 + type: Transform + - uid: 8024 + components: + - pos: -54.5,-25.5 + parent: 6 + type: Transform + - uid: 8025 + components: + - pos: -54.5,-26.5 + parent: 6 + type: Transform + - uid: 8026 + components: + - pos: -54.5,-27.5 + parent: 6 + type: Transform + - uid: 8027 + components: + - pos: -54.5,-28.5 + parent: 6 + type: Transform + - uid: 8028 + components: + - pos: -54.5,-29.5 + parent: 6 + type: Transform + - uid: 8029 + components: + - pos: -55.5,-24.5 + parent: 6 + type: Transform + - uid: 8030 + components: + - pos: -55.5,-25.5 + parent: 6 + type: Transform + - uid: 8031 + components: + - pos: -55.5,-26.5 + parent: 6 + type: Transform + - uid: 8033 + components: + - pos: -55.5,-28.5 + parent: 6 + type: Transform + - uid: 8034 + components: + - pos: -55.5,-29.5 + parent: 6 + type: Transform + - uid: 8035 + components: + - pos: -56.5,-28.5 + parent: 6 + type: Transform + - uid: 8036 + components: + - pos: -57.5,-28.5 + parent: 6 + type: Transform + - uid: 8037 + components: + - pos: -57.5,-27.5 + parent: 6 + type: Transform + - uid: 8038 + components: + - pos: -56.5,-27.5 + parent: 6 + type: Transform + - uid: 8039 + components: + - pos: -56.5,-26.5 + parent: 6 + type: Transform + - uid: 8040 + components: + - pos: -56.5,-25.5 + parent: 6 + type: Transform + - uid: 8041 + components: + - pos: -56.5,-24.5 + parent: 6 + type: Transform + - uid: 8042 + components: + - pos: -57.5,-26.5 + parent: 6 + type: Transform + - uid: 8044 + components: + - pos: -57.5,-24.5 + parent: 6 + type: Transform + - uid: 8045 + components: + - pos: -58.5,-26.5 + parent: 6 + type: Transform + - uid: 8046 + components: + - pos: -58.5,-25.5 + parent: 6 + type: Transform + - uid: 8047 + components: + - pos: -58.5,-24.5 + parent: 6 + type: Transform + - uid: 8048 + components: + - pos: -59.5,-24.5 + parent: 6 + type: Transform + - uid: 8049 + components: + - pos: -59.5,-23.5 + parent: 6 + type: Transform + - uid: 8050 + components: + - pos: -59.5,-22.5 + parent: 6 + type: Transform + - uid: 8056 + components: + - pos: -20.5,10.5 + parent: 6 + type: Transform + - uid: 8058 + components: + - pos: -18.5,10.5 + parent: 6 + type: Transform + - uid: 8059 + components: + - pos: -18.5,11.5 + parent: 6 + type: Transform + - uid: 8065 + components: + - pos: -12.5,11.5 + parent: 6 + type: Transform + - uid: 8066 + components: + - pos: -12.5,10.5 + parent: 6 + type: Transform + - uid: 8068 + components: + - pos: -11.5,11.5 + parent: 6 + type: Transform + - uid: 8069 + components: + - pos: -10.5,11.5 + parent: 6 + type: Transform + - uid: 8070 + components: + - pos: -10.5,10.5 + parent: 6 + type: Transform + - uid: 8072 + components: + - pos: 1.5,11.5 + parent: 6 + type: Transform + - uid: 8077 + components: + - pos: -19.5,11.5 + parent: 6 + type: Transform + - uid: 8078 + components: + - pos: -20.5,11.5 + parent: 6 + type: Transform + - uid: 8079 + components: + - pos: -21.5,11.5 + parent: 6 + type: Transform + - uid: 8278 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,12.5 + parent: 6 + type: Transform + - uid: 8279 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,12.5 + parent: 6 + type: Transform + - uid: 8280 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,12.5 + parent: 6 + type: Transform + - uid: 8281 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,12.5 + parent: 6 + type: Transform + - uid: 8282 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 6 + type: Transform + - uid: 8284 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 6 + type: Transform + - uid: 8286 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 6 + type: Transform + - uid: 10019 + components: + - pos: 3.5,-8.5 + parent: 10465 + type: Transform + - uid: 10196 + components: + - pos: 4.5,-10.5 + parent: 10465 + type: Transform + - uid: 10466 + components: + - pos: 2.5,-10.5 + parent: 10465 + type: Transform + - uid: 11176 + components: + - pos: 3.5,-9.5 + parent: 10465 + type: Transform + - uid: 11177 + components: + - pos: 1.5,-9.5 + parent: 10465 + type: Transform + - uid: 11996 + components: + - pos: -60.5,-25.5 + parent: 6 + type: Transform + - uid: 11999 + components: + - pos: -59.5,-26.5 + parent: 6 + type: Transform + - uid: 12670 + components: + - pos: 1.5,-8.5 + parent: 10465 + type: Transform + - uid: 12671 + components: + - pos: 1.5,-6.5 + parent: 10465 + type: Transform + - uid: 12729 + components: + - pos: 2.5,-2.5 + parent: 10465 + type: Transform + - uid: 13299 + components: + - pos: -61.5,-44.5 + parent: 6 + type: Transform + - uid: 13317 + components: + - pos: 8.5,-2.5 + parent: 10465 + type: Transform + - uid: 13318 + components: + - pos: 6.5,-1.5 + parent: 10465 + type: Transform + - uid: 13319 + components: + - pos: 2.5,-8.5 + parent: 10465 + type: Transform + - uid: 13406 + components: + - pos: 7.5,-2.5 + parent: 10465 + type: Transform + - uid: 13407 + components: + - pos: 2.5,-9.5 + parent: 10465 + type: Transform + - uid: 13408 + components: + - pos: 3.5,-4.5 + parent: 10465 + type: Transform + - uid: 13409 + components: + - pos: 2.5,-6.5 + parent: 10465 + type: Transform + - uid: 13450 + components: + - pos: 6.5,-3.5 + parent: 10465 + type: Transform + - uid: 13471 + components: + - pos: -1.5,-64.5 + parent: 6 + type: Transform + - uid: 13478 + components: + - pos: 6.5,-2.5 + parent: 10465 + type: Transform + - uid: 13514 + components: + - pos: 3.5,-6.5 + parent: 10465 + type: Transform + - uid: 13561 + components: + - pos: 3.5,-5.5 + parent: 10465 + type: Transform + - uid: 13578 + components: + - pos: 2.5,-4.5 + parent: 10465 + type: Transform + - uid: 13582 + components: + - pos: 5.5,-3.5 + parent: 10465 + type: Transform + - uid: 13583 + components: + - pos: 5.5,-2.5 + parent: 10465 + type: Transform + - uid: 13584 + components: + - pos: 10.5,-8.5 + parent: 10465 + type: Transform + - uid: 13585 + components: + - pos: 3.5,-7.5 + parent: 10465 + type: Transform + - uid: 13586 + components: + - pos: 0.5,-6.5 + parent: 10465 + type: Transform + - uid: 13587 + components: + - pos: 5.5,-1.5 + parent: 10465 + type: Transform + - uid: 13588 + components: + - pos: 4.5,-2.5 + parent: 10465 + type: Transform + - uid: 13589 + components: + - pos: 10.5,-6.5 + parent: 10465 + type: Transform + - uid: 13590 + components: + - pos: 10.5,-7.5 + parent: 10465 + type: Transform + - uid: 13591 + components: + - pos: 1.5,-3.5 + parent: 10465 + type: Transform + - uid: 13592 + components: + - pos: 3.5,-3.5 + parent: 10465 + type: Transform + - uid: 13593 + components: + - pos: 3.5,-2.5 + parent: 10465 + type: Transform + - uid: 13594 + components: + - pos: 4.5,-1.5 + parent: 10465 + type: Transform + - uid: 13595 + components: + - pos: 2.5,-3.5 + parent: 10465 + type: Transform + - uid: 13596 + components: + - pos: 0.5,-5.5 + parent: 10465 + type: Transform + - uid: 13597 + components: + - pos: 3.5,-10.5 + parent: 10465 + type: Transform + - uid: 13598 + components: + - pos: 2.5,-5.5 + parent: 10465 + type: Transform + - uid: 13600 + components: + - pos: 11.5,-7.5 + parent: 10465 + type: Transform + - uid: 13601 + components: + - pos: 11.5,-6.5 + parent: 10465 + type: Transform + - uid: 13602 + components: + - pos: 11.5,-5.5 + parent: 10465 + type: Transform + - uid: 13603 + components: + - pos: 11.5,-4.5 + parent: 10465 + type: Transform + - uid: 13604 + components: + - pos: 11.5,-3.5 + parent: 10465 + type: Transform + - uid: 13605 + components: + - pos: 12.5,-2.5 + parent: 10465 + type: Transform + - uid: 13606 + components: + - pos: 12.5,-3.5 + parent: 10465 + type: Transform + - uid: 13607 + components: + - pos: 12.5,-4.5 + parent: 10465 + type: Transform + - uid: 13608 + components: + - pos: 12.5,-5.5 + parent: 10465 + type: Transform + - uid: 13609 + components: + - pos: 7.5,-1.5 + parent: 10465 + type: Transform + - uid: 13610 + components: + - pos: 1.5,-7.5 + parent: 10465 + type: Transform + - uid: 13611 + components: + - pos: 1.5,-4.5 + parent: 10465 + type: Transform + - uid: 13618 + components: + - pos: 6.5,-0.5 + parent: 10465 + type: Transform + - uid: 13619 + components: + - pos: 7.5,-0.5 + parent: 10465 + type: Transform + - uid: 13620 + components: + - pos: 8.5,-0.5 + parent: 10465 + type: Transform + - uid: 13621 + components: + - pos: 9.5,-0.5 + parent: 10465 + type: Transform + - uid: 13622 + components: + - pos: 9.5,-1.5 + parent: 10465 + type: Transform + - uid: 13623 + components: + - pos: 10.5,-1.5 + parent: 10465 + type: Transform + - uid: 13624 + components: + - pos: 11.5,-1.5 + parent: 10465 + type: Transform + - uid: 13625 + components: + - pos: 11.5,-2.5 + parent: 10465 + type: Transform + - uid: 13636 + components: + - pos: 1.5,-2.5 + parent: 10465 + type: Transform + - uid: 13637 + components: + - pos: 2.5,-1.5 + parent: 10465 + type: Transform + - uid: 13681 + components: + - pos: -0.5,3.5 + parent: 13645 + type: Transform + - uid: 13682 + components: + - pos: -0.5,4.5 + parent: 13645 + type: Transform + - uid: 13683 + components: + - pos: -1.5,4.5 + parent: 13645 + type: Transform + - uid: 13684 + components: + - pos: -1.5,5.5 + parent: 13645 + type: Transform + - uid: 13685 + components: + - pos: 6.5,5.5 + parent: 13645 + type: Transform + - uid: 13686 + components: + - pos: 6.5,6.5 + parent: 13645 + type: Transform + - uid: 13687 + components: + - pos: 6.5,7.5 + parent: 13645 + type: Transform + - uid: 13688 + components: + - pos: 5.5,7.5 + parent: 13645 + type: Transform + - uid: 13689 + components: + - pos: 5.5,8.5 + parent: 13645 + type: Transform + - uid: 13690 + components: + - pos: 5.5,9.5 + parent: 13645 + type: Transform + - uid: 13691 + components: + - pos: 4.5,9.5 + parent: 13645 + type: Transform + - uid: 13692 + components: + - pos: 3.5,9.5 + parent: 13645 + type: Transform + - uid: 13693 + components: + - pos: 3.5,10.5 + parent: 13645 + type: Transform + - uid: 13694 + components: + - pos: 2.5,10.5 + parent: 13645 + type: Transform + - uid: 13695 + components: + - pos: 1.5,10.5 + parent: 13645 + type: Transform + - uid: 13696 + components: + - pos: 0.5,10.5 + parent: 13645 + type: Transform + - uid: 13697 + components: + - pos: -0.5,10.5 + parent: 13645 + type: Transform + - uid: 13698 + components: + - pos: -1.5,9.5 + parent: 13645 + type: Transform + - uid: 13699 + components: + - pos: -0.5,9.5 + parent: 13645 + type: Transform + - uid: 13700 + components: + - pos: -1.5,8.5 + parent: 13645 + type: Transform + - uid: 13701 + components: + - pos: -2.5,8.5 + parent: 13645 + type: Transform + - uid: 13702 + components: + - pos: -3.5,8.5 + parent: 13645 + type: Transform + - uid: 13703 + components: + - pos: -3.5,7.5 + parent: 13645 + type: Transform + - uid: 13704 + components: + - pos: -2.5,7.5 + parent: 13645 + type: Transform + - uid: 13705 + components: + - pos: -1.5,7.5 + parent: 13645 + type: Transform + - uid: 13706 + components: + - pos: -0.5,8.5 + parent: 13645 + type: Transform + - uid: 13707 + components: + - pos: 0.5,9.5 + parent: 13645 + type: Transform + - uid: 13708 + components: + - pos: 0.5,8.5 + parent: 13645 + type: Transform + - uid: 13709 + components: + - pos: 1.5,9.5 + parent: 13645 + type: Transform + - uid: 13710 + components: + - pos: 1.5,8.5 + parent: 13645 + type: Transform + - uid: 13711 + components: + - pos: 2.5,9.5 + parent: 13645 + type: Transform + - uid: 13712 + components: + - pos: 2.5,8.5 + parent: 13645 + type: Transform + - uid: 13713 + components: + - pos: 3.5,8.5 + parent: 13645 + type: Transform + - uid: 13714 + components: + - pos: 3.5,7.5 + parent: 13645 + type: Transform + - uid: 13715 + components: + - pos: 3.5,6.5 + parent: 13645 + type: Transform + - uid: 13716 + components: + - pos: 4.5,8.5 + parent: 13645 + type: Transform + - uid: 13717 + components: + - pos: 4.5,7.5 + parent: 13645 + type: Transform + - uid: 13718 + components: + - pos: 4.5,6.5 + parent: 13645 + type: Transform + - uid: 13719 + components: + - pos: 5.5,6.5 + parent: 13645 + type: Transform + - uid: 13720 + components: + - pos: -1.5,6.5 + parent: 13645 + type: Transform + - uid: 13721 + components: + - pos: -1.5,3.5 + parent: 13645 + type: Transform + - uid: 13722 + components: + - pos: -2.5,6.5 + parent: 13645 + type: Transform + - uid: 13723 + components: + - pos: -0.5,7.5 + parent: 13645 + type: Transform + - uid: 13724 + components: + - pos: -0.5,5.5 + parent: 13645 + type: Transform + - uid: 13725 + components: + - pos: -0.5,6.5 + parent: 13645 + type: Transform + - uid: 13726 + components: + - pos: 2.5,6.5 + parent: 13645 + type: Transform + - uid: 13727 + components: + - pos: -2.5,5.5 + parent: 13645 + type: Transform + - uid: 13728 + components: + - pos: -2.5,4.5 + parent: 13645 + type: Transform + - uid: 13729 + components: + - pos: -3.5,4.5 + parent: 13645 + type: Transform + - uid: 13730 + components: + - pos: -3.5,3.5 + parent: 13645 + type: Transform + - uid: 13731 + components: + - pos: -2.5,3.5 + parent: 13645 + type: Transform + - uid: 13732 + components: + - pos: -3.5,2.5 + parent: 13645 + type: Transform + - uid: 13733 + components: + - pos: -2.5,1.5 + parent: 13645 + type: Transform + - uid: 13734 + components: + - pos: -0.5,1.5 + parent: 13645 + type: Transform + - uid: 13735 + components: + - pos: -2.5,2.5 + parent: 13645 + type: Transform + - uid: 13736 + components: + - pos: -1.5,1.5 + parent: 13645 + type: Transform + - uid: 13737 + components: + - pos: -0.5,0.5 + parent: 13645 + type: Transform + - uid: 13738 + components: + - pos: -1.5,0.5 + parent: 13645 + type: Transform + - uid: 13739 + components: + - pos: -2.5,0.5 + parent: 13645 + type: Transform + - uid: 13740 + components: + - pos: -1.5,-0.5 + parent: 13645 + type: Transform + - uid: 13741 + components: + - pos: -0.5,-0.5 + parent: 13645 + type: Transform + - uid: 14054 + components: + - pos: -60.5,-43.5 + parent: 6 + type: Transform + - uid: 14237 + components: + - pos: -60.5,-42.5 + parent: 6 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 524 + components: + - pos: 42.5,-4.5 + parent: 6 + type: Transform + - uid: 651 + components: + - pos: 32.5,-4.5 + parent: 6 + type: Transform + - uid: 664 + components: + - pos: 32.5,2.5 + parent: 6 + type: Transform + - uid: 698 + components: + - pos: 42.5,2.5 + parent: 6 + type: Transform + - uid: 5606 + components: + - pos: 23.5,-35.5 + parent: 6 + type: Transform + - uid: 5607 + components: + - pos: 23.5,-37.5 + parent: 6 + type: Transform + - uid: 10842 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-6.5 + parent: 6 + type: Transform + - uid: 10843 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-6.5 + parent: 6 + type: Transform + - uid: 10844 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,-6.5 + parent: 6 + type: Transform + - uid: 10845 + components: + - rot: 1.5707963267948966 rad + pos: -66.5,-6.5 + parent: 6 + type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 10340 + components: + - pos: -44.5,13.5 + parent: 6 + type: Transform + - uid: 10341 + components: + - pos: -43.5,13.5 + parent: 6 + type: Transform + - uid: 10342 + components: + - pos: -42.5,13.5 + parent: 6 + type: Transform + - uid: 10343 + components: + - pos: -44.5,15.5 + parent: 6 + type: Transform + - uid: 10344 + components: + - pos: -43.5,15.5 + parent: 6 + type: Transform + - uid: 10345 + components: + - pos: -42.5,15.5 + parent: 6 + type: Transform + - uid: 10346 + components: + - pos: -44.5,19.5 + parent: 6 + type: Transform + - uid: 10347 + components: + - pos: -43.5,19.5 + parent: 6 + type: Transform + - uid: 10348 + components: + - pos: -42.5,19.5 + parent: 6 + type: Transform + - uid: 10349 + components: + - pos: -35.5,26.5 + parent: 6 + type: Transform + - uid: 10350 + components: + - pos: -34.5,26.5 + parent: 6 + type: Transform + - uid: 10351 + components: + - pos: -33.5,26.5 + parent: 6 + type: Transform +- proto: AtmosFixNitrogenMarker + entities: + - uid: 10331 + components: + - pos: -44.5,9.5 + parent: 6 + type: Transform + - uid: 10332 + components: + - pos: -43.5,9.5 + parent: 6 + type: Transform + - uid: 10333 + components: + - pos: -42.5,9.5 + parent: 6 + type: Transform +- proto: AtmosFixOxygenMarker + entities: + - uid: 10334 + components: + - pos: -44.5,11.5 + parent: 6 + type: Transform + - uid: 10335 + components: + - pos: -43.5,11.5 + parent: 6 + type: Transform + - uid: 10336 + components: + - pos: -42.5,11.5 + parent: 6 + type: Transform +- proto: AtmosFixPlasmaMarker + entities: + - uid: 10337 + components: + - pos: -44.5,17.5 + parent: 6 + type: Transform + - uid: 10338 + components: + - pos: -43.5,17.5 + parent: 6 + type: Transform + - uid: 10339 + components: + - pos: -42.5,17.5 + parent: 6 + type: Transform +- proto: Autolathe + entities: + - uid: 4478 + components: + - pos: -9.5,-50.5 + parent: 6 + type: Transform +- proto: BananaPhoneInstrument + entities: + - uid: 14279 + components: + - pos: 14.567757,-18.423681 + parent: 6 + type: Transform +- proto: BananaSeeds + entities: + - uid: 6344 + components: + - pos: 4.2892423,7.513359 + parent: 6 + type: Transform +- proto: BannerCargo + entities: + - uid: 5595 + components: + - pos: 11.5,-41.5 + parent: 6 + type: Transform +- proto: Barricade + entities: + - uid: 5727 + components: + - pos: 26.5,7.5 + parent: 6 + type: Transform + - uid: 5964 + components: + - pos: -40.5,-25.5 + parent: 6 + type: Transform + - uid: 5970 + components: + - pos: -24.5,-50.5 + parent: 6 + type: Transform + - uid: 6762 + components: + - pos: -43.5,-53.5 + parent: 6 + type: Transform + - uid: 6763 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-51.5 + parent: 6 + type: Transform + - uid: 6764 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-52.5 + parent: 6 + type: Transform + - uid: 6765 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-49.5 + parent: 6 + type: Transform + - uid: 6769 + components: + - pos: -42.5,-47.5 + parent: 6 + type: Transform + - uid: 7643 + components: + - pos: 26.5,-0.5 + parent: 6 + type: Transform + - uid: 7838 + components: + - pos: 27.5,-2.5 + parent: 6 + type: Transform +- proto: BarSignRobustaCafe + entities: + - uid: 468 + components: + - pos: 1.5,-13.5 + parent: 6 + type: Transform +- proto: BarSignTheCoderbus + entities: + - uid: 6772 + components: + - pos: -42.5,-48.5 + parent: 6 + type: Transform +- proto: BaseBallBat + entities: + - uid: 5914 + components: + - pos: 11.488698,18.472113 + parent: 6 + type: Transform + - nextAttack: 2458.7068358 + type: MeleeWeapon +- proto: BassGuitarInstrument + entities: + - uid: 3971 + components: + - pos: -0.5216835,-62.522614 + parent: 6 + type: Transform +- proto: Bed + entities: + - uid: 1697 + components: + - pos: 8.5,-1.5 + parent: 6 + type: Transform + - uid: 1698 + components: + - pos: 8.5,4.5 + parent: 6 + type: Transform + - uid: 4384 + components: + - pos: -8.5,-1.5 + parent: 6 + type: Transform + - uid: 4628 + components: + - pos: -3.5,-17.5 + parent: 6 + type: Transform + - uid: 5097 + components: + - pos: 3.5,-7.5 + parent: 6 + type: Transform + - uid: 5405 + components: + - pos: -25.5,-39.5 + parent: 6 + type: Transform + - uid: 5423 + components: + - pos: -40.5,-36.5 + parent: 6 + type: Transform + - uid: 5424 + components: + - pos: -47.5,-37.5 + parent: 6 + type: Transform + - uid: 5426 + components: + - pos: -45.5,-29.5 + parent: 6 + type: Transform + - uid: 5429 + components: + - pos: -40.5,-31.5 + parent: 6 + type: Transform + - uid: 5857 + components: + - pos: -41.5,-27.5 + parent: 6 + type: Transform + - uid: 5862 + components: + - pos: -26.5,-56.5 + parent: 6 + type: Transform + - uid: 5885 + components: + - pos: -26.5,-48.5 + parent: 6 + type: Transform + - uid: 5957 + components: + - pos: -37.5,-26.5 + parent: 6 + type: Transform + - uid: 5963 + components: + - pos: -39.5,-26.5 + parent: 6 + type: Transform + - uid: 6035 + components: + - pos: 10.5,18.5 + parent: 6 + type: Transform + - uid: 6036 + components: + - pos: 11.5,18.5 + parent: 6 + type: Transform + - uid: 6037 + components: + - pos: 12.5,18.5 + parent: 6 + type: Transform + - uid: 6204 + components: + - pos: -38.5,-41.5 + parent: 6 + type: Transform + - uid: 6235 + components: + - pos: -47.5,-41.5 + parent: 6 + type: Transform + - uid: 13613 + components: + - pos: 8.5,-7.5 + parent: 10465 + type: Transform +- proto: BedsheetBlack + entities: + - uid: 5884 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-48.5 + parent: 6 + type: Transform + - uid: 6246 + components: + - pos: -40.5,-36.5 + parent: 6 + type: Transform +- proto: BedsheetBlue + entities: + - uid: 5853 + components: + - pos: -39.5,-26.5 + parent: 6 + type: Transform +- proto: BedsheetCaptain + entities: + - uid: 4385 + components: + - pos: -8.5,-1.5 + parent: 6 + type: Transform +- proto: BedsheetClown + entities: + - uid: 6247 + components: + - pos: -40.5,-31.5 + parent: 6 + type: Transform +- proto: BedsheetCosmos + entities: + - uid: 6248 + components: + - pos: -47.5,-37.5 + parent: 6 + type: Transform + - uid: 13612 + components: + - pos: 8.5,-7.5 + parent: 10465 + type: Transform +- proto: BedsheetCult + entities: + - uid: 5863 + components: + - pos: -26.5,-56.5 + parent: 6 + type: Transform +- proto: BedsheetGreen + entities: + - uid: 6249 + components: + - pos: -47.5,-41.5 + parent: 6 + type: Transform +- proto: BedsheetHOP + entities: + - uid: 4398 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 6 + type: Transform +- proto: BedsheetMedical + entities: + - uid: 6439 + components: + - pos: -26.5,-32.5 + parent: 6 + type: Transform + - uid: 6440 + components: + - pos: -26.5,-30.5 + parent: 6 + type: Transform + - uid: 6441 + components: + - pos: -26.5,-28.5 + parent: 6 + type: Transform +- proto: BedsheetRed + entities: + - uid: 5959 + components: + - pos: -41.5,-27.5 + parent: 6 + type: Transform +- proto: BedsheetSpawner + entities: + - uid: 4630 + components: + - pos: -3.5,-17.5 + parent: 6 + type: Transform + - uid: 5406 + components: + - pos: -25.5,-39.5 + parent: 6 + type: Transform + - uid: 6244 + components: + - pos: -45.5,-29.5 + parent: 6 + type: Transform + - uid: 6245 + components: + - pos: -38.5,-41.5 + parent: 6 + type: Transform +- proto: BedsheetSyndie + entities: + - uid: 5913 + components: + - rot: 3.141592653589793 rad + pos: 10.5,18.5 + parent: 6 + type: Transform +- proto: BedsheetYellow + entities: + - uid: 5911 + components: + - pos: 12.5,18.5 + parent: 6 + type: Transform + - uid: 5912 + components: + - pos: 11.5,18.5 + parent: 6 + type: Transform +- proto: Bible + entities: + - uid: 5878 + components: + - pos: -27.580711,-47.42463 + parent: 6 + type: Transform +- proto: BikeHorn + entities: + - uid: 7624 + components: + - pos: -40.551613,-31.217503 + parent: 6 + type: Transform +- proto: BiomassReclaimer + entities: + - uid: 700 + components: + - pos: -30.5,-27.5 + parent: 6 + type: Transform +- proto: BiomassReclaimerMachineCircuitboard + entities: + - uid: 14046 + components: + - pos: -28.399426,-14.302165 + parent: 6 + type: Transform +- proto: BlastDoor + entities: + - uid: 1264 + components: + - pos: 23.5,-34.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 5600 + type: SignalReceiver + - uid: 1265 + components: + - pos: 23.5,-38.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 5601 + type: SignalReceiver + - uid: 1266 + components: + - pos: 20.5,-38.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 5601 + type: SignalReceiver + - uid: 1267 + components: + - pos: 20.5,-34.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 5600 + type: SignalReceiver + - uid: 2968 + components: + - pos: -55.5,-34.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13052 + type: SignalReceiver + - uid: 3511 + components: + - pos: 48.5,-4.5 + parent: 6 + type: Transform + - uid: 3512 + components: + - pos: 48.5,-7.5 + parent: 6 + type: Transform + - uid: 3513 + components: + - pos: 48.5,4.5 + parent: 6 + type: Transform + - uid: 3514 + components: + - pos: 48.5,1.5 + parent: 6 + type: Transform + - uid: 3674 + components: + - pos: 2.5,-69.5 + parent: 6 + type: Transform + - uid: 3675 + components: + - pos: 2.5,-73.5 + parent: 6 + type: Transform + - uid: 3676 + components: + - pos: -0.5,-73.5 + parent: 6 + type: Transform + - uid: 3677 + components: + - pos: -0.5,-69.5 + parent: 6 + type: Transform + - uid: 3696 + components: + - pos: -7.5,-65.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 3656 + - port: Pressed + uid: 3655 + type: SignalReceiver + - uid: 3697 + components: + - pos: -7.5,-66.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 3656 + - port: Pressed + uid: 3655 + type: SignalReceiver + - uid: 3698 + components: + - pos: -7.5,-67.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 3656 + - port: Pressed + uid: 3655 + type: SignalReceiver + - uid: 3699 + components: + - pos: -4.5,-65.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 3656 + - port: Pressed + uid: 3655 + type: SignalReceiver + - uid: 3700 + components: + - pos: -4.5,-66.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 3656 + - port: Pressed + uid: 3655 + type: SignalReceiver + - uid: 3702 + components: + - pos: -4.5,-67.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 3656 + - port: Pressed + uid: 3655 + type: SignalReceiver + - uid: 4908 + components: + - pos: -34.5,27.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 4909 + - port: Pressed + uid: 4910 + type: SignalReceiver + - uid: 6386 + components: + - pos: -6.5,-82.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 6388 + type: SignalReceiver + - uid: 6387 + components: + - pos: -2.5,-82.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 6389 + type: SignalReceiver +- proto: BodyBag_Folded + entities: + - uid: 7443 + components: + - pos: -28.553457,-54.1594 + parent: 6 + 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: BookAtmosAirAlarms + entities: + - uid: 14038 + components: + - pos: -36.673004,22.602575 + parent: 6 + type: Transform +- proto: BookAtmosDistro + entities: + - uid: 14091 + components: + - pos: -32.38544,1.2801145 + parent: 6 + type: Transform +- proto: BookAtmosVentsMore + entities: + - uid: 14034 + components: + - pos: -29.473429,26.508703 + parent: 6 + type: Transform +- proto: BookAtmosWaste + entities: + - uid: 14090 + components: + - pos: -32.656277,1.5092815 + parent: 6 + type: Transform +- proto: BookRandom + entities: + - uid: 7747 + components: + - rot: -1.5707963267948966 rad + pos: -20.602465,-40.948807 + parent: 6 + type: Transform + - uid: 7748 + components: + - rot: 3.141592653589793 rad + pos: -22.560797,-39.53214 + parent: 6 + type: Transform + - uid: 7749 + components: + - rot: -1.5707963267948966 rad + pos: -19.477465,-37.448807 + parent: 6 + type: Transform +- proto: Bookshelf + entities: + - uid: 4467 + components: + - pos: -17.5,-37.5 + parent: 6 + type: Transform + - uid: 4468 + components: + - pos: -17.5,-39.5 + parent: 6 + type: Transform + - uid: 4469 + components: + - pos: -18.5,-37.5 + parent: 6 + type: Transform + - uid: 4470 + components: + - pos: -18.5,-39.5 + parent: 6 + type: Transform + - uid: 4473 + components: + - pos: -17.5,-41.5 + parent: 6 + type: Transform + - uid: 4474 + components: + - pos: -18.5,-41.5 + parent: 6 + type: Transform +- proto: BoozeDispenser + entities: + - uid: 3201 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,23.5 + parent: 6 + type: Transform + - uid: 4618 + components: + - pos: 0.5,-14.5 + parent: 6 + type: Transform + - uid: 7597 + components: + - pos: -40.5,-49.5 + parent: 6 + type: Transform +- proto: BoxBeanbag + entities: + - uid: 4633 + components: + - pos: -2.472492,-14.333556 + parent: 6 + type: Transform + - uid: 4724 + components: + - pos: 18.352304,8.423914 + parent: 6 + type: Transform +- proto: BoxBodyBag + entities: + - uid: 6421 + components: + - pos: -30.517078,-25.484154 + parent: 6 + type: Transform +- proto: BoxBottle + entities: + - uid: 6176 + components: + - pos: -22.60391,-17.312326 + parent: 6 + type: Transform +- proto: BoxFlashbang + entities: + - uid: 6484 + components: + - pos: 14.355699,-1.7388198 + parent: 6 + type: Transform +- proto: BoxFolderBase + entities: + - uid: 3375 + components: + - pos: -39.619896,-20.376669 + parent: 6 + type: Transform +- proto: BoxFolderBlack + entities: + - uid: 6090 + components: + - rot: 3.141592653589793 rad + pos: -4.4231286,-78.39979 + parent: 6 + type: Transform + - uid: 7805 + components: + - rot: 3.141592653589793 rad + pos: 8.591546,-16.343054 + parent: 6 + type: Transform +- proto: BoxFolderBlue + entities: + - uid: 14272 + components: + - rot: 1.5707963267948966 rad + pos: 16.539167,-15.910117 + parent: 6 + type: Transform +- proto: BoxFolderGrey + entities: + - uid: 7804 + components: + - rot: 3.141592653589793 rad + pos: 8.820713,-16.488886 + parent: 6 + type: Transform + - uid: 14274 + components: + - rot: -1.5707963267948966 rad + pos: 13.427196,-16.410116 + parent: 6 + type: Transform +- proto: BoxFolderRed + entities: + - uid: 5185 + components: + - pos: -1.3838615,-1.3363643 + parent: 6 + type: Transform + - uid: 7613 + components: + - rot: -1.5707963267948966 rad + pos: -50.580124,-48.47779 + parent: 6 + type: Transform + - uid: 14271 + components: + - rot: 1.5707963267948966 rad + pos: 16.539167,-15.514284 + parent: 6 + type: Transform +- proto: BoxFolderYellow + entities: + - uid: 3329 + components: + - rot: -1.5707963267948966 rad + pos: 9.411796,-32.499554 + parent: 6 + type: Transform + - uid: 14273 + components: + - rot: -1.5707963267948966 rad + pos: 13.489696,-15.618451 + parent: 6 + type: Transform +- proto: BoxHandcuff + entities: + - uid: 6482 + components: + - pos: 14.298904,-1.2705129 + parent: 6 + type: Transform +- proto: BoxLatexGloves + entities: + - uid: 6428 + components: + - pos: -17.489386,-27.400482 + parent: 6 + type: Transform +- proto: BoxLethalshot + entities: + - uid: 4723 + components: + - pos: 18.465895,8.750309 + parent: 6 + type: Transform +- proto: BoxMouthSwab + entities: + - uid: 6430 + components: + - pos: -26.390043,-26.41122 + parent: 6 + type: Transform +- proto: BoxNitrileGloves + entities: + - uid: 14053 + components: + - pos: -30.352308,-25.786364 + parent: 6 + type: Transform +- proto: BoxSterileMask + entities: + - uid: 6427 + components: + - pos: -17.815956,-27.25857 + parent: 6 + type: Transform +- proto: BoxTrashbag + entities: + - uid: 7639 + components: + - pos: 27.3286,3.4105222 + parent: 6 + type: Transform +- proto: BoxZiptie + entities: + - uid: 6483 + components: + - pos: 14.653873,-1.4549974 + parent: 6 + type: Transform +- proto: BrbSign + entities: + - uid: 5106 + components: + - pos: -2.4108074,-7.547946 + parent: 6 + type: Transform +- proto: Bucket + entities: + - uid: 3796 + components: + - pos: -32.62809,-62.42377 + parent: 6 + type: Transform + - uid: 5227 + components: + - pos: -10.262668,-18.813303 + parent: 6 + type: Transform + - uid: 6342 + components: + - pos: 4.4534793,6.4413085 + parent: 6 + type: Transform + - uid: 13489 + components: + - pos: 17.304811,18.71929 + parent: 6 + type: Transform +- proto: CableApcExtension + entities: + - uid: 1427 + components: + - pos: 5.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1428 + components: + - pos: 6.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1429 + components: + - pos: 7.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 1438 + components: + - pos: -39.5,-22.5 + parent: 6 + type: Transform + - uid: 1467 + components: + - pos: -9.5,-71.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2934 + components: + - pos: 3.5,-57.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2935 + components: + - pos: 4.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2983 + components: + - pos: -25.5,14.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4920 + components: + - pos: -23.5,14.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4940 + components: + - pos: -41.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5047 + components: + - pos: -24.5,14.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5048 + components: + - pos: 4.5,-4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5049 + components: + - pos: 1.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5113 + components: + - pos: 1.5,-1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5116 + components: + - pos: 1.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5182 + components: + - pos: -40.5,-22.5 + parent: 6 + type: Transform + - uid: 5240 + components: + - pos: 26.5,0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5287 + components: + - pos: 3.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5360 + components: + - pos: 3.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5519 + components: + - pos: 3.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6047 + components: + - pos: 16.5,17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6048 + components: + - pos: 15.5,17.5 + parent: 6 + type: Transform + - uid: 6049 + components: + - pos: 14.5,17.5 + parent: 6 + type: Transform + - uid: 6050 + components: + - pos: 13.5,17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6051 + components: + - pos: 12.5,17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6052 + components: + - pos: 11.5,17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6053 + components: + - pos: 10.5,17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6054 + components: + - pos: 9.5,17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6055 + components: + - pos: 9.5,18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6056 + components: + - pos: 9.5,19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6057 + components: + - pos: 9.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6058 + components: + - pos: 9.5,21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6059 + components: + - pos: 9.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6060 + components: + - pos: 10.5,22.5 + parent: 6 + type: Transform + - uid: 6061 + components: + - pos: 11.5,22.5 + parent: 6 + type: Transform + - uid: 6062 + components: + - pos: 12.5,22.5 + parent: 6 + type: Transform + - uid: 6063 + components: + - pos: 13.5,22.5 + parent: 6 + type: Transform + - uid: 6064 + components: + - pos: 14.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6065 + components: + - pos: 15.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6066 + components: + - pos: 16.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6067 + components: + - pos: 17.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6068 + components: + - pos: 18.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6069 + components: + - pos: 19.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6070 + components: + - pos: 20.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6071 + components: + - pos: 20.5,21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6072 + components: + - pos: 20.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6073 + components: + - pos: 20.5,19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6074 + components: + - pos: 20.5,18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6075 + components: + - pos: 20.5,17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6076 + components: + - pos: 19.5,17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6077 + components: + - pos: 18.5,17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6078 + components: + - pos: 17.5,17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6079 + components: + - pos: 13.5,18.5 + parent: 6 + type: Transform + - uid: 6080 + components: + - pos: 13.5,19.5 + parent: 6 + type: Transform + - uid: 6081 + components: + - pos: 13.5,20.5 + parent: 6 + type: Transform + - uid: 6082 + components: + - pos: 13.5,21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6083 + components: + - pos: 16.5,18.5 + parent: 6 + type: Transform + - uid: 6084 + components: + - pos: 16.5,19.5 + parent: 6 + type: Transform + - uid: 6085 + components: + - pos: 16.5,20.5 + parent: 6 + type: Transform + - uid: 6086 + components: + - pos: 16.5,21.5 + parent: 6 + type: Transform + - uid: 6628 + components: + - pos: 46.5,-6.5 + parent: 6 + type: Transform + - uid: 6629 + components: + - pos: 45.5,-6.5 + parent: 6 + type: Transform + - uid: 6630 + components: + - pos: 44.5,3.5 + parent: 6 + type: Transform + - uid: 6651 + components: + - pos: 44.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6710 + components: + - pos: -83.5,-47.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6711 + components: + - pos: -83.5,-46.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6712 + components: + - pos: -83.5,-45.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6713 + components: + - pos: -81.5,-38.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6714 + components: + - pos: -82.5,-38.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6715 + components: + - pos: -82.5,-39.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6716 + components: + - pos: -80.5,-38.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6717 + components: + - pos: -79.5,-38.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6718 + components: + - pos: -76.5,-38.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6719 + components: + - pos: -75.5,-38.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6720 + components: + - pos: -76.5,-39.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6721 + components: + - pos: -76.5,-40.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6722 + components: + - pos: -77.5,-38.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6723 + components: + - pos: -76.5,-47.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6724 + components: + - pos: -76.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6725 + components: + - pos: -76.5,-49.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6726 + components: + - pos: -78.5,-50.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6727 + components: + - pos: -79.5,-50.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6728 + components: + - pos: -80.5,-50.5 + parent: 6 + type: Transform + - uid: 6729 + components: + - pos: -81.5,-50.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6730 + components: + - pos: -82.5,-50.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6774 + components: + - pos: -44.5,-49.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6775 + components: + - pos: -44.5,-50.5 + parent: 6 + type: Transform + - uid: 6776 + components: + - pos: -44.5,-51.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6777 + components: + - pos: -44.5,-52.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6781 + components: + - pos: -50.5,-45.5 + parent: 6 + type: Transform + - uid: 6782 + components: + - pos: 45.5,3.5 + parent: 6 + type: Transform + - uid: 6783 + components: + - pos: -44.5,-53.5 + parent: 6 + type: Transform + - uid: 6784 + components: + - pos: -43.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6785 + components: + - pos: -42.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6786 + components: + - pos: -42.5,-52.5 + parent: 6 + type: Transform + - uid: 6787 + components: + - pos: -42.5,-51.5 + parent: 6 + type: Transform + - uid: 6788 + components: + - pos: -42.5,-50.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6789 + components: + - pos: -41.5,-50.5 + parent: 6 + type: Transform + - uid: 6790 + components: + - pos: -40.5,-47.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6791 + components: + - pos: -39.5,-47.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6792 + components: + - pos: -38.5,-47.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6793 + components: + - pos: -38.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6794 + components: + - pos: -38.5,-49.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6795 + components: + - pos: -38.5,-50.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6796 + components: + - pos: -38.5,-51.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6797 + components: + - pos: -38.5,-52.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6798 + components: + - pos: -38.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7362 + components: + - pos: 46.5,3.5 + parent: 6 + type: Transform + - uid: 7373 + components: + - pos: 13.5,-0.5 + parent: 6 + type: Transform + - uid: 7383 + components: + - pos: 12.5,-0.5 + parent: 6 + type: Transform + - uid: 7384 + components: + - pos: 11.5,-0.5 + parent: 6 + type: Transform + - uid: 7388 + components: + - pos: 11.5,0.5 + parent: 6 + type: Transform + - uid: 7389 + components: + - pos: 11.5,1.5 + parent: 6 + type: Transform + - uid: 7593 + components: + - pos: 11.5,2.5 + parent: 6 + type: Transform + - uid: 7673 + components: + - pos: 11.5,3.5 + parent: 6 + type: Transform + - uid: 7677 + components: + - pos: -11.5,-71.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7829 + components: + - pos: 12.5,3.5 + parent: 6 + type: Transform + - uid: 7846 + components: + - pos: 13.5,3.5 + parent: 6 + type: Transform + - uid: 8192 + components: + - pos: -17.5,-38.5 + parent: 6 + type: Transform + - uid: 8207 + components: + - pos: -15.5,-43.5 + parent: 6 + type: Transform + - uid: 8208 + components: + - pos: -15.5,-42.5 + parent: 6 + type: Transform + - uid: 8209 + components: + - pos: -15.5,-41.5 + parent: 6 + type: Transform + - uid: 8210 + components: + - pos: -15.5,-40.5 + parent: 6 + type: Transform + - uid: 8211 + components: + - pos: -26.5,0.5 + parent: 6 + type: Transform + - uid: 8212 + components: + - pos: -26.5,-0.5 + parent: 6 + type: Transform + - uid: 8213 + components: + - pos: -26.5,-1.5 + parent: 6 + type: Transform + - uid: 8214 + components: + - pos: -25.5,5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8393 + components: + - pos: 31.5,-10.5 + parent: 6 + type: Transform + - uid: 8483 + components: + - pos: -6.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8484 + components: + - pos: -0.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8485 + components: + - pos: -10.5,-40.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8487 + components: + - pos: -3.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8488 + components: + - pos: 0.5,-38.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8552 + components: + - pos: -29.5,14.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8553 + components: + - pos: -29.5,14.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8554 + components: + - pos: -30.5,14.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8555 + components: + - pos: -30.5,15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8556 + components: + - pos: -30.5,16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8557 + components: + - pos: -30.5,17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8558 + components: + - pos: -30.5,18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8559 + components: + - pos: -30.5,19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8560 + components: + - pos: -30.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8561 + components: + - pos: -30.5,21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8562 + components: + - pos: -30.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8563 + components: + - pos: -30.5,23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8564 + components: + - pos: -30.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8565 + components: + - pos: -29.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8566 + components: + - pos: -28.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8567 + components: + - pos: -27.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8568 + components: + - pos: -26.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8569 + components: + - pos: -25.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8570 + components: + - pos: -25.5,23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8571 + components: + - pos: -25.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8572 + components: + - pos: -25.5,21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8573 + components: + - pos: -25.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8574 + components: + - pos: -25.5,19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8575 + components: + - pos: -25.5,18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8576 + components: + - pos: -25.5,17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8577 + components: + - pos: -25.5,16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8578 + components: + - pos: -25.5,15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8583 + components: + - pos: -30.5,13.5 + parent: 6 + type: Transform + - uid: 8584 + components: + - pos: -30.5,12.5 + parent: 6 + type: Transform + - uid: 8585 + components: + - pos: -30.5,11.5 + parent: 6 + type: Transform + - uid: 8586 + components: + - pos: -30.5,10.5 + parent: 6 + type: Transform + - uid: 8587 + components: + - pos: -30.5,9.5 + parent: 6 + type: Transform + - uid: 8588 + components: + - pos: -31.5,9.5 + parent: 6 + type: Transform + - uid: 8589 + components: + - pos: -32.5,9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8590 + components: + - pos: -33.5,9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8591 + components: + - pos: -34.5,9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8592 + components: + - pos: -35.5,9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8593 + components: + - pos: -36.5,9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8594 + components: + - pos: -37.5,9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8595 + components: + - pos: -38.5,9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8596 + components: + - pos: -38.5,8.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8597 + components: + - pos: -38.5,10.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8598 + components: + - pos: -38.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8599 + components: + - pos: -38.5,12.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8600 + components: + - pos: -38.5,13.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8601 + components: + - pos: -38.5,14.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8602 + components: + - pos: -38.5,15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8603 + components: + - pos: -38.5,16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8604 + components: + - pos: -38.5,17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8605 + components: + - pos: -38.5,18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8606 + components: + - pos: -38.5,19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8607 + components: + - pos: -38.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8608 + components: + - pos: -38.5,21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8609 + components: + - pos: -38.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8610 + components: + - pos: -39.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8611 + components: + - pos: -40.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8612 + components: + - pos: -41.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8613 + components: + - pos: -42.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8614 + components: + - pos: -43.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8615 + components: + - pos: -44.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8616 + components: + - pos: -45.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8617 + components: + - pos: -45.5,19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8618 + components: + - pos: -45.5,18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8619 + components: + - pos: -45.5,17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8620 + components: + - pos: -45.5,16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8621 + components: + - pos: -45.5,15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8622 + components: + - pos: -45.5,14.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8623 + components: + - pos: -45.5,13.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8624 + components: + - pos: -45.5,12.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8625 + components: + - pos: -45.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8626 + components: + - pos: -45.5,10.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8627 + components: + - pos: -45.5,9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8628 + components: + - pos: -45.5,8.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8629 + components: + - pos: -44.5,8.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8630 + components: + - pos: -43.5,8.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8631 + components: + - pos: -42.5,8.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8632 + components: + - pos: -41.5,8.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8633 + components: + - pos: -40.5,8.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8634 + components: + - pos: -39.5,8.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8635 + components: + - pos: -38.5,8.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8651 + components: + - pos: -36.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8652 + components: + - pos: -36.5,25.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8653 + components: + - pos: -36.5,26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8654 + components: + - pos: -36.5,27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8655 + components: + - pos: -35.5,27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8656 + components: + - pos: -34.5,27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8657 + components: + - pos: -33.5,27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8658 + components: + - pos: -32.5,27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8659 + components: + - pos: -32.5,26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8660 + components: + - pos: -32.5,25.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8661 + components: + - pos: -32.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8662 + components: + - pos: -33.5,23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8663 + components: + - pos: -32.5,23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8664 + components: + - pos: -34.5,23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8665 + components: + - pos: -35.5,23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8666 + components: + - pos: -36.5,23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8667 + components: + - pos: -31.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8669 + components: + - pos: -33.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8670 + components: + - pos: -34.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8671 + components: + - pos: -35.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8672 + components: + - pos: -36.5,-0.5 + parent: 6 + type: Transform + - uid: 8673 + components: + - pos: -37.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8674 + components: + - pos: -38.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8675 + components: + - pos: -33.5,0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8676 + components: + - pos: -33.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8677 + components: + - pos: -33.5,2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8678 + components: + - pos: -33.5,3.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8679 + components: + - pos: -33.5,4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8680 + components: + - pos: -34.5,4.5 + parent: 6 + type: Transform + - uid: 8681 + components: + - pos: -35.5,4.5 + parent: 6 + type: Transform + - uid: 8682 + components: + - pos: -36.5,4.5 + parent: 6 + type: Transform + - uid: 8683 + components: + - pos: -37.5,4.5 + parent: 6 + type: Transform + - uid: 8684 + components: + - pos: -38.5,4.5 + parent: 6 + type: Transform + - uid: 8685 + components: + - pos: -38.5,3.5 + parent: 6 + type: Transform + - uid: 8686 + components: + - pos: -38.5,2.5 + parent: 6 + type: Transform + - uid: 8687 + components: + - pos: -38.5,1.5 + parent: 6 + type: Transform + - uid: 8688 + components: + - pos: -38.5,0.5 + parent: 6 + type: Transform + - uid: 8689 + components: + - pos: -33.5,-1.5 + parent: 6 + type: Transform + - uid: 8690 + components: + - pos: -33.5,-2.5 + parent: 6 + type: Transform + - uid: 8691 + components: + - pos: -33.5,-3.5 + parent: 6 + type: Transform + - uid: 8692 + components: + - pos: -34.5,-3.5 + parent: 6 + type: Transform + - uid: 8693 + components: + - pos: -35.5,-3.5 + parent: 6 + type: Transform + - uid: 8694 + components: + - pos: -36.5,-3.5 + parent: 6 + type: Transform + - uid: 8695 + components: + - pos: -37.5,-3.5 + parent: 6 + type: Transform + - uid: 8696 + components: + - pos: -38.5,-3.5 + parent: 6 + type: Transform + - uid: 8697 + components: + - pos: -37.5,-4.5 + parent: 6 + type: Transform + - uid: 8698 + components: + - pos: -37.5,-5.5 + parent: 6 + type: Transform + - uid: 8699 + components: + - pos: -37.5,-6.5 + parent: 6 + type: Transform + - uid: 8700 + components: + - pos: -37.5,-7.5 + parent: 6 + type: Transform + - uid: 8701 + components: + - pos: -37.5,-8.5 + parent: 6 + type: Transform + - uid: 8702 + components: + - pos: -36.5,-7.5 + parent: 6 + type: Transform + - uid: 8703 + components: + - pos: -35.5,-7.5 + parent: 6 + type: Transform + - uid: 8704 + components: + - pos: -34.5,-7.5 + parent: 6 + type: Transform + - uid: 8705 + components: + - pos: -33.5,-7.5 + parent: 6 + type: Transform + - uid: 8706 + components: + - pos: -32.5,-7.5 + parent: 6 + type: Transform + - uid: 8707 + components: + - pos: -31.5,-7.5 + parent: 6 + type: Transform + - uid: 8708 + components: + - pos: -30.5,-7.5 + parent: 6 + type: Transform + - uid: 8709 + components: + - pos: -29.5,-7.5 + parent: 6 + type: Transform + - uid: 8710 + components: + - pos: -29.5,-6.5 + parent: 6 + type: Transform + - uid: 8711 + components: + - pos: -29.5,-5.5 + parent: 6 + type: Transform + - uid: 8712 + components: + - pos: -29.5,-4.5 + parent: 6 + type: Transform + - uid: 8713 + components: + - pos: -29.5,-3.5 + parent: 6 + type: Transform + - uid: 8714 + components: + - pos: -29.5,-2.5 + parent: 6 + type: Transform + - uid: 8715 + components: + - pos: -29.5,-1.5 + parent: 6 + type: Transform + - uid: 8716 + components: + - pos: -30.5,-1.5 + parent: 6 + type: Transform + - uid: 8717 + components: + - pos: -31.5,-1.5 + parent: 6 + type: Transform + - uid: 8718 + components: + - pos: -32.5,-1.5 + parent: 6 + type: Transform + - uid: 8720 + components: + - pos: -29.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8721 + components: + - pos: -28.5,1.5 + parent: 6 + type: Transform + - uid: 8722 + components: + - pos: -27.5,1.5 + parent: 6 + type: Transform + - uid: 8723 + components: + - pos: -26.5,1.5 + parent: 6 + type: Transform + - uid: 8724 + components: + - pos: -25.5,1.5 + parent: 6 + type: Transform + - uid: 8725 + components: + - pos: -24.5,1.5 + parent: 6 + type: Transform + - uid: 8726 + components: + - pos: -24.5,2.5 + parent: 6 + type: Transform + - uid: 8727 + components: + - pos: -24.5,3.5 + parent: 6 + type: Transform + - uid: 8728 + components: + - pos: -24.5,4.5 + parent: 6 + type: Transform + - uid: 8729 + components: + - pos: -25.5,4.5 + parent: 6 + type: Transform + - uid: 8730 + components: + - pos: -26.5,4.5 + parent: 6 + type: Transform + - uid: 8731 + components: + - pos: -27.5,4.5 + parent: 6 + type: Transform + - uid: 8732 + components: + - pos: -28.5,4.5 + parent: 6 + type: Transform + - uid: 8733 + components: + - pos: -23.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8734 + components: + - pos: -22.5,1.5 + parent: 6 + type: Transform + - uid: 8735 + components: + - pos: -21.5,1.5 + parent: 6 + type: Transform + - uid: 8736 + components: + - pos: -20.5,1.5 + parent: 6 + type: Transform + - uid: 8737 + components: + - pos: -19.5,1.5 + parent: 6 + type: Transform + - uid: 8738 + components: + - pos: -18.5,1.5 + parent: 6 + type: Transform + - uid: 8739 + components: + - pos: -18.5,2.5 + parent: 6 + type: Transform + - uid: 8740 + components: + - pos: -18.5,3.5 + parent: 6 + type: Transform + - uid: 8741 + components: + - pos: -18.5,4.5 + parent: 6 + type: Transform + - uid: 8742 + components: + - pos: -19.5,4.5 + parent: 6 + type: Transform + - uid: 8743 + components: + - pos: -20.5,4.5 + parent: 6 + type: Transform + - uid: 8744 + components: + - pos: -21.5,4.5 + parent: 6 + type: Transform + - uid: 8745 + components: + - pos: -22.5,4.5 + parent: 6 + type: Transform + - uid: 8746 + components: + - pos: -22.5,3.5 + parent: 6 + type: Transform + - uid: 8747 + components: + - pos: -22.5,2.5 + parent: 6 + type: Transform + - uid: 8748 + components: + - pos: -20.5,0.5 + parent: 6 + type: Transform + - uid: 8749 + components: + - pos: -20.5,-0.5 + parent: 6 + type: Transform + - uid: 8750 + components: + - pos: -21.5,-0.5 + parent: 6 + type: Transform + - uid: 8751 + components: + - pos: -22.5,-0.5 + parent: 6 + type: Transform + - uid: 8752 + components: + - pos: -19.5,-0.5 + parent: 6 + type: Transform + - uid: 8753 + components: + - pos: -18.5,-0.5 + parent: 6 + type: Transform + - uid: 8754 + components: + - pos: -17.5,-0.5 + parent: 6 + type: Transform + - uid: 8755 + components: + - pos: -28.5,-6.5 + parent: 6 + type: Transform + - uid: 8756 + components: + - pos: -27.5,-6.5 + parent: 6 + type: Transform + - uid: 8757 + components: + - pos: -26.5,-6.5 + parent: 6 + type: Transform + - uid: 8758 + components: + - pos: -25.5,-6.5 + parent: 6 + type: Transform + - uid: 8759 + components: + - pos: -24.5,-6.5 + parent: 6 + type: Transform + - uid: 8760 + components: + - pos: -24.5,-5.5 + parent: 6 + type: Transform + - uid: 8761 + components: + - pos: -23.5,-5.5 + parent: 6 + type: Transform + - uid: 8762 + components: + - pos: -22.5,-5.5 + parent: 6 + type: Transform + - uid: 8763 + components: + - pos: -21.5,-5.5 + parent: 6 + type: Transform + - uid: 8764 + components: + - pos: -20.5,-5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8765 + components: + - pos: -20.5,-4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8766 + components: + - pos: -33.5,-8.5 + parent: 6 + type: Transform + - uid: 8767 + components: + - pos: -33.5,-9.5 + parent: 6 + type: Transform + - uid: 8768 + components: + - pos: -33.5,-10.5 + parent: 6 + type: Transform + - uid: 8770 + components: + - pos: -55.5,-15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8771 + components: + - pos: -54.5,-15.5 + parent: 6 + type: Transform + - uid: 8772 + components: + - pos: -53.5,-15.5 + parent: 6 + type: Transform + - uid: 8773 + components: + - pos: -52.5,-15.5 + parent: 6 + type: Transform + - uid: 8774 + components: + - pos: -51.5,-15.5 + parent: 6 + type: Transform + - uid: 8775 + components: + - pos: -50.5,-15.5 + parent: 6 + type: Transform + - uid: 8776 + components: + - pos: -49.5,-15.5 + parent: 6 + type: Transform + - uid: 8777 + components: + - pos: -49.5,-16.5 + parent: 6 + type: Transform + - uid: 8778 + components: + - pos: -49.5,-17.5 + parent: 6 + type: Transform + - uid: 8779 + components: + - pos: -49.5,-18.5 + parent: 6 + type: Transform + - uid: 8780 + components: + - pos: -49.5,-19.5 + parent: 6 + type: Transform + - uid: 8781 + components: + - pos: -50.5,-19.5 + parent: 6 + type: Transform + - uid: 8782 + components: + - pos: -51.5,-19.5 + parent: 6 + type: Transform + - uid: 8783 + components: + - pos: -52.5,-19.5 + parent: 6 + type: Transform + - uid: 8784 + components: + - pos: -53.5,-19.5 + parent: 6 + type: Transform + - uid: 8785 + components: + - pos: -54.5,-19.5 + parent: 6 + type: Transform + - uid: 8786 + components: + - pos: -54.5,-18.5 + parent: 6 + type: Transform + - uid: 8787 + components: + - pos: -54.5,-17.5 + parent: 6 + type: Transform + - uid: 8788 + components: + - pos: -54.5,-16.5 + parent: 6 + type: Transform + - uid: 8789 + components: + - pos: -53.5,-14.5 + parent: 6 + type: Transform + - uid: 8790 + components: + - pos: -53.5,-13.5 + parent: 6 + type: Transform + - uid: 8791 + components: + - pos: -53.5,-12.5 + parent: 6 + type: Transform + - uid: 8792 + components: + - pos: -53.5,-11.5 + parent: 6 + type: Transform + - uid: 8793 + components: + - pos: -53.5,-10.5 + parent: 6 + type: Transform + - uid: 8794 + components: + - pos: -54.5,-10.5 + parent: 6 + type: Transform + - uid: 8795 + components: + - pos: -55.5,-10.5 + parent: 6 + type: Transform + - uid: 8796 + components: + - pos: -56.5,-10.5 + parent: 6 + type: Transform + - uid: 8797 + components: + - pos: -57.5,-10.5 + parent: 6 + type: Transform + - uid: 8798 + components: + - pos: -58.5,-10.5 + parent: 6 + type: Transform + - uid: 8799 + components: + - pos: -59.5,-10.5 + parent: 6 + type: Transform + - uid: 8800 + components: + - pos: -60.5,-10.5 + parent: 6 + type: Transform + - uid: 8801 + components: + - pos: -61.5,-10.5 + parent: 6 + type: Transform + - uid: 8802 + components: + - pos: -62.5,-10.5 + parent: 6 + type: Transform + - uid: 8803 + components: + - pos: -63.5,-10.5 + parent: 6 + type: Transform + - uid: 8804 + components: + - pos: -64.5,-10.5 + parent: 6 + type: Transform + - uid: 8805 + components: + - pos: -64.5,-11.5 + parent: 6 + type: Transform + - uid: 8806 + components: + - pos: -64.5,-12.5 + parent: 6 + type: Transform + - uid: 8807 + components: + - pos: -64.5,-13.5 + parent: 6 + type: Transform + - uid: 8808 + components: + - pos: -64.5,-14.5 + parent: 6 + type: Transform + - uid: 8809 + components: + - pos: -64.5,-15.5 + parent: 6 + type: Transform + - uid: 8810 + components: + - pos: -64.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8811 + components: + - pos: -63.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8812 + components: + - pos: -62.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8813 + components: + - pos: -61.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8814 + components: + - pos: -60.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8815 + components: + - pos: -59.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8816 + components: + - pos: -58.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8817 + components: + - pos: -57.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8818 + components: + - pos: -56.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8819 + components: + - pos: -55.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8820 + components: + - pos: -56.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8821 + components: + - pos: -56.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8822 + components: + - pos: -56.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8823 + components: + - pos: -56.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8824 + components: + - pos: -56.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8825 + components: + - pos: -60.5,-17.5 + parent: 6 + type: Transform + - uid: 8826 + components: + - pos: -60.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8827 + components: + - pos: -60.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8828 + components: + - pos: -60.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8829 + components: + - pos: -60.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8831 + components: + - pos: -53.5,-20.5 + parent: 6 + type: Transform + - uid: 8832 + components: + - pos: -53.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8833 + components: + - pos: -54.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8834 + components: + - pos: -55.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8835 + components: + - pos: -52.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8836 + components: + - pos: -51.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8837 + components: + - pos: -50.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8838 + components: + - pos: -49.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8839 + components: + - pos: -48.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8840 + components: + - pos: -47.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8841 + components: + - pos: -47.5,-22.5 + parent: 6 + type: Transform + - uid: 8842 + components: + - pos: -47.5,-23.5 + parent: 6 + type: Transform + - uid: 8843 + components: + - pos: -47.5,-24.5 + parent: 6 + type: Transform + - uid: 8844 + components: + - pos: -46.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8845 + components: + - pos: -45.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8846 + components: + - pos: -44.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8847 + components: + - pos: -43.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8848 + components: + - pos: -43.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8849 + components: + - pos: -42.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8850 + components: + - pos: -41.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8851 + components: + - pos: -41.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8852 + components: + - pos: -41.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8853 + components: + - pos: -41.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8854 + components: + - pos: -41.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8855 + components: + - pos: -41.5,-15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8856 + components: + - pos: -41.5,-14.5 + parent: 6 + type: Transform + - uid: 8857 + components: + - pos: -41.5,-13.5 + parent: 6 + type: Transform + - uid: 8858 + components: + - pos: -41.5,-12.5 + parent: 6 + type: Transform + - uid: 8859 + components: + - pos: -41.5,-11.5 + parent: 6 + type: Transform + - uid: 8860 + components: + - pos: -41.5,-10.5 + parent: 6 + type: Transform + - uid: 8861 + components: + - pos: -41.5,-9.5 + parent: 6 + type: Transform + - uid: 8862 + components: + - pos: -41.5,-8.5 + parent: 6 + type: Transform + - uid: 8863 + components: + - pos: -41.5,-7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8864 + components: + - pos: -41.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8865 + components: + - pos: -41.5,-5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8866 + components: + - pos: -41.5,-4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8867 + components: + - pos: -40.5,-10.5 + parent: 6 + type: Transform + - uid: 8868 + components: + - pos: -39.5,-10.5 + parent: 6 + type: Transform + - uid: 8869 + components: + - pos: -38.5,-10.5 + parent: 6 + type: Transform + - uid: 8870 + components: + - pos: -37.5,-10.5 + parent: 6 + type: Transform + - uid: 8871 + components: + - pos: -36.5,-10.5 + parent: 6 + type: Transform + - uid: 8872 + components: + - pos: -35.5,-10.5 + parent: 6 + type: Transform + - uid: 8873 + components: + - pos: -39.5,-11.5 + parent: 6 + type: Transform + - uid: 8874 + components: + - pos: -39.5,-12.5 + parent: 6 + type: Transform + - uid: 8875 + components: + - pos: -39.5,-13.5 + parent: 6 + type: Transform + - uid: 8876 + components: + - pos: -39.5,-14.5 + parent: 6 + type: Transform + - uid: 8877 + components: + - pos: -38.5,-14.5 + parent: 6 + type: Transform + - uid: 8878 + components: + - pos: -37.5,-14.5 + parent: 6 + type: Transform + - uid: 8879 + components: + - pos: -36.5,-14.5 + parent: 6 + type: Transform + - uid: 8880 + components: + - pos: -36.5,-13.5 + parent: 6 + type: Transform + - uid: 8881 + components: + - pos: -36.5,-12.5 + parent: 6 + type: Transform + - uid: 8882 + components: + - pos: -36.5,-11.5 + parent: 6 + type: Transform + - uid: 8883 + components: + - pos: -42.5,-10.5 + parent: 6 + type: Transform + - uid: 8884 + components: + - pos: -43.5,-10.5 + parent: 6 + type: Transform + - uid: 8885 + components: + - pos: -44.5,-10.5 + parent: 6 + type: Transform + - uid: 8886 + components: + - pos: -45.5,-10.5 + parent: 6 + type: Transform + - uid: 8887 + components: + - pos: -45.5,-11.5 + parent: 6 + type: Transform + - uid: 8888 + components: + - pos: -45.5,-12.5 + parent: 6 + type: Transform + - uid: 8889 + components: + - pos: -45.5,-13.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8890 + components: + - pos: -45.5,-14.5 + parent: 6 + type: Transform + - uid: 8891 + components: + - pos: -45.5,-15.5 + parent: 6 + type: Transform + - uid: 8892 + components: + - pos: -45.5,-16.5 + parent: 6 + type: Transform + - uid: 8893 + components: + - pos: -45.5,-17.5 + parent: 6 + type: Transform + - uid: 8894 + components: + - pos: -46.5,-10.5 + parent: 6 + type: Transform + - uid: 8895 + components: + - pos: -47.5,-10.5 + parent: 6 + type: Transform + - uid: 8896 + components: + - pos: -48.5,-10.5 + parent: 6 + type: Transform + - uid: 8897 + components: + - pos: -49.5,-10.5 + parent: 6 + type: Transform + - uid: 8898 + components: + - pos: -50.5,-10.5 + parent: 6 + type: Transform + - uid: 8899 + components: + - pos: -51.5,-10.5 + parent: 6 + type: Transform + - uid: 8900 + components: + - pos: -52.5,-10.5 + parent: 6 + type: Transform + - uid: 8901 + components: + - pos: -49.5,-11.5 + parent: 6 + type: Transform + - uid: 8902 + components: + - pos: -49.5,-12.5 + parent: 6 + type: Transform + - uid: 8903 + components: + - pos: -58.5,-9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8904 + components: + - pos: -58.5,-8.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8905 + components: + - pos: -56.5,-9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8906 + components: + - pos: -56.5,-8.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8907 + components: + - pos: -64.5,-9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8908 + components: + - pos: -64.5,-8.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8909 + components: + - pos: -65.5,-12.5 + parent: 6 + type: Transform + - uid: 8910 + components: + - pos: -66.5,-12.5 + parent: 6 + type: Transform + - uid: 8911 + components: + - pos: -66.5,-11.5 + parent: 6 + type: Transform + - uid: 8912 + components: + - pos: -66.5,-10.5 + parent: 6 + type: Transform + - uid: 8913 + components: + - pos: -66.5,-9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8914 + components: + - pos: -66.5,-8.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8916 + components: + - pos: -6.5,5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8917 + components: + - pos: -7.5,5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8918 + components: + - pos: -8.5,5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8919 + components: + - pos: -9.5,5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8920 + components: + - pos: -5.5,5.5 + parent: 6 + type: Transform + - uid: 8921 + components: + - pos: -4.5,5.5 + parent: 6 + type: Transform + - uid: 8922 + components: + - pos: -3.5,5.5 + parent: 6 + type: Transform + - uid: 8923 + components: + - pos: -2.5,5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8924 + components: + - pos: -1.5,5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8925 + components: + - pos: -0.5,5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8926 + components: + - pos: 0.5,5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8927 + components: + - pos: 0.5,6.5 + parent: 6 + type: Transform + - uid: 8928 + components: + - pos: 0.5,7.5 + parent: 6 + type: Transform + - uid: 8929 + components: + - pos: 0.5,8.5 + parent: 6 + type: Transform + - uid: 8930 + components: + - pos: 0.5,9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8931 + components: + - pos: 0.5,10.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8932 + components: + - pos: 0.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8933 + components: + - pos: -0.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8934 + components: + - pos: -1.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8935 + components: + - pos: -2.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8936 + components: + - pos: -3.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8937 + components: + - pos: -4.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8938 + components: + - pos: -5.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8939 + components: + - pos: -6.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8940 + components: + - pos: -7.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8941 + components: + - pos: -8.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8942 + components: + - pos: -9.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8943 + components: + - pos: -9.5,10.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8944 + components: + - pos: -9.5,9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8945 + components: + - pos: -9.5,8.5 + parent: 6 + type: Transform + - uid: 8946 + components: + - pos: -9.5,7.5 + parent: 6 + type: Transform + - uid: 8947 + components: + - pos: -9.5,6.5 + parent: 6 + type: Transform + - uid: 8948 + components: + - pos: -4.5,4.5 + parent: 6 + type: Transform + - uid: 8949 + components: + - pos: -4.5,3.5 + parent: 6 + type: Transform + - uid: 8950 + components: + - pos: -5.5,3.5 + parent: 6 + type: Transform + - uid: 8951 + components: + - pos: -6.5,3.5 + parent: 6 + type: Transform + - uid: 8952 + components: + - pos: -7.5,3.5 + parent: 6 + type: Transform + - uid: 8953 + components: + - pos: -8.5,3.5 + parent: 6 + type: Transform + - uid: 8954 + components: + - pos: -9.5,3.5 + parent: 6 + type: Transform + - uid: 8955 + components: + - pos: -10.5,3.5 + parent: 6 + type: Transform + - uid: 8956 + components: + - pos: -11.5,3.5 + parent: 6 + type: Transform + - uid: 8957 + components: + - pos: -12.5,3.5 + parent: 6 + type: Transform + - uid: 8958 + components: + - pos: -13.5,3.5 + parent: 6 + type: Transform + - uid: 8959 + components: + - pos: -14.5,3.5 + parent: 6 + type: Transform + - uid: 8960 + components: + - pos: -14.5,4.5 + parent: 6 + type: Transform + - uid: 8961 + components: + - pos: -14.5,5.5 + parent: 6 + type: Transform + - uid: 8962 + components: + - pos: -14.5,6.5 + parent: 6 + type: Transform + - uid: 8963 + components: + - pos: -14.5,7.5 + parent: 6 + type: Transform + - uid: 8964 + components: + - pos: -15.5,7.5 + parent: 6 + type: Transform + - uid: 8965 + components: + - pos: -16.5,7.5 + parent: 6 + type: Transform + - uid: 8966 + components: + - pos: -17.5,7.5 + parent: 6 + type: Transform + - uid: 8967 + components: + - pos: -31.5,7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8968 + components: + - pos: -31.5,8.5 + parent: 6 + type: Transform + - uid: 8969 + components: + - pos: -31.5,6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8970 + components: + - pos: -30.5,6.5 + parent: 6 + type: Transform + - uid: 8971 + components: + - pos: -32.5,6.5 + parent: 6 + type: Transform + - uid: 8972 + components: + - pos: -18.5,7.5 + parent: 6 + type: Transform + - uid: 8973 + components: + - pos: -14.5,2.5 + parent: 6 + type: Transform + - uid: 8974 + components: + - pos: -14.5,1.5 + parent: 6 + type: Transform + - uid: 8975 + components: + - pos: -14.5,0.5 + parent: 6 + type: Transform + - uid: 8976 + components: + - pos: -14.5,-0.5 + parent: 6 + type: Transform + - uid: 8977 + components: + - pos: -14.5,-1.5 + parent: 6 + type: Transform + - uid: 8978 + components: + - pos: -14.5,-2.5 + parent: 6 + type: Transform + - uid: 8979 + components: + - pos: -14.5,-3.5 + parent: 6 + type: Transform + - uid: 8980 + components: + - pos: -14.5,-4.5 + parent: 6 + type: Transform + - uid: 8981 + components: + - pos: -14.5,-5.5 + parent: 6 + type: Transform + - uid: 8982 + components: + - pos: -14.5,-6.5 + parent: 6 + type: Transform + - uid: 8983 + components: + - pos: -14.5,-7.5 + parent: 6 + type: Transform + - uid: 8984 + components: + - pos: -4.5,6.5 + parent: 6 + type: Transform + - uid: 8985 + components: + - pos: -4.5,7.5 + parent: 6 + type: Transform + - uid: 8986 + components: + - pos: -4.5,8.5 + parent: 6 + type: Transform + - uid: 8987 + components: + - pos: -4.5,9.5 + parent: 6 + type: Transform + - uid: 8988 + components: + - pos: -3.5,3.5 + parent: 6 + type: Transform + - uid: 8989 + components: + - pos: -2.5,3.5 + parent: 6 + type: Transform + - uid: 8990 + components: + - pos: -1.5,3.5 + parent: 6 + type: Transform + - uid: 8991 + components: + - pos: -0.5,3.5 + parent: 6 + type: Transform + - uid: 8992 + components: + - pos: 0.5,3.5 + parent: 6 + type: Transform + - uid: 8993 + components: + - pos: 1.5,3.5 + parent: 6 + type: Transform + - uid: 8994 + components: + - pos: 2.5,3.5 + parent: 6 + type: Transform + - uid: 8995 + components: + - pos: 3.5,3.5 + parent: 6 + type: Transform + - uid: 8997 + components: + - pos: -3.5,-4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8998 + components: + - pos: -3.5,-3.5 + parent: 6 + type: Transform + - uid: 8999 + components: + - pos: -3.5,-2.5 + parent: 6 + type: Transform + - uid: 9000 + components: + - pos: -3.5,-1.5 + parent: 6 + type: Transform + - uid: 9001 + components: + - pos: -3.5,-0.5 + parent: 6 + type: Transform + - uid: 9002 + components: + - pos: -3.5,0.5 + parent: 6 + type: Transform + - uid: 9003 + components: + - pos: -4.5,0.5 + parent: 6 + type: Transform + - uid: 9004 + components: + - pos: -5.5,0.5 + parent: 6 + type: Transform + - uid: 9005 + components: + - pos: -6.5,0.5 + parent: 6 + type: Transform + - uid: 9006 + components: + - pos: -7.5,0.5 + parent: 6 + type: Transform + - uid: 9007 + components: + - pos: -7.5,-0.5 + parent: 6 + type: Transform + - uid: 9008 + components: + - pos: -7.5,-1.5 + parent: 6 + type: Transform + - uid: 9009 + components: + - pos: -7.5,-2.5 + parent: 6 + type: Transform + - uid: 9010 + components: + - pos: -7.5,-3.5 + parent: 6 + type: Transform + - uid: 9011 + components: + - pos: -8.5,-3.5 + parent: 6 + type: Transform + - uid: 9012 + components: + - pos: -9.5,-3.5 + parent: 6 + type: Transform + - uid: 9013 + components: + - pos: -4.5,-2.5 + parent: 6 + type: Transform + - uid: 9014 + components: + - pos: -5.5,-2.5 + parent: 6 + type: Transform + - uid: 9015 + components: + - pos: -5.5,-3.5 + parent: 6 + type: Transform + - uid: 9016 + components: + - pos: -5.5,-4.5 + parent: 6 + type: Transform + - uid: 9017 + components: + - pos: -5.5,-5.5 + parent: 6 + type: Transform + - uid: 9018 + components: + - pos: -5.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9019 + components: + - pos: -6.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9020 + components: + - pos: -6.5,-7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9021 + components: + - pos: -6.5,-8.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9022 + components: + - pos: -4.5,-5.5 + parent: 6 + type: Transform + - uid: 9023 + components: + - pos: -3.5,-5.5 + parent: 6 + type: Transform + - uid: 9024 + components: + - pos: -2.5,-5.5 + parent: 6 + type: Transform + - uid: 9025 + components: + - pos: -1.5,-5.5 + parent: 6 + type: Transform + - uid: 9026 + components: + - pos: -0.5,-5.5 + parent: 6 + type: Transform + - uid: 9027 + components: + - pos: -0.5,-6.5 + parent: 6 + type: Transform + - uid: 9028 + components: + - pos: 0.5,-6.5 + parent: 6 + type: Transform + - uid: 9029 + components: + - pos: 1.5,-6.5 + parent: 6 + type: Transform + - uid: 9030 + components: + - pos: 2.5,-6.5 + parent: 6 + type: Transform + - uid: 9031 + components: + - pos: 3.5,-6.5 + parent: 6 + type: Transform + - uid: 9032 + components: + - pos: 3.5,-5.5 + parent: 6 + type: Transform + - uid: 9033 + components: + - pos: 3.5,-4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9040 + components: + - pos: 1.5,0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9041 + components: + - pos: 0.5,0.5 + parent: 6 + type: Transform + - uid: 9042 + components: + - pos: -0.5,0.5 + parent: 6 + type: Transform + - uid: 9043 + components: + - pos: -1.5,0.5 + parent: 6 + type: Transform + - uid: 9044 + components: + - pos: -2.5,0.5 + parent: 6 + type: Transform + - uid: 9045 + components: + - pos: 4.5,0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9046 + components: + - pos: 4.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9047 + components: + - pos: 4.5,-1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9048 + components: + - pos: 4.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9049 + components: + - pos: 5.5,0.5 + parent: 6 + type: Transform + - uid: 9050 + components: + - pos: 5.5,1.5 + parent: 6 + type: Transform + - uid: 9051 + components: + - pos: 5.5,2.5 + parent: 6 + type: Transform + - uid: 9052 + components: + - pos: 5.5,3.5 + parent: 6 + type: Transform + - uid: 9053 + components: + - pos: 5.5,4.5 + parent: 6 + type: Transform + - uid: 9054 + components: + - pos: 5.5,5.5 + parent: 6 + type: Transform + - uid: 9055 + components: + - pos: 5.5,6.5 + parent: 6 + type: Transform + - uid: 9056 + components: + - pos: 5.5,7.5 + parent: 6 + type: Transform + - uid: 9057 + components: + - pos: 6.5,7.5 + parent: 6 + type: Transform + - uid: 9058 + components: + - pos: 7.5,7.5 + parent: 6 + type: Transform + - uid: 9059 + components: + - pos: 8.5,7.5 + parent: 6 + type: Transform + - uid: 9060 + components: + - pos: 5.5,-0.5 + parent: 6 + type: Transform + - uid: 9061 + components: + - pos: 5.5,-1.5 + parent: 6 + type: Transform + - uid: 9062 + components: + - pos: 5.5,-2.5 + parent: 6 + type: Transform + - uid: 9063 + components: + - pos: 5.5,-3.5 + parent: 6 + type: Transform + - uid: 9064 + components: + - pos: 5.5,-4.5 + parent: 6 + type: Transform + - uid: 9065 + components: + - pos: 5.5,-5.5 + parent: 6 + type: Transform + - uid: 9066 + components: + - pos: 5.5,-6.5 + parent: 6 + type: Transform + - uid: 9067 + components: + - pos: 5.5,-7.5 + parent: 6 + type: Transform + - uid: 9068 + components: + - pos: 5.5,-8.5 + parent: 6 + type: Transform + - uid: 9069 + components: + - pos: -14.5,-8.5 + parent: 6 + type: Transform + - uid: 9070 + components: + - pos: -13.5,1.5 + parent: 6 + type: Transform + - uid: 9071 + components: + - pos: -12.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9072 + components: + - pos: -11.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9073 + components: + - pos: -10.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9074 + components: + - pos: -10.5,0.5 + parent: 6 + type: Transform + - uid: 9075 + components: + - pos: -10.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9076 + components: + - pos: -12.5,0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9077 + components: + - pos: -12.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9078 + components: + - pos: -12.5,-1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9079 + components: + - pos: -12.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9080 + components: + - pos: -12.5,-3.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9081 + components: + - pos: -12.5,-4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9082 + components: + - pos: -12.5,-5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9083 + components: + - pos: -12.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9084 + components: + - pos: -11.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9085 + components: + - pos: -10.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9087 + components: + - pos: 7.5,-6.5 + parent: 6 + type: Transform + - uid: 9088 + components: + - pos: 8.5,-6.5 + parent: 6 + type: Transform + - uid: 9089 + components: + - pos: 9.5,-6.5 + parent: 6 + type: Transform + - uid: 9090 + components: + - pos: 10.5,-6.5 + parent: 6 + type: Transform + - uid: 9091 + components: + - pos: 11.5,-6.5 + parent: 6 + type: Transform + - uid: 9092 + components: + - pos: 12.5,-6.5 + parent: 6 + type: Transform + - uid: 9093 + components: + - pos: 13.5,-6.5 + parent: 6 + type: Transform + - uid: 9094 + components: + - pos: 14.5,-6.5 + parent: 6 + type: Transform + - uid: 9095 + components: + - pos: 7.5,-7.5 + parent: 6 + type: Transform + - uid: 9096 + components: + - pos: 7.5,-8.5 + parent: 6 + type: Transform + - uid: 9097 + components: + - pos: 7.5,-9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9098 + components: + - pos: 7.5,-10.5 + parent: 6 + type: Transform + - uid: 9099 + components: + - pos: 8.5,-9.5 + parent: 6 + type: Transform + - uid: 9100 + components: + - pos: 9.5,-9.5 + parent: 6 + type: Transform + - uid: 9101 + components: + - pos: 10.5,-9.5 + parent: 6 + type: Transform + - uid: 9102 + components: + - pos: 11.5,-9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9103 + components: + - pos: 12.5,-9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9104 + components: + - pos: 13.5,-9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9105 + components: + - pos: 14.5,-9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9106 + components: + - pos: 15.5,-9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9107 + components: + - pos: 16.5,-9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9108 + components: + - pos: 17.5,-9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9109 + components: + - pos: 18.5,-9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9110 + components: + - pos: 19.5,-9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9111 + components: + - pos: 7.5,-5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9112 + components: + - pos: 7.5,-4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9113 + components: + - pos: 7.5,-3.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9114 + components: + - pos: 7.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9115 + components: + - pos: 7.5,-1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9116 + components: + - pos: 7.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9117 + components: + - pos: 7.5,0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9118 + components: + - pos: 7.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9119 + components: + - pos: 7.5,2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9120 + components: + - pos: 7.5,3.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9121 + components: + - pos: 7.5,4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9122 + components: + - pos: 14.5,-5.5 + parent: 6 + type: Transform + - uid: 9123 + components: + - pos: 14.5,-4.5 + parent: 6 + type: Transform + - uid: 9124 + components: + - pos: 14.5,-3.5 + parent: 6 + type: Transform + - uid: 9125 + components: + - pos: 14.5,-2.5 + parent: 6 + type: Transform + - uid: 9126 + components: + - pos: 14.5,-1.5 + parent: 6 + type: Transform + - uid: 9127 + components: + - pos: 14.5,-0.5 + parent: 6 + type: Transform + - uid: 9128 + components: + - pos: 14.5,0.5 + parent: 6 + type: Transform + - uid: 9129 + components: + - pos: 14.5,1.5 + parent: 6 + type: Transform + - uid: 9130 + components: + - pos: 14.5,2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9131 + components: + - pos: 14.5,3.5 + parent: 6 + type: Transform + - uid: 9132 + components: + - pos: 14.5,4.5 + parent: 6 + type: Transform + - uid: 9133 + components: + - pos: 14.5,5.5 + parent: 6 + type: Transform + - uid: 9134 + components: + - pos: 14.5,6.5 + parent: 6 + type: Transform + - uid: 9135 + components: + - pos: 14.5,7.5 + parent: 6 + type: Transform + - uid: 9136 + components: + - pos: 14.5,8.5 + parent: 6 + type: Transform + - uid: 9137 + components: + - pos: 14.5,9.5 + parent: 6 + type: Transform + - uid: 9138 + components: + - pos: 14.5,10.5 + parent: 6 + type: Transform + - uid: 9139 + components: + - pos: 14.5,11.5 + parent: 6 + type: Transform + - uid: 9140 + components: + - pos: 13.5,11.5 + parent: 6 + type: Transform + - uid: 9141 + components: + - pos: 12.5,11.5 + parent: 6 + type: Transform + - uid: 9142 + components: + - pos: 11.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9143 + components: + - pos: 10.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9144 + components: + - pos: 9.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9145 + components: + - pos: 8.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9146 + components: + - pos: 15.5,11.5 + parent: 6 + type: Transform + - uid: 9147 + components: + - pos: 16.5,11.5 + parent: 6 + type: Transform + - uid: 9148 + components: + - pos: 17.5,11.5 + parent: 6 + type: Transform + - uid: 9149 + components: + - pos: 18.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9150 + components: + - pos: 19.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9151 + components: + - pos: 20.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9152 + components: + - pos: 21.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9153 + components: + - pos: 22.5,11.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9154 + components: + - pos: 15.5,6.5 + parent: 6 + type: Transform + - uid: 9155 + components: + - pos: 16.5,6.5 + parent: 6 + type: Transform + - uid: 9156 + components: + - pos: 17.5,6.5 + parent: 6 + type: Transform + - uid: 9157 + components: + - pos: 18.5,6.5 + parent: 6 + type: Transform + - uid: 9158 + components: + - pos: 19.5,6.5 + parent: 6 + type: Transform + - uid: 9159 + components: + - pos: 14.5,12.5 + parent: 6 + type: Transform + - uid: 9160 + components: + - pos: 14.5,13.5 + parent: 6 + type: Transform + - uid: 9161 + components: + - pos: 14.5,14.5 + parent: 6 + type: Transform + - uid: 9162 + components: + - pos: 14.5,15.5 + parent: 6 + type: Transform + - uid: 9163 + components: + - pos: 14.5,-7.5 + parent: 6 + type: Transform + - uid: 9164 + components: + - pos: 15.5,-7.5 + parent: 6 + type: Transform + - uid: 9165 + components: + - pos: 16.5,-7.5 + parent: 6 + type: Transform + - uid: 9166 + components: + - pos: 17.5,-7.5 + parent: 6 + type: Transform + - uid: 9167 + components: + - pos: 18.5,-7.5 + parent: 6 + type: Transform + - uid: 9168 + components: + - pos: 19.5,-7.5 + parent: 6 + type: Transform + - uid: 9169 + components: + - pos: 15.5,-0.5 + parent: 6 + type: Transform + - uid: 9170 + components: + - pos: 16.5,-0.5 + parent: 6 + type: Transform + - uid: 9173 + components: + - pos: 25.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9174 + components: + - pos: 25.5,2.5 + parent: 6 + type: Transform + - uid: 9175 + components: + - pos: 25.5,3.5 + parent: 6 + type: Transform + - uid: 9176 + components: + - pos: 25.5,4.5 + parent: 6 + type: Transform + - uid: 9177 + components: + - pos: 25.5,5.5 + parent: 6 + type: Transform + - uid: 9178 + components: + - pos: 26.5,5.5 + parent: 6 + type: Transform + - uid: 9179 + components: + - pos: 27.5,5.5 + parent: 6 + type: Transform + - uid: 9180 + components: + - pos: 28.5,5.5 + parent: 6 + type: Transform + - uid: 9181 + components: + - pos: 29.5,5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9182 + components: + - pos: 30.5,5.5 + parent: 6 + type: Transform + - uid: 9183 + components: + - pos: 30.5,6.5 + parent: 6 + type: Transform + - uid: 9184 + components: + - pos: 30.5,7.5 + parent: 6 + type: Transform + - uid: 9185 + components: + - pos: 30.5,8.5 + parent: 6 + type: Transform + - uid: 9186 + components: + - pos: 30.5,9.5 + parent: 6 + type: Transform + - uid: 9187 + components: + - pos: 29.5,8.5 + parent: 6 + type: Transform + - uid: 9188 + components: + - pos: 28.5,8.5 + parent: 6 + type: Transform + - uid: 9189 + components: + - pos: 27.5,8.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9190 + components: + - pos: 27.5,9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9191 + components: + - pos: 26.5,9.5 + parent: 6 + type: Transform + - uid: 9192 + components: + - pos: 25.5,9.5 + parent: 6 + type: Transform + - uid: 9193 + components: + - pos: 24.5,9.5 + parent: 6 + type: Transform + - uid: 9194 + components: + - pos: 23.5,9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9195 + components: + - pos: 22.5,9.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9196 + components: + - pos: 22.5,8.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9197 + components: + - pos: 22.5,7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9198 + components: + - pos: 22.5,6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9199 + components: + - pos: 22.5,5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9200 + components: + - pos: 22.5,4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9201 + components: + - pos: 22.5,3.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9202 + components: + - pos: 22.5,2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9203 + components: + - pos: 22.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9204 + components: + - pos: 21.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9205 + components: + - pos: 20.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9206 + components: + - pos: 19.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9207 + components: + - pos: 15.5,-4.5 + parent: 6 + type: Transform + - uid: 9208 + components: + - pos: 17.5,-4.5 + parent: 6 + type: Transform + - uid: 9209 + components: + - pos: 16.5,-4.5 + parent: 6 + type: Transform + - uid: 9210 + components: + - pos: 19.5,0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9211 + components: + - pos: 19.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9212 + components: + - pos: 19.5,-1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9213 + components: + - pos: 19.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9214 + components: + - pos: 20.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9215 + components: + - pos: 21.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9216 + components: + - pos: 22.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9217 + components: + - pos: 21.5,-3.5 + parent: 6 + type: Transform + - uid: 9218 + components: + - pos: 21.5,-4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9219 + components: + - pos: 23.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9220 + components: + - pos: 24.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9221 + components: + - pos: 24.5,-3.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9222 + components: + - pos: 24.5,-4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9223 + components: + - pos: 24.5,-5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9224 + components: + - pos: 24.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9225 + components: + - pos: 24.5,-7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9226 + components: + - pos: 23.5,-7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9227 + components: + - pos: 22.5,-7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9228 + components: + - pos: 21.5,-7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9229 + components: + - pos: 21.5,-8.5 + parent: 6 + type: Transform + - uid: 9230 + components: + - pos: 21.5,-9.5 + parent: 6 + type: Transform + - uid: 9231 + components: + - pos: 21.5,-10.5 + parent: 6 + type: Transform + - uid: 9232 + components: + - pos: 22.5,-10.5 + parent: 6 + type: Transform + - uid: 9233 + components: + - pos: 23.5,-10.5 + parent: 6 + type: Transform + - uid: 9234 + components: + - pos: 24.5,-10.5 + parent: 6 + type: Transform + - uid: 9235 + components: + - pos: 25.5,-10.5 + parent: 6 + type: Transform + - uid: 9236 + components: + - pos: 26.5,-10.5 + parent: 6 + type: Transform + - uid: 9237 + components: + - pos: 27.5,-10.5 + parent: 6 + type: Transform + - uid: 9238 + components: + - pos: 28.5,-10.5 + parent: 6 + type: Transform + - uid: 9239 + components: + - pos: 29.5,-10.5 + parent: 6 + type: Transform + - uid: 9240 + components: + - pos: 30.5,-10.5 + parent: 6 + type: Transform + - uid: 9241 + components: + - pos: 27.5,-9.5 + parent: 6 + type: Transform + - uid: 9242 + components: + - pos: 27.5,-8.5 + parent: 6 + type: Transform + - uid: 9243 + components: + - pos: 27.5,-7.5 + parent: 6 + type: Transform + - uid: 9244 + components: + - pos: 27.5,-6.5 + parent: 6 + type: Transform + - uid: 9245 + components: + - pos: 27.5,-5.5 + parent: 6 + type: Transform + - uid: 9246 + components: + - pos: 32.5,-10.5 + parent: 6 + type: Transform + - uid: 9247 + components: + - pos: 33.5,-10.5 + parent: 6 + type: Transform + - uid: 9248 + components: + - pos: 34.5,-10.5 + parent: 6 + type: Transform + - uid: 9249 + components: + - pos: 35.5,-10.5 + parent: 6 + type: Transform + - uid: 9250 + components: + - pos: 36.5,-10.5 + parent: 6 + type: Transform + - uid: 9251 + components: + - pos: 37.5,-10.5 + parent: 6 + type: Transform + - uid: 9252 + components: + - pos: 38.5,-10.5 + parent: 6 + type: Transform + - uid: 9253 + components: + - pos: 39.5,-10.5 + parent: 6 + type: Transform + - uid: 9254 + components: + - pos: 40.5,-10.5 + parent: 6 + type: Transform + - uid: 9255 + components: + - pos: 41.5,-10.5 + parent: 6 + type: Transform + - uid: 9256 + components: + - pos: 42.5,-10.5 + parent: 6 + type: Transform + - uid: 9257 + components: + - pos: 43.5,-10.5 + parent: 6 + type: Transform + - uid: 9258 + components: + - pos: 43.5,-9.5 + parent: 6 + type: Transform + - uid: 9259 + components: + - pos: 43.5,-8.5 + parent: 6 + type: Transform + - uid: 9260 + components: + - pos: 43.5,-7.5 + parent: 6 + type: Transform + - uid: 9261 + components: + - pos: 43.5,-6.5 + parent: 6 + type: Transform + - uid: 9262 + components: + - pos: 43.5,-5.5 + parent: 6 + type: Transform + - uid: 9263 + components: + - pos: 43.5,-4.5 + parent: 6 + type: Transform + - uid: 9264 + components: + - pos: 43.5,-3.5 + parent: 6 + type: Transform + - uid: 9265 + components: + - pos: 43.5,-2.5 + parent: 6 + type: Transform + - uid: 9266 + components: + - pos: 43.5,-1.5 + parent: 6 + type: Transform + - uid: 9267 + components: + - pos: 43.5,-0.5 + parent: 6 + type: Transform + - uid: 9268 + components: + - pos: 43.5,0.5 + parent: 6 + type: Transform + - uid: 9269 + components: + - pos: 43.5,1.5 + parent: 6 + type: Transform + - uid: 9270 + components: + - pos: 43.5,2.5 + parent: 6 + type: Transform + - uid: 9271 + components: + - pos: 43.5,3.5 + parent: 6 + type: Transform + - uid: 9272 + components: + - pos: 43.5,4.5 + parent: 6 + type: Transform + - uid: 9273 + components: + - pos: 43.5,5.5 + parent: 6 + type: Transform + - uid: 9274 + components: + - pos: 43.5,6.5 + parent: 6 + type: Transform + - uid: 9275 + components: + - pos: 43.5,7.5 + parent: 6 + type: Transform + - uid: 9276 + components: + - pos: 43.5,8.5 + parent: 6 + type: Transform + - uid: 9277 + components: + - pos: 25.5,0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9278 + components: + - pos: 25.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9279 + components: + - pos: 24.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9280 + components: + - pos: 23.5,-0.5 + parent: 6 + type: Transform + - uid: 9281 + components: + - pos: 23.5,-1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9283 + components: + - pos: 11.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9284 + components: + - pos: 12.5,-19.5 + parent: 6 + type: Transform + - uid: 9285 + components: + - pos: 13.5,-19.5 + parent: 6 + type: Transform + - uid: 9286 + components: + - pos: 14.5,-19.5 + parent: 6 + type: Transform + - uid: 9287 + components: + - pos: 15.5,-19.5 + parent: 6 + type: Transform + - uid: 9288 + components: + - pos: 16.5,-19.5 + parent: 6 + type: Transform + - uid: 9289 + components: + - pos: 17.5,-19.5 + parent: 6 + type: Transform + - uid: 9290 + components: + - pos: 18.5,-19.5 + parent: 6 + type: Transform + - uid: 9291 + components: + - pos: 19.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9292 + components: + - pos: 19.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9293 + components: + - pos: 19.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9294 + components: + - pos: 19.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9295 + components: + - pos: 19.5,-15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9296 + components: + - pos: 19.5,-14.5 + parent: 6 + type: Transform + - uid: 9297 + components: + - pos: 19.5,-13.5 + parent: 6 + type: Transform + - uid: 9298 + components: + - pos: 19.5,-12.5 + parent: 6 + type: Transform + - uid: 9299 + components: + - pos: 18.5,-12.5 + parent: 6 + type: Transform + - uid: 9300 + components: + - pos: 17.5,-12.5 + parent: 6 + type: Transform + - uid: 9301 + components: + - pos: 16.5,-12.5 + parent: 6 + type: Transform + - uid: 9302 + components: + - pos: 15.5,-12.5 + parent: 6 + type: Transform + - uid: 9303 + components: + - pos: 14.5,-12.5 + parent: 6 + type: Transform + - uid: 9304 + components: + - pos: 13.5,-12.5 + parent: 6 + type: Transform + - uid: 9305 + components: + - pos: 12.5,-12.5 + parent: 6 + type: Transform + - uid: 9306 + components: + - pos: 11.5,-12.5 + parent: 6 + type: Transform + - uid: 9307 + components: + - pos: 10.5,-12.5 + parent: 6 + type: Transform + - uid: 9308 + components: + - pos: 9.5,-12.5 + parent: 6 + type: Transform + - uid: 9309 + components: + - pos: 8.5,-12.5 + parent: 6 + type: Transform + - uid: 9310 + components: + - pos: 7.5,-12.5 + parent: 6 + type: Transform + - uid: 9311 + components: + - pos: 6.5,-12.5 + parent: 6 + type: Transform + - uid: 9312 + components: + - pos: -3.5,-6.5 + parent: 6 + type: Transform + - uid: 9313 + components: + - pos: -3.5,-7.5 + parent: 6 + type: Transform + - uid: 9314 + components: + - pos: -2.5,-7.5 + parent: 6 + type: Transform + - uid: 9315 + components: + - pos: -1.5,-7.5 + parent: 6 + type: Transform + - uid: 9316 + components: + - pos: -0.5,-7.5 + parent: 6 + type: Transform + - uid: 9317 + components: + - pos: -0.5,-8.5 + parent: 6 + type: Transform + - uid: 9318 + components: + - pos: -0.5,-9.5 + parent: 6 + type: Transform + - uid: 9319 + components: + - pos: -0.5,-10.5 + parent: 6 + type: Transform + - uid: 9320 + components: + - pos: 0.5,-10.5 + parent: 6 + type: Transform + - uid: 9321 + components: + - pos: 1.5,-10.5 + parent: 6 + type: Transform + - uid: 9322 + components: + - pos: 2.5,-10.5 + parent: 6 + type: Transform + - uid: 9323 + components: + - pos: 3.5,-10.5 + parent: 6 + type: Transform + - uid: 9324 + components: + - pos: 3.5,-11.5 + parent: 6 + type: Transform + - uid: 9325 + components: + - pos: -1.5,-10.5 + parent: 6 + type: Transform + - uid: 9326 + components: + - pos: -2.5,-10.5 + parent: 6 + type: Transform + - uid: 9327 + components: + - pos: -3.5,-10.5 + parent: 6 + type: Transform + - uid: 9328 + components: + - pos: -4.5,-10.5 + parent: 6 + type: Transform + - uid: 9329 + components: + - pos: -5.5,-10.5 + parent: 6 + type: Transform + - uid: 9330 + components: + - pos: -6.5,-10.5 + parent: 6 + type: Transform + - uid: 9331 + components: + - pos: -7.5,-10.5 + parent: 6 + type: Transform + - uid: 9332 + components: + - pos: -8.5,-10.5 + parent: 6 + type: Transform + - uid: 9333 + components: + - pos: -9.5,-10.5 + parent: 6 + type: Transform + - uid: 9334 + components: + - pos: -10.5,-10.5 + parent: 6 + type: Transform + - uid: 9335 + components: + - pos: -11.5,-10.5 + parent: 6 + type: Transform + - uid: 9336 + components: + - pos: -12.5,-10.5 + parent: 6 + type: Transform + - uid: 9337 + components: + - pos: -6.5,-9.5 + parent: 6 + type: Transform + - uid: 9338 + components: + - pos: 17.5,-18.5 + parent: 6 + type: Transform + - uid: 9339 + components: + - pos: 17.5,-17.5 + parent: 6 + type: Transform + - uid: 9340 + components: + - pos: 17.5,-16.5 + parent: 6 + type: Transform + - uid: 9341 + components: + - pos: 17.5,-15.5 + parent: 6 + type: Transform + - uid: 9342 + components: + - pos: 12.5,-18.5 + parent: 6 + type: Transform + - uid: 9343 + components: + - pos: 12.5,-17.5 + parent: 6 + type: Transform + - uid: 9344 + components: + - pos: 12.5,-16.5 + parent: 6 + type: Transform + - uid: 9345 + components: + - pos: 12.5,-15.5 + parent: 6 + type: Transform + - uid: 9346 + components: + - pos: 11.5,-16.5 + parent: 6 + type: Transform + - uid: 9347 + components: + - pos: 10.5,-16.5 + parent: 6 + type: Transform + - uid: 9348 + components: + - pos: 9.5,-16.5 + parent: 6 + type: Transform + - uid: 9349 + components: + - pos: 8.5,-16.5 + parent: 6 + type: Transform + - uid: 9350 + components: + - pos: 10.5,-19.5 + parent: 6 + type: Transform + - uid: 9351 + components: + - pos: 10.5,-20.5 + parent: 6 + type: Transform + - uid: 9352 + components: + - pos: 10.5,-21.5 + parent: 6 + type: Transform + - uid: 9353 + components: + - pos: 10.5,-22.5 + parent: 6 + type: Transform + - uid: 9354 + components: + - pos: 10.5,-23.5 + parent: 6 + type: Transform + - uid: 9355 + components: + - pos: 10.5,-24.5 + parent: 6 + type: Transform + - uid: 9356 + components: + - pos: 10.5,-25.5 + parent: 6 + type: Transform + - uid: 9357 + components: + - pos: 10.5,-26.5 + parent: 6 + type: Transform + - uid: 9358 + components: + - pos: 11.5,-22.5 + parent: 6 + type: Transform + - uid: 9359 + components: + - pos: 12.5,-22.5 + parent: 6 + type: Transform + - uid: 9360 + components: + - pos: 13.5,-22.5 + parent: 6 + type: Transform + - uid: 9361 + components: + - pos: 14.5,-22.5 + parent: 6 + type: Transform + - uid: 9362 + components: + - pos: 15.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9363 + components: + - pos: 16.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9364 + components: + - pos: 17.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9365 + components: + - pos: 18.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9366 + components: + - pos: 19.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9367 + components: + - pos: 19.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9368 + components: + - pos: 19.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9369 + components: + - pos: 16.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9370 + components: + - pos: 16.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9371 + components: + - pos: 17.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9372 + components: + - pos: 18.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9373 + components: + - pos: 19.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9374 + components: + - pos: 16.5,-25.5 + parent: 6 + type: Transform + - uid: 9375 + components: + - pos: 16.5,-26.5 + parent: 6 + type: Transform + - uid: 9376 + components: + - pos: 16.5,-27.5 + parent: 6 + type: Transform + - uid: 9377 + components: + - pos: 15.5,-26.5 + parent: 6 + type: Transform + - uid: 9378 + components: + - pos: 14.5,-26.5 + parent: 6 + type: Transform + - uid: 9379 + components: + - pos: 13.5,-26.5 + parent: 6 + type: Transform + - uid: 9380 + components: + - pos: 12.5,-26.5 + parent: 6 + type: Transform + - uid: 9381 + components: + - pos: 11.5,-26.5 + parent: 6 + type: Transform + - uid: 9382 + components: + - pos: 19.5,-25.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9383 + components: + - pos: 19.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9384 + components: + - pos: 19.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9385 + components: + - pos: 19.5,-28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9386 + components: + - pos: 19.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9387 + components: + - pos: 19.5,-30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9388 + components: + - pos: 18.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9389 + components: + - pos: 17.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9390 + components: + - pos: 16.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9391 + components: + - pos: 15.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9392 + components: + - pos: 14.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9393 + components: + - pos: 13.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9394 + components: + - pos: 12.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9395 + components: + - pos: 12.5,-30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9396 + components: + - pos: 12.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9397 + components: + - pos: 11.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9398 + components: + - pos: 10.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9399 + components: + - pos: 9.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9400 + components: + - pos: 8.5,-29.5 + parent: 6 + type: Transform + - uid: 9401 + components: + - pos: 7.5,-29.5 + parent: 6 + type: Transform + - uid: 9402 + components: + - pos: 6.5,-29.5 + parent: 6 + type: Transform + - uid: 9403 + components: + - pos: 6.5,-30.5 + parent: 6 + type: Transform + - uid: 9404 + components: + - pos: 6.5,-31.5 + parent: 6 + type: Transform + - uid: 9405 + components: + - pos: 6.5,-32.5 + parent: 6 + type: Transform + - uid: 9406 + components: + - pos: 6.5,-33.5 + parent: 6 + type: Transform + - uid: 9407 + components: + - pos: 6.5,-34.5 + parent: 6 + type: Transform + - uid: 9408 + components: + - pos: 6.5,-35.5 + parent: 6 + type: Transform + - uid: 9409 + components: + - pos: 6.5,-36.5 + parent: 6 + type: Transform + - uid: 9410 + components: + - pos: 6.5,-37.5 + parent: 6 + type: Transform + - uid: 9411 + components: + - pos: 6.5,-38.5 + parent: 6 + type: Transform + - uid: 9412 + components: + - pos: 6.5,-39.5 + parent: 6 + type: Transform + - uid: 9413 + components: + - pos: 6.5,-40.5 + parent: 6 + type: Transform + - uid: 9414 + components: + - pos: 6.5,-41.5 + parent: 6 + type: Transform + - uid: 9415 + components: + - pos: 6.5,-42.5 + parent: 6 + type: Transform + - uid: 9416 + components: + - pos: 6.5,-43.5 + parent: 6 + type: Transform + - uid: 9417 + components: + - pos: 6.5,-44.5 + parent: 6 + type: Transform + - uid: 9418 + components: + - pos: 7.5,-44.5 + parent: 6 + type: Transform + - uid: 9419 + components: + - pos: 8.5,-44.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9420 + components: + - pos: 9.5,-44.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9421 + components: + - pos: 9.5,-43.5 + parent: 6 + type: Transform + - uid: 9422 + components: + - pos: 9.5,-42.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9423 + components: + - pos: 7.5,-40.5 + parent: 6 + type: Transform + - uid: 9424 + components: + - pos: 8.5,-40.5 + parent: 6 + type: Transform + - uid: 9425 + components: + - pos: 9.5,-40.5 + parent: 6 + type: Transform + - uid: 9426 + components: + - pos: 10.5,-40.5 + parent: 6 + type: Transform + - uid: 9427 + components: + - pos: 11.5,-40.5 + parent: 6 + type: Transform + - uid: 9428 + components: + - pos: 12.5,-40.5 + parent: 6 + type: Transform + - uid: 9429 + components: + - pos: 13.5,-40.5 + parent: 6 + type: Transform + - uid: 9430 + components: + - pos: 14.5,-40.5 + parent: 6 + type: Transform + - uid: 9431 + components: + - pos: 14.5,-39.5 + parent: 6 + type: Transform + - uid: 9432 + components: + - pos: 14.5,-38.5 + parent: 6 + type: Transform + - uid: 9433 + components: + - pos: 14.5,-37.5 + parent: 6 + type: Transform + - uid: 9434 + components: + - pos: 14.5,-36.5 + parent: 6 + type: Transform + - uid: 9435 + components: + - pos: 14.5,-35.5 + parent: 6 + type: Transform + - uid: 9436 + components: + - pos: 14.5,-34.5 + parent: 6 + type: Transform + - uid: 9437 + components: + - pos: 15.5,-34.5 + parent: 6 + type: Transform + - uid: 9438 + components: + - pos: 16.5,-34.5 + parent: 6 + type: Transform + - uid: 9439 + components: + - pos: 16.5,-33.5 + parent: 6 + type: Transform + - uid: 9440 + components: + - pos: 16.5,-32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9441 + components: + - pos: 17.5,-34.5 + parent: 6 + type: Transform + - uid: 9442 + components: + - pos: 18.5,-34.5 + parent: 6 + type: Transform + - uid: 9443 + components: + - pos: 19.5,-34.5 + parent: 6 + type: Transform + - uid: 9444 + components: + - pos: 20.5,-34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9445 + components: + - pos: 21.5,-34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9446 + components: + - pos: 22.5,-34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9447 + components: + - pos: 19.5,-35.5 + parent: 6 + type: Transform + - uid: 9448 + components: + - pos: 19.5,-36.5 + parent: 6 + type: Transform + - uid: 9449 + components: + - pos: 19.5,-37.5 + parent: 6 + type: Transform + - uid: 9450 + components: + - pos: 19.5,-38.5 + parent: 6 + type: Transform + - uid: 9451 + components: + - pos: 20.5,-38.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9452 + components: + - pos: 21.5,-38.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9453 + components: + - pos: 22.5,-38.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9454 + components: + - pos: 18.5,-38.5 + parent: 6 + type: Transform + - uid: 9455 + components: + - pos: 18.5,-39.5 + parent: 6 + type: Transform + - uid: 9456 + components: + - pos: 18.5,-40.5 + parent: 6 + type: Transform + - uid: 9457 + components: + - pos: 18.5,-41.5 + parent: 6 + type: Transform + - uid: 9458 + components: + - pos: 18.5,-42.5 + parent: 6 + type: Transform + - uid: 9459 + components: + - pos: 18.5,-43.5 + parent: 6 + type: Transform + - uid: 9460 + components: + - pos: 18.5,-44.5 + parent: 6 + type: Transform + - uid: 9461 + components: + - pos: 18.5,-45.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9462 + components: + - pos: 17.5,-45.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9463 + components: + - pos: 16.5,-45.5 + parent: 6 + type: Transform + - uid: 9464 + components: + - pos: 15.5,-45.5 + parent: 6 + type: Transform + - uid: 9465 + components: + - pos: 14.5,-45.5 + parent: 6 + type: Transform + - uid: 9466 + components: + - pos: 13.5,-45.5 + parent: 6 + type: Transform + - uid: 9467 + components: + - pos: 12.5,-45.5 + parent: 6 + type: Transform + - uid: 9468 + components: + - pos: 11.5,-45.5 + parent: 6 + type: Transform + - uid: 9469 + components: + - pos: 10.5,-45.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9470 + components: + - pos: 9.5,-45.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9471 + components: + - pos: 13.5,-35.5 + parent: 6 + type: Transform + - uid: 9472 + components: + - pos: 12.5,-35.5 + parent: 6 + type: Transform + - uid: 9473 + components: + - pos: 11.5,-35.5 + parent: 6 + type: Transform + - uid: 9474 + components: + - pos: 10.5,-35.5 + parent: 6 + type: Transform + - uid: 9475 + components: + - pos: 9.5,-35.5 + parent: 6 + type: Transform + - uid: 9476 + components: + - pos: 8.5,-35.5 + parent: 6 + type: Transform + - uid: 9477 + components: + - pos: 8.5,-34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9478 + components: + - pos: 9.5,-34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9479 + components: + - pos: 8.5,-33.5 + parent: 6 + type: Transform + - uid: 9480 + components: + - pos: 8.5,-32.5 + parent: 6 + type: Transform + - uid: 9481 + components: + - pos: 17.5,-33.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9484 + components: + - pos: 7.5,-46.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9485 + components: + - pos: 7.5,-47.5 + parent: 6 + type: Transform + - uid: 9486 + components: + - pos: 7.5,-48.5 + parent: 6 + type: Transform + - uid: 9487 + components: + - pos: 6.5,-48.5 + parent: 6 + type: Transform + - uid: 9488 + components: + - pos: 6.5,-49.5 + parent: 6 + type: Transform + - uid: 9489 + components: + - pos: 6.5,-50.5 + parent: 6 + type: Transform + - uid: 9490 + components: + - pos: 6.5,-51.5 + parent: 6 + type: Transform + - uid: 9491 + components: + - pos: 6.5,-52.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9492 + components: + - pos: 6.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9493 + components: + - pos: 5.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9494 + components: + - pos: 4.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9495 + components: + - pos: 3.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9496 + components: + - pos: 3.5,-54.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9497 + components: + - pos: 3.5,-55.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9505 + components: + - pos: 2.5,-48.5 + parent: 6 + type: Transform + - uid: 9506 + components: + - pos: 2.5,-47.5 + parent: 6 + type: Transform + - uid: 9507 + components: + - pos: 2.5,-46.5 + parent: 6 + type: Transform + - uid: 9508 + components: + - pos: 2.5,-45.5 + parent: 6 + type: Transform + - uid: 9509 + components: + - pos: 2.5,-44.5 + parent: 6 + type: Transform + - uid: 9510 + components: + - pos: 1.5,-48.5 + parent: 6 + type: Transform + - uid: 9511 + components: + - pos: 0.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9512 + components: + - pos: -0.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9513 + components: + - pos: -1.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9514 + components: + - pos: -2.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9515 + components: + - pos: -3.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9516 + components: + - pos: -4.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9517 + components: + - pos: -5.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9518 + components: + - pos: -5.5,-47.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9519 + components: + - pos: -5.5,-46.5 + parent: 6 + type: Transform + - uid: 9520 + components: + - pos: -5.5,-45.5 + parent: 6 + type: Transform + - uid: 9521 + components: + - pos: -5.5,-44.5 + parent: 6 + type: Transform + - uid: 9522 + components: + - pos: -5.5,-43.5 + parent: 6 + type: Transform + - uid: 9523 + components: + - pos: -4.5,-43.5 + parent: 6 + type: Transform + - uid: 9524 + components: + - pos: -3.5,-43.5 + parent: 6 + type: Transform + - uid: 9525 + components: + - pos: -2.5,-43.5 + parent: 6 + type: Transform + - uid: 9526 + components: + - pos: -1.5,-43.5 + parent: 6 + type: Transform + - uid: 9527 + components: + - pos: -0.5,-43.5 + parent: 6 + type: Transform + - uid: 9528 + components: + - pos: 0.5,-43.5 + parent: 6 + type: Transform + - uid: 9529 + components: + - pos: 1.5,-43.5 + parent: 6 + type: Transform + - uid: 9530 + components: + - pos: 2.5,-43.5 + parent: 6 + type: Transform + - uid: 9531 + components: + - pos: 3.5,-47.5 + parent: 6 + type: Transform + - uid: 9532 + components: + - pos: 4.5,-47.5 + parent: 6 + type: Transform + - uid: 9533 + components: + - pos: 5.5,-47.5 + parent: 6 + type: Transform + - uid: 9534 + components: + - pos: 6.5,-47.5 + parent: 6 + type: Transform + - uid: 9536 + components: + - pos: -5.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9537 + components: + - pos: -5.5,-54.5 + parent: 6 + type: Transform + - uid: 9538 + components: + - pos: -6.5,-54.5 + parent: 6 + type: Transform + - uid: 9539 + components: + - pos: -7.5,-54.5 + parent: 6 + type: Transform + - uid: 9540 + components: + - pos: -7.5,-53.5 + parent: 6 + type: Transform + - uid: 9541 + components: + - pos: -7.5,-52.5 + parent: 6 + type: Transform + - uid: 9542 + components: + - pos: -7.5,-51.5 + parent: 6 + type: Transform + - uid: 9543 + components: + - pos: -7.5,-50.5 + parent: 6 + type: Transform + - uid: 9544 + components: + - pos: -7.5,-49.5 + parent: 6 + type: Transform + - uid: 9545 + components: + - pos: -7.5,-48.5 + parent: 6 + type: Transform + - uid: 9546 + components: + - pos: -7.5,-47.5 + parent: 6 + type: Transform + - uid: 9547 + components: + - pos: -8.5,-47.5 + parent: 6 + type: Transform + - uid: 9548 + components: + - pos: -9.5,-47.5 + parent: 6 + type: Transform + - uid: 9549 + components: + - pos: -10.5,-47.5 + parent: 6 + type: Transform + - uid: 9550 + components: + - pos: -11.5,-47.5 + parent: 6 + type: Transform + - uid: 9551 + components: + - pos: -12.5,-47.5 + parent: 6 + type: Transform + - uid: 9552 + components: + - pos: -12.5,-48.5 + parent: 6 + type: Transform + - uid: 9553 + components: + - pos: -12.5,-49.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9554 + components: + - pos: -12.5,-50.5 + parent: 6 + type: Transform + - uid: 9555 + components: + - pos: -12.5,-51.5 + parent: 6 + type: Transform + - uid: 9556 + components: + - pos: -12.5,-52.5 + parent: 6 + type: Transform + - uid: 9557 + components: + - pos: -12.5,-53.5 + parent: 6 + type: Transform + - uid: 9558 + components: + - pos: -12.5,-54.5 + parent: 6 + type: Transform + - uid: 9559 + components: + - pos: -12.5,-55.5 + parent: 6 + type: Transform + - uid: 9560 + components: + - pos: -12.5,-56.5 + parent: 6 + type: Transform + - uid: 9561 + components: + - pos: -11.5,-52.5 + parent: 6 + type: Transform + - uid: 9562 + components: + - pos: -10.5,-52.5 + parent: 6 + type: Transform + - uid: 9563 + components: + - pos: -11.5,-56.5 + parent: 6 + type: Transform + - uid: 9564 + components: + - pos: -10.5,-56.5 + parent: 6 + type: Transform + - uid: 9565 + components: + - pos: -9.5,-56.5 + parent: 6 + type: Transform + - uid: 9566 + components: + - pos: -8.5,-56.5 + parent: 6 + type: Transform + - uid: 9567 + components: + - pos: -7.5,-56.5 + parent: 6 + type: Transform + - uid: 9568 + components: + - pos: -7.5,-55.5 + parent: 6 + type: Transform + - uid: 9569 + components: + - pos: -6.5,-56.5 + parent: 6 + type: Transform + - uid: 9570 + components: + - pos: -6.5,-57.5 + parent: 6 + type: Transform + - uid: 9571 + components: + - pos: -6.5,-58.5 + parent: 6 + type: Transform + - uid: 9572 + components: + - pos: -6.5,-59.5 + parent: 6 + type: Transform + - uid: 9573 + components: + - pos: -6.5,-60.5 + parent: 6 + type: Transform + - uid: 9574 + components: + - pos: -6.5,-61.5 + parent: 6 + type: Transform + - uid: 9575 + components: + - pos: -6.5,-62.5 + parent: 6 + type: Transform + - uid: 9576 + components: + - pos: -6.5,-63.5 + parent: 6 + type: Transform + - uid: 9577 + components: + - pos: -7.5,-58.5 + parent: 6 + type: Transform + - uid: 9578 + components: + - pos: -8.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9579 + components: + - pos: -9.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9580 + components: + - pos: -10.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9581 + components: + - pos: -11.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9582 + components: + - pos: -12.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9583 + components: + - pos: -13.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9584 + components: + - pos: -14.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9585 + components: + - pos: -14.5,-57.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9586 + components: + - pos: -14.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9587 + components: + - pos: -15.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9588 + components: + - pos: -16.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9589 + components: + - pos: -17.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9590 + components: + - pos: -18.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9591 + components: + - pos: -19.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9592 + components: + - pos: -19.5,-55.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9593 + components: + - pos: -19.5,-54.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9594 + components: + - pos: -19.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9595 + components: + - pos: -18.5,-53.5 + parent: 6 + type: Transform + - uid: 9596 + components: + - pos: -17.5,-53.5 + parent: 6 + type: Transform + - uid: 9597 + components: + - pos: -16.5,-53.5 + parent: 6 + type: Transform + - uid: 9598 + components: + - pos: -15.5,-53.5 + parent: 6 + type: Transform + - uid: 9599 + components: + - pos: -14.5,-53.5 + parent: 6 + type: Transform + - uid: 9600 + components: + - pos: -13.5,-53.5 + parent: 6 + type: Transform + - uid: 9601 + components: + - pos: -15.5,-52.5 + parent: 6 + type: Transform + - uid: 9602 + components: + - pos: -15.5,-51.5 + parent: 6 + type: Transform + - uid: 9603 + components: + - pos: -15.5,-50.5 + parent: 6 + type: Transform + - uid: 9604 + components: + - pos: -15.5,-49.5 + parent: 6 + type: Transform + - uid: 9605 + components: + - pos: -15.5,-48.5 + parent: 6 + type: Transform + - uid: 9606 + components: + - pos: -15.5,-47.5 + parent: 6 + type: Transform + - uid: 9607 + components: + - pos: -12.5,-46.5 + parent: 6 + type: Transform + - uid: 9608 + components: + - pos: -12.5,-45.5 + parent: 6 + type: Transform + - uid: 9609 + components: + - pos: -12.5,-44.5 + parent: 6 + type: Transform + - uid: 9610 + components: + - pos: -12.5,-43.5 + parent: 6 + type: Transform + - uid: 9611 + components: + - pos: -4.5,-54.5 + parent: 6 + type: Transform + - uid: 9612 + components: + - pos: -3.5,-54.5 + parent: 6 + type: Transform + - uid: 9613 + components: + - pos: -2.5,-54.5 + parent: 6 + type: Transform + - uid: 9614 + components: + - pos: -1.5,-54.5 + parent: 6 + type: Transform + - uid: 9615 + components: + - pos: -1.5,-53.5 + parent: 6 + type: Transform + - uid: 9616 + components: + - pos: -1.5,-52.5 + parent: 6 + type: Transform + - uid: 9617 + components: + - pos: -1.5,-51.5 + parent: 6 + type: Transform + - uid: 9618 + components: + - pos: -5.5,-58.5 + parent: 6 + type: Transform + - uid: 9619 + components: + - pos: -4.5,-58.5 + parent: 6 + type: Transform + - uid: 9620 + components: + - pos: -3.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9621 + components: + - pos: -2.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9622 + components: + - pos: -1.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9623 + components: + - pos: -0.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9624 + components: + - pos: 0.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9625 + components: + - pos: 0.5,-57.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9626 + components: + - pos: 0.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9627 + components: + - pos: 0.5,-55.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9628 + components: + - pos: 0.5,-54.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9629 + components: + - pos: 0.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9631 + components: + - pos: -3.5,-70.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9632 + components: + - pos: -4.5,-70.5 + parent: 6 + type: Transform + - uid: 9633 + components: + - pos: -5.5,-70.5 + parent: 6 + type: Transform + - uid: 9634 + components: + - pos: -6.5,-70.5 + parent: 6 + type: Transform + - uid: 9635 + components: + - pos: -6.5,-69.5 + parent: 6 + type: Transform + - uid: 9636 + components: + - pos: -6.5,-71.5 + parent: 6 + type: Transform + - uid: 9637 + components: + - pos: -6.5,-72.5 + parent: 6 + type: Transform + - uid: 9638 + components: + - pos: -6.5,-73.5 + parent: 6 + type: Transform + - uid: 9639 + components: + - pos: -6.5,-74.5 + parent: 6 + type: Transform + - uid: 9640 + components: + - pos: -6.5,-75.5 + parent: 6 + type: Transform + - uid: 9641 + components: + - pos: -6.5,-76.5 + parent: 6 + type: Transform + - uid: 9642 + components: + - pos: -6.5,-77.5 + parent: 6 + type: Transform + - uid: 9643 + components: + - pos: -6.5,-78.5 + parent: 6 + type: Transform + - uid: 9644 + components: + - pos: -5.5,-78.5 + parent: 6 + type: Transform + - uid: 9645 + components: + - pos: -4.5,-78.5 + parent: 6 + type: Transform + - uid: 9646 + components: + - pos: -3.5,-78.5 + parent: 6 + type: Transform + - uid: 9647 + components: + - pos: -2.5,-78.5 + parent: 6 + type: Transform + - uid: 9648 + components: + - pos: -1.5,-78.5 + parent: 6 + type: Transform + - uid: 9649 + components: + - pos: -1.5,-77.5 + parent: 6 + type: Transform + - uid: 9650 + components: + - pos: -1.5,-76.5 + parent: 6 + type: Transform + - uid: 9651 + components: + - pos: -1.5,-75.5 + parent: 6 + type: Transform + - uid: 9652 + components: + - pos: -1.5,-74.5 + parent: 6 + type: Transform + - uid: 9653 + components: + - pos: -1.5,-73.5 + parent: 6 + type: Transform + - uid: 9654 + components: + - pos: -1.5,-72.5 + parent: 6 + type: Transform + - uid: 9655 + components: + - pos: -1.5,-71.5 + parent: 6 + type: Transform + - uid: 9656 + components: + - pos: -1.5,-70.5 + parent: 6 + type: Transform + - uid: 9657 + components: + - pos: -1.5,-69.5 + parent: 6 + type: Transform + - uid: 9658 + components: + - pos: -2.5,-70.5 + parent: 6 + type: Transform + - uid: 9659 + components: + - pos: -0.5,-70.5 + parent: 6 + type: Transform + - uid: 9660 + components: + - pos: 0.5,-70.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9661 + components: + - pos: 1.5,-70.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9662 + components: + - pos: -0.5,-72.5 + parent: 6 + type: Transform + - uid: 9663 + components: + - pos: 0.5,-72.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9664 + components: + - pos: 1.5,-72.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9665 + components: + - pos: -0.5,-77.5 + parent: 6 + type: Transform + - uid: 9666 + components: + - pos: 0.5,-77.5 + parent: 6 + type: Transform + - uid: 9667 + components: + - pos: 1.5,-77.5 + parent: 6 + type: Transform + - uid: 9668 + components: + - pos: 1.5,-78.5 + parent: 6 + type: Transform + - uid: 9669 + components: + - pos: 1.5,-79.5 + parent: 6 + type: Transform + - uid: 9670 + components: + - pos: 1.5,-80.5 + parent: 6 + type: Transform + - uid: 9671 + components: + - pos: 1.5,-81.5 + parent: 6 + type: Transform + - uid: 9672 + components: + - pos: 0.5,-81.5 + parent: 6 + type: Transform + - uid: 9673 + components: + - pos: -0.5,-81.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9674 + components: + - pos: -1.5,-81.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9675 + components: + - pos: -2.5,-81.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9676 + components: + - pos: -3.5,-81.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9677 + components: + - pos: -4.5,-81.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9678 + components: + - pos: -5.5,-81.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9679 + components: + - pos: -6.5,-81.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9680 + components: + - pos: -7.5,-81.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9684 + components: + - pos: -7.5,-74.5 + parent: 6 + type: Transform + - uid: 9686 + components: + - pos: -8.5,-74.5 + parent: 6 + type: Transform + - uid: 9687 + components: + - pos: -9.5,-74.5 + parent: 6 + type: Transform + - uid: 9688 + components: + - pos: -10.5,-74.5 + parent: 6 + type: Transform + - uid: 9689 + components: + - pos: -11.5,-74.5 + parent: 6 + type: Transform + - uid: 9690 + components: + - pos: -10.5,-75.5 + parent: 6 + type: Transform + - uid: 9691 + components: + - pos: -12.5,-74.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9692 + components: + - pos: -12.5,-75.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9693 + components: + - pos: -10.5,-73.5 + parent: 6 + type: Transform + - uid: 9694 + components: + - pos: -10.5,-72.5 + parent: 6 + type: Transform + - uid: 9695 + components: + - pos: -10.5,-71.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9697 + components: + - pos: -10.5,-76.5 + parent: 6 + type: Transform + - uid: 9698 + components: + - pos: -11.5,-77.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9699 + components: + - pos: -10.5,-77.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9700 + components: + - pos: -9.5,-77.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9702 + components: + - pos: 3.5,-36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9703 + components: + - pos: 2.5,-36.5 + parent: 6 + type: Transform + - uid: 9704 + components: + - pos: 1.5,-36.5 + parent: 6 + type: Transform + - uid: 9705 + components: + - pos: 1.5,-35.5 + parent: 6 + type: Transform + - uid: 9706 + components: + - pos: 0.5,-35.5 + parent: 6 + type: Transform + - uid: 9707 + components: + - pos: -5.5,-40.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9708 + components: + - pos: -4.5,-40.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9709 + components: + - pos: -3.5,-40.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9710 + components: + - pos: -2.5,-40.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9716 + components: + - pos: 0.5,-32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9717 + components: + - pos: 0.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9718 + components: + - pos: 0.5,-30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9719 + components: + - pos: 0.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9720 + components: + - pos: -1.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9721 + components: + - pos: -5.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9722 + components: + - pos: -7.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9723 + components: + - pos: -8.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9724 + components: + - pos: -9.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9725 + components: + - pos: -10.5,-32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9726 + components: + - pos: -10.5,-33.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9727 + components: + - pos: -10.5,-34.5 + parent: 6 + type: Transform + - uid: 9728 + components: + - pos: -10.5,-35.5 + parent: 6 + type: Transform + - uid: 9729 + components: + - pos: -10.5,-36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9730 + components: + - pos: -10.5,-37.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9731 + components: + - pos: -10.5,-38.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9732 + components: + - pos: -2.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9733 + components: + - pos: 0.5,-39.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9734 + components: + - pos: 0.5,-40.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9735 + components: + - pos: -0.5,-40.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9736 + components: + - pos: -1.5,-40.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9737 + components: + - pos: -10.5,-39.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9738 + components: + - pos: -9.5,-40.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9739 + components: + - pos: -8.5,-40.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9740 + components: + - pos: -7.5,-40.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9741 + components: + - pos: -6.5,-40.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9742 + components: + - pos: -10.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9743 + components: + - pos: -10.5,-34.5 + parent: 6 + type: Transform + - uid: 9744 + components: + - pos: -11.5,-34.5 + parent: 6 + type: Transform + - uid: 9745 + components: + - pos: -12.5,-34.5 + parent: 6 + type: Transform + - uid: 9746 + components: + - pos: 1.5,-34.5 + parent: 6 + type: Transform + - uid: 9747 + components: + - pos: 1.5,-33.5 + parent: 6 + type: Transform + - uid: 9748 + components: + - pos: 1.5,-32.5 + parent: 6 + type: Transform + - uid: 9749 + components: + - pos: 1.5,-37.5 + parent: 6 + type: Transform + - uid: 9750 + components: + - pos: -10.5,-30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9751 + components: + - pos: -10.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9752 + components: + - pos: -4.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9753 + components: + - pos: 0.5,-36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9754 + components: + - pos: 0.5,-33.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9755 + components: + - pos: 0.5,-37.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9761 + components: + - pos: -1.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9762 + components: + - pos: -0.5,-18.5 + parent: 6 + type: Transform + - uid: 9763 + components: + - pos: -0.5,-17.5 + parent: 6 + type: Transform + - uid: 9764 + components: + - pos: -0.5,-16.5 + parent: 6 + type: Transform + - uid: 9765 + components: + - pos: -0.5,-15.5 + parent: 6 + type: Transform + - uid: 9766 + components: + - pos: -1.5,-15.5 + parent: 6 + type: Transform + - uid: 9767 + components: + - pos: -2.5,-15.5 + parent: 6 + type: Transform + - uid: 9768 + components: + - pos: -3.5,-15.5 + parent: 6 + type: Transform + - uid: 9769 + components: + - pos: -4.5,-15.5 + parent: 6 + type: Transform + - uid: 9770 + components: + - pos: -5.5,-15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9771 + components: + - pos: -6.5,-15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9772 + components: + - pos: -6.5,-14.5 + parent: 6 + type: Transform + - uid: 9773 + components: + - pos: -6.5,-13.5 + parent: 6 + type: Transform + - uid: 9774 + components: + - pos: -2.5,-14.5 + parent: 6 + type: Transform + - uid: 9775 + components: + - pos: -2.5,-16.5 + parent: 6 + type: Transform + - uid: 9776 + components: + - pos: 0.5,-15.5 + parent: 6 + type: Transform + - uid: 9777 + components: + - pos: 1.5,-15.5 + parent: 6 + type: Transform + - uid: 9778 + components: + - pos: 2.5,-15.5 + parent: 6 + type: Transform + - uid: 9779 + components: + - pos: 3.5,-15.5 + parent: 6 + type: Transform + - uid: 9780 + components: + - pos: 4.5,-15.5 + parent: 6 + type: Transform + - uid: 9781 + components: + - pos: 5.5,-15.5 + parent: 6 + type: Transform + - uid: 9782 + components: + - pos: 5.5,-16.5 + parent: 6 + type: Transform + - uid: 9783 + components: + - pos: 5.5,-17.5 + parent: 6 + type: Transform + - uid: 9784 + components: + - pos: 5.5,-18.5 + parent: 6 + type: Transform + - uid: 9785 + components: + - pos: 5.5,-19.5 + parent: 6 + type: Transform + - uid: 9786 + components: + - pos: 5.5,-20.5 + parent: 6 + type: Transform + - uid: 9787 + components: + - pos: 5.5,-21.5 + parent: 6 + type: Transform + - uid: 9788 + components: + - pos: 4.5,-21.5 + parent: 6 + type: Transform + - uid: 9789 + components: + - pos: 3.5,-21.5 + parent: 6 + type: Transform + - uid: 9790 + components: + - pos: 2.5,-21.5 + parent: 6 + type: Transform + - uid: 9791 + components: + - pos: 1.5,-21.5 + parent: 6 + type: Transform + - uid: 9792 + components: + - pos: 0.5,-21.5 + parent: 6 + type: Transform + - uid: 9793 + components: + - pos: -0.5,-21.5 + parent: 6 + type: Transform + - uid: 9794 + components: + - pos: -1.5,-21.5 + parent: 6 + type: Transform + - uid: 9795 + components: + - pos: -2.5,-21.5 + parent: 6 + type: Transform + - uid: 9796 + components: + - pos: -3.5,-21.5 + parent: 6 + type: Transform + - uid: 9797 + components: + - pos: -3.5,-22.5 + parent: 6 + type: Transform + - uid: 9798 + components: + - pos: -3.5,-23.5 + parent: 6 + type: Transform + - uid: 9799 + components: + - pos: -3.5,-24.5 + parent: 6 + type: Transform + - uid: 9800 + components: + - pos: -3.5,-25.5 + parent: 6 + type: Transform + - uid: 9801 + components: + - pos: -3.5,-26.5 + parent: 6 + type: Transform + - uid: 9802 + components: + - pos: -2.5,-26.5 + parent: 6 + type: Transform + - uid: 9803 + components: + - pos: -1.5,-26.5 + parent: 6 + type: Transform + - uid: 9804 + components: + - pos: -0.5,-26.5 + parent: 6 + type: Transform + - uid: 9805 + components: + - pos: 0.5,-26.5 + parent: 6 + type: Transform + - uid: 9806 + components: + - pos: 1.5,-26.5 + parent: 6 + type: Transform + - uid: 9807 + components: + - pos: 1.5,-25.5 + parent: 6 + type: Transform + - uid: 9808 + components: + - pos: 1.5,-24.5 + parent: 6 + type: Transform + - uid: 9809 + components: + - pos: 2.5,-24.5 + parent: 6 + type: Transform + - uid: 9810 + components: + - pos: 3.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9811 + components: + - pos: 4.5,-24.5 + parent: 6 + type: Transform + - uid: 9812 + components: + - pos: 5.5,-24.5 + parent: 6 + type: Transform + - uid: 9813 + components: + - pos: 5.5,-23.5 + parent: 6 + type: Transform + - uid: 9814 + components: + - pos: 5.5,-22.5 + parent: 6 + type: Transform + - uid: 9815 + components: + - pos: -6.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9816 + components: + - pos: -6.5,-21.5 + parent: 6 + type: Transform + - uid: 9817 + components: + - pos: -6.5,-20.5 + parent: 6 + type: Transform + - uid: 9819 + components: + - pos: -6.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9820 + components: + - pos: -6.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9821 + components: + - pos: -6.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9822 + components: + - pos: -6.5,-23.5 + parent: 6 + type: Transform + - uid: 9823 + components: + - pos: -6.5,-24.5 + parent: 6 + type: Transform + - uid: 9824 + components: + - pos: -6.5,-25.5 + parent: 6 + type: Transform + - uid: 9825 + components: + - pos: -6.5,-26.5 + parent: 6 + type: Transform + - uid: 9826 + components: + - pos: -7.5,-26.5 + parent: 6 + type: Transform + - uid: 9827 + components: + - pos: -8.5,-26.5 + parent: 6 + type: Transform + - uid: 9828 + components: + - pos: -9.5,-26.5 + parent: 6 + type: Transform + - uid: 9829 + components: + - pos: -10.5,-26.5 + parent: 6 + type: Transform + - uid: 9830 + components: + - pos: -11.5,-26.5 + parent: 6 + type: Transform + - uid: 9831 + components: + - pos: -11.5,-25.5 + parent: 6 + type: Transform + - uid: 9832 + components: + - pos: -11.5,-24.5 + parent: 6 + type: Transform + - uid: 9833 + components: + - pos: -11.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9834 + components: + - pos: -11.5,-22.5 + parent: 6 + type: Transform + - uid: 9835 + components: + - pos: -11.5,-21.5 + parent: 6 + type: Transform + - uid: 9836 + components: + - pos: -11.5,-20.5 + parent: 6 + type: Transform + - uid: 9837 + components: + - pos: -11.5,-19.5 + parent: 6 + type: Transform + - uid: 9838 + components: + - pos: -11.5,-18.5 + parent: 6 + type: Transform + - uid: 9839 + components: + - pos: -11.5,-17.5 + parent: 6 + type: Transform + - uid: 9840 + components: + - pos: -11.5,-16.5 + parent: 6 + type: Transform + - uid: 9841 + components: + - pos: -11.5,-15.5 + parent: 6 + type: Transform + - uid: 9842 + components: + - pos: -11.5,-14.5 + parent: 6 + type: Transform + - uid: 9843 + components: + - pos: -10.5,-14.5 + parent: 6 + type: Transform + - uid: 9844 + components: + - pos: -9.5,-14.5 + parent: 6 + type: Transform + - uid: 9845 + components: + - pos: -8.5,-14.5 + parent: 6 + type: Transform + - uid: 9846 + components: + - pos: -8.5,-15.5 + parent: 6 + type: Transform + - uid: 9847 + components: + - pos: -8.5,-16.5 + parent: 6 + type: Transform + - uid: 9848 + components: + - pos: -8.5,-17.5 + parent: 6 + type: Transform + - uid: 9849 + components: + - pos: -8.5,-18.5 + parent: 6 + type: Transform + - uid: 9850 + components: + - pos: -12.5,-20.5 + parent: 6 + type: Transform + - uid: 9851 + components: + - pos: -13.5,-20.5 + parent: 6 + type: Transform + - uid: 9852 + components: + - pos: -13.5,-21.5 + parent: 6 + type: Transform + - uid: 9853 + components: + - pos: -13.5,-22.5 + parent: 6 + type: Transform + - uid: 9854 + components: + - pos: -13.5,-23.5 + parent: 6 + type: Transform + - uid: 9855 + components: + - pos: -13.5,-24.5 + parent: 6 + type: Transform + - uid: 9856 + components: + - pos: -13.5,-25.5 + parent: 6 + type: Transform + - uid: 9857 + components: + - pos: -12.5,-25.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9858 + components: + - pos: -13.5,-26.5 + parent: 6 + type: Transform + - uid: 9859 + components: + - pos: -13.5,-27.5 + parent: 6 + type: Transform + - uid: 9860 + components: + - pos: -13.5,-28.5 + parent: 6 + type: Transform + - uid: 9861 + components: + - pos: -13.5,-29.5 + parent: 6 + type: Transform + - uid: 9862 + components: + - pos: -13.5,-30.5 + parent: 6 + type: Transform + - uid: 9863 + components: + - pos: -13.5,-31.5 + parent: 6 + type: Transform + - uid: 9864 + components: + - pos: -13.5,-32.5 + parent: 6 + type: Transform + - uid: 9866 + components: + - pos: -25.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9867 + components: + - pos: -25.5,-18.5 + parent: 6 + type: Transform + - uid: 9868 + components: + - pos: -25.5,-17.5 + parent: 6 + type: Transform + - uid: 9869 + components: + - pos: -25.5,-16.5 + parent: 6 + type: Transform + - uid: 9870 + components: + - pos: -25.5,-15.5 + parent: 6 + type: Transform + - uid: 9871 + components: + - pos: -25.5,-14.5 + parent: 6 + type: Transform + - uid: 9872 + components: + - pos: -24.5,-14.5 + parent: 6 + type: Transform + - uid: 9873 + components: + - pos: -23.5,-14.5 + parent: 6 + type: Transform + - uid: 9874 + components: + - pos: -22.5,-14.5 + parent: 6 + type: Transform + - uid: 9875 + components: + - pos: -21.5,-14.5 + parent: 6 + type: Transform + - uid: 9876 + components: + - pos: -21.5,-15.5 + parent: 6 + type: Transform + - uid: 9877 + components: + - pos: -21.5,-16.5 + parent: 6 + type: Transform + - uid: 9878 + components: + - pos: -21.5,-17.5 + parent: 6 + type: Transform + - uid: 9879 + components: + - pos: -21.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9880 + components: + - pos: -21.5,-19.5 + parent: 6 + type: Transform + - uid: 9881 + components: + - pos: -21.5,-20.5 + parent: 6 + type: Transform + - uid: 9882 + components: + - pos: -21.5,-21.5 + parent: 6 + type: Transform + - uid: 9883 + components: + - pos: -20.5,-20.5 + parent: 6 + type: Transform + - uid: 9884 + components: + - pos: -19.5,-20.5 + parent: 6 + type: Transform + - uid: 9885 + components: + - pos: -18.5,-20.5 + parent: 6 + type: Transform + - uid: 9886 + components: + - pos: -17.5,-20.5 + parent: 6 + type: Transform + - uid: 9887 + components: + - pos: -17.5,-19.5 + parent: 6 + type: Transform + - uid: 9888 + components: + - pos: -17.5,-18.5 + parent: 6 + type: Transform + - uid: 9889 + components: + - pos: -17.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9890 + components: + - pos: -17.5,-16.5 + parent: 6 + type: Transform + - uid: 9891 + components: + - pos: -17.5,-15.5 + parent: 6 + type: Transform + - uid: 9892 + components: + - pos: -17.5,-14.5 + parent: 6 + type: Transform + - uid: 9893 + components: + - pos: -17.5,-13.5 + parent: 6 + type: Transform + - uid: 9894 + components: + - pos: -17.5,-12.5 + parent: 6 + type: Transform + - uid: 9895 + components: + - pos: -17.5,-11.5 + parent: 6 + type: Transform + - uid: 9896 + components: + - pos: -18.5,-11.5 + parent: 6 + type: Transform + - uid: 9897 + components: + - pos: -19.5,-11.5 + parent: 6 + type: Transform + - uid: 9898 + components: + - pos: -20.5,-11.5 + parent: 6 + type: Transform + - uid: 9899 + components: + - pos: -21.5,-11.5 + parent: 6 + type: Transform + - uid: 9900 + components: + - pos: -22.5,-11.5 + parent: 6 + type: Transform + - uid: 9901 + components: + - pos: -23.5,-11.5 + parent: 6 + type: Transform + - uid: 9902 + components: + - pos: -24.5,-11.5 + parent: 6 + type: Transform + - uid: 9903 + components: + - pos: -25.5,-11.5 + parent: 6 + type: Transform + - uid: 9904 + components: + - pos: -26.5,-11.5 + parent: 6 + type: Transform + - uid: 9905 + components: + - pos: -21.5,-22.5 + parent: 6 + type: Transform + - uid: 9906 + components: + - pos: -21.5,-23.5 + parent: 6 + type: Transform + - uid: 9907 + components: + - pos: -20.5,-23.5 + parent: 6 + type: Transform + - uid: 9908 + components: + - pos: -19.5,-23.5 + parent: 6 + type: Transform + - uid: 9909 + components: + - pos: -18.5,-23.5 + parent: 6 + type: Transform + - uid: 9910 + components: + - pos: -17.5,-23.5 + parent: 6 + type: Transform + - uid: 9911 + components: + - pos: -17.5,-24.5 + parent: 6 + type: Transform + - uid: 9912 + components: + - pos: -17.5,-25.5 + parent: 6 + type: Transform + - uid: 9913 + components: + - pos: -17.5,-26.5 + parent: 6 + type: Transform + - uid: 9914 + components: + - pos: -18.5,-26.5 + parent: 6 + type: Transform + - uid: 9915 + components: + - pos: -19.5,-26.5 + parent: 6 + type: Transform + - uid: 9916 + components: + - pos: -20.5,-26.5 + parent: 6 + type: Transform + - uid: 9917 + components: + - pos: -25.5,-20.5 + parent: 6 + type: Transform + - uid: 9918 + components: + - pos: -25.5,-21.5 + parent: 6 + type: Transform + - uid: 9919 + components: + - pos: -25.5,-22.5 + parent: 6 + type: Transform + - uid: 9920 + components: + - pos: -26.5,-22.5 + parent: 6 + type: Transform + - uid: 9921 + components: + - pos: -27.5,-22.5 + parent: 6 + type: Transform + - uid: 9922 + components: + - pos: -28.5,-22.5 + parent: 6 + type: Transform + - uid: 9923 + components: + - pos: -29.5,-22.5 + parent: 6 + type: Transform + - uid: 9924 + components: + - pos: -30.5,-22.5 + parent: 6 + type: Transform + - uid: 9925 + components: + - pos: -30.5,-21.5 + parent: 6 + type: Transform + - uid: 9926 + components: + - pos: -30.5,-20.5 + parent: 6 + type: Transform + - uid: 9927 + components: + - pos: -29.5,-20.5 + parent: 6 + type: Transform + - uid: 9928 + components: + - pos: -29.5,-19.5 + parent: 6 + type: Transform + - uid: 9929 + components: + - pos: -29.5,-18.5 + parent: 6 + type: Transform + - uid: 9930 + components: + - pos: -29.5,-17.5 + parent: 6 + type: Transform + - uid: 9931 + components: + - pos: -29.5,-16.5 + parent: 6 + type: Transform + - uid: 9932 + components: + - pos: -29.5,-15.5 + parent: 6 + type: Transform + - uid: 9933 + components: + - pos: -27.5,-11.5 + parent: 6 + type: Transform + - uid: 9934 + components: + - pos: -28.5,-11.5 + parent: 6 + type: Transform + - uid: 9935 + components: + - pos: -29.5,-11.5 + parent: 6 + type: Transform + - uid: 9937 + components: + - pos: -21.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9938 + components: + - pos: -22.5,-31.5 + parent: 6 + type: Transform + - uid: 9939 + components: + - pos: -23.5,-31.5 + parent: 6 + type: Transform + - uid: 9940 + components: + - pos: -23.5,-32.5 + parent: 6 + type: Transform + - uid: 9941 + components: + - pos: -23.5,-33.5 + parent: 6 + type: Transform + - uid: 9942 + components: + - pos: -23.5,-34.5 + parent: 6 + type: Transform + - uid: 9943 + components: + - pos: -23.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9944 + components: + - pos: -22.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9945 + components: + - pos: -21.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9946 + components: + - pos: -20.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9947 + components: + - pos: -19.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9948 + components: + - pos: -18.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9949 + components: + - pos: -17.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9950 + components: + - pos: -16.5,-35.5 + parent: 6 + type: Transform + - uid: 9951 + components: + - pos: -15.5,-35.5 + parent: 6 + type: Transform + - uid: 9952 + components: + - pos: -15.5,-34.5 + parent: 6 + type: Transform + - uid: 9953 + components: + - pos: -15.5,-33.5 + parent: 6 + type: Transform + - uid: 9954 + components: + - pos: -15.5,-32.5 + parent: 6 + type: Transform + - uid: 9955 + components: + - pos: -16.5,-32.5 + parent: 6 + type: Transform + - uid: 9956 + components: + - pos: -17.5,-32.5 + parent: 6 + type: Transform + - uid: 9957 + components: + - pos: -18.5,-32.5 + parent: 6 + type: Transform + - uid: 9958 + components: + - pos: -18.5,-31.5 + parent: 6 + type: Transform + - uid: 9959 + components: + - pos: -18.5,-30.5 + parent: 6 + type: Transform + - uid: 9960 + components: + - pos: -19.5,-30.5 + parent: 6 + type: Transform + - uid: 9961 + components: + - pos: -20.5,-30.5 + parent: 6 + type: Transform + - uid: 9962 + components: + - pos: -21.5,-30.5 + parent: 6 + type: Transform + - uid: 9963 + components: + - pos: -24.5,-31.5 + parent: 6 + type: Transform + - uid: 9964 + components: + - pos: -25.5,-31.5 + parent: 6 + type: Transform + - uid: 9965 + components: + - pos: -26.5,-31.5 + parent: 6 + type: Transform + - uid: 9966 + components: + - pos: -26.5,-33.5 + parent: 6 + type: Transform + - uid: 9967 + components: + - pos: -26.5,-32.5 + parent: 6 + type: Transform + - uid: 9968 + components: + - pos: -26.5,-30.5 + parent: 6 + type: Transform + - uid: 9969 + components: + - pos: -26.5,-29.5 + parent: 6 + type: Transform + - uid: 9970 + components: + - pos: -26.5,-28.5 + parent: 6 + type: Transform + - uid: 9971 + components: + - pos: -26.5,-27.5 + parent: 6 + type: Transform + - uid: 9972 + components: + - pos: -26.5,-26.5 + parent: 6 + type: Transform + - uid: 9973 + components: + - pos: -26.5,-25.5 + parent: 6 + type: Transform + - uid: 9974 + components: + - pos: -26.5,-24.5 + parent: 6 + type: Transform + - uid: 9975 + components: + - pos: -25.5,-24.5 + parent: 6 + type: Transform + - uid: 9976 + components: + - pos: -23.5,-24.5 + parent: 6 + type: Transform + - uid: 9977 + components: + - pos: -24.5,-24.5 + parent: 6 + type: Transform + - uid: 9978 + components: + - pos: -23.5,-25.5 + parent: 6 + type: Transform + - uid: 9979 + components: + - pos: -23.5,-26.5 + parent: 6 + type: Transform + - uid: 9980 + components: + - pos: -23.5,-27.5 + parent: 6 + type: Transform + - uid: 9981 + components: + - pos: -23.5,-28.5 + parent: 6 + type: Transform + - uid: 9982 + components: + - pos: -23.5,-29.5 + parent: 6 + type: Transform + - uid: 9983 + components: + - pos: -23.5,-30.5 + parent: 6 + type: Transform + - uid: 9984 + components: + - pos: -24.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9985 + components: + - pos: -25.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9986 + components: + - pos: -26.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9987 + components: + - pos: -27.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9988 + components: + - pos: -28.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9989 + components: + - pos: -29.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9990 + components: + - pos: -29.5,-34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9991 + components: + - pos: -29.5,-33.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9992 + components: + - pos: -29.5,-32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9993 + components: + - pos: -29.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9994 + components: + - pos: -29.5,-30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9995 + components: + - pos: -29.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9996 + components: + - pos: -29.5,-28.5 + parent: 6 + type: Transform + - uid: 9997 + components: + - pos: -29.5,-27.5 + parent: 6 + type: Transform + - uid: 9998 + components: + - pos: -29.5,-26.5 + parent: 6 + type: Transform + - uid: 9999 + components: + - pos: -29.5,-25.5 + parent: 6 + type: Transform + - uid: 10000 + components: + - pos: -29.5,-24.5 + parent: 6 + type: Transform + - uid: 10001 + components: + - pos: -30.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10002 + components: + - pos: -31.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10003 + components: + - pos: -31.5,-30.5 + parent: 6 + type: Transform + - uid: 10005 + components: + - pos: -35.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10006 + components: + - pos: -36.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10007 + components: + - pos: -37.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10008 + components: + - pos: -38.5,-19.5 + parent: 6 + type: Transform + - uid: 10009 + components: + - pos: -38.5,-18.5 + parent: 6 + type: Transform + - uid: 10010 + components: + - pos: -38.5,-17.5 + parent: 6 + type: Transform + - uid: 10011 + components: + - pos: -38.5,-20.5 + parent: 6 + type: Transform + - uid: 10012 + components: + - pos: -38.5,-21.5 + parent: 6 + type: Transform + - uid: 10013 + components: + - pos: -38.5,-22.5 + parent: 6 + type: Transform + - uid: 10014 + components: + - pos: -37.5,-22.5 + parent: 6 + type: Transform + - uid: 10015 + components: + - pos: -36.5,-22.5 + parent: 6 + type: Transform + - uid: 10016 + components: + - pos: -35.5,-22.5 + parent: 6 + type: Transform + - uid: 10017 + components: + - pos: -34.5,-22.5 + parent: 6 + type: Transform + - uid: 10018 + components: + - pos: -33.5,-22.5 + parent: 6 + type: Transform + - uid: 10020 + components: + - pos: -33.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10021 + components: + - pos: -33.5,-25.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10022 + components: + - pos: -33.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10023 + components: + - pos: -33.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10024 + components: + - pos: -33.5,-28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10025 + components: + - pos: -34.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10026 + components: + - pos: -35.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10027 + components: + - pos: -36.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10028 + components: + - pos: -37.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10029 + components: + - pos: -38.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10030 + components: + - pos: -39.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10031 + components: + - pos: -40.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10032 + components: + - pos: -41.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10033 + components: + - pos: -41.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10034 + components: + - pos: -33.5,-21.5 + parent: 6 + type: Transform + - uid: 10035 + components: + - pos: -33.5,-20.5 + parent: 6 + type: Transform + - uid: 10036 + components: + - pos: -33.5,-19.5 + parent: 6 + type: Transform + - uid: 10037 + components: + - pos: -33.5,-18.5 + parent: 6 + type: Transform + - uid: 10038 + components: + - pos: -33.5,-17.5 + parent: 6 + type: Transform + - uid: 10039 + components: + - pos: -33.5,-16.5 + parent: 6 + type: Transform + - uid: 10040 + components: + - pos: -33.5,-15.5 + parent: 6 + type: Transform + - uid: 10041 + components: + - pos: -67.5,-12.5 + parent: 6 + type: Transform + - uid: 10042 + components: + - pos: -68.5,-12.5 + parent: 6 + type: Transform + - uid: 10043 + components: + - pos: -69.5,-12.5 + parent: 6 + type: Transform + - uid: 10044 + components: + - pos: -70.5,-12.5 + parent: 6 + type: Transform + - uid: 10046 + components: + - pos: -44.5,-32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10047 + components: + - pos: -43.5,-32.5 + parent: 6 + type: Transform + - uid: 10048 + components: + - pos: -43.5,-31.5 + parent: 6 + type: Transform + - uid: 10049 + components: + - pos: -43.5,-30.5 + parent: 6 + type: Transform + - uid: 10050 + components: + - pos: -43.5,-29.5 + parent: 6 + type: Transform + - uid: 10051 + components: + - pos: -43.5,-28.5 + parent: 6 + type: Transform + - uid: 10052 + components: + - pos: -43.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10053 + components: + - pos: -43.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10054 + components: + - pos: -43.5,-25.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10055 + components: + - pos: -43.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10056 + components: + - pos: -43.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10057 + components: + - pos: -44.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10058 + components: + - pos: -45.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10059 + components: + - pos: -46.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10060 + components: + - pos: -47.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10061 + components: + - pos: -48.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10062 + components: + - pos: -49.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10063 + components: + - pos: -50.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10064 + components: + - pos: -51.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10065 + components: + - pos: -51.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10066 + components: + - pos: -51.5,-25.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10067 + components: + - pos: -51.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10068 + components: + - pos: -51.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10069 + components: + - pos: -49.5,-28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10070 + components: + - pos: -49.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10071 + components: + - pos: -49.5,-30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10072 + components: + - pos: -49.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10073 + components: + - pos: -49.5,-32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10074 + components: + - pos: -49.5,-33.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10075 + components: + - pos: -49.5,-34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10076 + components: + - pos: -49.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10077 + components: + - pos: -49.5,-36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10078 + components: + - pos: -49.5,-37.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10079 + components: + - pos: -49.5,-38.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10080 + components: + - pos: -49.5,-39.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10081 + components: + - pos: -49.5,-40.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10082 + components: + - pos: -49.5,-41.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10083 + components: + - pos: -49.5,-42.5 + parent: 6 + type: Transform + - uid: 10084 + components: + - pos: -49.5,-43.5 + parent: 6 + type: Transform + - uid: 10085 + components: + - pos: -48.5,-43.5 + parent: 6 + type: Transform + - uid: 10086 + components: + - pos: -47.5,-43.5 + parent: 6 + type: Transform + - uid: 10087 + components: + - pos: -46.5,-43.5 + parent: 6 + type: Transform + - uid: 10088 + components: + - pos: -45.5,-43.5 + parent: 6 + type: Transform + - uid: 10089 + components: + - pos: -44.5,-43.5 + parent: 6 + type: Transform + - uid: 10090 + components: + - pos: -43.5,-43.5 + parent: 6 + type: Transform + - uid: 10091 + components: + - pos: -43.5,-42.5 + parent: 6 + type: Transform + - uid: 10092 + components: + - pos: -43.5,-41.5 + parent: 6 + type: Transform + - uid: 10093 + components: + - pos: -43.5,-40.5 + parent: 6 + type: Transform + - uid: 10094 + components: + - pos: -43.5,-39.5 + parent: 6 + type: Transform + - uid: 10095 + components: + - pos: -43.5,-38.5 + parent: 6 + type: Transform + - uid: 10096 + components: + - pos: -43.5,-37.5 + parent: 6 + type: Transform + - uid: 10097 + components: + - pos: -43.5,-36.5 + parent: 6 + type: Transform + - uid: 10098 + components: + - pos: -43.5,-35.5 + parent: 6 + type: Transform + - uid: 10099 + components: + - pos: -43.5,-34.5 + parent: 6 + type: Transform + - uid: 10100 + components: + - pos: -43.5,-33.5 + parent: 6 + type: Transform + - uid: 10101 + components: + - pos: -44.5,-35.5 + parent: 6 + type: Transform + - uid: 10102 + components: + - pos: -45.5,-35.5 + parent: 6 + type: Transform + - uid: 10103 + components: + - pos: -46.5,-35.5 + parent: 6 + type: Transform + - uid: 10104 + components: + - pos: -42.5,-29.5 + parent: 6 + type: Transform + - uid: 10105 + components: + - pos: -41.5,-29.5 + parent: 6 + type: Transform + - uid: 10106 + components: + - pos: -40.5,-29.5 + parent: 6 + type: Transform + - uid: 10107 + components: + - pos: -39.5,-29.5 + parent: 6 + type: Transform + - uid: 10108 + components: + - pos: -42.5,-40.5 + parent: 6 + type: Transform + - uid: 10109 + components: + - pos: -41.5,-40.5 + parent: 6 + type: Transform + - uid: 10110 + components: + - pos: -40.5,-40.5 + parent: 6 + type: Transform + - uid: 10111 + components: + - pos: -39.5,-40.5 + parent: 6 + type: Transform + - uid: 10112 + components: + - pos: -44.5,-39.5 + parent: 6 + type: Transform + - uid: 10113 + components: + - pos: -45.5,-39.5 + parent: 6 + type: Transform + - uid: 10114 + components: + - pos: -46.5,-39.5 + parent: 6 + type: Transform + - uid: 10115 + components: + - pos: -42.5,-43.5 + parent: 6 + type: Transform + - uid: 10116 + components: + - pos: -41.5,-43.5 + parent: 6 + type: Transform + - uid: 10117 + components: + - pos: -40.5,-43.5 + parent: 6 + type: Transform + - uid: 10118 + components: + - pos: -39.5,-43.5 + parent: 6 + type: Transform + - uid: 10119 + components: + - pos: -38.5,-43.5 + parent: 6 + type: Transform + - uid: 10120 + components: + - pos: -37.5,-43.5 + parent: 6 + type: Transform + - uid: 10121 + components: + - pos: -36.5,-43.5 + parent: 6 + type: Transform + - uid: 10122 + components: + - pos: -35.5,-43.5 + parent: 6 + type: Transform + - uid: 10123 + components: + - pos: -34.5,-43.5 + parent: 6 + type: Transform + - uid: 10124 + components: + - pos: -33.5,-43.5 + parent: 6 + type: Transform + - uid: 10125 + components: + - pos: -33.5,-42.5 + parent: 6 + type: Transform + - uid: 10126 + components: + - pos: -33.5,-41.5 + parent: 6 + type: Transform + - uid: 10127 + components: + - pos: -33.5,-40.5 + parent: 6 + type: Transform + - uid: 10128 + components: + - pos: -33.5,-39.5 + parent: 6 + type: Transform + - uid: 10129 + components: + - pos: -33.5,-38.5 + parent: 6 + type: Transform + - uid: 10130 + components: + - pos: -33.5,-37.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10131 + components: + - pos: -34.5,-37.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10132 + components: + - pos: -35.5,-37.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10133 + components: + - pos: -36.5,-37.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10134 + components: + - pos: -36.5,-36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10135 + components: + - pos: -36.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10136 + components: + - pos: -36.5,-34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10137 + components: + - pos: -36.5,-33.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10138 + components: + - pos: -36.5,-32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10139 + components: + - pos: -36.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10140 + components: + - pos: -36.5,-30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10141 + components: + - pos: -36.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10142 + components: + - pos: -33.5,-36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10143 + components: + - pos: -33.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10144 + components: + - pos: -33.5,-34.5 + parent: 6 + type: Transform + - uid: 10145 + components: + - pos: -32.5,-34.5 + parent: 6 + type: Transform + - uid: 10146 + components: + - pos: -35.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10147 + components: + - pos: -34.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10148 + components: + - pos: -32.5,-37.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10149 + components: + - pos: -31.5,-37.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10150 + components: + - pos: -30.5,-37.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10151 + components: + - pos: -29.5,-37.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10152 + components: + - pos: -28.5,-37.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10153 + components: + - pos: -28.5,-38.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10154 + components: + - pos: -28.5,-39.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10155 + components: + - pos: -28.5,-40.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10156 + components: + - pos: -28.5,-41.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10157 + components: + - pos: -27.5,-41.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10158 + components: + - pos: -26.5,-41.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10159 + components: + - pos: -25.5,-41.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10160 + components: + - pos: -24.5,-41.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10161 + components: + - pos: -23.5,-41.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10162 + components: + - pos: -24.5,-42.5 + parent: 6 + type: Transform + - uid: 10163 + components: + - pos: -24.5,-43.5 + parent: 6 + type: Transform + - uid: 10164 + components: + - pos: -23.5,-43.5 + parent: 6 + type: Transform + - uid: 10165 + components: + - pos: -22.5,-43.5 + parent: 6 + type: Transform + - uid: 10166 + components: + - pos: -21.5,-43.5 + parent: 6 + type: Transform + - uid: 10167 + components: + - pos: -20.5,-43.5 + parent: 6 + type: Transform + - uid: 10168 + components: + - pos: -19.5,-43.5 + parent: 6 + type: Transform + - uid: 10169 + components: + - pos: -18.5,-43.5 + parent: 6 + type: Transform + - uid: 10170 + components: + - pos: -17.5,-43.5 + parent: 6 + type: Transform + - uid: 10171 + components: + - pos: -16.5,-43.5 + parent: 6 + type: Transform + - uid: 10172 + components: + - pos: -19.5,-42.5 + parent: 6 + type: Transform + - uid: 10173 + components: + - pos: -19.5,-41.5 + parent: 6 + type: Transform + - uid: 10174 + components: + - pos: -19.5,-40.5 + parent: 6 + type: Transform + - uid: 10175 + components: + - pos: -19.5,-39.5 + parent: 6 + type: Transform + - uid: 10176 + components: + - pos: -19.5,-38.5 + parent: 6 + type: Transform + - uid: 10177 + components: + - pos: -20.5,-38.5 + parent: 6 + type: Transform + - uid: 10178 + components: + - pos: -21.5,-38.5 + parent: 6 + type: Transform + - uid: 10179 + components: + - pos: -18.5,-38.5 + parent: 6 + type: Transform + - uid: 10180 + components: + - pos: -50.5,-32.5 + parent: 6 + type: Transform + - uid: 10181 + components: + - pos: -51.5,-32.5 + parent: 6 + type: Transform + - uid: 10182 + components: + - pos: -52.5,-32.5 + parent: 6 + type: Transform + - uid: 10183 + components: + - pos: -53.5,-32.5 + parent: 6 + type: Transform + - uid: 10184 + components: + - pos: -54.5,-32.5 + parent: 6 + type: Transform + - uid: 10185 + components: + - pos: -54.5,-33.5 + parent: 6 + type: Transform + - uid: 10186 + components: + - pos: -54.5,-34.5 + parent: 6 + type: Transform + - uid: 10187 + components: + - pos: -54.5,-35.5 + parent: 6 + type: Transform + - uid: 10188 + components: + - pos: -55.5,-34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10189 + components: + - pos: -56.5,-34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10190 + components: + - pos: -57.5,-34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10191 + components: + - pos: -51.5,-33.5 + parent: 6 + type: Transform + - uid: 10192 + components: + - pos: -51.5,-34.5 + parent: 6 + type: Transform + - uid: 10193 + components: + - pos: -51.5,-35.5 + parent: 6 + type: Transform + - uid: 10194 + components: + - pos: -51.5,-31.5 + parent: 6 + type: Transform + - uid: 10195 + components: + - pos: -51.5,-30.5 + parent: 6 + type: Transform + - uid: 10197 + components: + - pos: -50.5,-43.5 + parent: 6 + type: Transform + - uid: 10212 + components: + - pos: -49.5,-47.5 + parent: 6 + type: Transform + - uid: 10213 + components: + - pos: -50.5,-44.5 + parent: 6 + type: Transform + - uid: 10215 + components: + - pos: -36.5,-51.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10216 + components: + - pos: -37.5,-51.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10217 + components: + - pos: -37.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10218 + components: + - pos: -37.5,-54.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10219 + components: + - pos: -39.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10220 + components: + - pos: -39.5,-54.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10221 + components: + - pos: -39.5,-55.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10222 + components: + - pos: -39.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10223 + components: + - pos: -39.5,-57.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10224 + components: + - pos: -39.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10225 + components: + - pos: -39.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10226 + components: + - pos: -38.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10227 + components: + - pos: -37.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10228 + components: + - pos: -36.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10229 + components: + - pos: -35.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10230 + components: + - pos: -34.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10231 + components: + - pos: -33.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10232 + components: + - pos: -32.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10233 + components: + - pos: -31.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10234 + components: + - pos: -30.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10235 + components: + - pos: -29.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10236 + components: + - pos: -28.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10237 + components: + - pos: -27.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10238 + components: + - pos: -26.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10239 + components: + - pos: -25.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10240 + components: + - pos: -24.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10241 + components: + - pos: -23.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10242 + components: + - pos: -23.5,-60.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10243 + components: + - pos: -23.5,-61.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10244 + components: + - pos: -23.5,-62.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10245 + components: + - pos: -23.5,-63.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10246 + components: + - pos: -23.5,-64.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10247 + components: + - pos: -23.5,-65.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10249 + components: + - pos: -22.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10250 + components: + - pos: -21.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10251 + components: + - pos: -20.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10252 + components: + - pos: -31.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10253 + components: + - pos: -31.5,-57.5 + parent: 6 + type: Transform + - uid: 10254 + components: + - pos: -31.5,-56.5 + parent: 6 + type: Transform + - uid: 10255 + components: + - pos: -31.5,-55.5 + parent: 6 + type: Transform + - uid: 10256 + components: + - pos: -31.5,-54.5 + parent: 6 + type: Transform + - uid: 10257 + components: + - pos: -31.5,-53.5 + parent: 6 + type: Transform + - uid: 10258 + components: + - pos: -31.5,-52.5 + parent: 6 + type: Transform + - uid: 10259 + components: + - pos: -31.5,-51.5 + parent: 6 + type: Transform + - uid: 10260 + components: + - pos: -31.5,-50.5 + parent: 6 + type: Transform + - uid: 10261 + components: + - pos: -31.5,-49.5 + parent: 6 + type: Transform + - uid: 10262 + components: + - pos: -31.5,-48.5 + parent: 6 + type: Transform + - uid: 10263 + components: + - pos: -31.5,-47.5 + parent: 6 + type: Transform + - uid: 10264 + components: + - pos: -30.5,-47.5 + parent: 6 + type: Transform + - uid: 10265 + components: + - pos: -29.5,-47.5 + parent: 6 + type: Transform + - uid: 10266 + components: + - pos: -28.5,-47.5 + parent: 6 + type: Transform + - uid: 10267 + components: + - pos: -27.5,-47.5 + parent: 6 + type: Transform + - uid: 10268 + components: + - pos: -26.5,-47.5 + parent: 6 + type: Transform + - uid: 10269 + components: + - pos: -28.5,-48.5 + parent: 6 + type: Transform + - uid: 10270 + components: + - pos: -28.5,-49.5 + parent: 6 + type: Transform + - uid: 10271 + components: + - pos: -28.5,-50.5 + parent: 6 + type: Transform + - uid: 10272 + components: + - pos: -28.5,-51.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10273 + components: + - pos: -28.5,-52.5 + parent: 6 + type: Transform + - uid: 10274 + components: + - pos: -29.5,-52.5 + parent: 6 + type: Transform + - uid: 10275 + components: + - pos: -30.5,-52.5 + parent: 6 + type: Transform + - uid: 10276 + components: + - pos: -32.5,-47.5 + parent: 6 + type: Transform + - uid: 10277 + components: + - pos: -33.5,-47.5 + parent: 6 + type: Transform + - uid: 10278 + components: + - pos: -34.5,-47.5 + parent: 6 + type: Transform + - uid: 10279 + components: + - pos: -35.5,-47.5 + parent: 6 + type: Transform + - uid: 10280 + components: + - pos: -35.5,-48.5 + parent: 6 + type: Transform + - uid: 10281 + components: + - pos: -35.5,-49.5 + parent: 6 + type: Transform + - uid: 10282 + components: + - pos: -35.5,-50.5 + parent: 6 + type: Transform + - uid: 10283 + components: + - pos: -35.5,-51.5 + parent: 6 + type: Transform + - uid: 10284 + components: + - pos: -35.5,-52.5 + parent: 6 + type: Transform + - uid: 10285 + components: + - pos: -35.5,-53.5 + parent: 6 + type: Transform + - uid: 10286 + components: + - pos: -35.5,-54.5 + parent: 6 + type: Transform + - uid: 10287 + components: + - pos: -35.5,-55.5 + parent: 6 + type: Transform + - uid: 10288 + components: + - pos: -35.5,-56.5 + parent: 6 + type: Transform + - uid: 10289 + components: + - pos: -34.5,-46.5 + parent: 6 + type: Transform + - uid: 10290 + components: + - pos: -34.5,-45.5 + parent: 6 + type: Transform + - uid: 10291 + components: + - pos: -35.5,-45.5 + parent: 6 + type: Transform + - uid: 10292 + components: + - pos: -36.5,-45.5 + parent: 6 + type: Transform + - uid: 10293 + components: + - pos: -37.5,-45.5 + parent: 6 + type: Transform + - uid: 10294 + components: + - pos: -38.5,-45.5 + parent: 6 + type: Transform + - uid: 10295 + components: + - pos: -39.5,-45.5 + parent: 6 + type: Transform + - uid: 10296 + components: + - pos: -40.5,-45.5 + parent: 6 + type: Transform + - uid: 10297 + components: + - pos: -41.5,-45.5 + parent: 6 + type: Transform + - uid: 10298 + components: + - pos: -42.5,-45.5 + parent: 6 + type: Transform + - uid: 10299 + components: + - pos: -43.5,-45.5 + parent: 6 + type: Transform + - uid: 10300 + components: + - pos: -44.5,-45.5 + parent: 6 + type: Transform + - uid: 10301 + components: + - pos: -45.5,-45.5 + parent: 6 + type: Transform + - uid: 10302 + components: + - pos: -46.5,-45.5 + parent: 6 + type: Transform + - uid: 10303 + components: + - pos: -47.5,-45.5 + parent: 6 + type: Transform + - uid: 10304 + components: + - pos: -48.5,-45.5 + parent: 6 + type: Transform + - uid: 10305 + components: + - pos: -49.5,-45.5 + parent: 6 + type: Transform + - uid: 10306 + components: + - pos: -49.5,-46.5 + parent: 6 + type: Transform + - uid: 10307 + components: + - pos: -49.5,-48.5 + parent: 6 + type: Transform + - uid: 10308 + components: + - pos: -49.5,-49.5 + parent: 6 + type: Transform + - uid: 10309 + components: + - pos: -49.5,-50.5 + parent: 6 + type: Transform + - uid: 10310 + components: + - pos: -49.5,-51.5 + parent: 6 + type: Transform + - uid: 10311 + components: + - pos: -50.5,-51.5 + parent: 6 + type: Transform + - uid: 10312 + components: + - pos: -51.5,-51.5 + parent: 6 + type: Transform + - uid: 10313 + components: + - pos: -48.5,-51.5 + parent: 6 + type: Transform + - uid: 10314 + components: + - pos: -16.5,-57.5 + parent: 6 + type: Transform + - uid: 10315 + components: + - pos: -16.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10316 + components: + - pos: 30.5,4.5 + parent: 6 + type: Transform + - uid: 10317 + components: + - pos: 30.5,3.5 + parent: 6 + type: Transform + - uid: 10318 + components: + - pos: 30.5,2.5 + parent: 6 + type: Transform + - uid: 10319 + components: + - pos: 30.5,1.5 + parent: 6 + type: Transform + - uid: 10320 + components: + - pos: 30.5,0.5 + parent: 6 + type: Transform + - uid: 10321 + components: + - pos: 30.5,-0.5 + parent: 6 + type: Transform + - uid: 10322 + components: + - pos: 30.5,-1.5 + parent: 6 + type: Transform + - uid: 10323 + components: + - pos: 30.5,-2.5 + parent: 6 + type: Transform + - uid: 10324 + components: + - pos: 30.5,-3.5 + parent: 6 + type: Transform + - uid: 10325 + components: + - pos: 30.5,-4.5 + parent: 6 + type: Transform + - uid: 10326 + components: + - pos: 30.5,-5.5 + parent: 6 + type: Transform + - uid: 10327 + components: + - pos: 30.5,-6.5 + parent: 6 + type: Transform + - uid: 10328 + components: + - pos: 30.5,-7.5 + parent: 6 + type: Transform + - uid: 10329 + components: + - pos: 30.5,-8.5 + parent: 6 + type: Transform + - uid: 10330 + components: + - pos: 30.5,-9.5 + parent: 6 + type: Transform + - uid: 10520 + components: + - pos: 20.5,-12.5 + parent: 6 + type: Transform + - uid: 10521 + components: + - pos: 21.5,-12.5 + parent: 6 + type: Transform + - uid: 10626 + components: + - pos: -19.5,-52.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10627 + components: + - pos: -19.5,-51.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10628 + components: + - pos: -19.5,-50.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10629 + components: + - pos: -19.5,-49.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10630 + components: + - pos: -19.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10631 + components: + - pos: -20.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10632 + components: + - pos: -21.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10633 + components: + - pos: -22.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10634 + components: + - pos: -23.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10635 + components: + - pos: -24.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10636 + components: + - pos: -24.5,-47.5 + parent: 6 + type: Transform + - uid: 10637 + components: + - pos: -24.5,-46.5 + parent: 6 + type: Transform + - uid: 10731 + components: + - pos: -35.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10732 + components: + - pos: -35.5,-20.5 + parent: 6 + type: Transform + - uid: 10733 + components: + - pos: -35.5,-21.5 + parent: 6 + type: Transform + - uid: 10783 + components: + - pos: 13.5,-3.5 + parent: 6 + type: Transform + - uid: 10790 + components: + - pos: 20.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10791 + components: + - pos: 21.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10792 + components: + - pos: 22.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10793 + components: + - pos: 23.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10794 + components: + - pos: 24.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10795 + components: + - pos: 25.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10796 + components: + - pos: 26.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10797 + components: + - pos: 26.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10818 + components: + - pos: -30.5,-55.5 + parent: 6 + type: Transform + - uid: 10819 + components: + - pos: -29.5,-55.5 + parent: 6 + type: Transform + - uid: 13752 + components: + - pos: 3.5,0.5 + parent: 13645 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13753 + components: + - pos: 3.5,1.5 + parent: 13645 + type: Transform + - uid: 13754 + components: + - pos: 3.5,2.5 + parent: 13645 + type: Transform + - uid: 13755 + components: + - pos: 3.5,3.5 + parent: 13645 + type: Transform + - uid: 14149 + components: + - pos: 12.5,-3.5 + parent: 6 + type: Transform + - uid: 14150 + components: + - pos: 11.5,-3.5 + parent: 6 + type: Transform + - uid: 14151 + components: + - pos: 10.5,-3.5 + parent: 6 + type: Transform + - uid: 14152 + components: + - pos: 9.5,-3.5 + parent: 6 + type: Transform + - uid: 14254 + components: + - pos: -56.5,-40.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14255 + components: + - pos: -56.5,-41.5 + parent: 6 + type: Transform + - uid: 14256 + components: + - pos: -56.5,-42.5 + parent: 6 + type: Transform + - uid: 14257 + components: + - pos: -56.5,-43.5 + parent: 6 + type: Transform + - uid: 14258 + components: + - pos: -56.5,-44.5 + parent: 6 + type: Transform + - uid: 14259 + components: + - pos: -56.5,-45.5 + parent: 6 + type: Transform + - uid: 14260 + components: + - pos: -56.5,-46.5 + parent: 6 + type: Transform + - uid: 14261 + components: + - pos: -56.5,-47.5 + parent: 6 + type: Transform + - uid: 14262 + components: + - pos: -55.5,-47.5 + parent: 6 + type: Transform + - uid: 14263 + components: + - pos: -54.5,-47.5 + parent: 6 + type: Transform + - uid: 14264 + components: + - pos: -53.5,-47.5 + parent: 6 + type: Transform + - uid: 14265 + components: + - pos: -55.5,-41.5 + parent: 6 + type: Transform + - uid: 14266 + components: + - pos: -54.5,-41.5 + parent: 6 + type: Transform + - uid: 14267 + components: + - pos: -53.5,-41.5 + parent: 6 + type: Transform + - uid: 14268 + components: + - pos: -57.5,-44.5 + parent: 6 + type: Transform + - uid: 14286 + components: + - pos: -55.5,-44.5 + parent: 6 + type: Transform + - uid: 14287 + components: + - pos: -54.5,-44.5 + parent: 6 + type: Transform + - uid: 14288 + components: + - pos: -53.5,-44.5 + parent: 6 + type: Transform + - uid: 14289 + components: + - pos: -52.5,-44.5 + parent: 6 + type: Transform +- proto: CableApcStack + entities: + - uid: 5352 + components: + - pos: 3.8964598,-51.449 + parent: 6 + type: Transform + - uid: 5382 + components: + - pos: -11.759497,-56.48735 + parent: 6 + type: Transform + - uid: 6406 + components: + - pos: -48.891544,-25.577776 + parent: 6 + type: Transform + - uid: 13403 + components: + - pos: 28.312565,1.7252973 + parent: 6 + type: Transform +- proto: CableApcStack1 + entities: + - uid: 4769 + components: + - pos: -84.300026,-39.537045 + parent: 6 + type: Transform + - uid: 4770 + components: + - rot: 1.5707963267948966 rad + pos: -82.05662,-39.50866 + parent: 6 + type: Transform + - uid: 4771 + components: + - rot: 1.5707963267948966 rad + pos: -82.89435,-40.38851 + parent: 6 + type: Transform + - uid: 6731 + components: + - pos: -75.5152,-41.325874 + parent: 6 + type: Transform + - uid: 6732 + components: + - pos: -76.06895,-50.265915 + parent: 6 + type: Transform + - uid: 6733 + components: + - pos: -83.083145,-48.832615 + parent: 6 + type: Transform + - uid: 6773 + components: + - pos: -44.481865,-48.474968 + parent: 6 + type: Transform + - uid: 7420 + components: + - pos: -17.502695,-51.34945 + parent: 6 + type: Transform + - count: 6 + type: Stack + - uid: 10825 + components: + - pos: -41.502197,-47.490105 + parent: 6 + type: Transform + - uid: 10826 + components: + - pos: -40.377197,-51.44844 + parent: 6 + type: Transform + - uid: 10827 + components: + - pos: -41.418865,-51.406773 + parent: 6 + type: Transform + - uid: 10828 + components: + - pos: -40.689697,-50.531773 + parent: 6 + type: Transform + - uid: 13756 + components: + - rot: 3.141592653589793 rad + pos: 3.239975,4.444168 + parent: 13645 + type: Transform + - uid: 13757 + components: + - rot: 3.141592653589793 rad + pos: 1.9066315,4.23584 + parent: 13645 + type: Transform +- proto: CableHV + entities: + - uid: 2982 + components: + - pos: -25.5,14.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2984 + components: + - pos: -80.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2985 + components: + - pos: -80.5,-32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2986 + components: + - pos: -80.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2988 + components: + - pos: -80.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2989 + components: + - pos: -82.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2990 + components: + - pos: -82.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2991 + components: + - pos: -80.5,-30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2992 + components: + - pos: -80.5,-28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 2993 + components: + - pos: -80.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3003 + components: + - pos: -82.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3005 + components: + - pos: -82.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3016 + components: + - pos: -82.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3017 + components: + - pos: -82.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3018 + components: + - pos: -82.5,-28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3019 + components: + - pos: -82.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3020 + components: + - pos: -82.5,-30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3021 + components: + - pos: -82.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3022 + components: + - pos: -82.5,-32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3041 + components: + - pos: -80.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3048 + components: + - pos: -80.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3049 + components: + - pos: -80.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3052 + components: + - pos: -82.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3184 + components: + - pos: -73.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 3185 + components: + - pos: -81.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4093 + components: + - pos: -32.5,-68.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4094 + components: + - pos: -31.5,-68.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4095 + components: + - pos: -30.5,-68.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4096 + components: + - pos: -29.5,-68.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4097 + components: + - pos: -28.5,-68.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4098 + components: + - pos: -27.5,-68.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4099 + components: + - pos: -26.5,-68.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4100 + components: + - pos: -25.5,-68.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4101 + components: + - pos: -25.5,-69.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4102 + components: + - pos: -32.5,-70.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4103 + components: + - pos: -31.5,-70.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4104 + components: + - pos: -30.5,-70.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4105 + components: + - pos: -29.5,-70.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4106 + components: + - pos: -28.5,-70.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4107 + components: + - pos: -27.5,-70.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4108 + components: + - pos: -26.5,-70.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4109 + components: + - pos: -25.5,-70.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4110 + components: + - pos: -32.5,-72.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4111 + components: + - pos: -31.5,-72.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4112 + components: + - pos: -30.5,-72.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4113 + components: + - pos: -29.5,-72.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4114 + components: + - pos: -28.5,-72.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4115 + components: + - pos: -27.5,-72.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4116 + components: + - pos: -26.5,-72.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4117 + components: + - pos: -25.5,-72.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4118 + components: + - pos: -25.5,-73.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4119 + components: + - pos: -32.5,-74.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4120 + components: + - pos: -31.5,-74.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4121 + components: + - pos: -30.5,-74.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4122 + components: + - pos: -29.5,-74.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4123 + components: + - pos: -28.5,-74.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4124 + components: + - pos: -27.5,-74.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4125 + components: + - pos: -26.5,-74.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4126 + components: + - pos: -25.5,-74.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4127 + components: + - pos: -32.5,-76.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4128 + components: + - pos: -31.5,-76.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4129 + components: + - pos: -30.5,-76.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4130 + components: + - pos: -29.5,-76.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4131 + components: + - pos: -28.5,-76.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4132 + components: + - pos: -27.5,-76.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4133 + components: + - pos: -26.5,-76.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4134 + components: + - pos: -25.5,-76.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4135 + components: + - pos: -25.5,-77.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4136 + components: + - pos: -32.5,-78.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4137 + components: + - pos: -31.5,-78.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4138 + components: + - pos: -30.5,-78.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4139 + components: + - pos: -29.5,-78.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4140 + components: + - pos: -28.5,-78.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4141 + components: + - pos: -27.5,-78.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4142 + components: + - pos: -26.5,-78.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4143 + components: + - pos: -25.5,-78.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4144 + components: + - pos: -32.5,-80.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4145 + components: + - pos: -31.5,-80.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4146 + components: + - pos: -30.5,-80.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4147 + components: + - pos: -29.5,-80.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4148 + components: + - pos: -28.5,-80.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4149 + components: + - pos: -27.5,-80.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4150 + components: + - pos: -26.5,-80.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4151 + components: + - pos: -25.5,-80.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4152 + components: + - pos: -25.5,-81.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4153 + components: + - pos: -32.5,-82.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4154 + components: + - pos: -31.5,-82.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4155 + components: + - pos: -30.5,-82.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4156 + components: + - pos: -29.5,-82.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4157 + components: + - pos: -28.5,-82.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4158 + components: + - pos: -27.5,-82.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4159 + components: + - pos: -26.5,-82.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4160 + components: + - pos: -25.5,-82.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4161 + components: + - pos: -24.5,-81.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4162 + components: + - pos: -23.5,-81.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4163 + components: + - pos: -23.5,-82.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4164 + components: + - pos: -23.5,-83.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4165 + components: + - pos: -23.5,-84.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4380 + components: + - pos: -19.5,7.5 + parent: 6 + type: Transform + - uid: 4519 + components: + - pos: -27.5,-3.5 + parent: 6 + type: Transform + - uid: 4832 + components: + - pos: -50.5,-43.5 + parent: 6 + type: Transform + - uid: 4838 + components: + - pos: -23.5,14.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4916 + components: + - pos: -25.5,16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4917 + components: + - pos: -25.5,15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4928 + components: + - pos: -15.5,27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4951 + components: + - pos: -24.5,16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4952 + components: + - pos: -24.5,17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4953 + components: + - pos: -24.5,18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4954 + components: + - pos: -25.5,18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4955 + components: + - pos: -25.5,19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4956 + components: + - pos: -25.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4957 + components: + - pos: -25.5,21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4958 + components: + - pos: -25.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4959 + components: + - pos: -25.5,23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4960 + components: + - pos: -25.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4961 + components: + - pos: -26.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4962 + components: + - pos: -27.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4963 + components: + - pos: -28.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4964 + components: + - pos: -29.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4965 + components: + - pos: -30.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4966 + components: + - pos: -30.5,23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4967 + components: + - pos: -30.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4968 + components: + - pos: -30.5,21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4969 + components: + - pos: -30.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4970 + components: + - pos: -30.5,19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4971 + components: + - pos: -30.5,18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4972 + components: + - pos: -30.5,17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4973 + components: + - pos: -30.5,16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4974 + components: + - pos: -30.5,15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4975 + components: + - pos: -30.5,14.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4976 + components: + - pos: -30.5,13.5 + parent: 6 + type: Transform + - uid: 4977 + components: + - pos: -30.5,12.5 + parent: 6 + type: Transform + - uid: 4978 + components: + - pos: -30.5,11.5 + parent: 6 + type: Transform + - uid: 4979 + components: + - pos: -30.5,10.5 + parent: 6 + type: Transform + - uid: 4980 + components: + - pos: -30.5,9.5 + parent: 6 + type: Transform + - uid: 4981 + components: + - pos: -31.5,9.5 + parent: 6 + type: Transform + - uid: 4982 + components: + - pos: -31.5,8.5 + parent: 6 + type: Transform + - uid: 4983 + components: + - pos: -31.5,7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4984 + components: + - pos: -31.5,6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 4985 + components: + - pos: -31.5,5.5 + parent: 6 + type: Transform + - uid: 4986 + components: + - pos: -31.5,4.5 + parent: 6 + type: Transform + - uid: 4987 + components: + - pos: -31.5,3.5 + parent: 6 + type: Transform + - uid: 4988 + components: + - pos: -31.5,2.5 + parent: 6 + type: Transform + - uid: 4989 + components: + - pos: -31.5,1.5 + parent: 6 + type: Transform + - uid: 4990 + components: + - pos: -31.5,0.5 + parent: 6 + type: Transform + - uid: 4991 + components: + - pos: -31.5,-0.5 + parent: 6 + type: Transform + - uid: 4992 + components: + - pos: -31.5,-1.5 + parent: 6 + type: Transform + - uid: 4993 + components: + - pos: -32.5,-1.5 + parent: 6 + type: Transform + - uid: 4994 + components: + - pos: -33.5,-1.5 + parent: 6 + type: Transform + - uid: 4995 + components: + - pos: -34.5,-1.5 + parent: 6 + type: Transform + - uid: 4996 + components: + - pos: -35.5,-1.5 + parent: 6 + type: Transform + - uid: 4997 + components: + - pos: -36.5,-1.5 + parent: 6 + type: Transform + - uid: 4998 + components: + - pos: -36.5,-0.5 + parent: 6 + type: Transform + - uid: 4999 + components: + - pos: -36.5,0.5 + parent: 6 + type: Transform + - uid: 5000 + components: + - pos: -36.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5001 + components: + - pos: -36.5,2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5002 + components: + - pos: -36.5,3.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5003 + components: + - pos: -35.5,3.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5004 + components: + - pos: -37.5,3.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5007 + components: + - pos: -30.5,-1.5 + parent: 6 + type: Transform + - uid: 5008 + components: + - pos: -29.5,-1.5 + parent: 6 + type: Transform + - uid: 5009 + components: + - pos: -28.5,-1.5 + parent: 6 + type: Transform + - uid: 5010 + components: + - pos: -27.5,-1.5 + parent: 6 + type: Transform + - uid: 5011 + components: + - pos: -26.5,-1.5 + parent: 6 + type: Transform + - uid: 5012 + components: + - pos: -26.5,-2.5 + parent: 6 + type: Transform + - uid: 5016 + components: + - pos: -26.5,-3.5 + parent: 6 + type: Transform + - uid: 5017 + components: + - pos: -25.5,-3.5 + parent: 6 + type: Transform + - uid: 5018 + components: + - pos: -24.5,-3.5 + parent: 6 + type: Transform + - uid: 5019 + components: + - pos: -24.5,-2.5 + parent: 6 + type: Transform + - uid: 5020 + components: + - pos: -24.5,-1.5 + parent: 6 + type: Transform + - uid: 5021 + components: + - pos: -23.5,-1.5 + parent: 6 + type: Transform + - uid: 5022 + components: + - pos: -22.5,-1.5 + parent: 6 + type: Transform + - uid: 5023 + components: + - pos: -21.5,-1.5 + parent: 6 + type: Transform + - uid: 5024 + components: + - pos: -20.5,-1.5 + parent: 6 + type: Transform + - uid: 5025 + components: + - pos: -19.5,-1.5 + parent: 6 + type: Transform + - uid: 5026 + components: + - pos: -18.5,-1.5 + parent: 6 + type: Transform + - uid: 5027 + components: + - pos: -17.5,-1.5 + parent: 6 + type: Transform + - uid: 5028 + components: + - pos: -16.5,-1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5029 + components: + - pos: -15.5,-1.5 + parent: 6 + type: Transform + - uid: 5033 + components: + - pos: -26.5,-4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5034 + components: + - pos: -26.5,-5.5 + parent: 6 + type: Transform + - uid: 5035 + components: + - pos: -27.5,-5.5 + parent: 6 + type: Transform + - uid: 5036 + components: + - pos: -30.5,2.5 + parent: 6 + type: Transform + - uid: 5038 + components: + - pos: -30.5,1.5 + parent: 6 + type: Transform + - uid: 5046 + components: + - pos: -24.5,14.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5190 + components: + - pos: -18.5,7.5 + parent: 6 + type: Transform + - uid: 5441 + components: + - pos: -52.5,-43.5 + parent: 6 + type: Transform + - uid: 5454 + components: + - pos: -53.5,-43.5 + parent: 6 + type: Transform + - uid: 5455 + components: + - pos: -51.5,-43.5 + parent: 6 + type: Transform + - uid: 5506 + components: + - pos: -56.5,-47.5 + parent: 6 + type: Transform + - uid: 5516 + components: + - pos: -80.5,-15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5518 + components: + - pos: -80.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5532 + components: + - pos: -82.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5533 + components: + - pos: -80.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5553 + components: + - pos: -80.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5554 + components: + - pos: -80.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5564 + components: + - pos: -60.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5565 + components: + - pos: -61.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5566 + components: + - pos: -61.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5567 + components: + - pos: -60.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5570 + components: + - pos: -59.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5571 + components: + - pos: -59.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5572 + components: + - pos: -59.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5573 + components: + - pos: -60.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 5574 + components: + - pos: -60.5,-17.5 + parent: 6 + type: Transform + - uid: 5724 + components: + - pos: -77.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6098 + components: + - pos: 30.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6099 + components: + - pos: 30.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6100 + components: + - pos: 30.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6101 + components: + - pos: 30.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6102 + components: + - pos: 30.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6103 + components: + - pos: 30.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6104 + components: + - pos: 30.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6105 + components: + - pos: 30.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6106 + components: + - pos: 32.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6107 + components: + - pos: 32.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6108 + components: + - pos: 32.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6109 + components: + - pos: 32.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6110 + components: + - pos: 32.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6111 + components: + - pos: 32.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6112 + components: + - pos: 32.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6113 + components: + - pos: 32.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6114 + components: + - pos: 31.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6115 + components: + - pos: 34.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6116 + components: + - pos: 34.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6117 + components: + - pos: 34.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6118 + components: + - pos: 34.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6119 + components: + - pos: 34.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6120 + components: + - pos: 34.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6121 + components: + - pos: 34.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6122 + components: + - pos: 34.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6123 + components: + - pos: 36.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6124 + components: + - pos: 36.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6125 + components: + - pos: 36.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6126 + components: + - pos: 36.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6127 + components: + - pos: 36.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6128 + components: + - pos: 36.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6129 + components: + - pos: 36.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6130 + components: + - pos: 36.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6131 + components: + - pos: 35.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6132 + components: + - pos: 38.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6133 + components: + - pos: 38.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6134 + components: + - pos: 38.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6135 + components: + - pos: 38.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6136 + components: + - pos: 38.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6137 + components: + - pos: 38.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6138 + components: + - pos: 38.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6139 + components: + - pos: 38.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6140 + components: + - pos: 40.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6141 + components: + - pos: 40.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6142 + components: + - pos: 40.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6143 + components: + - pos: 40.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6144 + components: + - pos: 40.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6145 + components: + - pos: 40.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6146 + components: + - pos: 40.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6147 + components: + - pos: 40.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6148 + components: + - pos: 39.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6149 + components: + - pos: 42.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6150 + components: + - pos: 42.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6151 + components: + - pos: 42.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6152 + components: + - pos: 42.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6153 + components: + - pos: 42.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6154 + components: + - pos: 42.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6155 + components: + - pos: 42.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6156 + components: + - pos: 42.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6157 + components: + - pos: 44.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6158 + components: + - pos: 44.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6159 + components: + - pos: 44.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6160 + components: + - pos: 44.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6161 + components: + - pos: 44.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6162 + components: + - pos: 44.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6163 + components: + - pos: 44.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6164 + components: + - pos: 44.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6165 + components: + - pos: 43.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6184 + components: + - pos: -27.5,-4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6197 + components: + - pos: -57.5,-47.5 + parent: 6 + type: Transform + - uid: 6667 + components: + - pos: -23.5,-63.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6668 + components: + - pos: -23.5,-64.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6669 + components: + - pos: -23.5,-65.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6670 + components: + - pos: -22.5,-63.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6671 + components: + - pos: -22.5,-62.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6672 + components: + - pos: -22.5,-61.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6673 + components: + - pos: -23.5,-61.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6675 + components: + - pos: -23.5,-60.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6676 + components: + - pos: -23.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6697 + components: + - pos: -80.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6698 + components: + - pos: -79.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6699 + components: + - pos: -78.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6799 + components: + - pos: -15.5,-0.5 + parent: 6 + type: Transform + - uid: 6800 + components: + - pos: -15.5,0.5 + parent: 6 + type: Transform + - uid: 6801 + components: + - pos: -15.5,1.5 + parent: 6 + type: Transform + - uid: 6802 + components: + - pos: -14.5,1.5 + parent: 6 + type: Transform + - uid: 6803 + components: + - pos: -13.5,1.5 + parent: 6 + type: Transform + - uid: 6804 + components: + - pos: -12.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6805 + components: + - pos: -11.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6806 + components: + - pos: -10.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6807 + components: + - pos: -10.5,0.5 + parent: 6 + type: Transform + - uid: 6808 + components: + - pos: -10.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6809 + components: + - pos: -10.5,-1.5 + parent: 6 + type: Transform + - uid: 6810 + components: + - pos: -15.5,-2.5 + parent: 6 + type: Transform + - uid: 6811 + components: + - pos: -15.5,-3.5 + parent: 6 + type: Transform + - uid: 6812 + components: + - pos: -15.5,-4.5 + parent: 6 + type: Transform + - uid: 6813 + components: + - pos: -15.5,-5.5 + parent: 6 + type: Transform + - uid: 6814 + components: + - pos: -15.5,-6.5 + parent: 6 + type: Transform + - uid: 6815 + components: + - pos: -15.5,-7.5 + parent: 6 + type: Transform + - uid: 6816 + components: + - pos: -15.5,-8.5 + parent: 6 + type: Transform + - uid: 6817 + components: + - pos: -15.5,-9.5 + parent: 6 + type: Transform + - uid: 6818 + components: + - pos: -15.5,-10.5 + parent: 6 + type: Transform + - uid: 6819 + components: + - pos: -14.5,-10.5 + parent: 6 + type: Transform + - uid: 6820 + components: + - pos: -13.5,-10.5 + parent: 6 + type: Transform + - uid: 6821 + components: + - pos: -12.5,-10.5 + parent: 6 + type: Transform + - uid: 6822 + components: + - pos: -11.5,-10.5 + parent: 6 + type: Transform + - uid: 6823 + components: + - pos: -10.5,-10.5 + parent: 6 + type: Transform + - uid: 6824 + components: + - pos: -9.5,-10.5 + parent: 6 + type: Transform + - uid: 6825 + components: + - pos: -8.5,-10.5 + parent: 6 + type: Transform + - uid: 6826 + components: + - pos: -7.5,-10.5 + parent: 6 + type: Transform + - uid: 6827 + components: + - pos: -6.5,-10.5 + parent: 6 + type: Transform + - uid: 6828 + components: + - pos: -6.5,-9.5 + parent: 6 + type: Transform + - uid: 6829 + components: + - pos: -6.5,-8.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6830 + components: + - pos: -6.5,-7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6831 + components: + - pos: -6.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6832 + components: + - pos: -7.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6833 + components: + - pos: -8.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6834 + components: + - pos: -9.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6835 + components: + - pos: -10.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6836 + components: + - pos: -11.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6837 + components: + - pos: -12.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6838 + components: + - pos: -12.5,-5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6839 + components: + - pos: -12.5,-4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6840 + components: + - pos: -12.5,-3.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6841 + components: + - pos: -12.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6842 + components: + - pos: -12.5,-1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6843 + components: + - pos: -12.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6844 + components: + - pos: -12.5,0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6845 + components: + - pos: -16.5,-10.5 + parent: 6 + type: Transform + - uid: 6846 + components: + - pos: -17.5,-10.5 + parent: 6 + type: Transform + - uid: 6847 + components: + - pos: -18.5,-10.5 + parent: 6 + type: Transform + - uid: 6848 + components: + - pos: -19.5,-10.5 + parent: 6 + type: Transform + - uid: 6849 + components: + - pos: -20.5,-10.5 + parent: 6 + type: Transform + - uid: 6850 + components: + - pos: -21.5,-10.5 + parent: 6 + type: Transform + - uid: 6851 + components: + - pos: -22.5,-10.5 + parent: 6 + type: Transform + - uid: 6852 + components: + - pos: -23.5,-10.5 + parent: 6 + type: Transform + - uid: 6853 + components: + - pos: -24.5,-10.5 + parent: 6 + type: Transform + - uid: 6854 + components: + - pos: -25.5,-10.5 + parent: 6 + type: Transform + - uid: 6855 + components: + - pos: -26.5,-10.5 + parent: 6 + type: Transform + - uid: 6856 + components: + - pos: -27.5,-10.5 + parent: 6 + type: Transform + - uid: 6857 + components: + - pos: -28.5,-10.5 + parent: 6 + type: Transform + - uid: 6858 + components: + - pos: -29.5,-10.5 + parent: 6 + type: Transform + - uid: 6859 + components: + - pos: -30.5,-10.5 + parent: 6 + type: Transform + - uid: 6860 + components: + - pos: -31.5,-10.5 + parent: 6 + type: Transform + - uid: 6861 + components: + - pos: -32.5,-10.5 + parent: 6 + type: Transform + - uid: 6862 + components: + - pos: -33.5,-10.5 + parent: 6 + type: Transform + - uid: 6863 + components: + - pos: -34.5,-10.5 + parent: 6 + type: Transform + - uid: 6864 + components: + - pos: -35.5,-10.5 + parent: 6 + type: Transform + - uid: 6865 + components: + - pos: -36.5,-10.5 + parent: 6 + type: Transform + - uid: 6866 + components: + - pos: -37.5,-10.5 + parent: 6 + type: Transform + - uid: 6867 + components: + - pos: -38.5,-10.5 + parent: 6 + type: Transform + - uid: 6868 + components: + - pos: -39.5,-10.5 + parent: 6 + type: Transform + - uid: 6869 + components: + - pos: -40.5,-10.5 + parent: 6 + type: Transform + - uid: 6870 + components: + - pos: -41.5,-10.5 + parent: 6 + type: Transform + - uid: 6871 + components: + - pos: -42.5,-10.5 + parent: 6 + type: Transform + - uid: 6872 + components: + - pos: -43.5,-10.5 + parent: 6 + type: Transform + - uid: 6873 + components: + - pos: -44.5,-10.5 + parent: 6 + type: Transform + - uid: 6874 + components: + - pos: -45.5,-10.5 + parent: 6 + type: Transform + - uid: 6875 + components: + - pos: -46.5,-10.5 + parent: 6 + type: Transform + - uid: 6876 + components: + - pos: -47.5,-10.5 + parent: 6 + type: Transform + - uid: 6877 + components: + - pos: -48.5,-10.5 + parent: 6 + type: Transform + - uid: 6878 + components: + - pos: -49.5,-10.5 + parent: 6 + type: Transform + - uid: 6879 + components: + - pos: -50.5,-10.5 + parent: 6 + type: Transform + - uid: 6880 + components: + - pos: -51.5,-10.5 + parent: 6 + type: Transform + - uid: 6881 + components: + - pos: -52.5,-10.5 + parent: 6 + type: Transform + - uid: 6882 + components: + - pos: -53.5,-10.5 + parent: 6 + type: Transform + - uid: 6883 + components: + - pos: -54.5,-10.5 + parent: 6 + type: Transform + - uid: 6884 + components: + - pos: -55.5,-10.5 + parent: 6 + type: Transform + - uid: 6885 + components: + - pos: -56.5,-10.5 + parent: 6 + type: Transform + - uid: 6886 + components: + - pos: -57.5,-10.5 + parent: 6 + type: Transform + - uid: 6887 + components: + - pos: -58.5,-10.5 + parent: 6 + type: Transform + - uid: 6888 + components: + - pos: -59.5,-10.5 + parent: 6 + type: Transform + - uid: 6889 + components: + - pos: -60.5,-10.5 + parent: 6 + type: Transform + - uid: 6890 + components: + - pos: -61.5,-10.5 + parent: 6 + type: Transform + - uid: 6891 + components: + - pos: -62.5,-10.5 + parent: 6 + type: Transform + - uid: 6892 + components: + - pos: -63.5,-10.5 + parent: 6 + type: Transform + - uid: 6893 + components: + - pos: -64.5,-10.5 + parent: 6 + type: Transform + - uid: 6894 + components: + - pos: -64.5,-11.5 + parent: 6 + type: Transform + - uid: 6895 + components: + - pos: -64.5,-12.5 + parent: 6 + type: Transform + - uid: 6896 + components: + - pos: -64.5,-13.5 + parent: 6 + type: Transform + - uid: 6897 + components: + - pos: -64.5,-14.5 + parent: 6 + type: Transform + - uid: 6898 + components: + - pos: -64.5,-15.5 + parent: 6 + type: Transform + - uid: 6899 + components: + - pos: -64.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6900 + components: + - pos: -63.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6901 + components: + - pos: -62.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6902 + components: + - pos: -61.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6903 + components: + - pos: -60.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6904 + components: + - pos: -59.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6905 + components: + - pos: -58.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6906 + components: + - pos: -57.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6907 + components: + - pos: -56.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6908 + components: + - pos: -56.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6909 + components: + - pos: -56.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6910 + components: + - pos: -56.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6911 + components: + - pos: -56.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6912 + components: + - pos: -56.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6913 + components: + - pos: -55.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6914 + components: + - pos: -54.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6915 + components: + - pos: -53.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6916 + components: + - pos: -52.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6917 + components: + - pos: -51.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6918 + components: + - pos: -50.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6919 + components: + - pos: -49.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6920 + components: + - pos: -48.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6921 + components: + - pos: -47.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6922 + components: + - pos: -46.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6923 + components: + - pos: -45.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6924 + components: + - pos: -44.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6925 + components: + - pos: -43.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6926 + components: + - pos: -43.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6927 + components: + - pos: -42.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6928 + components: + - pos: -41.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6929 + components: + - pos: -41.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6930 + components: + - pos: -41.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6931 + components: + - pos: -41.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6932 + components: + - pos: -41.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6933 + components: + - pos: -41.5,-15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6934 + components: + - pos: -41.5,-14.5 + parent: 6 + type: Transform + - uid: 6935 + components: + - pos: -41.5,-13.5 + parent: 6 + type: Transform + - uid: 6936 + components: + - pos: -41.5,-12.5 + parent: 6 + type: Transform + - uid: 6937 + components: + - pos: -41.5,-11.5 + parent: 6 + type: Transform + - uid: 6938 + components: + - pos: -41.5,-9.5 + parent: 6 + type: Transform + - uid: 6939 + components: + - pos: -41.5,-8.5 + parent: 6 + type: Transform + - uid: 6940 + components: + - pos: -41.5,-7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6941 + components: + - pos: -41.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6942 + components: + - pos: -41.5,-5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6943 + components: + - pos: -41.5,-4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6944 + components: + - pos: -41.5,-3.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6945 + components: + - pos: -41.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6946 + components: + - pos: -41.5,-1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6947 + components: + - pos: -41.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6948 + components: + - pos: -41.5,0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6949 + components: + - pos: -41.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6950 + components: + - pos: -41.5,2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6951 + components: + - pos: -41.5,3.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6952 + components: + - pos: -51.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6953 + components: + - pos: -51.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6954 + components: + - pos: -51.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6955 + components: + - pos: -51.5,-25.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6956 + components: + - pos: -51.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6957 + components: + - pos: -51.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6958 + components: + - pos: -50.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6959 + components: + - pos: -49.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6960 + components: + - pos: -48.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6961 + components: + - pos: -47.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6962 + components: + - pos: -46.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6963 + components: + - pos: -45.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6964 + components: + - pos: -44.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6965 + components: + - pos: -43.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6966 + components: + - pos: -43.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6967 + components: + - pos: -43.5,-25.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6968 + components: + - pos: -43.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6969 + components: + - pos: -43.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6970 + components: + - pos: -42.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6971 + components: + - pos: -41.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6972 + components: + - pos: -41.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6973 + components: + - pos: -41.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6974 + components: + - pos: -49.5,-28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6975 + components: + - pos: -49.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6976 + components: + - pos: -49.5,-30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6977 + components: + - pos: -49.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6978 + components: + - pos: -49.5,-32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6979 + components: + - pos: -49.5,-33.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6980 + components: + - pos: -49.5,-34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6981 + components: + - pos: -49.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6982 + components: + - pos: -49.5,-36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6983 + components: + - pos: -49.5,-37.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6984 + components: + - pos: -49.5,-38.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6985 + components: + - pos: -49.5,-39.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6986 + components: + - pos: -49.5,-40.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6987 + components: + - pos: -49.5,-41.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6988 + components: + - pos: -49.5,-42.5 + parent: 6 + type: Transform + - uid: 6989 + components: + - pos: -49.5,-43.5 + parent: 6 + type: Transform + - uid: 6990 + components: + - pos: 5.5,-43.5 + parent: 6 + type: Transform + - uid: 6991 + components: + - pos: 6.5,-43.5 + parent: 6 + type: Transform + - uid: 6992 + components: + - pos: -48.5,-43.5 + parent: 6 + type: Transform + - uid: 6993 + components: + - pos: -47.5,-43.5 + parent: 6 + type: Transform + - uid: 6994 + components: + - pos: -46.5,-43.5 + parent: 6 + type: Transform + - uid: 6995 + components: + - pos: -45.5,-43.5 + parent: 6 + type: Transform + - uid: 6996 + components: + - pos: -44.5,-43.5 + parent: 6 + type: Transform + - uid: 6997 + components: + - pos: -43.5,-43.5 + parent: 6 + type: Transform + - uid: 6998 + components: + - pos: -42.5,-43.5 + parent: 6 + type: Transform + - uid: 6999 + components: + - pos: -41.5,-43.5 + parent: 6 + type: Transform + - uid: 7000 + components: + - pos: -40.5,-43.5 + parent: 6 + type: Transform + - uid: 7001 + components: + - pos: -39.5,-43.5 + parent: 6 + type: Transform + - uid: 7002 + components: + - pos: -38.5,-43.5 + parent: 6 + type: Transform + - uid: 7003 + components: + - pos: -37.5,-43.5 + parent: 6 + type: Transform + - uid: 7004 + components: + - pos: -36.5,-43.5 + parent: 6 + type: Transform + - uid: 7005 + components: + - pos: -35.5,-43.5 + parent: 6 + type: Transform + - uid: 7006 + components: + - pos: -34.5,-43.5 + parent: 6 + type: Transform + - uid: 7007 + components: + - pos: -33.5,-43.5 + parent: 6 + type: Transform + - uid: 7008 + components: + - pos: -32.5,-43.5 + parent: 6 + type: Transform + - uid: 7009 + components: + - pos: -31.5,-43.5 + parent: 6 + type: Transform + - uid: 7010 + components: + - pos: -30.5,-43.5 + parent: 6 + type: Transform + - uid: 7011 + components: + - pos: -29.5,-43.5 + parent: 6 + type: Transform + - uid: 7012 + components: + - pos: -28.5,-43.5 + parent: 6 + type: Transform + - uid: 7013 + components: + - pos: -27.5,-43.5 + parent: 6 + type: Transform + - uid: 7014 + components: + - pos: -26.5,-43.5 + parent: 6 + type: Transform + - uid: 7015 + components: + - pos: -25.5,-43.5 + parent: 6 + type: Transform + - uid: 7016 + components: + - pos: -24.5,-43.5 + parent: 6 + type: Transform + - uid: 7017 + components: + - pos: -23.5,-43.5 + parent: 6 + type: Transform + - uid: 7018 + components: + - pos: -22.5,-43.5 + parent: 6 + type: Transform + - uid: 7019 + components: + - pos: -21.5,-43.5 + parent: 6 + type: Transform + - uid: 7020 + components: + - pos: -20.5,-43.5 + parent: 6 + type: Transform + - uid: 7021 + components: + - pos: -19.5,-43.5 + parent: 6 + type: Transform + - uid: 7022 + components: + - pos: -18.5,-43.5 + parent: 6 + type: Transform + - uid: 7023 + components: + - pos: -17.5,-43.5 + parent: 6 + type: Transform + - uid: 7024 + components: + - pos: -16.5,-43.5 + parent: 6 + type: Transform + - uid: 7025 + components: + - pos: -15.5,-43.5 + parent: 6 + type: Transform + - uid: 7026 + components: + - pos: -14.5,-43.5 + parent: 6 + type: Transform + - uid: 7027 + components: + - pos: -13.5,-43.5 + parent: 6 + type: Transform + - uid: 7028 + components: + - pos: -12.5,-43.5 + parent: 6 + type: Transform + - uid: 7029 + components: + - pos: -11.5,-43.5 + parent: 6 + type: Transform + - uid: 7030 + components: + - pos: -10.5,-43.5 + parent: 6 + type: Transform + - uid: 7031 + components: + - pos: -9.5,-43.5 + parent: 6 + type: Transform + - uid: 7032 + components: + - pos: -8.5,-43.5 + parent: 6 + type: Transform + - uid: 7033 + components: + - pos: -7.5,-43.5 + parent: 6 + type: Transform + - uid: 7034 + components: + - pos: -6.5,-43.5 + parent: 6 + type: Transform + - uid: 7035 + components: + - pos: -5.5,-43.5 + parent: 6 + type: Transform + - uid: 7036 + components: + - pos: -4.5,-43.5 + parent: 6 + type: Transform + - uid: 7037 + components: + - pos: -3.5,-43.5 + parent: 6 + type: Transform + - uid: 7038 + components: + - pos: -2.5,-43.5 + parent: 6 + type: Transform + - uid: 7039 + components: + - pos: -1.5,-43.5 + parent: 6 + type: Transform + - uid: 7040 + components: + - pos: -0.5,-43.5 + parent: 6 + type: Transform + - uid: 7041 + components: + - pos: 0.5,-43.5 + parent: 6 + type: Transform + - uid: 7042 + components: + - pos: 1.5,-43.5 + parent: 6 + type: Transform + - uid: 7043 + components: + - pos: 2.5,-43.5 + parent: 6 + type: Transform + - uid: 7044 + components: + - pos: 3.5,-43.5 + parent: 6 + type: Transform + - uid: 7045 + components: + - pos: 4.5,-43.5 + parent: 6 + type: Transform + - uid: 7046 + components: + - pos: 6.5,-44.5 + parent: 6 + type: Transform + - uid: 7047 + components: + - pos: 7.5,-44.5 + parent: 6 + type: Transform + - uid: 7048 + components: + - pos: 8.5,-44.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7049 + components: + - pos: 9.5,-44.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7050 + components: + - pos: 9.5,-43.5 + parent: 6 + type: Transform + - uid: 7051 + components: + - pos: 9.5,-42.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7052 + components: + - pos: 8.5,-42.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7053 + components: + - pos: -5.5,-44.5 + parent: 6 + type: Transform + - uid: 7054 + components: + - pos: -5.5,-45.5 + parent: 6 + type: Transform + - uid: 7055 + components: + - pos: -5.5,-46.5 + parent: 6 + type: Transform + - uid: 7056 + components: + - pos: -5.5,-47.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7057 + components: + - pos: -5.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7058 + components: + - pos: -4.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7059 + components: + - pos: -3.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7060 + components: + - pos: -2.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7061 + components: + - pos: -1.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7062 + components: + - pos: -0.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7063 + components: + - pos: 0.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7064 + components: + - pos: 0.5,-49.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7065 + components: + - pos: 0.5,-50.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7066 + components: + - pos: 0.5,-51.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7067 + components: + - pos: 0.5,-52.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7068 + components: + - pos: 0.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7069 + components: + - pos: 0.5,-54.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7070 + components: + - pos: 0.5,-55.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7071 + components: + - pos: 0.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7072 + components: + - pos: 0.5,-57.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7073 + components: + - pos: 0.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7074 + components: + - pos: -0.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7075 + components: + - pos: -1.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7076 + components: + - pos: -2.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7077 + components: + - pos: -3.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7078 + components: + - pos: -4.5,-58.5 + parent: 6 + type: Transform + - uid: 7079 + components: + - pos: -5.5,-58.5 + parent: 6 + type: Transform + - uid: 7080 + components: + - pos: -6.5,-58.5 + parent: 6 + type: Transform + - uid: 7081 + components: + - pos: -7.5,-58.5 + parent: 6 + type: Transform + - uid: 7082 + components: + - pos: -8.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7083 + components: + - pos: -9.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7084 + components: + - pos: -10.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7085 + components: + - pos: -11.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7086 + components: + - pos: -12.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7087 + components: + - pos: -13.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7088 + components: + - pos: -14.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7089 + components: + - pos: -14.5,-57.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7090 + components: + - pos: -14.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7091 + components: + - pos: -15.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7092 + components: + - pos: -17.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7093 + components: + - pos: -16.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7094 + components: + - pos: -16.5,-57.5 + parent: 6 + type: Transform + - uid: 7095 + components: + - pos: -16.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7096 + components: + - pos: -17.5,-58.5 + parent: 6 + type: Transform + - uid: 7097 + components: + - pos: -18.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7098 + components: + - pos: -19.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7099 + components: + - pos: -19.5,-55.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7100 + components: + - pos: -19.5,-54.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7101 + components: + - pos: -19.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7102 + components: + - pos: -19.5,-52.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7103 + components: + - pos: -19.5,-51.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7104 + components: + - pos: -19.5,-50.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7105 + components: + - pos: -19.5,-49.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7106 + components: + - pos: -19.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7107 + components: + - pos: -20.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7108 + components: + - pos: -21.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7109 + components: + - pos: -22.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7110 + components: + - pos: -23.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7111 + components: + - pos: -24.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7112 + components: + - pos: -24.5,-47.5 + parent: 6 + type: Transform + - uid: 7113 + components: + - pos: -24.5,-46.5 + parent: 6 + type: Transform + - uid: 7114 + components: + - pos: -24.5,-45.5 + parent: 6 + type: Transform + - uid: 7115 + components: + - pos: -24.5,-44.5 + parent: 6 + type: Transform + - uid: 7116 + components: + - pos: -22.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7117 + components: + - pos: -21.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7118 + components: + - pos: -20.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7119 + components: + - pos: -19.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7120 + components: + - pos: -19.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7121 + components: + - pos: -19.5,-57.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7122 + components: + - pos: -24.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7123 + components: + - pos: -25.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7124 + components: + - pos: -26.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7125 + components: + - pos: -27.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7126 + components: + - pos: -28.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7127 + components: + - pos: -29.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7128 + components: + - pos: -30.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7129 + components: + - pos: -31.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7130 + components: + - pos: -32.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7131 + components: + - pos: -33.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7132 + components: + - pos: -34.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7133 + components: + - pos: -35.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7134 + components: + - pos: -36.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7135 + components: + - pos: -37.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7136 + components: + - pos: -38.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7137 + components: + - pos: -39.5,-59.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7138 + components: + - pos: -39.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7139 + components: + - pos: -39.5,-57.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7140 + components: + - pos: -39.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7141 + components: + - pos: -39.5,-55.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7142 + components: + - pos: -39.5,-54.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7143 + components: + - pos: -39.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7144 + components: + - pos: -38.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7145 + components: + - pos: -38.5,-52.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7146 + components: + - pos: -38.5,-51.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7147 + components: + - pos: -38.5,-50.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7148 + components: + - pos: -38.5,-49.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7149 + components: + - pos: -38.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7150 + components: + - pos: -38.5,-47.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7151 + components: + - pos: -39.5,-47.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7152 + components: + - pos: -40.5,-47.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7153 + components: + - pos: -40.5,-46.5 + parent: 6 + type: Transform + - uid: 7154 + components: + - pos: -40.5,-45.5 + parent: 6 + type: Transform + - uid: 7155 + components: + - pos: -40.5,-44.5 + parent: 6 + type: Transform + - uid: 7156 + components: + - pos: 4.5,-42.5 + parent: 6 + type: Transform + - uid: 7157 + components: + - pos: 4.5,-41.5 + parent: 6 + type: Transform + - uid: 7158 + components: + - pos: 4.5,-40.5 + parent: 6 + type: Transform + - uid: 7159 + components: + - pos: 4.5,-39.5 + parent: 6 + type: Transform + - uid: 7160 + components: + - pos: 4.5,-38.5 + parent: 6 + type: Transform + - uid: 7161 + components: + - pos: 4.5,-37.5 + parent: 6 + type: Transform + - uid: 7162 + components: + - pos: 4.5,-36.5 + parent: 6 + type: Transform + - uid: 7163 + components: + - pos: 4.5,-35.5 + parent: 6 + type: Transform + - uid: 7164 + components: + - pos: 4.5,-34.5 + parent: 6 + type: Transform + - uid: 7165 + components: + - pos: 4.5,-33.5 + parent: 6 + type: Transform + - uid: 7166 + components: + - pos: 4.5,-32.5 + parent: 6 + type: Transform + - uid: 7167 + components: + - pos: 4.5,-31.5 + parent: 6 + type: Transform + - uid: 7168 + components: + - pos: 4.5,-30.5 + parent: 6 + type: Transform + - uid: 7169 + components: + - pos: 4.5,-29.5 + parent: 6 + type: Transform + - uid: 7170 + components: + - pos: 4.5,-28.5 + parent: 6 + type: Transform + - uid: 7171 + components: + - pos: 4.5,-27.5 + parent: 6 + type: Transform + - uid: 7172 + components: + - pos: 4.5,-26.5 + parent: 6 + type: Transform + - uid: 7173 + components: + - pos: 5.5,-29.5 + parent: 6 + type: Transform + - uid: 7174 + components: + - pos: 6.5,-29.5 + parent: 6 + type: Transform + - uid: 7175 + components: + - pos: 7.5,-29.5 + parent: 6 + type: Transform + - uid: 7176 + components: + - pos: 8.5,-29.5 + parent: 6 + type: Transform + - uid: 7177 + components: + - pos: 9.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7178 + components: + - pos: 10.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7179 + components: + - pos: 11.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7180 + components: + - pos: 12.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7181 + components: + - pos: 12.5,-30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7182 + components: + - pos: 12.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7183 + components: + - pos: 13.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7184 + components: + - pos: 14.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7185 + components: + - pos: 15.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7186 + components: + - pos: 16.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7187 + components: + - pos: 17.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7188 + components: + - pos: 18.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7189 + components: + - pos: 19.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7190 + components: + - pos: 19.5,-30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7191 + components: + - pos: 19.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7192 + components: + - pos: 19.5,-28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7193 + components: + - pos: 19.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7194 + components: + - pos: 19.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7195 + components: + - pos: 19.5,-25.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7196 + components: + - pos: 19.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7197 + components: + - pos: 18.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7198 + components: + - pos: 17.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7199 + components: + - pos: 16.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7200 + components: + - pos: 16.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7201 + components: + - pos: 16.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7202 + components: + - pos: 17.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7203 + components: + - pos: 18.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7204 + components: + - pos: 19.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7205 + components: + - pos: 19.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7206 + components: + - pos: 20.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7207 + components: + - pos: 21.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7208 + components: + - pos: 19.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7209 + components: + - pos: 22.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7210 + components: + - pos: 22.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7211 + components: + - pos: 23.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7213 + components: + - pos: 24.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7214 + components: + - pos: 24.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7215 + components: + - pos: 25.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7216 + components: + - pos: 26.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7217 + components: + - pos: 26.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7227 + components: + - pos: 44.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7228 + components: + - pos: 45.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7229 + components: + - pos: 19.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7230 + components: + - pos: 19.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7231 + components: + - pos: 19.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7232 + components: + - pos: 19.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7233 + components: + - pos: 19.5,-15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7234 + components: + - pos: 19.5,-14.5 + parent: 6 + type: Transform + - uid: 7235 + components: + - pos: 19.5,-13.5 + parent: 6 + type: Transform + - uid: 7236 + components: + - pos: 19.5,-12.5 + parent: 6 + type: Transform + - uid: 7237 + components: + - pos: 19.5,-11.5 + parent: 6 + type: Transform + - uid: 7238 + components: + - pos: 19.5,-10.5 + parent: 6 + type: Transform + - uid: 7239 + components: + - pos: 20.5,-10.5 + parent: 6 + type: Transform + - uid: 7240 + components: + - pos: 21.5,-10.5 + parent: 6 + type: Transform + - uid: 7241 + components: + - pos: 21.5,-9.5 + parent: 6 + type: Transform + - uid: 7242 + components: + - pos: 21.5,-8.5 + parent: 6 + type: Transform + - uid: 7243 + components: + - pos: 21.5,-7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7244 + components: + - pos: 22.5,-7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7245 + components: + - pos: 23.5,-7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7246 + components: + - pos: 24.5,-7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7247 + components: + - pos: 24.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7248 + components: + - pos: 24.5,-5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7249 + components: + - pos: 24.5,-4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7250 + components: + - pos: 24.5,-3.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7251 + components: + - pos: 24.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7252 + components: + - pos: 23.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7253 + components: + - pos: 22.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7254 + components: + - pos: 21.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7255 + components: + - pos: 21.5,-3.5 + parent: 6 + type: Transform + - uid: 7256 + components: + - pos: 21.5,-4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7257 + components: + - pos: 22.5,-4.5 + parent: 6 + type: Transform + - uid: 7258 + components: + - pos: -5.5,-10.5 + parent: 6 + type: Transform + - uid: 7259 + components: + - pos: -4.5,-10.5 + parent: 6 + type: Transform + - uid: 7260 + components: + - pos: -3.5,-10.5 + parent: 6 + type: Transform + - uid: 7261 + components: + - pos: -2.5,-10.5 + parent: 6 + type: Transform + - uid: 7262 + components: + - pos: -1.5,-10.5 + parent: 6 + type: Transform + - uid: 7263 + components: + - pos: -0.5,-10.5 + parent: 6 + type: Transform + - uid: 7264 + components: + - pos: 0.5,-10.5 + parent: 6 + type: Transform + - uid: 7265 + components: + - pos: 1.5,-10.5 + parent: 6 + type: Transform + - uid: 7266 + components: + - pos: 2.5,-10.5 + parent: 6 + type: Transform + - uid: 7267 + components: + - pos: 3.5,-10.5 + parent: 6 + type: Transform + - uid: 7268 + components: + - pos: 4.5,-10.5 + parent: 6 + type: Transform + - uid: 7269 + components: + - pos: 5.5,-10.5 + parent: 6 + type: Transform + - uid: 7270 + components: + - pos: 6.5,-10.5 + parent: 6 + type: Transform + - uid: 7271 + components: + - pos: 7.5,-10.5 + parent: 6 + type: Transform + - uid: 7272 + components: + - pos: 8.5,-10.5 + parent: 6 + type: Transform + - uid: 7273 + components: + - pos: 9.5,-10.5 + parent: 6 + type: Transform + - uid: 7274 + components: + - pos: 10.5,-10.5 + parent: 6 + type: Transform + - uid: 7275 + components: + - pos: 11.5,-10.5 + parent: 6 + type: Transform + - uid: 7276 + components: + - pos: 12.5,-10.5 + parent: 6 + type: Transform + - uid: 7277 + components: + - pos: 13.5,-10.5 + parent: 6 + type: Transform + - uid: 7278 + components: + - pos: 14.5,-10.5 + parent: 6 + type: Transform + - uid: 7279 + components: + - pos: 15.5,-10.5 + parent: 6 + type: Transform + - uid: 7280 + components: + - pos: 16.5,-10.5 + parent: 6 + type: Transform + - uid: 7281 + components: + - pos: 17.5,-10.5 + parent: 6 + type: Transform + - uid: 7282 + components: + - pos: 18.5,-10.5 + parent: 6 + type: Transform + - uid: 7283 + components: + - pos: -41.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7284 + components: + - pos: -40.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7285 + components: + - pos: -39.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7286 + components: + - pos: -38.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7287 + components: + - pos: -37.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7288 + components: + - pos: -36.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7289 + components: + - pos: -35.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7290 + components: + - pos: -34.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7291 + components: + - pos: -33.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7292 + components: + - pos: -33.5,-25.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7293 + components: + - pos: -33.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7294 + components: + - pos: -33.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7295 + components: + - pos: -33.5,-28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7296 + components: + - pos: -33.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7297 + components: + - pos: -32.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7298 + components: + - pos: -31.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7299 + components: + - pos: -30.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7300 + components: + - pos: -29.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7301 + components: + - pos: -15.5,-35.5 + parent: 6 + type: Transform + - uid: 7302 + components: + - pos: -16.5,-35.5 + parent: 6 + type: Transform + - uid: 7303 + components: + - pos: -17.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7304 + components: + - pos: -18.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7305 + components: + - pos: -19.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7306 + components: + - pos: -20.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7307 + components: + - pos: -21.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7308 + components: + - pos: -22.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7309 + components: + - pos: -23.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7310 + components: + - pos: -24.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7311 + components: + - pos: -25.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7312 + components: + - pos: -26.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7313 + components: + - pos: -27.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7314 + components: + - pos: -28.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7315 + components: + - pos: -29.5,-35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7316 + components: + - pos: -29.5,-34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7317 + components: + - pos: -29.5,-33.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7318 + components: + - pos: -29.5,-32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7319 + components: + - pos: -29.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7320 + components: + - pos: -29.5,-30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7321 + components: + - pos: -31.5,-30.5 + parent: 6 + type: Transform + - uid: 7322 + components: + - pos: -31.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7323 + components: + - pos: -32.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7324 + components: + - pos: -15.5,-42.5 + parent: 6 + type: Transform + - uid: 7325 + components: + - pos: -15.5,-41.5 + parent: 6 + type: Transform + - uid: 7326 + components: + - pos: -15.5,-40.5 + parent: 6 + type: Transform + - uid: 7327 + components: + - pos: -15.5,-39.5 + parent: 6 + type: Transform + - uid: 7328 + components: + - pos: -15.5,-38.5 + parent: 6 + type: Transform + - uid: 7329 + components: + - pos: -15.5,-37.5 + parent: 6 + type: Transform + - uid: 7330 + components: + - pos: -15.5,-36.5 + parent: 6 + type: Transform + - uid: 7331 + components: + - pos: -15.5,-34.5 + parent: 6 + type: Transform + - uid: 7332 + components: + - pos: -15.5,-33.5 + parent: 6 + type: Transform + - uid: 7333 + components: + - pos: -15.5,-32.5 + parent: 6 + type: Transform + - uid: 7334 + components: + - pos: -15.5,-31.5 + parent: 6 + type: Transform + - uid: 7335 + components: + - pos: -15.5,-30.5 + parent: 6 + type: Transform + - uid: 7336 + components: + - pos: -15.5,-29.5 + parent: 6 + type: Transform + - uid: 7337 + components: + - pos: -15.5,-28.5 + parent: 6 + type: Transform + - uid: 7338 + components: + - pos: -15.5,-27.5 + parent: 6 + type: Transform + - uid: 7339 + components: + - pos: -15.5,-26.5 + parent: 6 + type: Transform + - uid: 7340 + components: + - pos: -15.5,-25.5 + parent: 6 + type: Transform + - uid: 7341 + components: + - pos: -15.5,-24.5 + parent: 6 + type: Transform + - uid: 7342 + components: + - pos: -15.5,-23.5 + parent: 6 + type: Transform + - uid: 7343 + components: + - pos: -15.5,-22.5 + parent: 6 + type: Transform + - uid: 7344 + components: + - pos: -15.5,-21.5 + parent: 6 + type: Transform + - uid: 7345 + components: + - pos: -15.5,-20.5 + parent: 6 + type: Transform + - uid: 7346 + components: + - pos: -15.5,-19.5 + parent: 6 + type: Transform + - uid: 7347 + components: + - pos: -15.5,-18.5 + parent: 6 + type: Transform + - uid: 7348 + components: + - pos: -15.5,-17.5 + parent: 6 + type: Transform + - uid: 7349 + components: + - pos: -15.5,-16.5 + parent: 6 + type: Transform + - uid: 7350 + components: + - pos: -15.5,-15.5 + parent: 6 + type: Transform + - uid: 7351 + components: + - pos: -15.5,-14.5 + parent: 6 + type: Transform + - uid: 7352 + components: + - pos: -15.5,-13.5 + parent: 6 + type: Transform + - uid: 7353 + components: + - pos: -15.5,-12.5 + parent: 6 + type: Transform + - uid: 7354 + components: + - pos: -15.5,-11.5 + parent: 6 + type: Transform + - uid: 7355 + components: + - pos: -37.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7356 + components: + - pos: -37.5,-54.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7357 + components: + - pos: -37.5,-55.5 + parent: 6 + type: Transform + - uid: 7358 + components: + - pos: -37.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7855 + components: + - pos: -82.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7856 + components: + - pos: -82.5,-15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7857 + components: + - pos: -81.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7858 + components: + - pos: -78.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7859 + components: + - pos: -78.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7860 + components: + - pos: -78.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7861 + components: + - pos: -78.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7862 + components: + - pos: -78.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7863 + components: + - pos: -78.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7864 + components: + - pos: -78.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7865 + components: + - pos: -78.5,-15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7866 + components: + - pos: -76.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7867 + components: + - pos: -76.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7868 + components: + - pos: -76.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7869 + components: + - pos: -76.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7870 + components: + - pos: -76.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7871 + components: + - pos: -76.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7872 + components: + - pos: -76.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7873 + components: + - pos: -76.5,-15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7874 + components: + - pos: -77.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7876 + components: + - pos: -78.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7877 + components: + - pos: -78.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7878 + components: + - pos: -78.5,-28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7879 + components: + - pos: -78.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7880 + components: + - pos: -78.5,-30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7881 + components: + - pos: -78.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7882 + components: + - pos: -78.5,-32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7884 + components: + - pos: -76.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7885 + components: + - pos: -76.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7886 + components: + - pos: -76.5,-28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7887 + components: + - pos: -76.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7888 + components: + - pos: -76.5,-30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7889 + components: + - pos: -76.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7890 + components: + - pos: -76.5,-32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7893 + components: + - pos: -74.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7894 + components: + - pos: -74.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7895 + components: + - pos: -74.5,-28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7896 + components: + - pos: -74.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7897 + components: + - pos: -74.5,-30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7898 + components: + - pos: -74.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7899 + components: + - pos: -74.5,-32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7901 + components: + - pos: -72.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7902 + components: + - pos: -72.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7903 + components: + - pos: -72.5,-28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7904 + components: + - pos: -72.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7905 + components: + - pos: -72.5,-30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7906 + components: + - pos: -72.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7907 + components: + - pos: -72.5,-32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 7934 + components: + - pos: -88.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8130 + components: + - pos: -19.5,28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8131 + components: + - pos: -18.5,28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8132 + components: + - pos: -17.5,28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8133 + components: + - pos: -16.5,28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8134 + components: + - pos: -15.5,28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8137 + components: + - pos: -19.5,26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8138 + components: + - pos: -18.5,26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8139 + components: + - pos: -17.5,26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8140 + components: + - pos: -16.5,26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8141 + components: + - pos: -15.5,26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8143 + components: + - pos: -11.5,26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8144 + components: + - pos: -10.5,26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8145 + components: + - pos: -9.5,26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8146 + components: + - pos: -8.5,26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8147 + components: + - pos: -7.5,26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8148 + components: + - pos: -6.5,26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8149 + components: + - pos: -11.5,27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8150 + components: + - pos: -11.5,28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8151 + components: + - pos: -10.5,28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8152 + components: + - pos: -9.5,28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8153 + components: + - pos: -8.5,28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8154 + components: + - pos: -7.5,28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8155 + components: + - pos: -6.5,28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8156 + components: + - pos: -11.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8157 + components: + - pos: -10.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8158 + components: + - pos: -9.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8159 + components: + - pos: -8.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8160 + components: + - pos: -7.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8161 + components: + - pos: -6.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8162 + components: + - pos: -11.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8163 + components: + - pos: -10.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8164 + components: + - pos: -9.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8165 + components: + - pos: -8.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8166 + components: + - pos: -7.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8167 + components: + - pos: -6.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8168 + components: + - pos: -11.5,23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8169 + components: + - pos: -11.5,18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8170 + components: + - pos: -10.5,18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8171 + components: + - pos: -9.5,18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8172 + components: + - pos: -8.5,18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8173 + components: + - pos: -7.5,18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8174 + components: + - pos: -6.5,18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8176 + components: + - pos: -11.5,19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8177 + components: + - pos: -11.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8178 + components: + - pos: -10.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8179 + components: + - pos: -9.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8180 + components: + - pos: -8.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8181 + components: + - pos: -7.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8182 + components: + - pos: -6.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8346 + components: + - pos: 5.5,-13.5 + parent: 6 + type: Transform + - uid: 8348 + components: + - pos: -41.5,4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8349 + components: + - pos: -41.5,5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8350 + components: + - pos: -41.5,6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8351 + components: + - pos: -40.5,6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8352 + components: + - pos: -39.5,6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8353 + components: + - pos: -38.5,6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8354 + components: + - pos: -37.5,6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8355 + components: + - pos: -36.5,6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8356 + components: + - pos: -35.5,6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8357 + components: + - pos: -34.5,6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8358 + components: + - pos: -33.5,6.5 + parent: 6 + type: Transform + - uid: 8360 + components: + - pos: -31.5,6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8362 + components: + - pos: -29.5,6.5 + parent: 6 + type: Transform + - uid: 8363 + components: + - pos: -28.5,6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8364 + components: + - pos: -27.5,6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8365 + components: + - pos: -26.5,6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8366 + components: + - pos: -25.5,6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8367 + components: + - pos: -24.5,6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8368 + components: + - pos: 5.5,-12.5 + parent: 6 + type: Transform + - uid: 8372 + components: + - pos: -20.5,7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 8373 + components: + - pos: -18.5,6.5 + parent: 6 + type: Transform + - uid: 8374 + components: + - pos: -17.5,6.5 + parent: 6 + type: Transform + - uid: 8375 + components: + - pos: -16.5,6.5 + parent: 6 + type: Transform + - uid: 8376 + components: + - pos: -15.5,6.5 + parent: 6 + type: Transform + - uid: 8377 + components: + - pos: -15.5,5.5 + parent: 6 + type: Transform + - uid: 8378 + components: + - pos: -15.5,4.5 + parent: 6 + type: Transform + - uid: 8379 + components: + - pos: -15.5,3.5 + parent: 6 + type: Transform + - uid: 8380 + components: + - pos: -15.5,2.5 + parent: 6 + type: Transform + - uid: 9499 + components: + - pos: -83.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9500 + components: + - pos: -82.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9501 + components: + - pos: -81.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9502 + components: + - pos: -81.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9503 + components: + - pos: -81.5,-25.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 9756 + components: + - pos: 5.5,-11.5 + parent: 6 + type: Transform + - uid: 10199 + components: + - pos: -57.5,-46.5 + parent: 6 + type: Transform + - uid: 10200 + components: + - pos: -57.5,-45.5 + parent: 6 + type: Transform + - uid: 10201 + components: + - pos: -57.5,-43.5 + parent: 6 + type: Transform + - uid: 10202 + components: + - pos: -57.5,-44.5 + parent: 6 + type: Transform + - uid: 10203 + components: + - pos: -56.5,-43.5 + parent: 6 + type: Transform + - uid: 10207 + components: + - pos: -55.5,-43.5 + parent: 6 + type: Transform + - uid: 10208 + components: + - pos: -54.5,-43.5 + parent: 6 + type: Transform + - uid: 10848 + components: + - pos: -21.5,7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10849 + components: + - pos: -22.5,7.5 + parent: 6 + type: Transform + - uid: 10850 + components: + - pos: -23.5,7.5 + parent: 6 + type: Transform + - uid: 10851 + components: + - pos: -24.5,7.5 + parent: 6 + type: Transform + - uid: 10852 + components: + - pos: 5.5,-14.5 + parent: 6 + type: Transform + - uid: 10853 + components: + - pos: 5.5,-15.5 + parent: 6 + type: Transform + - uid: 10854 + components: + - pos: 5.5,-16.5 + parent: 6 + type: Transform + - uid: 10855 + components: + - pos: 5.5,-17.5 + parent: 6 + type: Transform + - uid: 10856 + components: + - pos: 5.5,-18.5 + parent: 6 + type: Transform + - uid: 10857 + components: + - pos: 5.5,-19.5 + parent: 6 + type: Transform + - uid: 10858 + components: + - pos: 4.5,-19.5 + parent: 6 + type: Transform + - uid: 10859 + components: + - pos: 4.5,-20.5 + parent: 6 + type: Transform + - uid: 10860 + components: + - pos: 4.5,-21.5 + parent: 6 + type: Transform + - uid: 10861 + components: + - pos: 4.5,-22.5 + parent: 6 + type: Transform + - uid: 10862 + components: + - pos: 4.5,-23.5 + parent: 6 + type: Transform + - uid: 10863 + components: + - pos: 4.5,-24.5 + parent: 6 + type: Transform + - uid: 10864 + components: + - pos: 4.5,-25.5 + parent: 6 + type: Transform + - uid: 13746 + components: + - pos: 1.5,0.5 + parent: 13645 + type: Transform + - uid: 13747 + components: + - pos: 1.5,1.5 + parent: 13645 + type: Transform + - uid: 13796 + components: + - pos: -84.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13797 + components: + - pos: -84.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13798 + components: + - pos: -84.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13806 + components: + - pos: -84.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13811 + components: + - pos: -27.5,-2.5 + parent: 6 + type: Transform + - uid: 13828 + components: + - pos: -84.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13829 + components: + - pos: -84.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13830 + components: + - pos: -84.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13831 + components: + - pos: -84.5,-15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13838 + components: + - pos: -86.5,-15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13839 + components: + - pos: -86.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13840 + components: + - pos: -86.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13841 + components: + - pos: -86.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13842 + components: + - pos: -86.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13843 + components: + - pos: -86.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13844 + components: + - pos: -86.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13845 + components: + - pos: -86.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13846 + components: + - pos: -84.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13847 + components: + - pos: -84.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13848 + components: + - pos: -84.5,-28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13849 + components: + - pos: -84.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13850 + components: + - pos: -84.5,-30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13851 + components: + - pos: -84.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13852 + components: + - pos: -84.5,-32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13853 + components: + - pos: -86.5,-32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13854 + components: + - pos: -86.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13855 + components: + - pos: -86.5,-30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13856 + components: + - pos: -86.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13857 + components: + - pos: -86.5,-28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13858 + components: + - pos: -86.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13859 + components: + - pos: -86.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13860 + components: + - pos: -85.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13861 + components: + - pos: -85.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13862 + components: + - pos: -80.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13863 + components: + - pos: -79.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13864 + components: + - pos: -61.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13865 + components: + - pos: -61.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13866 + components: + - pos: -62.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13867 + components: + - pos: -87.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13868 + components: + - pos: -86.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13869 + components: + - pos: -85.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13870 + components: + - pos: -85.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13871 + components: + - pos: -85.5,-25.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13872 + components: + - pos: -84.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13953 + components: + - pos: -6.5,30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13954 + components: + - pos: -7.5,30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13955 + components: + - pos: -8.5,30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13956 + components: + - pos: -9.5,30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13957 + components: + - pos: -10.5,30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13958 + components: + - pos: -11.5,30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13959 + components: + - pos: -6.5,32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13960 + components: + - pos: -7.5,32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13961 + components: + - pos: -8.5,32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13962 + components: + - pos: -9.5,32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13963 + components: + - pos: -10.5,32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13964 + components: + - pos: -11.5,32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13965 + components: + - pos: -11.5,31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13966 + components: + - pos: -19.5,30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13967 + components: + - pos: -18.5,30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13968 + components: + - pos: -17.5,30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13969 + components: + - pos: -16.5,30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13970 + components: + - pos: -15.5,30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13971 + components: + - pos: -19.5,32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13972 + components: + - pos: -18.5,32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13973 + components: + - pos: -17.5,32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13974 + components: + - pos: -16.5,32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13975 + components: + - pos: -15.5,32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13976 + components: + - pos: -15.5,31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13977 + components: + - pos: -19.5,36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13978 + components: + - pos: -18.5,36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13979 + components: + - pos: -17.5,36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13980 + components: + - pos: -16.5,36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13981 + components: + - pos: -15.5,36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13982 + components: + - pos: -19.5,34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13983 + components: + - pos: -18.5,34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13984 + components: + - pos: -17.5,34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13985 + components: + - pos: -16.5,34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13986 + components: + - pos: -15.5,34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13987 + components: + - pos: -15.5,35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13988 + components: + - pos: -11.5,36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13989 + components: + - pos: -10.5,36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13990 + components: + - pos: -9.5,36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13991 + components: + - pos: -8.5,36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13992 + components: + - pos: -7.5,36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13993 + components: + - pos: -6.5,36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13994 + components: + - pos: -6.5,34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13995 + components: + - pos: -7.5,34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13996 + components: + - pos: -8.5,34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13997 + components: + - pos: -9.5,34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13998 + components: + - pos: -10.5,34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 13999 + components: + - pos: -11.5,34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14000 + components: + - pos: -11.5,35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14001 + components: + - pos: -14.5,35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14002 + components: + - pos: -13.5,35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14003 + components: + - pos: -13.5,36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14004 + components: + - pos: -13.5,37.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14005 + components: + - pos: -13.5,38.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14006 + components: + - pos: -12.5,35.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14007 + components: + - pos: -13.5,34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14008 + components: + - pos: -13.5,33.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14009 + components: + - pos: -13.5,32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14010 + components: + - pos: -13.5,31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14011 + components: + - pos: -12.5,31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14012 + components: + - pos: -14.5,31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14026 + components: + - pos: -13.5,30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14027 + components: + - pos: -13.5,29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14028 + components: + - pos: -13.5,28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14029 + components: + - pos: -13.5,27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14030 + components: + - pos: -12.5,27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14031 + components: + - pos: -14.5,27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14215 + components: + - pos: -5.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14216 + components: + - pos: -4.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14217 + components: + - pos: -5.5,18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14218 + components: + - pos: -4.5,18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14219 + components: + - pos: -5.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14220 + components: + - pos: -4.5,22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14221 + components: + - pos: -5.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14222 + components: + - pos: -4.5,24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14223 + components: + - pos: -5.5,26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14224 + components: + - pos: -4.5,26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14225 + components: + - pos: -5.5,28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14226 + components: + - pos: -4.5,28.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14227 + components: + - pos: -5.5,30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14228 + components: + - pos: -4.5,30.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14229 + components: + - pos: -5.5,32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14230 + components: + - pos: -4.5,32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14231 + components: + - pos: -5.5,34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14232 + components: + - pos: -4.5,34.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14233 + components: + - pos: -5.5,36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14234 + components: + - pos: -4.5,36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound +- proto: CableHVStack + entities: + - uid: 5384 + components: + - pos: -11.858889,-56.331245 + parent: 6 + type: Transform + - uid: 6408 + components: + - pos: -48.474102,-25.220161 + parent: 6 + type: Transform + - uid: 6679 + components: + - pos: -22.593382,-61.335278 + parent: 6 + type: Transform + - uid: 13405 + components: + - pos: 28.687412,1.3960637 + parent: 6 + type: Transform +- proto: CableMV + entities: + - uid: 5239 + components: + - pos: 26.5,0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6700 + components: + - pos: -78.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6701 + components: + - pos: -78.5,-49.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6702 + components: + - pos: -78.5,-50.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6703 + components: + - pos: -77.5,-50.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6704 + components: + - pos: -79.5,-50.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6705 + components: + - pos: -83.5,-46.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6706 + components: + - pos: -83.5,-45.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6707 + components: + - pos: -83.5,-44.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6708 + components: + - pos: -83.5,-41.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 6709 + components: + - pos: -83.5,-40.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10352 + components: + - pos: -29.5,14.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10353 + components: + - pos: -30.5,14.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10354 + components: + - pos: -30.5,13.5 + parent: 6 + type: Transform + - uid: 10355 + components: + - pos: -30.5,12.5 + parent: 6 + type: Transform + - uid: 10356 + components: + - pos: -30.5,11.5 + parent: 6 + type: Transform + - uid: 10357 + components: + - pos: -30.5,10.5 + parent: 6 + type: Transform + - uid: 10358 + components: + - pos: -30.5,9.5 + parent: 6 + type: Transform + - uid: 10359 + components: + - pos: -31.5,9.5 + parent: 6 + type: Transform + - uid: 10360 + components: + - pos: -31.5,8.5 + parent: 6 + type: Transform + - uid: 10361 + components: + - pos: -31.5,7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10362 + components: + - pos: -31.5,6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10363 + components: + - pos: -31.5,5.5 + parent: 6 + type: Transform + - uid: 10364 + components: + - pos: -31.5,4.5 + parent: 6 + type: Transform + - uid: 10365 + components: + - pos: -31.5,3.5 + parent: 6 + type: Transform + - uid: 10366 + components: + - pos: -31.5,2.5 + parent: 6 + type: Transform + - uid: 10367 + components: + - pos: -31.5,1.5 + parent: 6 + type: Transform + - uid: 10368 + components: + - pos: -31.5,0.5 + parent: 6 + type: Transform + - uid: 10369 + components: + - pos: -31.5,-0.5 + parent: 6 + type: Transform + - uid: 10370 + components: + - pos: -31.5,-1.5 + parent: 6 + type: Transform + - uid: 10371 + components: + - pos: -30.5,-1.5 + parent: 6 + type: Transform + - uid: 10372 + components: + - pos: -29.5,-1.5 + parent: 6 + type: Transform + - uid: 10373 + components: + - pos: -28.5,-1.5 + parent: 6 + type: Transform + - uid: 10374 + components: + - pos: -27.5,-1.5 + parent: 6 + type: Transform + - uid: 10375 + components: + - pos: -26.5,-1.5 + parent: 6 + type: Transform + - uid: 10376 + components: + - pos: -25.5,-1.5 + parent: 6 + type: Transform + - uid: 10377 + components: + - pos: -25.5,-2.5 + parent: 6 + type: Transform + - uid: 10378 + components: + - pos: -25.5,-3.5 + parent: 6 + type: Transform + - uid: 10379 + components: + - pos: -24.5,-3.5 + parent: 6 + type: Transform + - uid: 10380 + components: + - pos: -30.5,1.5 + parent: 6 + type: Transform + - uid: 10381 + components: + - pos: -29.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10382 + components: + - pos: -32.5,-0.5 + parent: 6 + type: Transform + - uid: 10383 + components: + - pos: -33.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10384 + components: + - pos: -10.5,-1.5 + parent: 6 + type: Transform + - uid: 10385 + components: + - pos: -10.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10386 + components: + - pos: -10.5,0.5 + parent: 6 + type: Transform + - uid: 10387 + components: + - pos: -10.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10388 + components: + - pos: -11.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10389 + components: + - pos: -12.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10390 + components: + - pos: -12.5,0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10391 + components: + - pos: -12.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10392 + components: + - pos: -12.5,-1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10393 + components: + - pos: -12.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10394 + components: + - pos: -12.5,-3.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10395 + components: + - pos: -12.5,-4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10396 + components: + - pos: -12.5,-5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10397 + components: + - pos: -12.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10398 + components: + - pos: -11.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10399 + components: + - pos: -10.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10400 + components: + - pos: -9.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10401 + components: + - pos: -8.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10402 + components: + - pos: -7.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10403 + components: + - pos: -6.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10404 + components: + - pos: -5.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10405 + components: + - pos: -5.5,-5.5 + parent: 6 + type: Transform + - uid: 10406 + components: + - pos: -4.5,-5.5 + parent: 6 + type: Transform + - uid: 10407 + components: + - pos: -3.5,-5.5 + parent: 6 + type: Transform + - uid: 10408 + components: + - pos: -3.5,-4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10409 + components: + - pos: -13.5,1.5 + parent: 6 + type: Transform + - uid: 10410 + components: + - pos: -14.5,1.5 + parent: 6 + type: Transform + - uid: 10411 + components: + - pos: -14.5,2.5 + parent: 6 + type: Transform + - uid: 10412 + components: + - pos: -14.5,3.5 + parent: 6 + type: Transform + - uid: 10413 + components: + - pos: -13.5,3.5 + parent: 6 + type: Transform + - uid: 10414 + components: + - pos: -12.5,3.5 + parent: 6 + type: Transform + - uid: 10415 + components: + - pos: -11.5,3.5 + parent: 6 + type: Transform + - uid: 10416 + components: + - pos: -10.5,3.5 + parent: 6 + type: Transform + - uid: 10417 + components: + - pos: -9.5,3.5 + parent: 6 + type: Transform + - uid: 10418 + components: + - pos: -8.5,3.5 + parent: 6 + type: Transform + - uid: 10419 + components: + - pos: -7.5,3.5 + parent: 6 + type: Transform + - uid: 10420 + components: + - pos: -6.5,3.5 + parent: 6 + type: Transform + - uid: 10421 + components: + - pos: -6.5,4.5 + parent: 6 + type: Transform + - uid: 10422 + components: + - pos: -6.5,5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10423 + components: + - pos: -6.5,-7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10424 + components: + - pos: -6.5,-8.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10425 + components: + - pos: -6.5,-9.5 + parent: 6 + type: Transform + - uid: 10426 + components: + - pos: -6.5,-10.5 + parent: 6 + type: Transform + - uid: 10427 + components: + - pos: -6.5,-11.5 + parent: 6 + type: Transform + - uid: 10428 + components: + - pos: -6.5,-12.5 + parent: 6 + type: Transform + - uid: 10429 + components: + - pos: -6.5,-13.5 + parent: 6 + type: Transform + - uid: 10430 + components: + - pos: -6.5,-14.5 + parent: 6 + type: Transform + - uid: 10431 + components: + - pos: -6.5,-15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10432 + components: + - pos: -5.5,-15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10433 + components: + - pos: -4.5,-15.5 + parent: 6 + type: Transform + - uid: 10434 + components: + - pos: -3.5,-15.5 + parent: 6 + type: Transform + - uid: 10435 + components: + - pos: -2.5,-15.5 + parent: 6 + type: Transform + - uid: 10436 + components: + - pos: -1.5,-15.5 + parent: 6 + type: Transform + - uid: 10437 + components: + - pos: -0.5,-15.5 + parent: 6 + type: Transform + - uid: 10438 + components: + - pos: -0.5,-16.5 + parent: 6 + type: Transform + - uid: 10439 + components: + - pos: -0.5,-17.5 + parent: 6 + type: Transform + - uid: 10440 + components: + - pos: -0.5,-18.5 + parent: 6 + type: Transform + - uid: 10441 + components: + - pos: -0.5,-19.5 + parent: 6 + type: Transform + - uid: 10442 + components: + - pos: -0.5,-20.5 + parent: 6 + type: Transform + - uid: 10443 + components: + - pos: -0.5,-21.5 + parent: 6 + type: Transform + - uid: 10444 + components: + - pos: -0.5,-22.5 + parent: 6 + type: Transform + - uid: 10445 + components: + - pos: -0.5,-23.5 + parent: 6 + type: Transform + - uid: 10446 + components: + - pos: -1.5,-23.5 + parent: 6 + type: Transform + - uid: 10447 + components: + - pos: -2.5,-23.5 + parent: 6 + type: Transform + - uid: 10448 + components: + - pos: -3.5,-23.5 + parent: 6 + type: Transform + - uid: 10449 + components: + - pos: -4.5,-23.5 + parent: 6 + type: Transform + - uid: 10450 + components: + - pos: -5.5,-23.5 + parent: 6 + type: Transform + - uid: 10451 + components: + - pos: -6.5,-23.5 + parent: 6 + type: Transform + - uid: 10452 + components: + - pos: -6.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10453 + components: + - pos: -1.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10454 + components: + - pos: 22.5,-4.5 + parent: 6 + type: Transform + - uid: 10455 + components: + - pos: 21.5,-4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10456 + components: + - pos: 21.5,-3.5 + parent: 6 + type: Transform + - uid: 10457 + components: + - pos: 21.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10458 + components: + - pos: 22.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10459 + components: + - pos: 23.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10460 + components: + - pos: 23.5,-1.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10461 + components: + - pos: 23.5,-0.5 + parent: 6 + type: Transform + - uid: 10462 + components: + - pos: 24.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10463 + components: + - pos: 25.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10464 + components: + - pos: 25.5,0.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10467 + components: + - pos: 20.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10468 + components: + - pos: 19.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10469 + components: + - pos: 19.5,-3.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10470 + components: + - pos: 19.5,-4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10471 + components: + - pos: 18.5,-4.5 + parent: 6 + type: Transform + - uid: 10472 + components: + - pos: 17.5,-4.5 + parent: 6 + type: Transform + - uid: 10473 + components: + - pos: 16.5,-4.5 + parent: 6 + type: Transform + - uid: 10474 + components: + - pos: 15.5,-4.5 + parent: 6 + type: Transform + - uid: 10475 + components: + - pos: 14.5,-4.5 + parent: 6 + type: Transform + - uid: 10476 + components: + - pos: 14.5,-3.5 + parent: 6 + type: Transform + - uid: 10477 + components: + - pos: 14.5,-2.5 + parent: 6 + type: Transform + - uid: 10478 + components: + - pos: 14.5,-1.5 + parent: 6 + type: Transform + - uid: 10479 + components: + - pos: 14.5,-0.5 + parent: 6 + type: Transform + - uid: 10480 + components: + - pos: 14.5,0.5 + parent: 6 + type: Transform + - uid: 10481 + components: + - pos: 14.5,1.5 + parent: 6 + type: Transform + - uid: 10482 + components: + - pos: 14.5,2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10483 + components: + - pos: 14.5,3.5 + parent: 6 + type: Transform + - uid: 10484 + components: + - pos: 14.5,4.5 + parent: 6 + type: Transform + - uid: 10485 + components: + - pos: 14.5,5.5 + parent: 6 + type: Transform + - uid: 10486 + components: + - pos: 14.5,6.5 + parent: 6 + type: Transform + - uid: 10487 + components: + - pos: 14.5,7.5 + parent: 6 + type: Transform + - uid: 10488 + components: + - pos: 14.5,8.5 + parent: 6 + type: Transform + - uid: 10489 + components: + - pos: 14.5,9.5 + parent: 6 + type: Transform + - uid: 10490 + components: + - pos: 14.5,10.5 + parent: 6 + type: Transform + - uid: 10491 + components: + - pos: 14.5,11.5 + parent: 6 + type: Transform + - uid: 10492 + components: + - pos: 14.5,12.5 + parent: 6 + type: Transform + - uid: 10493 + components: + - pos: 14.5,13.5 + parent: 6 + type: Transform + - uid: 10494 + components: + - pos: 14.5,14.5 + parent: 6 + type: Transform + - uid: 10495 + components: + - pos: 14.5,15.5 + parent: 6 + type: Transform + - uid: 10496 + components: + - pos: 14.5,16.5 + parent: 6 + type: Transform + - uid: 10497 + components: + - pos: 14.5,17.5 + parent: 6 + type: Transform + - uid: 10498 + components: + - pos: 15.5,17.5 + parent: 6 + type: Transform + - uid: 10499 + components: + - pos: 16.5,17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10500 + components: + - pos: 24.5,-2.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10501 + components: + - pos: 24.5,-3.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10502 + components: + - pos: 24.5,-4.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10503 + components: + - pos: 24.5,-5.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10504 + components: + - pos: 24.5,-6.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10505 + components: + - pos: 24.5,-7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10506 + components: + - pos: 23.5,-7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10507 + components: + - pos: 22.5,-7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10508 + components: + - pos: 21.5,-7.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10509 + components: + - pos: 21.5,-8.5 + parent: 6 + type: Transform + - uid: 10510 + components: + - pos: 21.5,-9.5 + parent: 6 + type: Transform + - uid: 10511 + components: + - pos: 21.5,-10.5 + parent: 6 + type: Transform + - uid: 10512 + components: + - pos: 20.5,-10.5 + parent: 6 + type: Transform + - uid: 10513 + components: + - pos: 19.5,-10.5 + parent: 6 + type: Transform + - uid: 10514 + components: + - pos: 19.5,-11.5 + parent: 6 + type: Transform + - uid: 10515 + components: + - pos: 19.5,-12.5 + parent: 6 + type: Transform + - uid: 10516 + components: + - pos: 19.5,-13.5 + parent: 6 + type: Transform + - uid: 10517 + components: + - pos: 19.5,-14.5 + parent: 6 + type: Transform + - uid: 10518 + components: + - pos: 19.5,-15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10519 + components: + - pos: 19.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10522 + components: + - pos: 19.5,-17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10523 + components: + - pos: 19.5,-18.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10524 + components: + - pos: 19.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10525 + components: + - pos: 18.5,-19.5 + parent: 6 + type: Transform + - uid: 10526 + components: + - pos: 17.5,-19.5 + parent: 6 + type: Transform + - uid: 10527 + components: + - pos: 16.5,-19.5 + parent: 6 + type: Transform + - uid: 10528 + components: + - pos: 15.5,-19.5 + parent: 6 + type: Transform + - uid: 10529 + components: + - pos: 14.5,-19.5 + parent: 6 + type: Transform + - uid: 10530 + components: + - pos: 13.5,-19.5 + parent: 6 + type: Transform + - uid: 10531 + components: + - pos: 12.5,-19.5 + parent: 6 + type: Transform + - uid: 10532 + components: + - pos: 11.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10533 + components: + - pos: 8.5,-42.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10534 + components: + - pos: 9.5,-42.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10535 + components: + - pos: 9.5,-43.5 + parent: 6 + type: Transform + - uid: 10536 + components: + - pos: 9.5,-44.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10537 + components: + - pos: 8.5,-44.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10538 + components: + - pos: 7.5,-44.5 + parent: 6 + type: Transform + - uid: 10539 + components: + - pos: 6.5,-44.5 + parent: 6 + type: Transform + - uid: 10540 + components: + - pos: 6.5,-43.5 + parent: 6 + type: Transform + - uid: 10541 + components: + - pos: 5.5,-43.5 + parent: 6 + type: Transform + - uid: 10542 + components: + - pos: 4.5,-43.5 + parent: 6 + type: Transform + - uid: 10543 + components: + - pos: 4.5,-42.5 + parent: 6 + type: Transform + - uid: 10544 + components: + - pos: 4.5,-41.5 + parent: 6 + type: Transform + - uid: 10545 + components: + - pos: 4.5,-40.5 + parent: 6 + type: Transform + - uid: 10546 + components: + - pos: 4.5,-39.5 + parent: 6 + type: Transform + - uid: 10547 + components: + - pos: 4.5,-38.5 + parent: 6 + type: Transform + - uid: 10548 + components: + - pos: 4.5,-37.5 + parent: 6 + type: Transform + - uid: 10549 + components: + - pos: 4.5,-36.5 + parent: 6 + type: Transform + - uid: 10550 + components: + - pos: 3.5,-36.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10551 + components: + - pos: 9.5,-45.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10552 + components: + - pos: 10.5,-45.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10553 + components: + - pos: 11.5,-45.5 + parent: 6 + type: Transform + - uid: 10554 + components: + - pos: 12.5,-45.5 + parent: 6 + type: Transform + - uid: 10555 + components: + - pos: 13.5,-45.5 + parent: 6 + type: Transform + - uid: 10556 + components: + - pos: 14.5,-45.5 + parent: 6 + type: Transform + - uid: 10557 + components: + - pos: 15.5,-45.5 + parent: 6 + type: Transform + - uid: 10558 + components: + - pos: 16.5,-45.5 + parent: 6 + type: Transform + - uid: 10559 + components: + - pos: 17.5,-45.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10560 + components: + - pos: 18.5,-45.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10561 + components: + - pos: 18.5,-44.5 + parent: 6 + type: Transform + - uid: 10562 + components: + - pos: 18.5,-43.5 + parent: 6 + type: Transform + - uid: 10563 + components: + - pos: 18.5,-42.5 + parent: 6 + type: Transform + - uid: 10564 + components: + - pos: 18.5,-41.5 + parent: 6 + type: Transform + - uid: 10565 + components: + - pos: 18.5,-40.5 + parent: 6 + type: Transform + - uid: 10566 + components: + - pos: 18.5,-39.5 + parent: 6 + type: Transform + - uid: 10567 + components: + - pos: 18.5,-38.5 + parent: 6 + type: Transform + - uid: 10568 + components: + - pos: 18.5,-37.5 + parent: 6 + type: Transform + - uid: 10569 + components: + - pos: 18.5,-36.5 + parent: 6 + type: Transform + - uid: 10570 + components: + - pos: 18.5,-35.5 + parent: 6 + type: Transform + - uid: 10571 + components: + - pos: 18.5,-34.5 + parent: 6 + type: Transform + - uid: 10572 + components: + - pos: 17.5,-34.5 + parent: 6 + type: Transform + - uid: 10573 + components: + - pos: 17.5,-33.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10574 + components: + - pos: 9.5,-46.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10575 + components: + - pos: 9.5,-47.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10576 + components: + - pos: 8.5,-47.5 + parent: 6 + type: Transform + - uid: 10577 + components: + - pos: 7.5,-47.5 + parent: 6 + type: Transform + - uid: 10578 + components: + - pos: 7.5,-46.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10579 + components: + - pos: -17.5,-58.5 + parent: 6 + type: Transform + - uid: 10580 + components: + - pos: -16.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10581 + components: + - pos: -16.5,-57.5 + parent: 6 + type: Transform + - uid: 10582 + components: + - pos: -16.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10583 + components: + - pos: -17.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10584 + components: + - pos: -18.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10585 + components: + - pos: -19.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10586 + components: + - pos: -19.5,-55.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10587 + components: + - pos: -19.5,-54.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10588 + components: + - pos: -19.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10589 + components: + - pos: -18.5,-53.5 + parent: 6 + type: Transform + - uid: 10590 + components: + - pos: -17.5,-53.5 + parent: 6 + type: Transform + - uid: 10591 + components: + - pos: -16.5,-53.5 + parent: 6 + type: Transform + - uid: 10592 + components: + - pos: -15.5,-53.5 + parent: 6 + type: Transform + - uid: 10593 + components: + - pos: -14.5,-53.5 + parent: 6 + type: Transform + - uid: 10594 + components: + - pos: -13.5,-53.5 + parent: 6 + type: Transform + - uid: 10595 + components: + - pos: -12.5,-53.5 + parent: 6 + type: Transform + - uid: 10596 + components: + - pos: -12.5,-54.5 + parent: 6 + type: Transform + - uid: 10597 + components: + - pos: -12.5,-55.5 + parent: 6 + type: Transform + - uid: 10598 + components: + - pos: -12.5,-56.5 + parent: 6 + type: Transform + - uid: 10599 + components: + - pos: -11.5,-56.5 + parent: 6 + type: Transform + - uid: 10600 + components: + - pos: -10.5,-56.5 + parent: 6 + type: Transform + - uid: 10601 + components: + - pos: -9.5,-56.5 + parent: 6 + type: Transform + - uid: 10602 + components: + - pos: -8.5,-56.5 + parent: 6 + type: Transform + - uid: 10603 + components: + - pos: -7.5,-56.5 + parent: 6 + type: Transform + - uid: 10604 + components: + - pos: -6.5,-56.5 + parent: 6 + type: Transform + - uid: 10605 + components: + - pos: -5.5,-56.5 + parent: 6 + type: Transform + - uid: 10606 + components: + - pos: -5.5,-55.5 + parent: 6 + type: Transform + - uid: 10607 + components: + - pos: -5.5,-54.5 + parent: 6 + type: Transform + - uid: 10608 + components: + - pos: -5.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10609 + components: + - pos: -6.5,-57.5 + parent: 6 + type: Transform + - uid: 10610 + components: + - pos: -6.5,-58.5 + parent: 6 + type: Transform + - uid: 10611 + components: + - pos: -6.5,-59.5 + parent: 6 + type: Transform + - uid: 10612 + components: + - pos: -6.5,-60.5 + parent: 6 + type: Transform + - uid: 10613 + components: + - pos: -6.5,-61.5 + parent: 6 + type: Transform + - uid: 10614 + components: + - pos: -6.5,-62.5 + parent: 6 + type: Transform + - uid: 10615 + components: + - pos: -6.5,-63.5 + parent: 6 + type: Transform + - uid: 10616 + components: + - pos: -6.5,-64.5 + parent: 6 + type: Transform + - uid: 10617 + components: + - pos: -6.5,-65.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10618 + components: + - pos: -6.5,-66.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10619 + components: + - pos: -6.5,-67.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10620 + components: + - pos: -6.5,-68.5 + parent: 6 + type: Transform + - uid: 10621 + components: + - pos: -6.5,-69.5 + parent: 6 + type: Transform + - uid: 10622 + components: + - pos: -6.5,-70.5 + parent: 6 + type: Transform + - uid: 10623 + components: + - pos: -5.5,-70.5 + parent: 6 + type: Transform + - uid: 10624 + components: + - pos: -4.5,-70.5 + parent: 6 + type: Transform + - uid: 10625 + components: + - pos: -3.5,-70.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10638 + components: + - pos: -37.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10639 + components: + - pos: -37.5,-55.5 + parent: 6 + type: Transform + - uid: 10640 + components: + - pos: -37.5,-54.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10641 + components: + - pos: -37.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10642 + components: + - pos: -38.5,-53.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10643 + components: + - pos: -38.5,-52.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10644 + components: + - pos: -38.5,-51.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10645 + components: + - pos: -37.5,-51.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10646 + components: + - pos: -36.5,-51.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10647 + components: + - pos: -38.5,-50.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10648 + components: + - pos: -38.5,-49.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10649 + components: + - pos: -38.5,-48.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10650 + components: + - pos: -38.5,-47.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10651 + components: + - pos: -39.5,-47.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10652 + components: + - pos: -40.5,-47.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10653 + components: + - pos: -40.5,-46.5 + parent: 6 + type: Transform + - uid: 10654 + components: + - pos: -40.5,-45.5 + parent: 6 + type: Transform + - uid: 10655 + components: + - pos: -40.5,-44.5 + parent: 6 + type: Transform + - uid: 10656 + components: + - pos: -40.5,-43.5 + parent: 6 + type: Transform + - uid: 10657 + components: + - pos: -41.5,-43.5 + parent: 6 + type: Transform + - uid: 10658 + components: + - pos: -42.5,-43.5 + parent: 6 + type: Transform + - uid: 10659 + components: + - pos: -43.5,-43.5 + parent: 6 + type: Transform + - uid: 10660 + components: + - pos: -43.5,-42.5 + parent: 6 + type: Transform + - uid: 10661 + components: + - pos: -43.5,-41.5 + parent: 6 + type: Transform + - uid: 10662 + components: + - pos: -43.5,-40.5 + parent: 6 + type: Transform + - uid: 10663 + components: + - pos: -43.5,-39.5 + parent: 6 + type: Transform + - uid: 10664 + components: + - pos: -43.5,-38.5 + parent: 6 + type: Transform + - uid: 10665 + components: + - pos: -43.5,-37.5 + parent: 6 + type: Transform + - uid: 10666 + components: + - pos: -43.5,-36.5 + parent: 6 + type: Transform + - uid: 10667 + components: + - pos: -43.5,-35.5 + parent: 6 + type: Transform + - uid: 10668 + components: + - pos: -43.5,-34.5 + parent: 6 + type: Transform + - uid: 10669 + components: + - pos: -43.5,-33.5 + parent: 6 + type: Transform + - uid: 10670 + components: + - pos: -43.5,-32.5 + parent: 6 + type: Transform + - uid: 10671 + components: + - pos: -44.5,-32.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10672 + components: + - pos: -43.5,-31.5 + parent: 6 + type: Transform + - uid: 10673 + components: + - pos: -43.5,-30.5 + parent: 6 + type: Transform + - uid: 10674 + components: + - pos: -43.5,-29.5 + parent: 6 + type: Transform + - uid: 10675 + components: + - pos: -43.5,-28.5 + parent: 6 + type: Transform + - uid: 10676 + components: + - pos: -43.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10677 + components: + - pos: -44.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10678 + components: + - pos: -45.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10679 + components: + - pos: -46.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10680 + components: + - pos: -47.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10681 + components: + - pos: -48.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10682 + components: + - pos: -49.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10683 + components: + - pos: -50.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10684 + components: + - pos: -51.5,-27.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10685 + components: + - pos: -51.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10686 + components: + - pos: -51.5,-25.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10687 + components: + - pos: -51.5,-24.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10688 + components: + - pos: -51.5,-23.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10689 + components: + - pos: -51.5,-22.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10690 + components: + - pos: -51.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10691 + components: + - pos: -52.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10692 + components: + - pos: -53.5,-21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10693 + components: + - pos: -53.5,-20.5 + parent: 6 + type: Transform + - uid: 10694 + components: + - pos: -53.5,-19.5 + parent: 6 + type: Transform + - uid: 10695 + components: + - pos: -54.5,-19.5 + parent: 6 + type: Transform + - uid: 10696 + components: + - pos: -54.5,-18.5 + parent: 6 + type: Transform + - uid: 10697 + components: + - pos: -54.5,-17.5 + parent: 6 + type: Transform + - uid: 10698 + components: + - pos: -54.5,-16.5 + parent: 6 + type: Transform + - uid: 10699 + components: + - pos: -54.5,-15.5 + parent: 6 + type: Transform + - uid: 10700 + components: + - pos: -55.5,-15.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10701 + components: + - pos: -32.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10702 + components: + - pos: -31.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10703 + components: + - pos: -31.5,-30.5 + parent: 6 + type: Transform + - uid: 10704 + components: + - pos: -31.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10705 + components: + - pos: -30.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10706 + components: + - pos: -30.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10707 + components: + - pos: -29.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10708 + components: + - pos: -29.5,-28.5 + parent: 6 + type: Transform + - uid: 10709 + components: + - pos: -29.5,-27.5 + parent: 6 + type: Transform + - uid: 10710 + components: + - pos: -29.5,-26.5 + parent: 6 + type: Transform + - uid: 10711 + components: + - pos: -29.5,-25.5 + parent: 6 + type: Transform + - uid: 10712 + components: + - pos: -29.5,-24.5 + parent: 6 + type: Transform + - uid: 10713 + components: + - pos: -29.5,-23.5 + parent: 6 + type: Transform + - uid: 10714 + components: + - pos: -29.5,-22.5 + parent: 6 + type: Transform + - uid: 10715 + components: + - pos: -28.5,-22.5 + parent: 6 + type: Transform + - uid: 10716 + components: + - pos: -27.5,-22.5 + parent: 6 + type: Transform + - uid: 10717 + components: + - pos: -26.5,-22.5 + parent: 6 + type: Transform + - uid: 10718 + components: + - pos: -25.5,-22.5 + parent: 6 + type: Transform + - uid: 10719 + components: + - pos: -25.5,-21.5 + parent: 6 + type: Transform + - uid: 10720 + components: + - pos: -25.5,-20.5 + parent: 6 + type: Transform + - uid: 10721 + components: + - pos: -25.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10722 + components: + - pos: -30.5,-22.5 + parent: 6 + type: Transform + - uid: 10723 + components: + - pos: -31.5,-22.5 + parent: 6 + type: Transform + - uid: 10724 + components: + - pos: -32.5,-22.5 + parent: 6 + type: Transform + - uid: 10725 + components: + - pos: -33.5,-22.5 + parent: 6 + type: Transform + - uid: 10726 + components: + - pos: -34.5,-22.5 + parent: 6 + type: Transform + - uid: 10727 + components: + - pos: -35.5,-22.5 + parent: 6 + type: Transform + - uid: 10728 + components: + - pos: -35.5,-21.5 + parent: 6 + type: Transform + - uid: 10729 + components: + - pos: -35.5,-20.5 + parent: 6 + type: Transform + - uid: 10730 + components: + - pos: -35.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10734 + components: + - pos: -21.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - uid: 10735 + components: + - pos: -22.5,-31.5 + parent: 6 + type: Transform + - uid: 10736 + components: + - pos: -23.5,-31.5 + parent: 6 + type: Transform + - uid: 10737 + components: + - pos: -24.5,-31.5 + parent: 6 + type: Transform + - uid: 10738 + components: + - pos: -25.5,-31.5 + parent: 6 + type: Transform + - uid: 10739 + components: + - pos: -26.5,-31.5 + parent: 6 + type: Transform + - uid: 10740 + components: + - pos: -26.5,-30.5 + parent: 6 + type: Transform + - uid: 10741 + components: + - pos: -26.5,-29.5 + parent: 6 + type: Transform + - uid: 10742 + components: + - pos: -26.5,-28.5 + parent: 6 + type: Transform + - uid: 10743 + components: + - pos: -26.5,-27.5 + parent: 6 + type: Transform + - uid: 10744 + components: + - pos: -26.5,-26.5 + parent: 6 + type: Transform + - uid: 10745 + components: + - pos: -26.5,-25.5 + parent: 6 + type: Transform + - uid: 10746 + components: + - pos: -26.5,-24.5 + parent: 6 + type: Transform + - uid: 10747 + components: + - pos: -25.5,-24.5 + parent: 6 + type: Transform + - uid: 10748 + components: + - pos: -25.5,-23.5 + parent: 6 + type: Transform + - uid: 13748 + components: + - pos: 1.5,1.5 + parent: 13645 + type: Transform + - uid: 13749 + components: + - pos: 3.5,1.5 + parent: 13645 + type: Transform + - uid: 13750 + components: + - pos: 2.5,1.5 + parent: 13645 + type: Transform + - uid: 13751 + components: + - pos: 3.5,0.5 + parent: 13645 + type: Transform + - enabled: True + type: AmbientSound + - uid: 14301 + components: + - pos: -56.5,-47.5 + parent: 6 + type: Transform + - uid: 14302 + components: + - pos: -56.5,-46.5 + parent: 6 + type: Transform + - uid: 14303 + components: + - pos: -56.5,-45.5 + parent: 6 + type: Transform + - uid: 14304 + components: + - pos: -56.5,-44.5 + parent: 6 + type: Transform + - uid: 14305 + components: + - pos: -56.5,-43.5 + parent: 6 + type: Transform + - uid: 14306 + components: + - pos: -56.5,-42.5 + parent: 6 + type: Transform + - uid: 14307 + components: + - pos: -56.5,-41.5 + parent: 6 + type: Transform + - uid: 14308 + components: + - pos: -56.5,-40.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound +- proto: CableMVStack + entities: + - uid: 5383 + components: + - pos: -11.688504,-56.61507 + parent: 6 + type: Transform + - uid: 6407 + components: + - pos: -48.672882,-25.3791 + parent: 6 + type: Transform + - uid: 13404 + components: + - pos: 28.49431,1.5550042 + parent: 6 + type: Transform +- proto: CableMVStack1 + entities: + - uid: 6734 + components: + - pos: -82.89857,-47.11549 + parent: 6 + type: Transform + - uid: 6735 + components: + - pos: -82.44421,-41.488716 + parent: 6 + type: Transform + - uid: 6736 + components: + - pos: -77.772804,-39.431007 + parent: 6 + type: Transform + - uid: 6737 + components: + - pos: -75.64298,-42.893635 + parent: 6 + type: Transform +- proto: CableTerminal + entities: + - uid: 4950 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,16.5 + parent: 6 + type: Transform + - uid: 5014 + components: + - pos: -26.5,-2.5 + parent: 6 + type: Transform + - uid: 5015 + components: + - pos: -27.5,-2.5 + parent: 6 + type: Transform + - uid: 5569 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,-20.5 + parent: 6 + type: Transform + - uid: 6666 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-63.5 + parent: 6 + type: Transform + - uid: 7212 + components: + - pos: 24.5,-21.5 + parent: 6 + type: Transform + - uid: 10198 + components: + - pos: -57.5,-46.5 + parent: 6 + type: Transform +- proto: CannabisSeeds + entities: + - uid: 5915 + components: + - pos: 12.23354,18.268204 + parent: 6 + type: Transform +- proto: CaptainIDCard + entities: + - uid: 5202 + components: + - pos: -8.371432,0.39997122 + parent: 6 + type: Transform +- proto: CarbonDioxideCanister + entities: + - uid: 3462 + components: + - pos: -43.5,13.5 + parent: 6 + type: Transform +- proto: Carpet + entities: + - uid: 3345 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-50.5 + parent: 6 + type: Transform + - uid: 3346 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-49.5 + parent: 6 + type: Transform + - uid: 3348 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-53.5 + parent: 6 + type: Transform + - uid: 3350 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-53.5 + parent: 6 + type: Transform + - uid: 3354 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-52.5 + parent: 6 + type: Transform + - uid: 3359 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-52.5 + parent: 6 + type: Transform + - uid: 3360 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-50.5 + parent: 6 + type: Transform + - uid: 3361 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-47.5 + parent: 6 + type: Transform + - uid: 3362 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-49.5 + parent: 6 + type: Transform + - uid: 3363 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-47.5 + parent: 6 + type: Transform + - uid: 3596 + components: + - pos: -51.5,-48.5 + parent: 6 + type: Transform + - uid: 3597 + components: + - pos: -51.5,-49.5 + parent: 6 + type: Transform + - uid: 3598 + components: + - pos: -51.5,-50.5 + parent: 6 + type: Transform + - uid: 3599 + components: + - pos: -50.5,-48.5 + parent: 6 + type: Transform + - uid: 3600 + components: + - pos: -50.5,-49.5 + parent: 6 + type: Transform + - uid: 3601 + components: + - pos: -50.5,-50.5 + parent: 6 + type: Transform + - uid: 5261 + components: + - pos: -1.5,-21.5 + parent: 6 + type: Transform + - uid: 5262 + components: + - pos: -1.5,-22.5 + parent: 6 + type: Transform + - uid: 5263 + components: + - pos: -2.5,-20.5 + parent: 6 + type: Transform + - uid: 5264 + components: + - pos: -1.5,-20.5 + parent: 6 + type: Transform + - uid: 5265 + components: + - pos: -1.5,-23.5 + parent: 6 + type: Transform + - uid: 5266 + components: + - pos: -2.5,-23.5 + parent: 6 + type: Transform + - uid: 5267 + components: + - pos: 0.5,-22.5 + parent: 6 + type: Transform + - uid: 5268 + components: + - pos: 0.5,-23.5 + parent: 6 + type: Transform + - uid: 5269 + components: + - pos: 1.5,-23.5 + parent: 6 + type: Transform + - uid: 5270 + components: + - pos: 2.5,-23.5 + parent: 6 + type: Transform + - uid: 5271 + components: + - pos: 2.5,-22.5 + parent: 6 + type: Transform + - uid: 5272 + components: + - pos: 1.5,-22.5 + parent: 6 + type: Transform + - uid: 6013 + components: + - pos: -2.5,-21.5 + parent: 6 + type: Transform + - uid: 6016 + components: + - pos: -2.5,-22.5 + parent: 6 + type: Transform + - uid: 7426 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-54.5 + parent: 6 + type: Transform + - uid: 7427 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-54.5 + parent: 6 + type: Transform + - uid: 7428 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-54.5 + parent: 6 + type: Transform + - uid: 7429 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-53.5 + parent: 6 + type: Transform + - uid: 7430 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-52.5 + parent: 6 + type: Transform + - uid: 7431 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-51.5 + parent: 6 + type: Transform + - uid: 7432 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-50.5 + parent: 6 + type: Transform + - uid: 7433 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-49.5 + parent: 6 + type: Transform + - uid: 7434 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-48.5 + parent: 6 + type: Transform + - uid: 7435 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-48.5 + parent: 6 + type: Transform + - uid: 7436 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-48.5 + parent: 6 + type: Transform + - uid: 7437 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-51.5 + parent: 6 + type: Transform + - uid: 7438 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-51.5 + parent: 6 + type: Transform + - uid: 7439 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-55.5 + parent: 6 + type: Transform + - uid: 7440 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-47.5 + parent: 6 + type: Transform + - uid: 7787 + components: + - pos: 13.5,-15.5 + parent: 6 + type: Transform + - uid: 7788 + components: + - pos: 13.5,-16.5 + parent: 6 + type: Transform + - uid: 7789 + components: + - pos: 12.5,-15.5 + parent: 6 + type: Transform + - uid: 7790 + components: + - pos: 12.5,-16.5 + parent: 6 + type: Transform +- proto: CarpetBlack + entities: + - uid: 6227 + components: + - pos: -39.5,-33.5 + parent: 6 + type: Transform + - uid: 6228 + components: + - pos: -39.5,-34.5 + parent: 6 + type: Transform + - uid: 6229 + components: + - pos: -38.5,-33.5 + parent: 6 + type: Transform + - uid: 6230 + components: + - pos: -38.5,-34.5 + parent: 6 + type: Transform + - uid: 7795 + components: + - pos: 12.5,-19.5 + parent: 6 + type: Transform +- proto: CarpetBlue + entities: + - uid: 4388 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 6 + type: Transform + - uid: 4389 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 6 + type: Transform + - uid: 4390 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 6 + type: Transform + - uid: 4391 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 6 + type: Transform + - uid: 4392 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 6 + type: Transform + - uid: 4393 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 6 + type: Transform + - uid: 4394 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 6 + type: Transform + - uid: 4395 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 6 + type: Transform + - uid: 4396 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 6 + type: Transform + - uid: 4397 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 6 + type: Transform + - uid: 5541 + components: + - pos: -8.5,-32.5 + parent: 6 + type: Transform + - uid: 5589 + components: + - pos: -8.5,-31.5 + parent: 6 + type: Transform +- proto: CarpetChapel + entities: + - uid: 3347 + components: + - pos: -32.5,-56.5 + parent: 6 + type: Transform + - uid: 3349 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-55.5 + parent: 6 + type: Transform + - uid: 3351 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-56.5 + parent: 6 + type: Transform + - uid: 3352 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-55.5 + parent: 6 + type: Transform + - uid: 3355 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-55.5 + parent: 6 + type: Transform + - uid: 3356 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-55.5 + parent: 6 + type: Transform + - uid: 3357 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-56.5 + parent: 6 + type: Transform + - uid: 3358 + components: + - pos: -35.5,-56.5 + parent: 6 + type: Transform +- proto: CarpetGreen + entities: + - uid: 5590 + components: + - pos: -5.5,-31.5 + parent: 6 + type: Transform + - uid: 6231 + components: + - pos: -47.5,-41.5 + parent: 6 + type: Transform + - uid: 6232 + components: + - pos: -47.5,-40.5 + parent: 6 + type: Transform + - uid: 6233 + components: + - pos: -46.5,-41.5 + parent: 6 + type: Transform + - uid: 6234 + components: + - pos: -46.5,-40.5 + parent: 6 + type: Transform + - uid: 6345 + components: + - pos: -5.5,-30.5 + parent: 6 + type: Transform +- proto: CarpetOrange + entities: + - uid: 6346 + components: + - pos: -2.5,-32.5 + parent: 6 + type: Transform + - uid: 7732 + components: + - pos: -20.5,-41.5 + parent: 6 + type: Transform + - uid: 7733 + components: + - pos: -20.5,-40.5 + parent: 6 + type: Transform + - uid: 7734 + components: + - pos: -21.5,-41.5 + parent: 6 + type: Transform + - uid: 7735 + components: + - pos: -21.5,-40.5 + parent: 6 + type: Transform + - uid: 7736 + components: + - pos: -21.5,-39.5 + parent: 6 + type: Transform + - uid: 7737 + components: + - pos: -20.5,-39.5 + parent: 6 + type: Transform + - uid: 7791 + components: + - pos: 16.5,-15.5 + parent: 6 + type: Transform + - uid: 7792 + components: + - pos: 16.5,-16.5 + parent: 6 + type: Transform + - uid: 7793 + components: + - pos: 17.5,-15.5 + parent: 6 + type: Transform + - uid: 7794 + components: + - pos: 17.5,-16.5 + parent: 6 + type: Transform + - uid: 8481 + components: + - pos: -2.5,-31.5 + parent: 6 + type: Transform +- proto: CarpetPink + entities: + - uid: 7738 + components: + - pos: -25.5,-39.5 + parent: 6 + type: Transform + - uid: 7739 + components: + - pos: -25.5,-38.5 + parent: 6 + type: Transform + - uid: 7740 + components: + - pos: -24.5,-38.5 + parent: 6 + type: Transform + - uid: 7741 + components: + - pos: -24.5,-39.5 + parent: 6 + type: Transform +- proto: CarpetPurple + entities: + - uid: 5918 + components: + - pos: 2.5,-25.5 + parent: 6 + type: Transform + - uid: 5919 + components: + - pos: 1.5,-26.5 + parent: 6 + type: Transform + - uid: 5920 + components: + - pos: 2.5,-26.5 + parent: 6 + type: Transform + - uid: 5976 + components: + - pos: 1.5,-25.5 + parent: 6 + type: Transform + - uid: 6219 + components: + - pos: -39.5,-40.5 + parent: 6 + type: Transform + - uid: 6224 + components: + - pos: -39.5,-41.5 + parent: 6 + type: Transform + - uid: 6225 + components: + - pos: -38.5,-40.5 + parent: 6 + type: Transform + - uid: 6226 + components: + - pos: -38.5,-41.5 + parent: 6 + type: Transform + - uid: 7783 + components: + - pos: 14.5,-18.5 + parent: 6 + type: Transform + - uid: 7784 + components: + - pos: 14.5,-19.5 + parent: 6 + type: Transform + - uid: 7785 + components: + - pos: 15.5,-18.5 + parent: 6 + type: Transform + - uid: 7786 + components: + - pos: 15.5,-19.5 + parent: 6 + type: Transform +- proto: CarpetSBlue + entities: + - uid: 14045 + components: + - pos: 3.5,-7.5 + parent: 6 + type: Transform + - uid: 14057 + components: + - pos: 2.5,-7.5 + parent: 6 + type: Transform + - uid: 14269 + components: + - pos: 2.5,-6.5 + parent: 6 + type: Transform + - uid: 14270 + components: + - pos: 3.5,-6.5 + parent: 6 + type: Transform +- proto: Catwalk + entities: + - uid: 1513 + components: + - pos: -77.5,-25.5 + parent: 6 + type: Transform + - uid: 1616 + components: + - pos: -71.5,-24.5 + parent: 6 + type: Transform + - uid: 1617 + components: + - pos: -81.5,-25.5 + parent: 6 + type: Transform + - uid: 1773 + components: + - pos: -81.5,-23.5 + parent: 6 + type: Transform + - uid: 2105 + components: + - pos: -37.5,3.5 + parent: 6 + type: Transform + - uid: 2106 + components: + - pos: -36.5,3.5 + parent: 6 + type: Transform + - uid: 2107 + components: + - pos: -35.5,3.5 + parent: 6 + type: Transform + - uid: 2108 + components: + - pos: -36.5,2.5 + parent: 6 + type: Transform + - uid: 2109 + components: + - pos: -36.5,1.5 + parent: 6 + type: Transform + - uid: 2638 + components: + - pos: -77.5,-23.5 + parent: 6 + type: Transform + - uid: 3000 + components: + - pos: -76.5,-24.5 + parent: 6 + type: Transform + - uid: 3004 + components: + - pos: -81.5,-24.5 + parent: 6 + type: Transform + - uid: 3006 + components: + - pos: -78.5,-24.5 + parent: 6 + type: Transform + - uid: 3007 + components: + - pos: -77.5,-24.5 + parent: 6 + type: Transform + - uid: 3008 + components: + - pos: -75.5,-24.5 + parent: 6 + type: Transform + - uid: 3012 + components: + - pos: -81.5,-22.5 + parent: 6 + type: Transform + - uid: 3013 + components: + - pos: -81.5,-19.5 + parent: 6 + type: Transform + - uid: 3024 + components: + - pos: -81.5,-18.5 + parent: 6 + type: Transform + - uid: 3025 + components: + - pos: -81.5,-15.5 + parent: 6 + type: Transform + - uid: 3026 + components: + - pos: -73.5,-24.5 + parent: 6 + type: Transform + - uid: 3030 + components: + - pos: -81.5,-21.5 + parent: 6 + type: Transform + - uid: 3031 + components: + - pos: -81.5,-17.5 + parent: 6 + type: Transform + - uid: 3032 + components: + - pos: -81.5,-16.5 + parent: 6 + type: Transform + - uid: 3033 + components: + - pos: -77.5,-15.5 + parent: 6 + type: Transform + - uid: 3035 + components: + - pos: -77.5,-21.5 + parent: 6 + type: Transform + - uid: 3036 + components: + - pos: -77.5,-22.5 + parent: 6 + type: Transform + - uid: 3038 + components: + - pos: -81.5,-26.5 + parent: 6 + type: Transform + - uid: 3039 + components: + - pos: -81.5,-27.5 + parent: 6 + type: Transform + - uid: 3040 + components: + - pos: -81.5,-28.5 + parent: 6 + type: Transform + - uid: 3042 + components: + - pos: -79.5,-24.5 + parent: 6 + type: Transform + - uid: 3044 + components: + - pos: -72.5,-24.5 + parent: 6 + type: Transform + - uid: 3046 + components: + - pos: -74.5,-24.5 + parent: 6 + type: Transform + - uid: 3047 + components: + - pos: -81.5,-20.5 + parent: 6 + type: Transform + - uid: 3050 + components: + - pos: -73.5,-29.5 + parent: 6 + type: Transform + - uid: 3051 + components: + - pos: -80.5,-24.5 + parent: 6 + type: Transform + - uid: 3053 + components: + - pos: -77.5,-16.5 + parent: 6 + type: Transform + - uid: 3054 + components: + - pos: -77.5,-17.5 + parent: 6 + type: Transform + - uid: 3055 + components: + - pos: -77.5,-18.5 + parent: 6 + type: Transform + - uid: 3056 + components: + - pos: -77.5,-19.5 + parent: 6 + type: Transform + - uid: 3057 + components: + - pos: -77.5,-20.5 + parent: 6 + type: Transform + - uid: 3058 + components: + - pos: -73.5,-30.5 + parent: 6 + type: Transform + - uid: 3069 + components: + - pos: 26.5,-21.5 + parent: 6 + type: Transform + - uid: 3070 + components: + - pos: 26.5,-22.5 + parent: 6 + type: Transform + - uid: 3071 + components: + - pos: 26.5,-23.5 + parent: 6 + type: Transform + - uid: 3072 + components: + - pos: 26.5,-24.5 + parent: 6 + type: Transform + - uid: 3073 + components: + - pos: 27.5,-24.5 + parent: 6 + type: Transform + - uid: 3074 + components: + - pos: 28.5,-24.5 + parent: 6 + type: Transform + - uid: 3075 + components: + - pos: 29.5,-24.5 + parent: 6 + type: Transform + - uid: 3076 + components: + - pos: 30.5,-24.5 + parent: 6 + type: Transform + - uid: 3077 + components: + - pos: 31.5,-24.5 + parent: 6 + type: Transform + - uid: 3078 + components: + - pos: 32.5,-24.5 + parent: 6 + type: Transform + - uid: 3079 + components: + - pos: 33.5,-24.5 + parent: 6 + type: Transform + - uid: 3080 + components: + - pos: 34.5,-24.5 + parent: 6 + type: Transform + - uid: 3081 + components: + - pos: 35.5,-24.5 + parent: 6 + type: Transform + - uid: 3082 + components: + - pos: 36.5,-24.5 + parent: 6 + type: Transform + - uid: 3083 + components: + - pos: 37.5,-24.5 + parent: 6 + type: Transform + - uid: 3084 + components: + - pos: 38.5,-24.5 + parent: 6 + type: Transform + - uid: 3085 + components: + - pos: 39.5,-24.5 + parent: 6 + type: Transform + - uid: 3086 + components: + - pos: 40.5,-24.5 + parent: 6 + type: Transform + - uid: 3087 + components: + - pos: 41.5,-24.5 + parent: 6 + type: Transform + - uid: 3088 + components: + - pos: 42.5,-24.5 + parent: 6 + type: Transform + - uid: 3089 + components: + - pos: 43.5,-24.5 + parent: 6 + type: Transform + - uid: 3090 + components: + - pos: 44.5,-24.5 + parent: 6 + type: Transform + - uid: 3091 + components: + - pos: 43.5,-23.5 + parent: 6 + type: Transform + - uid: 3092 + components: + - pos: 43.5,-22.5 + parent: 6 + type: Transform + - uid: 3093 + components: + - pos: 43.5,-21.5 + parent: 6 + type: Transform + - uid: 3094 + components: + - pos: 43.5,-20.5 + parent: 6 + type: Transform + - uid: 3095 + components: + - pos: 43.5,-19.5 + parent: 6 + type: Transform + - uid: 3096 + components: + - pos: 43.5,-18.5 + parent: 6 + type: Transform + - uid: 3097 + components: + - pos: 43.5,-17.5 + parent: 6 + type: Transform + - uid: 3098 + components: + - pos: 43.5,-16.5 + parent: 6 + type: Transform + - uid: 3099 + components: + - pos: 39.5,-23.5 + parent: 6 + type: Transform + - uid: 3100 + components: + - pos: 39.5,-22.5 + parent: 6 + type: Transform + - uid: 3101 + components: + - pos: 39.5,-21.5 + parent: 6 + type: Transform + - uid: 3102 + components: + - pos: 39.5,-20.5 + parent: 6 + type: Transform + - uid: 3103 + components: + - pos: 39.5,-19.5 + parent: 6 + type: Transform + - uid: 3104 + components: + - pos: 39.5,-18.5 + parent: 6 + type: Transform + - uid: 3105 + components: + - pos: 39.5,-17.5 + parent: 6 + type: Transform + - uid: 3106 + components: + - pos: 39.5,-16.5 + parent: 6 + type: Transform + - uid: 3107 + components: + - pos: 35.5,-23.5 + parent: 6 + type: Transform + - uid: 3108 + components: + - pos: 35.5,-22.5 + parent: 6 + type: Transform + - uid: 3109 + components: + - pos: 35.5,-21.5 + parent: 6 + type: Transform + - uid: 3110 + components: + - pos: 35.5,-20.5 + parent: 6 + type: Transform + - uid: 3111 + components: + - pos: 35.5,-19.5 + parent: 6 + type: Transform + - uid: 3112 + components: + - pos: 35.5,-18.5 + parent: 6 + type: Transform + - uid: 3113 + components: + - pos: 35.5,-17.5 + parent: 6 + type: Transform + - uid: 3114 + components: + - pos: 35.5,-16.5 + parent: 6 + type: Transform + - uid: 3115 + components: + - pos: 31.5,-23.5 + parent: 6 + type: Transform + - uid: 3116 + components: + - pos: 31.5,-22.5 + parent: 6 + type: Transform + - uid: 3117 + components: + - pos: 31.5,-21.5 + parent: 6 + type: Transform + - uid: 3118 + components: + - pos: 31.5,-20.5 + parent: 6 + type: Transform + - uid: 3119 + components: + - pos: 31.5,-19.5 + parent: 6 + type: Transform + - uid: 3120 + components: + - pos: 31.5,-18.5 + parent: 6 + type: Transform + - uid: 3121 + components: + - pos: 31.5,-17.5 + parent: 6 + type: Transform + - uid: 3122 + components: + - pos: 31.5,-16.5 + parent: 6 + type: Transform + - uid: 3123 + components: + - pos: 26.5,-20.5 + parent: 6 + type: Transform + - uid: 3170 + components: + - pos: -30.5,24.5 + parent: 6 + type: Transform + - uid: 3171 + components: + - pos: -29.5,24.5 + parent: 6 + type: Transform + - uid: 3172 + components: + - pos: -28.5,24.5 + parent: 6 + type: Transform + - uid: 3173 + components: + - pos: -27.5,24.5 + parent: 6 + type: Transform + - uid: 3174 + components: + - pos: -26.5,24.5 + parent: 6 + type: Transform + - uid: 3175 + components: + - pos: -25.5,24.5 + parent: 6 + type: Transform + - uid: 3176 + components: + - pos: -25.5,23.5 + parent: 6 + type: Transform + - uid: 3177 + components: + - pos: -25.5,22.5 + parent: 6 + type: Transform + - uid: 3178 + components: + - pos: -25.5,21.5 + parent: 6 + type: Transform + - uid: 3179 + components: + - pos: -25.5,20.5 + parent: 6 + type: Transform + - uid: 3183 + components: + - pos: -70.5,-24.5 + parent: 6 + type: Transform + - uid: 3186 + components: + - pos: -73.5,-25.5 + parent: 6 + type: Transform + - uid: 3437 + components: + - pos: -31.5,24.5 + parent: 6 + type: Transform + - uid: 3438 + components: + - pos: -32.5,24.5 + parent: 6 + type: Transform + - uid: 3439 + components: + - pos: -33.5,24.5 + parent: 6 + type: Transform + - uid: 3440 + components: + - pos: -34.5,24.5 + parent: 6 + type: Transform + - uid: 3441 + components: + - pos: -35.5,24.5 + parent: 6 + type: Transform + - uid: 3442 + components: + - pos: -36.5,24.5 + parent: 6 + type: Transform + - uid: 3443 + components: + - pos: -37.5,24.5 + parent: 6 + type: Transform + - uid: 3444 + components: + - pos: -37.5,25.5 + parent: 6 + type: Transform + - uid: 3445 + components: + - pos: -37.5,26.5 + parent: 6 + type: Transform + - uid: 3446 + components: + - pos: -37.5,27.5 + parent: 6 + type: Transform + - uid: 3447 + components: + - pos: -37.5,28.5 + parent: 6 + type: Transform + - uid: 3448 + components: + - pos: -36.5,28.5 + parent: 6 + type: Transform + - uid: 3449 + components: + - pos: -35.5,28.5 + parent: 6 + type: Transform + - uid: 3450 + components: + - pos: -34.5,28.5 + parent: 6 + type: Transform + - uid: 3451 + components: + - pos: -33.5,28.5 + parent: 6 + type: Transform + - uid: 3452 + components: + - pos: -32.5,28.5 + parent: 6 + type: Transform + - uid: 3453 + components: + - pos: -31.5,28.5 + parent: 6 + type: Transform + - uid: 3454 + components: + - pos: -31.5,27.5 + parent: 6 + type: Transform + - uid: 3455 + components: + - pos: -31.5,26.5 + parent: 6 + type: Transform + - uid: 3456 + components: + - pos: -31.5,25.5 + parent: 6 + type: Transform + - uid: 3701 + components: + - pos: -6.5,-67.5 + parent: 6 + type: Transform + - uid: 3703 + components: + - pos: -6.5,-66.5 + parent: 6 + type: Transform + - uid: 3704 + components: + - pos: -6.5,-65.5 + parent: 6 + type: Transform + - uid: 3705 + components: + - pos: -5.5,-67.5 + parent: 6 + type: Transform + - uid: 3706 + components: + - pos: -5.5,-66.5 + parent: 6 + type: Transform + - uid: 3707 + components: + - pos: -5.5,-65.5 + parent: 6 + type: Transform + - uid: 3708 + components: + - pos: -6.5,-83.5 + parent: 6 + type: Transform + - uid: 3709 + components: + - pos: -5.5,-83.5 + parent: 6 + type: Transform + - uid: 3710 + components: + - pos: -4.5,-83.5 + parent: 6 + type: Transform + - uid: 3711 + components: + - pos: -3.5,-83.5 + parent: 6 + type: Transform + - uid: 3712 + components: + - pos: -2.5,-83.5 + parent: 6 + type: Transform + - uid: 3713 + components: + - pos: -1.5,-83.5 + parent: 6 + type: Transform + - uid: 3714 + components: + - pos: -7.5,-83.5 + parent: 6 + type: Transform + - uid: 3763 + components: + - pos: -23.5,-65.5 + parent: 6 + type: Transform + - uid: 3771 + components: + - pos: -23.5,-67.5 + parent: 6 + type: Transform + - uid: 3774 + components: + - pos: -23.5,-66.5 + parent: 6 + type: Transform + - uid: 3978 + components: + - pos: -23.5,-68.5 + parent: 6 + type: Transform + - uid: 3979 + components: + - pos: -23.5,-69.5 + parent: 6 + type: Transform + - uid: 3980 + components: + - pos: -23.5,-70.5 + parent: 6 + type: Transform + - uid: 3981 + components: + - pos: -23.5,-71.5 + parent: 6 + type: Transform + - uid: 3982 + components: + - pos: -23.5,-72.5 + parent: 6 + type: Transform + - uid: 3983 + components: + - pos: -23.5,-73.5 + parent: 6 + type: Transform + - uid: 3984 + components: + - pos: -23.5,-74.5 + parent: 6 + type: Transform + - uid: 3985 + components: + - pos: -23.5,-75.5 + parent: 6 + type: Transform + - uid: 3986 + components: + - pos: -23.5,-76.5 + parent: 6 + type: Transform + - uid: 3987 + components: + - pos: -23.5,-77.5 + parent: 6 + type: Transform + - uid: 3988 + components: + - pos: -23.5,-78.5 + parent: 6 + type: Transform + - uid: 3989 + components: + - pos: -23.5,-79.5 + parent: 6 + type: Transform + - uid: 3990 + components: + - pos: -23.5,-80.5 + parent: 6 + type: Transform + - uid: 3991 + components: + - pos: -23.5,-81.5 + parent: 6 + type: Transform + - uid: 3992 + components: + - pos: -23.5,-82.5 + parent: 6 + type: Transform + - uid: 3993 + components: + - pos: -24.5,-81.5 + parent: 6 + type: Transform + - uid: 3994 + components: + - pos: -25.5,-81.5 + parent: 6 + type: Transform + - uid: 3995 + components: + - pos: -26.5,-81.5 + parent: 6 + type: Transform + - uid: 3996 + components: + - pos: -27.5,-81.5 + parent: 6 + type: Transform + - uid: 3997 + components: + - pos: -28.5,-81.5 + parent: 6 + type: Transform + - uid: 3998 + components: + - pos: -29.5,-81.5 + parent: 6 + type: Transform + - uid: 3999 + components: + - pos: -30.5,-81.5 + parent: 6 + type: Transform + - uid: 4000 + components: + - pos: -31.5,-81.5 + parent: 6 + type: Transform + - uid: 4001 + components: + - pos: -32.5,-81.5 + parent: 6 + type: Transform + - uid: 4002 + components: + - pos: -24.5,-77.5 + parent: 6 + type: Transform + - uid: 4003 + components: + - pos: -25.5,-77.5 + parent: 6 + type: Transform + - uid: 4004 + components: + - pos: -26.5,-77.5 + parent: 6 + type: Transform + - uid: 4005 + components: + - pos: -27.5,-77.5 + parent: 6 + type: Transform + - uid: 4006 + components: + - pos: -28.5,-77.5 + parent: 6 + type: Transform + - uid: 4007 + components: + - pos: -29.5,-77.5 + parent: 6 + type: Transform + - uid: 4008 + components: + - pos: -30.5,-77.5 + parent: 6 + type: Transform + - uid: 4009 + components: + - pos: -31.5,-77.5 + parent: 6 + type: Transform + - uid: 4010 + components: + - pos: -32.5,-77.5 + parent: 6 + type: Transform + - uid: 4011 + components: + - pos: -24.5,-73.5 + parent: 6 + type: Transform + - uid: 4012 + components: + - pos: -25.5,-73.5 + parent: 6 + type: Transform + - uid: 4013 + components: + - pos: -26.5,-73.5 + parent: 6 + type: Transform + - uid: 4014 + components: + - pos: -27.5,-73.5 + parent: 6 + type: Transform + - uid: 4015 + components: + - pos: -28.5,-73.5 + parent: 6 + type: Transform + - uid: 4016 + components: + - pos: -29.5,-73.5 + parent: 6 + type: Transform + - uid: 4017 + components: + - pos: -30.5,-73.5 + parent: 6 + type: Transform + - uid: 4018 + components: + - pos: -31.5,-73.5 + parent: 6 + type: Transform + - uid: 4019 + components: + - pos: -32.5,-73.5 + parent: 6 + type: Transform + - uid: 4020 + components: + - pos: -24.5,-69.5 + parent: 6 + type: Transform + - uid: 4021 + components: + - pos: -25.5,-69.5 + parent: 6 + type: Transform + - uid: 4022 + components: + - pos: -26.5,-69.5 + parent: 6 + type: Transform + - uid: 4023 + components: + - pos: -27.5,-69.5 + parent: 6 + type: Transform + - uid: 4024 + components: + - pos: -28.5,-69.5 + parent: 6 + type: Transform + - uid: 4025 + components: + - pos: -29.5,-69.5 + parent: 6 + type: Transform + - uid: 4026 + components: + - pos: -30.5,-69.5 + parent: 6 + type: Transform + - uid: 4027 + components: + - pos: -31.5,-69.5 + parent: 6 + type: Transform + - uid: 4028 + components: + - pos: -32.5,-69.5 + parent: 6 + type: Transform + - uid: 4169 + components: + - pos: -62.5,-43.5 + parent: 6 + type: Transform + - uid: 4170 + components: + - pos: -63.5,-43.5 + parent: 6 + type: Transform + - uid: 4171 + components: + - pos: -64.5,-43.5 + parent: 6 + type: Transform + - uid: 4172 + components: + - pos: -65.5,-43.5 + parent: 6 + type: Transform + - uid: 4173 + components: + - pos: -66.5,-43.5 + parent: 6 + type: Transform + - uid: 4174 + components: + - pos: -67.5,-43.5 + parent: 6 + type: Transform + - uid: 4175 + components: + - pos: -68.5,-43.5 + parent: 6 + type: Transform + - uid: 4176 + components: + - pos: -69.5,-43.5 + parent: 6 + type: Transform + - uid: 4177 + components: + - pos: -70.5,-43.5 + parent: 6 + type: Transform + - uid: 4178 + components: + - pos: -71.5,-43.5 + parent: 6 + type: Transform + - uid: 4179 + components: + - pos: -72.5,-43.5 + parent: 6 + type: Transform + - uid: 4180 + components: + - pos: -73.5,-43.5 + parent: 6 + type: Transform + - uid: 4201 + components: + - pos: -73.5,-45.5 + parent: 6 + type: Transform + - uid: 4202 + components: + - pos: -72.5,-45.5 + parent: 6 + type: Transform + - uid: 4203 + components: + - pos: -71.5,-45.5 + parent: 6 + type: Transform + - uid: 4204 + components: + - pos: -70.5,-45.5 + parent: 6 + type: Transform + - uid: 4205 + components: + - pos: -69.5,-45.5 + parent: 6 + type: Transform + - uid: 4206 + components: + - pos: -68.5,-45.5 + parent: 6 + type: Transform + - uid: 4207 + components: + - pos: -67.5,-45.5 + parent: 6 + type: Transform + - uid: 4208 + components: + - pos: -66.5,-45.5 + parent: 6 + type: Transform + - uid: 4209 + components: + - pos: -65.5,-45.5 + parent: 6 + type: Transform + - uid: 4210 + components: + - pos: -64.5,-45.5 + parent: 6 + type: Transform + - uid: 4211 + components: + - pos: -63.5,-45.5 + parent: 6 + type: Transform + - uid: 4212 + components: + - pos: -62.5,-45.5 + parent: 6 + type: Transform + - uid: 4837 + components: + - pos: -14.5,27.5 + parent: 6 + type: Transform + - uid: 4854 + components: + - pos: -33.5,9.5 + parent: 6 + type: Transform + - uid: 4862 + components: + - pos: -33.5,10.5 + parent: 6 + type: Transform + - uid: 4863 + components: + - pos: -33.5,11.5 + parent: 6 + type: Transform + - uid: 4864 + components: + - pos: -33.5,12.5 + parent: 6 + type: Transform + - uid: 4865 + components: + - pos: -33.5,13.5 + parent: 6 + type: Transform + - uid: 4866 + components: + - pos: -32.5,9.5 + parent: 6 + type: Transform + - uid: 4867 + components: + - pos: -32.5,10.5 + parent: 6 + type: Transform + - uid: 4868 + components: + - pos: -32.5,11.5 + parent: 6 + type: Transform + - uid: 4869 + components: + - pos: -32.5,12.5 + parent: 6 + type: Transform + - uid: 4870 + components: + - pos: -32.5,13.5 + parent: 6 + type: Transform + - uid: 4930 + components: + - pos: -12.5,19.5 + parent: 6 + type: Transform + - uid: 4934 + components: + - pos: -12.5,23.5 + parent: 6 + type: Transform + - uid: 4935 + components: + - pos: -12.5,27.5 + parent: 6 + type: Transform + - uid: 4936 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,35.5 + parent: 6 + type: Transform + - uid: 4937 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,35.5 + parent: 6 + type: Transform + - uid: 4938 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,31.5 + parent: 6 + type: Transform + - uid: 5315 + components: + - pos: 9.5,-48.5 + parent: 6 + type: Transform + - uid: 5316 + components: + - pos: 9.5,-47.5 + parent: 6 + type: Transform + - uid: 5317 + components: + - pos: 9.5,-46.5 + parent: 6 + type: Transform + - uid: 5318 + components: + - pos: 10.5,-48.5 + parent: 6 + type: Transform + - uid: 5319 + components: + - pos: 10.5,-47.5 + parent: 6 + type: Transform + - uid: 5320 + components: + - pos: 10.5,-46.5 + parent: 6 + type: Transform + - uid: 5321 + components: + - pos: 11.5,-46.5 + parent: 6 + type: Transform + - uid: 5322 + components: + - pos: 11.5,-47.5 + parent: 6 + type: Transform + - uid: 5323 + components: + - pos: 12.5,-46.5 + parent: 6 + type: Transform + - uid: 5324 + components: + - pos: 12.5,-47.5 + parent: 6 + type: Transform + - uid: 5325 + components: + - pos: 13.5,-46.5 + parent: 6 + type: Transform + - uid: 5326 + components: + - pos: 13.5,-47.5 + parent: 6 + type: Transform + - uid: 5327 + components: + - pos: 14.5,-46.5 + parent: 6 + type: Transform + - uid: 5328 + components: + - pos: 14.5,-47.5 + parent: 6 + type: Transform + - uid: 5329 + components: + - pos: 15.5,-46.5 + parent: 6 + type: Transform + - uid: 5330 + components: + - pos: 15.5,-47.5 + parent: 6 + type: Transform + - uid: 5331 + components: + - pos: 16.5,-46.5 + parent: 6 + type: Transform + - uid: 5332 + components: + - pos: 16.5,-47.5 + parent: 6 + type: Transform + - uid: 5333 + components: + - pos: 17.5,-46.5 + parent: 6 + type: Transform + - uid: 5334 + components: + - pos: 17.5,-47.5 + parent: 6 + type: Transform + - uid: 5335 + components: + - pos: 18.5,-46.5 + parent: 6 + type: Transform + - uid: 5336 + components: + - pos: 18.5,-47.5 + parent: 6 + type: Transform + - uid: 5337 + components: + - pos: 17.5,-45.5 + parent: 6 + type: Transform + - uid: 5338 + components: + - pos: 18.5,-45.5 + parent: 6 + type: Transform + - uid: 5517 + components: + - pos: -82.5,-24.5 + parent: 6 + type: Transform + - uid: 5521 + components: + - pos: -81.5,-29.5 + parent: 6 + type: Transform + - uid: 5522 + components: + - pos: -81.5,-30.5 + parent: 6 + type: Transform + - uid: 5523 + components: + - pos: -81.5,-31.5 + parent: 6 + type: Transform + - uid: 5524 + components: + - pos: -81.5,-32.5 + parent: 6 + type: Transform + - uid: 5525 + components: + - pos: -77.5,-26.5 + parent: 6 + type: Transform + - uid: 5526 + components: + - pos: -77.5,-27.5 + parent: 6 + type: Transform + - uid: 5527 + components: + - pos: -77.5,-28.5 + parent: 6 + type: Transform + - uid: 5528 + components: + - pos: -77.5,-29.5 + parent: 6 + type: Transform + - uid: 5529 + components: + - pos: -77.5,-30.5 + parent: 6 + type: Transform + - uid: 5530 + components: + - pos: -77.5,-31.5 + parent: 6 + type: Transform + - uid: 5545 + components: + - pos: -73.5,-31.5 + parent: 6 + type: Transform + - uid: 5546 + components: + - pos: -73.5,-32.5 + parent: 6 + type: Transform + - uid: 5547 + components: + - pos: -77.5,-32.5 + parent: 6 + type: Transform + - uid: 5550 + components: + - pos: -73.5,-26.5 + parent: 6 + type: Transform + - uid: 5551 + components: + - pos: -73.5,-27.5 + parent: 6 + type: Transform + - uid: 5552 + components: + - pos: -73.5,-28.5 + parent: 6 + type: Transform + - uid: 6289 + components: + - pos: -31.5,7.5 + parent: 6 + type: Transform + - uid: 6290 + components: + - pos: -31.5,6.5 + parent: 6 + type: Transform + - uid: 6488 + components: + - pos: 19.5,-15.5 + parent: 6 + type: Transform + - uid: 7394 + components: + - pos: -2.5,-58.5 + parent: 6 + type: Transform + - uid: 7395 + components: + - pos: -1.5,-58.5 + parent: 6 + type: Transform + - uid: 7396 + components: + - pos: -0.5,-58.5 + parent: 6 + type: Transform + - uid: 7397 + components: + - pos: -9.5,-58.5 + parent: 6 + type: Transform + - uid: 7398 + components: + - pos: -10.5,-58.5 + parent: 6 + type: Transform + - uid: 7399 + components: + - pos: -11.5,-58.5 + parent: 6 + type: Transform + - uid: 7400 + components: + - pos: 0.5,-57.5 + parent: 6 + type: Transform + - uid: 7401 + components: + - pos: 0.5,-56.5 + parent: 6 + type: Transform + - uid: 7402 + components: + - pos: 0.5,-55.5 + parent: 6 + type: Transform + - uid: 7403 + components: + - pos: 0.5,-54.5 + parent: 6 + type: Transform + - uid: 7404 + components: + - pos: 0.5,-53.5 + parent: 6 + type: Transform + - uid: 7405 + components: + - pos: 0.5,-52.5 + parent: 6 + type: Transform + - uid: 7406 + components: + - pos: 0.5,-51.5 + parent: 6 + type: Transform + - uid: 7407 + components: + - pos: 0.5,-50.5 + parent: 6 + type: Transform + - uid: 7408 + components: + - pos: 0.5,-49.5 + parent: 6 + type: Transform + - uid: 7409 + components: + - pos: -0.5,-48.5 + parent: 6 + type: Transform + - uid: 7410 + components: + - pos: -1.5,-48.5 + parent: 6 + type: Transform + - uid: 7411 + components: + - pos: -2.5,-48.5 + parent: 6 + type: Transform + - uid: 7412 + components: + - pos: -3.5,-48.5 + parent: 6 + type: Transform + - uid: 7454 + components: + - pos: -43.5,-24.5 + parent: 6 + type: Transform + - uid: 7455 + components: + - pos: -43.5,-25.5 + parent: 6 + type: Transform + - uid: 7456 + components: + - pos: -43.5,-26.5 + parent: 6 + type: Transform + - uid: 7457 + components: + - pos: -41.5,-22.5 + parent: 6 + type: Transform + - uid: 7458 + components: + - pos: -41.5,-21.5 + parent: 6 + type: Transform + - uid: 7459 + components: + - pos: -41.5,-19.5 + parent: 6 + type: Transform + - uid: 7460 + components: + - pos: -41.5,-18.5 + parent: 6 + type: Transform + - uid: 7461 + components: + - pos: -41.5,-17.5 + parent: 6 + type: Transform + - uid: 7462 + components: + - pos: -41.5,-16.5 + parent: 6 + type: Transform + - uid: 7463 + components: + - pos: -41.5,-15.5 + parent: 6 + type: Transform + - uid: 7465 + components: + - pos: -40.5,-24.5 + parent: 6 + type: Transform + - uid: 7466 + components: + - pos: -39.5,-24.5 + parent: 6 + type: Transform + - uid: 7467 + components: + - pos: -38.5,-24.5 + parent: 6 + type: Transform + - uid: 7468 + components: + - pos: -37.5,-24.5 + parent: 6 + type: Transform + - uid: 7469 + components: + - pos: -36.5,-24.5 + parent: 6 + type: Transform + - uid: 7470 + components: + - pos: -35.5,-24.5 + parent: 6 + type: Transform + - uid: 7471 + components: + - pos: -34.5,-24.5 + parent: 6 + type: Transform + - uid: 7472 + components: + - pos: -33.5,-25.5 + parent: 6 + type: Transform + - uid: 7473 + components: + - pos: -33.5,-26.5 + parent: 6 + type: Transform + - uid: 7474 + components: + - pos: -33.5,-27.5 + parent: 6 + type: Transform + - uid: 7475 + components: + - pos: -33.5,-28.5 + parent: 6 + type: Transform + - uid: 7476 + components: + - pos: -29.5,-30.5 + parent: 6 + type: Transform + - uid: 7477 + components: + - pos: -29.5,-31.5 + parent: 6 + type: Transform + - uid: 7478 + components: + - pos: -29.5,-32.5 + parent: 6 + type: Transform + - uid: 7479 + components: + - pos: -29.5,-33.5 + parent: 6 + type: Transform + - uid: 7480 + components: + - pos: -29.5,-34.5 + parent: 6 + type: Transform + - uid: 7481 + components: + - pos: -28.5,-35.5 + parent: 6 + type: Transform + - uid: 7482 + components: + - pos: -27.5,-35.5 + parent: 6 + type: Transform + - uid: 7483 + components: + - pos: -26.5,-35.5 + parent: 6 + type: Transform + - uid: 7484 + components: + - pos: -25.5,-35.5 + parent: 6 + type: Transform + - uid: 7485 + components: + - pos: -24.5,-35.5 + parent: 6 + type: Transform + - uid: 7486 + components: + - pos: -23.5,-35.5 + parent: 6 + type: Transform + - uid: 7487 + components: + - pos: -22.5,-35.5 + parent: 6 + type: Transform + - uid: 7488 + components: + - pos: -21.5,-35.5 + parent: 6 + type: Transform + - uid: 7489 + components: + - pos: -20.5,-35.5 + parent: 6 + type: Transform + - uid: 7490 + components: + - pos: -19.5,-35.5 + parent: 6 + type: Transform + - uid: 7491 + components: + - pos: -18.5,-35.5 + parent: 6 + type: Transform + - uid: 7492 + components: + - pos: -17.5,-35.5 + parent: 6 + type: Transform + - uid: 7493 + components: + - pos: -44.5,-21.5 + parent: 6 + type: Transform + - uid: 7494 + components: + - pos: -45.5,-21.5 + parent: 6 + type: Transform + - uid: 7495 + components: + - pos: -46.5,-21.5 + parent: 6 + type: Transform + - uid: 7496 + components: + - pos: -47.5,-21.5 + parent: 6 + type: Transform + - uid: 7497 + components: + - pos: -48.5,-21.5 + parent: 6 + type: Transform + - uid: 7498 + components: + - pos: -49.5,-21.5 + parent: 6 + type: Transform + - uid: 7499 + components: + - pos: -52.5,-21.5 + parent: 6 + type: Transform + - uid: 7500 + components: + - pos: -53.5,-21.5 + parent: 6 + type: Transform + - uid: 7501 + components: + - pos: -54.5,-21.5 + parent: 6 + type: Transform + - uid: 7502 + components: + - pos: -55.5,-21.5 + parent: 6 + type: Transform + - uid: 7503 + components: + - pos: -51.5,-22.5 + parent: 6 + type: Transform + - uid: 7504 + components: + - pos: -51.5,-23.5 + parent: 6 + type: Transform + - uid: 7505 + components: + - pos: -51.5,-24.5 + parent: 6 + type: Transform + - uid: 7506 + components: + - pos: -51.5,-25.5 + parent: 6 + type: Transform + - uid: 7507 + components: + - pos: -51.5,-26.5 + parent: 6 + type: Transform + - uid: 7508 + components: + - pos: -49.5,-28.5 + parent: 6 + type: Transform + - uid: 7509 + components: + - pos: -49.5,-29.5 + parent: 6 + type: Transform + - uid: 7510 + components: + - pos: -49.5,-30.5 + parent: 6 + type: Transform + - uid: 7511 + components: + - pos: -49.5,-31.5 + parent: 6 + type: Transform + - uid: 7512 + components: + - pos: -49.5,-32.5 + parent: 6 + type: Transform + - uid: 7513 + components: + - pos: -49.5,-33.5 + parent: 6 + type: Transform + - uid: 7514 + components: + - pos: -49.5,-34.5 + parent: 6 + type: Transform + - uid: 7515 + components: + - pos: -49.5,-35.5 + parent: 6 + type: Transform + - uid: 7516 + components: + - pos: -49.5,-36.5 + parent: 6 + type: Transform + - uid: 7517 + components: + - pos: -49.5,-37.5 + parent: 6 + type: Transform + - uid: 7518 + components: + - pos: -49.5,-38.5 + parent: 6 + type: Transform + - uid: 7519 + components: + - pos: -49.5,-39.5 + parent: 6 + type: Transform + - uid: 7520 + components: + - pos: -49.5,-40.5 + parent: 6 + type: Transform + - uid: 7521 + components: + - pos: -49.5,-41.5 + parent: 6 + type: Transform + - uid: 7522 + components: + - pos: -48.5,-27.5 + parent: 6 + type: Transform + - uid: 7523 + components: + - pos: -47.5,-27.5 + parent: 6 + type: Transform + - uid: 7524 + components: + - pos: -46.5,-27.5 + parent: 6 + type: Transform + - uid: 7525 + components: + - pos: -45.5,-27.5 + parent: 6 + type: Transform + - uid: 7526 + components: + - pos: -44.5,-27.5 + parent: 6 + type: Transform + - uid: 7527 + components: + - pos: -56.5,-20.5 + parent: 6 + type: Transform + - uid: 7528 + components: + - pos: -56.5,-19.5 + parent: 6 + type: Transform + - uid: 7529 + components: + - pos: -56.5,-18.5 + parent: 6 + type: Transform + - uid: 7530 + components: + - pos: -56.5,-17.5 + parent: 6 + type: Transform + - uid: 7531 + components: + - pos: -57.5,-16.5 + parent: 6 + type: Transform + - uid: 7532 + components: + - pos: -58.5,-16.5 + parent: 6 + type: Transform + - uid: 7533 + components: + - pos: -59.5,-16.5 + parent: 6 + type: Transform + - uid: 7534 + components: + - pos: -61.5,-16.5 + parent: 6 + type: Transform + - uid: 7535 + components: + - pos: -62.5,-16.5 + parent: 6 + type: Transform + - uid: 7536 + components: + - pos: -63.5,-16.5 + parent: 6 + type: Transform + - uid: 7538 + components: + - pos: -41.5,-7.5 + parent: 6 + type: Transform + - uid: 7539 + components: + - pos: -41.5,-6.5 + parent: 6 + type: Transform + - uid: 7540 + components: + - pos: -41.5,-5.5 + parent: 6 + type: Transform + - uid: 7541 + components: + - pos: -41.5,-4.5 + parent: 6 + type: Transform + - uid: 7542 + components: + - pos: -41.5,-3.5 + parent: 6 + type: Transform + - uid: 7543 + components: + - pos: -41.5,-2.5 + parent: 6 + type: Transform + - uid: 7544 + components: + - pos: -41.5,-1.5 + parent: 6 + type: Transform + - uid: 7545 + components: + - pos: -41.5,-0.5 + parent: 6 + type: Transform + - uid: 7546 + components: + - pos: -41.5,0.5 + parent: 6 + type: Transform + - uid: 7547 + components: + - pos: -41.5,1.5 + parent: 6 + type: Transform + - uid: 7548 + components: + - pos: -41.5,2.5 + parent: 6 + type: Transform + - uid: 7549 + components: + - pos: -41.5,3.5 + parent: 6 + type: Transform + - uid: 7550 + components: + - pos: -38.5,-48.5 + parent: 6 + type: Transform + - uid: 7551 + components: + - pos: -38.5,-49.5 + parent: 6 + type: Transform + - uid: 7552 + components: + - pos: -38.5,-50.5 + parent: 6 + type: Transform + - uid: 7553 + components: + - pos: -38.5,-51.5 + parent: 6 + type: Transform + - uid: 7554 + components: + - pos: -38.5,-52.5 + parent: 6 + type: Transform + - uid: 7555 + components: + - pos: -39.5,-54.5 + parent: 6 + type: Transform + - uid: 7556 + components: + - pos: -39.5,-55.5 + parent: 6 + type: Transform + - uid: 7557 + components: + - pos: -39.5,-56.5 + parent: 6 + type: Transform + - uid: 7558 + components: + - pos: -39.5,-57.5 + parent: 6 + type: Transform + - uid: 7559 + components: + - pos: -39.5,-58.5 + parent: 6 + type: Transform + - uid: 7560 + components: + - pos: -38.5,-59.5 + parent: 6 + type: Transform + - uid: 7561 + components: + - pos: -37.5,-59.5 + parent: 6 + type: Transform + - uid: 7562 + components: + - pos: -36.5,-59.5 + parent: 6 + type: Transform + - uid: 7563 + components: + - pos: -35.5,-59.5 + parent: 6 + type: Transform + - uid: 7564 + components: + - pos: -34.5,-59.5 + parent: 6 + type: Transform + - uid: 7565 + components: + - pos: -33.5,-59.5 + parent: 6 + type: Transform + - uid: 7566 + components: + - pos: -32.5,-59.5 + parent: 6 + type: Transform + - uid: 7567 + components: + - pos: -31.5,-59.5 + parent: 6 + type: Transform + - uid: 7568 + components: + - pos: -30.5,-59.5 + parent: 6 + type: Transform + - uid: 7569 + components: + - pos: -29.5,-59.5 + parent: 6 + type: Transform + - uid: 7570 + components: + - pos: -28.5,-59.5 + parent: 6 + type: Transform + - uid: 7571 + components: + - pos: -27.5,-59.5 + parent: 6 + type: Transform + - uid: 7572 + components: + - pos: -26.5,-59.5 + parent: 6 + type: Transform + - uid: 7573 + components: + - pos: -25.5,-59.5 + parent: 6 + type: Transform + - uid: 7574 + components: + - pos: -24.5,-59.5 + parent: 6 + type: Transform + - uid: 7575 + components: + - pos: -22.5,-59.5 + parent: 6 + type: Transform + - uid: 7576 + components: + - pos: -21.5,-59.5 + parent: 6 + type: Transform + - uid: 7577 + components: + - pos: -20.5,-59.5 + parent: 6 + type: Transform + - uid: 7578 + components: + - pos: -19.5,-55.5 + parent: 6 + type: Transform + - uid: 7579 + components: + - pos: -19.5,-54.5 + parent: 6 + type: Transform + - uid: 7580 + components: + - pos: -19.5,-53.5 + parent: 6 + type: Transform + - uid: 7581 + components: + - pos: -19.5,-52.5 + parent: 6 + type: Transform + - uid: 7582 + components: + - pos: -19.5,-51.5 + parent: 6 + type: Transform + - uid: 7583 + components: + - pos: -19.5,-50.5 + parent: 6 + type: Transform + - uid: 7584 + components: + - pos: -19.5,-49.5 + parent: 6 + type: Transform + - uid: 7585 + components: + - pos: -20.5,-48.5 + parent: 6 + type: Transform + - uid: 7586 + components: + - pos: -21.5,-48.5 + parent: 6 + type: Transform + - uid: 7587 + components: + - pos: -22.5,-48.5 + parent: 6 + type: Transform + - uid: 7588 + components: + - pos: -23.5,-48.5 + parent: 6 + type: Transform + - uid: 7589 + components: + - pos: -13.5,-58.5 + parent: 6 + type: Transform + - uid: 7590 + components: + - pos: -12.5,-58.5 + parent: 6 + type: Transform + - uid: 7591 + components: + - pos: -4.5,-48.5 + parent: 6 + type: Transform + - uid: 7674 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-15.5 + parent: 6 + type: Transform + - uid: 7675 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-16.5 + parent: 6 + type: Transform + - uid: 7678 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 6 + type: Transform + - uid: 7679 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 6 + type: Transform + - uid: 7680 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 6 + type: Transform + - uid: 7681 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-6.5 + parent: 6 + type: Transform + - uid: 7682 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 6 + type: Transform + - uid: 7683 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 6 + type: Transform + - uid: 7684 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 6 + type: Transform + - uid: 7685 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 6 + type: Transform + - uid: 7686 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 6 + type: Transform + - uid: 7687 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 6 + type: Transform + - uid: 7688 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,0.5 + parent: 6 + type: Transform + - uid: 7695 + components: + - pos: 19.5,-16.5 + parent: 6 + type: Transform + - uid: 7696 + components: + - pos: 19.5,-17.5 + parent: 6 + type: Transform + - uid: 7697 + components: + - pos: 19.5,-18.5 + parent: 6 + type: Transform + - uid: 7698 + components: + - pos: 19.5,-19.5 + parent: 6 + type: Transform + - uid: 7699 + components: + - pos: 19.5,-20.5 + parent: 6 + type: Transform + - uid: 7700 + components: + - pos: 18.5,-22.5 + parent: 6 + type: Transform + - uid: 7701 + components: + - pos: 17.5,-22.5 + parent: 6 + type: Transform + - uid: 7704 + components: + - pos: 19.5,-25.5 + parent: 6 + type: Transform + - uid: 7705 + components: + - pos: 19.5,-26.5 + parent: 6 + type: Transform + - uid: 7706 + components: + - pos: 19.5,-27.5 + parent: 6 + type: Transform + - uid: 7707 + components: + - pos: 19.5,-28.5 + parent: 6 + type: Transform + - uid: 7708 + components: + - pos: 19.5,-29.5 + parent: 6 + type: Transform + - uid: 7709 + components: + - pos: 19.5,-30.5 + parent: 6 + type: Transform + - uid: 7710 + components: + - pos: 18.5,-31.5 + parent: 6 + type: Transform + - uid: 7711 + components: + - pos: 17.5,-31.5 + parent: 6 + type: Transform + - uid: 7712 + components: + - pos: 16.5,-31.5 + parent: 6 + type: Transform + - uid: 7713 + components: + - pos: 15.5,-31.5 + parent: 6 + type: Transform + - uid: 7714 + components: + - pos: 14.5,-31.5 + parent: 6 + type: Transform + - uid: 7715 + components: + - pos: 13.5,-31.5 + parent: 6 + type: Transform + - uid: 7716 + components: + - pos: 11.5,-29.5 + parent: 6 + type: Transform + - uid: 7717 + components: + - pos: 10.5,-29.5 + parent: 6 + type: Transform + - uid: 7718 + components: + - pos: 9.5,-29.5 + parent: 6 + type: Transform + - uid: 7753 + components: + - pos: 22.5,-7.5 + parent: 6 + type: Transform + - uid: 7754 + components: + - pos: 23.5,-7.5 + parent: 6 + type: Transform + - uid: 7755 + components: + - pos: 24.5,-6.5 + parent: 6 + type: Transform + - uid: 7756 + components: + - pos: 24.5,-5.5 + parent: 6 + type: Transform + - uid: 7757 + components: + - pos: 24.5,-4.5 + parent: 6 + type: Transform + - uid: 7758 + components: + - pos: 24.5,-3.5 + parent: 6 + type: Transform + - uid: 7759 + components: + - pos: 23.5,-2.5 + parent: 6 + type: Transform + - uid: 7760 + components: + - pos: 22.5,-2.5 + parent: 6 + type: Transform + - uid: 7761 + components: + - pos: 19.5,-4.5 + parent: 6 + type: Transform + - uid: 7762 + components: + - pos: 19.5,-3.5 + parent: 6 + type: Transform + - uid: 7763 + components: + - pos: 19.5,-2.5 + parent: 6 + type: Transform + - uid: 7764 + components: + - pos: 19.5,-1.5 + parent: 6 + type: Transform + - uid: 7765 + components: + - pos: 19.5,-0.5 + parent: 6 + type: Transform + - uid: 7766 + components: + - pos: 19.5,0.5 + parent: 6 + type: Transform + - uid: 7767 + components: + - pos: 22.5,2.5 + parent: 6 + type: Transform + - uid: 7768 + components: + - pos: 22.5,3.5 + parent: 6 + type: Transform + - uid: 7769 + components: + - pos: 22.5,4.5 + parent: 6 + type: Transform + - uid: 7770 + components: + - pos: 22.5,5.5 + parent: 6 + type: Transform + - uid: 7771 + components: + - pos: 22.5,6.5 + parent: 6 + type: Transform + - uid: 7772 + components: + - pos: 22.5,7.5 + parent: 6 + type: Transform + - uid: 7773 + components: + - pos: 22.5,8.5 + parent: 6 + type: Transform + - uid: 7774 + components: + - pos: 22.5,9.5 + parent: 6 + type: Transform + - uid: 7775 + components: + - pos: 22.5,10.5 + parent: 6 + type: Transform + - uid: 7776 + components: + - pos: 18.5,11.5 + parent: 6 + type: Transform + - uid: 7777 + components: + - pos: 19.5,11.5 + parent: 6 + type: Transform + - uid: 7778 + components: + - pos: 20.5,11.5 + parent: 6 + type: Transform + - uid: 7779 + components: + - pos: 21.5,11.5 + parent: 6 + type: Transform + - uid: 7780 + components: + - pos: 11.5,11.5 + parent: 6 + type: Transform + - uid: 7781 + components: + - pos: 10.5,11.5 + parent: 6 + type: Transform + - uid: 7782 + components: + - pos: 9.5,11.5 + parent: 6 + type: Transform + - uid: 7940 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,34.5 + parent: 6 + type: Transform + - uid: 8080 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,35.5 + parent: 6 + type: Transform + - uid: 8175 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,30.5 + parent: 6 + type: Transform + - uid: 8185 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,29.5 + parent: 6 + type: Transform + - uid: 8193 + components: + - pos: -13.5,15.5 + parent: 6 + type: Transform + - uid: 8194 + components: + - pos: -13.5,16.5 + parent: 6 + type: Transform + - uid: 8195 + components: + - pos: -13.5,17.5 + parent: 6 + type: Transform + - uid: 8196 + components: + - pos: -13.5,18.5 + parent: 6 + type: Transform + - uid: 8197 + components: + - pos: -13.5,19.5 + parent: 6 + type: Transform + - uid: 8198 + components: + - pos: -13.5,20.5 + parent: 6 + type: Transform + - uid: 8199 + components: + - pos: -13.5,21.5 + parent: 6 + type: Transform + - uid: 8200 + components: + - pos: -13.5,22.5 + parent: 6 + type: Transform + - uid: 8201 + components: + - pos: -13.5,23.5 + parent: 6 + type: Transform + - uid: 8202 + components: + - pos: -13.5,24.5 + parent: 6 + type: Transform + - uid: 8203 + components: + - pos: -13.5,25.5 + parent: 6 + type: Transform + - uid: 8204 + components: + - pos: -13.5,26.5 + parent: 6 + type: Transform + - uid: 8205 + components: + - pos: -13.5,27.5 + parent: 6 + type: Transform + - uid: 8206 + components: + - pos: -13.5,28.5 + parent: 6 + type: Transform + - uid: 8220 + components: + - pos: -11.5,27.5 + parent: 6 + type: Transform + - uid: 8221 + components: + - pos: -10.5,27.5 + parent: 6 + type: Transform + - uid: 8222 + components: + - pos: -9.5,27.5 + parent: 6 + type: Transform + - uid: 8223 + components: + - pos: -8.5,27.5 + parent: 6 + type: Transform + - uid: 8224 + components: + - pos: -7.5,27.5 + parent: 6 + type: Transform + - uid: 8225 + components: + - pos: -6.5,27.5 + parent: 6 + type: Transform + - uid: 8227 + components: + - pos: -15.5,27.5 + parent: 6 + type: Transform + - uid: 8228 + components: + - pos: -16.5,27.5 + parent: 6 + type: Transform + - uid: 8229 + components: + - pos: -17.5,27.5 + parent: 6 + type: Transform + - uid: 8230 + components: + - pos: -18.5,27.5 + parent: 6 + type: Transform + - uid: 8231 + components: + - pos: -19.5,27.5 + parent: 6 + type: Transform + - uid: 8232 + components: + - pos: -11.5,23.5 + parent: 6 + type: Transform + - uid: 8233 + components: + - pos: -10.5,23.5 + parent: 6 + type: Transform + - uid: 8234 + components: + - pos: -9.5,23.5 + parent: 6 + type: Transform + - uid: 8235 + components: + - pos: -8.5,23.5 + parent: 6 + type: Transform + - uid: 8236 + components: + - pos: -7.5,23.5 + parent: 6 + type: Transform + - uid: 8237 + components: + - pos: -6.5,23.5 + parent: 6 + type: Transform + - uid: 8238 + components: + - pos: -11.5,19.5 + parent: 6 + type: Transform + - uid: 8239 + components: + - pos: -10.5,19.5 + parent: 6 + type: Transform + - uid: 8240 + components: + - pos: -9.5,19.5 + parent: 6 + type: Transform + - uid: 8241 + components: + - pos: -8.5,19.5 + parent: 6 + type: Transform + - uid: 8242 + components: + - pos: -7.5,19.5 + parent: 6 + type: Transform + - uid: 8243 + components: + - pos: -6.5,19.5 + parent: 6 + type: Transform + - uid: 8244 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,37.5 + parent: 6 + type: Transform + - uid: 8245 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,35.5 + parent: 6 + type: Transform + - uid: 8246 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,36.5 + parent: 6 + type: Transform + - uid: 8247 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,35.5 + parent: 6 + type: Transform + - uid: 8248 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,35.5 + parent: 6 + type: Transform + - uid: 8249 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,35.5 + parent: 6 + type: Transform + - uid: 8250 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,35.5 + parent: 6 + type: Transform + - uid: 8253 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,35.5 + parent: 6 + type: Transform + - uid: 8254 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,35.5 + parent: 6 + type: Transform + - uid: 8255 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,35.5 + parent: 6 + type: Transform + - uid: 8256 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,35.5 + parent: 6 + type: Transform + - uid: 8257 + components: + - rot: 3.141592653589793 rad + pos: -5.5,27.5 + parent: 6 + type: Transform + - uid: 8258 + components: + - rot: 3.141592653589793 rad + pos: -4.5,27.5 + parent: 6 + type: Transform + - uid: 8259 + components: + - rot: 3.141592653589793 rad + pos: -4.5,31.5 + parent: 6 + type: Transform + - uid: 8261 + components: + - rot: 3.141592653589793 rad + pos: -5.5,35.5 + parent: 6 + type: Transform + - uid: 8262 + components: + - rot: 3.141592653589793 rad + pos: -4.5,35.5 + parent: 6 + type: Transform + - uid: 8266 + components: + - rot: 3.141592653589793 rad + pos: -5.5,19.5 + parent: 6 + type: Transform + - uid: 8267 + components: + - rot: 3.141592653589793 rad + pos: -4.5,23.5 + parent: 6 + type: Transform + - uid: 8268 + components: + - rot: 3.141592653589793 rad + pos: -5.5,23.5 + parent: 6 + type: Transform + - uid: 8269 + components: + - rot: 3.141592653589793 rad + pos: -4.5,19.5 + parent: 6 + type: Transform + - uid: 8270 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,33.5 + parent: 6 + type: Transform + - uid: 8271 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,32.5 + parent: 6 + type: Transform + - uid: 8273 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,35.5 + parent: 6 + type: Transform + - uid: 8334 + components: + - pos: -41.5,4.5 + parent: 6 + type: Transform + - uid: 8335 + components: + - pos: -39.5,6.5 + parent: 6 + type: Transform + - uid: 8336 + components: + - pos: -38.5,6.5 + parent: 6 + type: Transform + - uid: 8337 + components: + - pos: -37.5,6.5 + parent: 6 + type: Transform + - uid: 8338 + components: + - pos: -36.5,6.5 + parent: 6 + type: Transform + - uid: 8339 + components: + - pos: -35.5,6.5 + parent: 6 + type: Transform + - uid: 8340 + components: + - pos: -34.5,6.5 + parent: 6 + type: Transform + - uid: 8341 + components: + - pos: -28.5,6.5 + parent: 6 + type: Transform + - uid: 8342 + components: + - pos: -27.5,6.5 + parent: 6 + type: Transform + - uid: 8343 + components: + - pos: -26.5,6.5 + parent: 6 + type: Transform + - uid: 8344 + components: + - pos: -25.5,6.5 + parent: 6 + type: Transform + - uid: 8345 + components: + - pos: -24.5,6.5 + parent: 6 + type: Transform + - uid: 10898 + components: + - pos: 21.5,-4.5 + parent: 6 + type: Transform + - uid: 10899 + components: + - pos: 21.5,-5.5 + parent: 6 + type: Transform + - uid: 10926 + components: + - pos: -16.5,-58.5 + parent: 6 + type: Transform + - uid: 10927 + components: + - pos: -16.5,-59.5 + parent: 6 + type: Transform + - uid: 10955 + components: + - pos: -36.5,-30.5 + parent: 6 + type: Transform + - uid: 10956 + components: + - pos: -36.5,-31.5 + parent: 6 + type: Transform + - uid: 10957 + components: + - pos: -36.5,-32.5 + parent: 6 + type: Transform + - uid: 10958 + components: + - pos: -36.5,-33.5 + parent: 6 + type: Transform + - uid: 10959 + components: + - pos: -36.5,-34.5 + parent: 6 + type: Transform + - uid: 10960 + components: + - pos: -36.5,-35.5 + parent: 6 + type: Transform + - uid: 10961 + components: + - pos: -35.5,-37.5 + parent: 6 + type: Transform + - uid: 10962 + components: + - pos: -34.5,-37.5 + parent: 6 + type: Transform + - uid: 10963 + components: + - pos: -33.5,-37.5 + parent: 6 + type: Transform + - uid: 10964 + components: + - pos: -32.5,-37.5 + parent: 6 + type: Transform + - uid: 10965 + components: + - pos: -31.5,-37.5 + parent: 6 + type: Transform + - uid: 10966 + components: + - pos: -30.5,-37.5 + parent: 6 + type: Transform + - uid: 10967 + components: + - pos: -29.5,-37.5 + parent: 6 + type: Transform + - uid: 10968 + components: + - pos: -28.5,-38.5 + parent: 6 + type: Transform + - uid: 10969 + components: + - pos: -28.5,-39.5 + parent: 6 + type: Transform + - uid: 10970 + components: + - pos: -28.5,-40.5 + parent: 6 + type: Transform + - uid: 10971 + components: + - pos: -27.5,-41.5 + parent: 6 + type: Transform + - uid: 10972 + components: + - pos: -26.5,-41.5 + parent: 6 + type: Transform + - uid: 10973 + components: + - pos: -25.5,-41.5 + parent: 6 + type: Transform + - uid: 10974 + components: + - pos: -24.5,-41.5 + parent: 6 + type: Transform + - uid: 10975 + components: + - pos: -23.5,-41.5 + parent: 6 + type: Transform + - uid: 13773 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,-32.5 + parent: 6 + type: Transform + - uid: 13774 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,-31.5 + parent: 6 + type: Transform + - uid: 13775 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,-30.5 + parent: 6 + type: Transform + - uid: 13776 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,-29.5 + parent: 6 + type: Transform + - uid: 13777 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,-28.5 + parent: 6 + type: Transform + - uid: 13778 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,-27.5 + parent: 6 + type: Transform + - uid: 13779 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,-26.5 + parent: 6 + type: Transform + - uid: 13780 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,-25.5 + parent: 6 + type: Transform + - uid: 13781 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,-24.5 + parent: 6 + type: Transform + - uid: 13782 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,-23.5 + parent: 6 + type: Transform + - uid: 13783 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,-22.5 + parent: 6 + type: Transform + - uid: 13784 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,-21.5 + parent: 6 + type: Transform + - uid: 13785 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,-20.5 + parent: 6 + type: Transform + - uid: 13786 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,-19.5 + parent: 6 + type: Transform + - uid: 13787 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,-18.5 + parent: 6 + type: Transform + - uid: 13788 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,-17.5 + parent: 6 + type: Transform + - uid: 13789 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,-16.5 + parent: 6 + type: Transform + - uid: 13790 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,-15.5 + parent: 6 + type: Transform + - uid: 13791 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,-24.5 + parent: 6 + type: Transform + - uid: 13792 + components: + - rot: -1.5707963267948966 rad + pos: -83.5,-24.5 + parent: 6 + type: Transform + - uid: 13793 + components: + - rot: -1.5707963267948966 rad + pos: -86.5,-24.5 + parent: 6 + type: Transform + - uid: 13794 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,-24.5 + parent: 6 + type: Transform + - uid: 13908 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,35.5 + parent: 6 + type: Transform + - uid: 14013 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,31.5 + parent: 6 + type: Transform + - uid: 14014 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,31.5 + parent: 6 + type: Transform + - uid: 14015 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,31.5 + parent: 6 + type: Transform + - uid: 14016 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,31.5 + parent: 6 + type: Transform + - uid: 14017 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,31.5 + parent: 6 + type: Transform + - uid: 14018 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,31.5 + parent: 6 + type: Transform + - uid: 14019 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,31.5 + parent: 6 + type: Transform + - uid: 14020 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,31.5 + parent: 6 + type: Transform + - uid: 14021 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,31.5 + parent: 6 + type: Transform + - uid: 14022 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,31.5 + parent: 6 + type: Transform + - uid: 14023 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,31.5 + parent: 6 + type: Transform + - uid: 14024 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,31.5 + parent: 6 + type: Transform + - uid: 14025 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,31.5 + parent: 6 + type: Transform + - uid: 14148 + components: + - rot: 3.141592653589793 rad + pos: -5.5,31.5 + parent: 6 + type: Transform +- proto: Cautery + entities: + - uid: 6190 + components: + - pos: -34.049854,-14.57724 + parent: 6 + type: Transform +- proto: Chair + entities: + - uid: 208 + components: + - rot: 3.141592653589793 rad + pos: 10.5,7.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 209 + components: + - rot: 3.141592653589793 rad + pos: 11.5,7.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 469 + components: + - pos: -1.5,-20.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 470 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-23.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2141 + components: + - pos: -47.5,-30.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2643 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-18.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2647 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-19.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 3192 + components: + - pos: -31.5,-20.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 3334 + components: + - pos: -30.5,-20.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 3340 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-12.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 3602 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-49.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 3891 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-37.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 3892 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-38.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 3893 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-32.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 3896 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-31.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 4450 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-16.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 4451 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-17.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 4452 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-16.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 4453 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-17.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 4499 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-15.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 4500 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 4501 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-15.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 4502 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-16.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5150 + components: + - pos: -2.5,-20.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5154 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-22.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5171 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-22.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5217 + components: + - pos: 5.5,8.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5218 + components: + - pos: 6.5,8.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5243 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-25.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5244 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-23.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5245 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-21.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5246 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5247 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-23.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5248 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-25.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5461 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-48.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5977 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-48.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6018 + components: + - pos: 14.5,20.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6019 + components: + - pos: 15.5,20.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6213 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-33.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6239 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-39.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6511 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-37.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6512 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-38.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6515 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-31.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6516 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-32.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6533 + components: + - pos: -61.5,-13.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6534 + components: + - pos: -60.5,-13.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6535 + components: + - pos: -59.5,-13.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6536 + components: + - rot: 3.141592653589793 rad + pos: -61.5,-11.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6537 + components: + - rot: 3.141592653589793 rad + pos: -60.5,-11.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6538 + components: + - rot: 3.141592653589793 rad + pos: -59.5,-11.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7359 + components: + - pos: -35.5,-20.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7360 + components: + - pos: -36.5,-20.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7647 + components: + - pos: -49.5,-10.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7648 + components: + - pos: -48.5,-10.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7660 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-12.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7662 + components: + - pos: 35.5,-10.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7663 + components: + - pos: 36.5,-10.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7664 + components: + - pos: 38.5,-10.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7665 + components: + - pos: 39.5,-10.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7691 + components: + - pos: 31.5,9.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7745 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-41.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7798 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7818 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-23.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7819 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7820 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-23.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7821 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7822 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-23.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7823 + components: + - pos: -21.5,-43.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7824 + components: + - pos: -22.5,-43.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7826 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-45.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 7827 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-45.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 9038 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-22.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 9039 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-23.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 10751 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-4.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 13662 + components: + - rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 13645 + type: Transform + - bodyType: Static + type: Physics + - uid: 13663 + components: + - rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 13645 + type: Transform + - bodyType: Static + type: Physics + - uid: 13675 + components: + - rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 13645 + type: Transform + - bodyType: Static + type: Physics +- proto: ChairFolding + entities: + - uid: 3353 + components: + - pos: -33.5,-49.5 + parent: 6 + type: Transform + - uid: 3800 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-56.5 + parent: 6 + type: Transform + - uid: 5293 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-45.5 + parent: 6 + type: Transform + - uid: 5294 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-46.5 + parent: 6 + type: Transform + - uid: 5295 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-46.5 + parent: 6 + type: Transform + - uid: 5296 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-46.5 + parent: 6 + type: Transform + - uid: 5895 + components: + - pos: -32.5,-49.5 + parent: 6 + type: Transform + - uid: 5897 + components: + - pos: -32.5,-50.5 + parent: 6 + type: Transform + - uid: 5899 + components: + - pos: -32.5,-51.5 + parent: 6 + type: Transform + - uid: 5900 + components: + - pos: -32.5,-52.5 + parent: 6 + type: Transform + - uid: 5901 + components: + - pos: -34.5,-52.5 + parent: 6 + type: Transform + - uid: 7444 + components: + - pos: -33.5,-50.5 + parent: 6 + type: Transform + - uid: 7445 + components: + - pos: -34.5,-51.5 + parent: 6 + type: Transform + - uid: 7446 + components: + - pos: -34.5,-50.5 + parent: 6 + type: Transform + - uid: 7447 + components: + - pos: -33.5,-51.5 + parent: 6 + type: Transform + - uid: 7448 + components: + - pos: -33.5,-52.5 + parent: 6 + type: Transform + - uid: 7449 + components: + - pos: -34.5,-49.5 + parent: 6 + type: Transform + - uid: 7676 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-18.5 + parent: 6 + type: Transform + - uid: 7722 + components: + - pos: -33.5,-34.5 + parent: 6 + type: Transform + - uid: 10880 + components: + - pos: 9.5,12.5 + parent: 6 + type: Transform + - uid: 10884 + components: + - pos: 20.5,12.5 + parent: 6 + type: Transform + - uid: 10901 + components: + - pos: 21.5,-0.5 + parent: 6 + type: Transform + - uid: 10915 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-20.5 + parent: 6 + type: Transform + - uid: 10918 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-32.5 + parent: 6 + type: Transform + - uid: 10938 + components: + - pos: -25.5,-58.5 + parent: 6 + type: Transform + - uid: 10940 + components: + - pos: -23.5,-58.5 + parent: 6 + type: Transform + - uid: 10949 + components: + - pos: -30.5,-58.5 + parent: 6 + type: Transform + - uid: 10987 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-30.5 + parent: 6 + type: Transform + - uid: 10996 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-38.5 + parent: 6 + type: Transform + - uid: 11007 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-26.5 + parent: 6 + type: Transform + - uid: 11011 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-19.5 + parent: 6 + type: Transform + - uid: 11013 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-19.5 + parent: 6 + type: Transform + - uid: 11020 + components: + - rot: 3.141592653589793 rad + pos: -66.5,-16.5 + parent: 6 + type: Transform + - uid: 11036 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,0.5 + parent: 6 + type: Transform + - uid: 11053 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-7.5 + parent: 6 + type: Transform + - uid: 11097 + components: + - pos: -25.5,7.5 + parent: 6 + type: Transform +- proto: ChairFoldingSpawnFolded + entities: + - uid: 6696 + components: + - pos: -84.00176,-46.912598 + parent: 6 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 676 + components: + - pos: -2.5,-77.5 + parent: 6 + type: Transform + - uid: 1652 + components: + - pos: -6.5,-77.5 + parent: 6 + type: Transform + - uid: 3604 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-49.5 + parent: 6 + type: Transform + - uid: 4514 + components: + - pos: 8.5,-4.5 + parent: 6 + type: Transform + - uid: 4515 + components: + - pos: 9.5,-4.5 + parent: 6 + type: Transform + - uid: 4539 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-32.5 + parent: 6 + type: Transform + - uid: 4540 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-35.5 + parent: 6 + type: Transform + - uid: 4541 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-36.5 + parent: 6 + type: Transform + - uid: 4890 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 6 + type: Transform + - uid: 4902 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-7.5 + parent: 6 + type: Transform + - uid: 4903 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-7.5 + parent: 6 + type: Transform + - uid: 5087 + components: + - rot: 3.141592653589793 rad + pos: -4.5,9.5 + parent: 6 + type: Transform + - uid: 5088 + components: + - rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 6 + type: Transform + - uid: 5089 + components: + - rot: 3.141592653589793 rad + pos: -7.5,9.5 + parent: 6 + type: Transform + - uid: 5090 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,7.5 + parent: 6 + type: Transform + - uid: 5091 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 6 + type: Transform + - uid: 5092 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 6 + type: Transform + - uid: 5093 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 6 + type: Transform + - uid: 5094 + components: + - rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 6 + type: Transform + - uid: 5095 + components: + - rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 6 + type: Transform + - uid: 5105 + components: + - pos: -0.5,-7.5 + parent: 6 + type: Transform + - uid: 5166 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 6 + type: Transform + - uid: 5253 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-29.5 + parent: 6 + type: Transform + - uid: 5254 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-30.5 + parent: 6 + type: Transform + - uid: 5280 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-32.5 + parent: 6 + type: Transform + - uid: 5281 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-32.5 + parent: 6 + type: Transform + - uid: 5357 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-51.5 + parent: 6 + type: Transform + - uid: 5580 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,-19.5 + parent: 6 + type: Transform + - uid: 6199 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-4.5 + parent: 6 + type: Transform + - uid: 7424 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-51.5 + parent: 6 + type: Transform + - uid: 7425 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-52.5 + parent: 6 + type: Transform + - uid: 10896 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-5.5 + parent: 6 + type: Transform + - uid: 10930 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-59.5 + parent: 6 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 3343 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-22.5 + parent: 6 + type: Transform + - uid: 3377 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-17.5 + parent: 6 + type: Transform + - uid: 3378 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-15.5 + parent: 6 + type: Transform + - uid: 3379 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-22.5 + parent: 6 + type: Transform + - uid: 3380 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-26.5 + parent: 6 + type: Transform + - uid: 3658 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-50.5 + parent: 6 + type: Transform + - uid: 4657 + components: + - pos: -37.5,-17.5 + parent: 6 + type: Transform + - uid: 5297 + components: + - pos: 13.5,-44.5 + parent: 6 + type: Transform + - uid: 6442 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-33.5 + parent: 6 + type: Transform + - uid: 6443 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-31.5 + parent: 6 + type: Transform + - uid: 6444 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-29.5 + parent: 6 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 4497 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-19.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 4498 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-19.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics +- proto: ChairRitual + entities: + - uid: 7606 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-55.5 + parent: 6 + type: Transform +- proto: ChairWood + entities: + - uid: 7604 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-47.5 + parent: 6 + type: Transform + - uid: 7605 + components: + - pos: -46.5,-51.5 + parent: 6 + type: Transform + - uid: 7614 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-52.5 + parent: 6 + type: Transform + - uid: 7615 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-50.5 + parent: 6 + type: Transform + - uid: 7729 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-37.5 + parent: 6 + type: Transform + - uid: 7730 + components: + - pos: -22.5,-38.5 + parent: 6 + type: Transform + - uid: 13638 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 10465 + type: Transform +- proto: CheapLighter + entities: + - uid: 5903 + components: + - pos: -1.6074085,-46.469543 + parent: 6 + type: Transform + - uid: 11173 + components: + - pos: 8.642222,-18.455147 + parent: 6 + type: Transform + - uid: 13823 + components: + - pos: -70.22803,-10.571672 + parent: 6 + type: Transform +- proto: chem_master + entities: + - uid: 4802 + components: + - pos: -21.5,-14.5 + parent: 6 + type: Transform + - uid: 4804 + components: + - pos: -24.5,-17.5 + parent: 6 + type: Transform +- proto: ChemBag + entities: + - uid: 4215 + components: + - pos: -23.298819,-14.353152 + parent: 6 + type: Transform +- proto: ChemDispenser + entities: + - uid: 4801 + components: + - pos: -22.5,-14.5 + parent: 6 + type: Transform + - uid: 4805 + components: + - pos: -24.5,-16.5 + parent: 6 + type: Transform +- proto: ChemistryHotplate + entities: + - uid: 14047 + components: + - pos: -26.5,-15.5 + parent: 6 + type: Transform +- proto: ChurchOrganInstrument + entities: + - uid: 4477 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-56.5 + parent: 6 + type: Transform +- proto: CigarGold + entities: + - uid: 5181 + components: + - pos: 0.67496234,-1.3079823 + parent: 6 + type: Transform + - uid: 11172 + components: + - pos: 8.358248,-18.327427 + parent: 6 + type: Transform +- proto: CigarGoldCase + entities: + - uid: 5071 + components: + - pos: -22.566296,2.9723496 + parent: 6 + type: Transform + - uid: 13822 + components: + - pos: -70.6114,-10.330423 + parent: 6 + type: Transform +- proto: CigarGoldSpent + entities: + - uid: 5307 + components: + - pos: 13.6908455,-45.489017 + parent: 6 + type: Transform +- proto: CigPackRed + entities: + - uid: 7628 + components: + - pos: -39.471367,-33.595306 + parent: 6 + type: Transform +- proto: CircuitImprinter + entities: + - uid: 4481 + components: + - pos: -9.5,-52.5 + parent: 6 + type: Transform +- proto: CloningPod + entities: + - uid: 4897 + components: + - pos: -34.5,-17.5 + parent: 6 + type: Transform +- proto: ClosetBase + entities: + - uid: 5850 + components: + - pos: -37.5,-27.5 + parent: 6 + 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 + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3188 + type: ContainerContainer + - uid: 5852 + components: + - pos: -41.5,-26.5 + parent: 6 + 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 + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5851 + - 5958 + type: ContainerContainer +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 3371 + components: + - pos: -23.5,-24.5 + parent: 6 + 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: 5138 + components: + - pos: 1.5,-9.5 + parent: 6 + 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: 5313 + components: + - pos: 15.5,-45.5 + parent: 6 + 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: 6328 + components: + - pos: -1.5,6.5 + parent: 6 + 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: 6542 + components: + - pos: -56.5,-13.5 + parent: 6 + 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: 7374 + components: + - pos: -4.5,-62.5 + parent: 6 + 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: 7832 + components: + - pos: -23.5,-46.5 + parent: 6 + 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: 7835 + components: + - pos: 22.5,-9.5 + parent: 6 + 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: 10877 + components: + - pos: 13.5,12.5 + parent: 6 + 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: 10904 + components: + - pos: 20.5,-15.5 + parent: 6 + 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: 10906 + components: + - pos: 9.5,-28.5 + parent: 6 + 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: 10936 + components: + - pos: -2.5,-59.5 + parent: 6 + 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: 10943 + components: + - pos: -20.5,-58.5 + parent: 6 + 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: 10950 + components: + - pos: -37.5,-48.5 + parent: 6 + 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: 10984 + components: + - pos: -18.5,-34.5 + parent: 6 + 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: 10989 + components: + - pos: -32.5,-25.5 + parent: 6 + 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: 10994 + components: + - pos: -50.5,-39.5 + parent: 6 + 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: 11009 + components: + - pos: -42.5,-16.5 + parent: 6 + 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: 11018 + components: + - pos: -54.5,-22.5 + parent: 6 + 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: 11022 + components: + - pos: -64.5,-17.5 + parent: 6 + 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: 11032 + components: + - pos: -40.5,-6.5 + parent: 6 + 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: 11044 + components: + - pos: -9.5,-7.5 + parent: 6 + 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: 11164 + components: + - pos: -52.5,-30.5 + parent: 6 + 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: 3372 + components: + - pos: -23.5,-25.5 + parent: 6 + 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: 4907 + components: + - pos: -30.5,7.5 + parent: 6 + 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: 5157 + components: + - pos: 2.5,-9.5 + parent: 6 + 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: 5312 + components: + - pos: 8.5,-45.5 + parent: 6 + 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: 5367 + components: + - pos: -6.5,-52.5 + parent: 6 + 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: 6338 + components: + - pos: -7.5,6.5 + parent: 6 + 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: 6541 + components: + - pos: -56.5,-14.5 + parent: 6 + 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: 7375 + components: + - pos: -4.5,-63.5 + parent: 6 + 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: 7834 + components: + - pos: -22.5,-46.5 + parent: 6 + 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: 7836 + components: + - pos: 23.5,-9.5 + parent: 6 + 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: 10878 + components: + - pos: 16.5,12.5 + parent: 6 + 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: 10905 + components: + - pos: 20.5,-16.5 + parent: 6 + 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: 10907 + components: + - pos: 10.5,-28.5 + parent: 6 + 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: 10937 + components: + - pos: -1.5,-59.5 + parent: 6 + 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: 10942 + components: + - pos: -21.5,-58.5 + parent: 6 + 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: 10951 + components: + - pos: -37.5,-49.5 + parent: 6 + 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: 10983 + components: + - pos: -17.5,-34.5 + parent: 6 + 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: 10990 + components: + - pos: -32.5,-26.5 + parent: 6 + 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: 10993 + components: + - pos: -50.5,-40.5 + parent: 6 + 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: 11008 + components: + - pos: -42.5,-15.5 + parent: 6 + 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: 11017 + components: + - pos: -53.5,-22.5 + parent: 6 + 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: 11023 + components: + - pos: -65.5,-17.5 + parent: 6 + 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: 11031 + components: + - pos: -40.5,-5.5 + parent: 6 + 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: 11043 + components: + - pos: -8.5,-7.5 + parent: 6 + 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: 11165 + components: + - pos: -51.5,-30.5 + parent: 6 + 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: 13825 + components: + - pos: -68.5,-13.5 + parent: 6 + 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: ClosetJanitorFilled + entities: + - uid: 13761 + components: + - pos: 25.5,4.5 + parent: 6 + 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: ClosetL3Filled + entities: + - uid: 10954 + components: + - pos: -38.5,-58.5 + parent: 6 + 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: ClosetL3JanitorFilled + entities: + - uid: 1426 + components: + - pos: 28.5,0.5 + parent: 6 + 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: ClosetL3ScienceFilled + entities: + - uid: 5365 + components: + - pos: -6.5,-50.5 + parent: 6 + 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: ClosetL3VirologyFilled + entities: + - uid: 10991 + components: + - pos: -32.5,-24.5 + parent: 6 + 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: ClosetMaintenanceFilledRandom + entities: + - uid: 5314 + components: + - pos: 16.5,-45.5 + parent: 6 + 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: 10881 + components: + - pos: 18.5,12.5 + parent: 6 + 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: 10892 + components: + - pos: 23.5,3.5 + parent: 6 + 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: 10893 + components: + - pos: 11.5,12.5 + parent: 6 + 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: 10908 + components: + - pos: 11.5,-28.5 + parent: 6 + 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: 10909 + components: + - pos: 20.5,-17.5 + parent: 6 + 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: 10920 + components: + - pos: 17.5,-32.5 + parent: 6 + 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: 10945 + components: + - pos: -28.5,-58.5 + parent: 6 + 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: 10952 + components: + - pos: -37.5,-50.5 + parent: 6 + 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: 10953 + components: + - pos: -37.5,-58.5 + parent: 6 + 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: 10976 + components: + - pos: -23.5,-41.5 + parent: 6 + 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: 10986 + components: + - pos: -28.5,-29.5 + parent: 6 + 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: 10992 + components: + - pos: -32.5,-27.5 + parent: 6 + 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: 10995 + components: + - pos: -51.5,-41.5 + parent: 6 + 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: 10999 + components: + - pos: -51.5,-28.5 + parent: 6 + 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: 11010 + components: + - pos: -42.5,-17.5 + parent: 6 + 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: 11015 + components: + - pos: -43.5,-19.5 + parent: 6 + 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: 11019 + components: + - pos: -55.5,-22.5 + parent: 6 + 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: 11024 + components: + - pos: -66.5,-17.5 + parent: 6 + 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: 11029 + components: + - pos: -40.5,-4.5 + parent: 6 + 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: 11039 + components: + - pos: -40.5,-2.5 + parent: 6 + 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: 11047 + components: + - pos: -10.5,-7.5 + parent: 6 + 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: ClosetRadiationSuitFilled + entities: + - uid: 5366 + components: + - pos: -6.5,-51.5 + parent: 6 + 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: 11030 + components: + - pos: -40.5,3.5 + parent: 6 + 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: ClosetToolFilled + entities: + - uid: 3403 + components: + - pos: -50.5,-19.5 + parent: 6 + 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: 6362 + components: + - pos: -32.5,4.5 + parent: 6 + 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: 6683 + components: + - pos: -24.5,-61.5 + parent: 6 + 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: 10882 + components: + - pos: 19.5,12.5 + parent: 6 + 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: 10910 + components: + - pos: 20.5,-18.5 + parent: 6 + 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: 10946 + components: + - pos: -29.5,-58.5 + parent: 6 + 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: 10985 + components: + - pos: -19.5,-34.5 + parent: 6 + 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: 11000 + components: + - pos: -52.5,-28.5 + parent: 6 + 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: 10865 + components: + - pos: -20.5,8.5 + parent: 6 + 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: 10868 + components: + - pos: -25.5,-40.5 + parent: 6 + 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: 10870 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-49.5 + parent: 6 + 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: 10872 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-49.5 + parent: 6 + 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: 10874 + components: + - pos: 22.5,-6.5 + parent: 6 + 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: 10876 + components: + - pos: 24.5,10.5 + parent: 6 + 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: 10888 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-3.5 + parent: 6 + 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: 11041 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-17.5 + parent: 6 + 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: 11052 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 6 + 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: 10866 + components: + - pos: -21.5,8.5 + parent: 6 + 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: 10867 + components: + - pos: -24.5,-40.5 + parent: 6 + 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: 10869 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-49.5 + parent: 6 + 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: 10871 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-49.5 + parent: 6 + 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: 10873 + components: + - pos: 25.5,10.5 + parent: 6 + 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: 10875 + components: + - pos: 23.5,-6.5 + parent: 6 + 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: 10889 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-4.5 + parent: 6 + 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: 11040 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-16.5 + parent: 6 + 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: 11051 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,0.5 + parent: 6 + 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: ClosetWallMaintenanceFilledRandom + entities: + - uid: 10903 + components: + - pos: 21.5,-6.5 + parent: 6 + 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: 10935 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-49.5 + parent: 6 + 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: 10944 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-49.5 + parent: 6 + 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: 11042 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 6 + 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: ClosetWallOrange + entities: + - uid: 5910 + components: + - rot: 3.141592653589793 rad + pos: 13.5,17.5 + parent: 6 + 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: ClothingBeltChampion + entities: + - uid: 5067 + components: + - pos: -18.590635,2.986541 + parent: 6 + type: Transform +- proto: ClothingBeltHolster + entities: + - uid: 2814 + components: + - pos: 12.3347225,30.689383 + parent: 6 + type: Transform +- proto: ClothingBeltUtilityFilled + entities: + - uid: 4883 + components: + - pos: -33.597805,-6.3027463 + parent: 6 + type: Transform + - uid: 5351 + components: + - pos: 3.5653093,-51.38192 + parent: 6 + type: Transform + - uid: 5591 + components: + - pos: 13.270581,-42.52453 + parent: 6 + type: Transform + - uid: 6087 + components: + - pos: 0.4612531,-75.33451 + parent: 6 + type: Transform + - uid: 6476 + components: + - pos: 9.50393,-31.536753 + parent: 6 + type: Transform + - uid: 7599 + components: + - pos: -43.48504,-50.607742 + parent: 6 + type: Transform +- proto: ClothingEyesGlasses + entities: + - uid: 4833 + components: + - pos: -18.818558,-21.437395 + parent: 6 + type: Transform + - uid: 7750 + components: + - pos: -20.560797,-41.40714 + parent: 6 + type: Transform + - uid: 7800 + components: + - pos: 8.529046,-15.801388 + parent: 6 + type: Transform + - uid: 14277 + components: + - pos: 13.630257,-16.514284 + parent: 6 + type: Transform +- proto: ClothingEyesGlassesGar + entities: + - uid: 10900 + components: + - pos: 22.311544,-5.3524156 + parent: 6 + type: Transform +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 4634 + components: + - pos: -2.659992,-14.521056 + parent: 6 + type: Transform +- proto: ClothingHandsGlovesColorOrange + entities: + - uid: 5956 + components: + - pos: -21.92255,-8.610228 + parent: 6 + type: Transform +- proto: ClothingHandsGlovesColorPurple + entities: + - uid: 2743 + components: + - pos: -47.56112,16.321089 + parent: 6 + type: Transform +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 4885 + components: + - pos: -28.684895,-5.5902634 + parent: 6 + type: Transform + - uid: 5195 + components: + - pos: -18.228912,8.500882 + parent: 6 + type: Transform +- proto: ClothingHandsGlovesColorYellowBudget + entities: + - uid: 5385 + components: + - pos: -1.5610592,-56.331245 + parent: 6 + type: Transform + - uid: 6088 + components: + - pos: 0.81622213,-75.54737 + parent: 6 + type: Transform +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 6429 + components: + - pos: -26.517832,-26.482176 + parent: 6 + type: Transform +- proto: ClothingHandsGlovesPowerglove + entities: + - uid: 10204 + components: + - pos: -56.53125,-41.442997 + parent: 6 + type: Transform +- proto: ClothingHandsGlovesRobohands + entities: + - uid: 5401 + components: + - pos: -16.90962,-48.44467 + parent: 6 + type: Transform +- proto: ClothingHeadFishCap + entities: + - uid: 9714 + components: + - pos: -1.41823,-31.369633 + parent: 6 + type: Transform +- proto: ClothingHeadHatAnimalCat + entities: + - uid: 13482 + components: + - pos: 21.631893,-31.396904 + parent: 6 + type: Transform +- proto: ClothingHeadHatAnimalCatBlack + entities: + - uid: 4310 + components: + - pos: 21.276922,-31.396904 + parent: 6 + type: Transform + - uid: 6180 + components: + - pos: -22.575693,-8.482508 + parent: 6 + type: Transform +- proto: ClothingHeadHatAnimalCatBrown + entities: + - uid: 13481 + components: + - pos: 21.475706,-31.59558 + parent: 6 + type: Transform +- proto: ClothingHeadHatAnimalMonkey + entities: + - uid: 3721 + components: + - pos: -18.479383,-62.25574 + parent: 6 + type: Transform +- proto: ClothingHeadHatBeaverHat + entities: + - uid: 6418 + components: + - pos: -46.487278,-24.315676 + parent: 6 + type: Transform +- proto: ClothingHeadHatBunny + entities: + - uid: 6375 + components: + - pos: -36.41654,22.578691 + parent: 6 + type: Transform +- proto: ClothingHeadHatCardborg + entities: + - uid: 7416 + components: + - pos: -17.110708,-47.88917 + parent: 6 + type: Transform +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 5848 + components: + - pos: -37.493713,-26.298307 + parent: 6 + type: Transform + - uid: 7607 + components: + - pos: -50.580036,-49.370796 + parent: 6 + type: Transform +- proto: ClothingHeadHatFez + entities: + - uid: 3820 + components: + - pos: -27.2236,-61.403152 + parent: 6 + type: Transform +- proto: ClothingHeadHatGreensoftFlipped + entities: + - uid: 6240 + components: + - pos: -47.612755,-39.422966 + parent: 6 + type: Transform +- proto: ClothingHeadHatHairflower + entities: + - uid: 5070 + components: + - pos: -22.339115,2.4756608 + parent: 6 + type: Transform +- proto: ClothingHeadHatHoodCulthood + entities: + - uid: 5966 + components: + - pos: -26.233181,-56.472523 + parent: 6 + type: Transform +- proto: ClothingHeadHatMimesoftFlipped + entities: + - uid: 5627 + components: + - pos: 15.754807,-29.252306 + parent: 6 + type: Transform +- proto: ClothingHeadHatOutlawHat + entities: + - uid: 13640 + components: + - pos: 9.024567,-4.03096 + parent: 10465 + type: Transform +- proto: ClothingHeadHatPaper + entities: + - uid: 6033 + components: + - pos: 15.44382,19.737957 + parent: 6 + type: Transform + - uid: 6034 + components: + - pos: 15.330231,19.596046 + parent: 6 + type: Transform +- proto: ClothingHeadHatPirate + entities: + - uid: 5306 + components: + - pos: 13.502977,-44.680126 + parent: 6 + type: Transform +- proto: ClothingHeadHatPwig + entities: + - uid: 14278 + components: + - pos: 15.505256,-18.40285 + parent: 6 + type: Transform +- proto: ClothingHeadHatRedwizard + entities: + - uid: 5856 + components: + - pos: -41.729218,-27.29859 + parent: 6 + type: Transform +- proto: ClothingHeadHatSurgcapPurple + entities: + - uid: 6193 + components: + - pos: -32.80036,-14.343598 + parent: 6 + type: Transform +- proto: ClothingHeadHatUshanka + entities: + - uid: 7723 + components: + - pos: -32.71416,-34.369083 + parent: 6 + type: Transform +- proto: ClothingHeadHatWelding + entities: + - uid: 5200 + components: + - pos: -12.674489,8.702609 + parent: 6 + type: Transform + - uid: 5389 + components: + - pos: -2.2581992,-56.345436 + parent: 6 + type: Transform +- proto: ClothingHeadHatWizard + entities: + - uid: 5855 + components: + - pos: -39.71299,-26.347786 + parent: 6 + type: Transform +- proto: ClothingHeadHatXmasCrown + entities: + - uid: 3207 + components: + - pos: -42.53268,27.471987 + parent: 6 + type: Transform +- proto: ClothingHeadHelmetEVA + entities: + - uid: 4438 + components: + - pos: -44.64013,-14.1675 + parent: 6 + type: Transform + - uid: 4439 + components: + - pos: -44.633694,-15.198934 + parent: 6 + type: Transform +- proto: ClothingHeadHelmetSyndicate + entities: + - uid: 3911 + components: + - pos: -69.71052,-17.335955 + parent: 6 + type: Transform +- proto: ClothingMaskBreath + entities: + - uid: 7379 + components: + - pos: -7.2765384,-61.424934 + parent: 6 + type: Transform + - uid: 7380 + components: + - pos: -7.4223714,-61.674934 + parent: 6 + type: Transform + - uid: 13641 + components: + - pos: 7.330429,-7.3961945 + parent: 10465 + type: Transform +- proto: ClothingMaskGas + entities: + - uid: 4886 + components: + - pos: -28.38672,-5.3348236 + parent: 6 + type: Transform + - uid: 5194 + components: + - pos: -18.569683,8.614411 + parent: 6 + type: Transform + - uid: 7221 + components: + - pos: 22.363403,-22.300692 + parent: 6 + type: Transform +- proto: ClothingNeckAromanticPin + entities: + - uid: 3341 + components: + - pos: -22.539303,-43.57677 + parent: 6 + type: Transform +- proto: ClothingNeckAsexualPin + entities: + - uid: 14049 + components: + - pos: -42.895363,-52.494324 + parent: 6 + type: Transform +- proto: ClothingNeckCloakHerald + entities: + - uid: 13643 + components: + - pos: 4.476425,-3.5335236 + parent: 10465 + type: Transform +- proto: ClothingNeckCloakMiner + entities: + - uid: 8032 + components: + - pos: -57.530975,-25.489244 + parent: 6 + type: Transform +- proto: ClothingNeckCloakTrans + entities: + - uid: 2745 + components: + - pos: -47.54692,14.462054 + parent: 6 + type: Transform + - uid: 14300 + components: + - pos: 44.508797,11.452726 + parent: 6 + type: Transform +- proto: ClothingNeckIntersexPin + entities: + - uid: 14059 + components: + - pos: 13.362957,-45.52958 + parent: 6 + type: Transform +- proto: ClothingNeckLesbianPin + entities: + - uid: 14280 + components: + - pos: 16.498747,-16.490376 + parent: 6 + type: Transform +- proto: ClothingNeckLGBTPin + entities: + - uid: 6188 + components: + - pos: -61.384766,-13.488897 + parent: 6 + type: Transform +- proto: ClothingNeckNonBinaryPin + entities: + - uid: 14060 + components: + - pos: 6.37096,8.389981 + parent: 6 + type: Transform +- proto: ClothingNeckPansexualPin + entities: + - uid: 14281 + components: + - pos: -9.642922,-9.590724 + parent: 6 + type: Transform +- proto: ClothingNeckStethoscope + entities: + - uid: 5643 + components: + - pos: -36.953064,-18.32184 + parent: 6 + type: Transform + - uid: 14318 + components: + - pos: -18.741777,-21.359842 + parent: 6 + type: Transform +- proto: ClothingNeckTransPin + entities: + - uid: 14282 + components: + - pos: -17.984644,8.731195 + parent: 6 + type: Transform +- proto: ClothingOuterCardborg + entities: + - uid: 7417 + components: + - pos: -17.131544,-48.32667 + parent: 6 + type: Transform +- proto: ClothingOuterCoatInspector + entities: + - uid: 5955 + components: + - pos: -37.593105,-26.511175 + parent: 6 + type: Transform +- proto: ClothingOuterCoatJensen + entities: + - uid: 7627 + components: + - pos: -39.638035,-33.55364 + parent: 6 + type: Transform +- proto: ClothingOuterCoatPirate + entities: + - uid: 5305 + components: + - pos: 13.233199,-44.46726 + parent: 6 + type: Transform +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 4440 + components: + - pos: -44.42738,-14.373787 + parent: 6 + type: Transform + - uid: 4441 + components: + - pos: -44.42738,-15.346282 + parent: 6 + type: Transform +- proto: ClothingOuterHardsuitSecurity + entities: + - uid: 4706 + components: + - pos: 17.283058,4.5168414 + parent: 6 + type: Transform + - uid: 4707 + components: + - pos: 17.623829,4.4458857 + parent: 6 + type: Transform +- proto: ClothingOuterHoodieChaplain + entities: + - uid: 7596 + components: + - pos: -28.490675,-47.406208 + parent: 6 + type: Transform +- proto: ClothingOuterRobesCult + entities: + - uid: 5965 + components: + - pos: -26.431963,-56.54348 + parent: 6 + type: Transform +- proto: ClothingOuterSuitMonkey + entities: + - uid: 3744 + components: + - pos: -18.479383,-62.49699 + parent: 6 + type: Transform +- proto: ClothingOuterVestWebMerc + entities: + - uid: 13479 + components: + - pos: 13.658581,-51.51667 + parent: 6 + type: Transform +- proto: ClothingOuterWinterMiner + entities: + - uid: 8043 + components: + - pos: -55.439804,-27.551037 + parent: 6 + type: Transform +- proto: ClothingOuterWinterPara + entities: + - uid: 14037 + components: + - pos: -30.357164,-18.251669 + parent: 6 + type: Transform +- proto: ClothingOuterWizard + entities: + - uid: 5961 + components: + - pos: -39.343822,-26.376167 + parent: 6 + type: Transform +- proto: ClothingOuterWizardRed + entities: + - uid: 5962 + components: + - pos: -41.544636,-27.468884 + parent: 6 + type: Transform +- proto: ClothingShoesBootsJack + entities: + - uid: 6043 + components: + - pos: 12.618698,30.334604 + parent: 6 + type: Transform +- proto: ClothingShoesBootsMag + entities: + - uid: 4444 + components: + - pos: -44.633694,-17.173391 + parent: 6 + type: Transform + - uid: 4445 + components: + - pos: -44.397903,-17.438618 + parent: 6 + type: Transform +- proto: ClothingShoesBootsPerformer + entities: + - uid: 5632 + components: + - pos: 14.32073,-28.784 + parent: 6 + type: Transform +- proto: ClothingShoesCult + entities: + - uid: 5859 + components: + - pos: -26.659143,-56.614433 + parent: 6 + type: Transform +- proto: ClothingShoesFlippers + entities: + - uid: 3817 + components: + - pos: -26.744436,-61.48649 + parent: 6 + type: Transform +- proto: ClothingShoeSlippersDuck + entities: + - uid: 5849 + components: + - pos: -37.6641,-26.82338 + parent: 6 + type: Transform +- proto: ClothingShoesWizard + entities: + - uid: 5854 + components: + - pos: -39.74139,-26.773518 + parent: 6 + type: Transform + - uid: 5960 + components: + - pos: -41.743416,-27.69594 + parent: 6 + type: Transform +- proto: ClothingUnderSocksBee + entities: + - uid: 4295 + components: + - pos: 21.313404,-44.363068 + parent: 6 + type: Transform + - uid: 13463 + components: + - pos: -25.79552,28.23861 + parent: 6 + type: Transform +- proto: ClothingUnderSocksCoder + entities: + - uid: 4318 + components: + - pos: 21.540586,-44.67527 + parent: 6 + type: Transform +- proto: ClothingUniformJumpskirtColorDarkGreen + entities: + - uid: 6242 + components: + - pos: -47.32878,-39.380394 + parent: 6 + type: Transform +- proto: ClothingUniformJumpskirtJanimaid + entities: + - uid: 5725 + components: + - pos: -21.58178,-8.3689785 + parent: 6 + type: Transform +- proto: ClothingUniformJumpskirtParamedic + entities: + - uid: 14035 + components: + - pos: -30.648829,-18.251669 + parent: 6 + type: Transform +- proto: ClothingUniformJumpskirtPerformer + entities: + - uid: 5633 + components: + - pos: 14.562109,-28.727236 + parent: 6 + type: Transform +- proto: ClothingUniformJumpsuitColorDarkGreen + entities: + - uid: 6241 + components: + - pos: -47.57016,-39.281055 + parent: 6 + type: Transform +- proto: ClothingUniformJumpsuitParamedic + entities: + - uid: 14036 + components: + - pos: -30.357164,-18.480837 + parent: 6 + type: Transform +- proto: ComfyChair + entities: + - uid: 27 + components: + - pos: -1.5,0.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 43 + components: + - pos: 0.5,0.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 45 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 47 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 48 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 56 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 57 + components: + - pos: -0.5,0.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 59 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 374 + components: + - pos: 9.5,-18.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 419 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 598 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-2.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 4666 + components: + - pos: 11.5,9.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5064 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-6.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5132 + components: + - pos: -11.5,-9.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5134 + components: + - pos: -9.5,-9.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5896 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-46.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6005 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6009 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-26.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6220 + components: + - pos: -39.5,-38.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 13813 + components: + - pos: -69.5,-10.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 13814 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,-11.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 13815 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,-12.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 13816 + components: + - rot: 3.141592653589793 rad + pos: -69.5,-13.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics +- proto: ComputerAlert + entities: + - uid: 609 + components: + - pos: -3.5,10.5 + parent: 6 + type: Transform + - uid: 4840 + components: + - pos: -26.5,-5.5 + parent: 6 + type: Transform + - uid: 7382 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-63.5 + parent: 6 + type: Transform +- proto: ComputerAnalysisConsole + entities: + - uid: 5649 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-78.5 + parent: 6 + type: Transform +- proto: computerBodyScanner + entities: + - uid: 4544 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-48.5 + parent: 6 + type: Transform +- proto: ComputerBroken + entities: + - uid: 5538 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,-36.5 + parent: 6 + type: Transform + - uid: 6685 + components: + - rot: 3.141592653589793 rad + pos: -78.5,-46.5 + parent: 6 + type: Transform + - uid: 6686 + components: + - pos: -78.5,-42.5 + parent: 6 + type: Transform + - uid: 11166 + components: + - pos: -54.5,-31.5 + parent: 6 + type: Transform + - uid: 13629 + components: + - pos: 8.5,-1.5 + parent: 10465 + type: Transform +- proto: ComputerCargoOrders + entities: + - uid: 4537 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-35.5 + parent: 6 + type: Transform + - uid: 5084 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,9.5 + parent: 6 + type: Transform + - uid: 5639 + components: + - pos: 10.5,-31.5 + parent: 6 + type: Transform +- proto: ComputerCargoShuttle + entities: + - uid: 4538 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-36.5 + parent: 6 + type: Transform +- proto: ComputerCloningConsole + entities: + - uid: 4898 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-15.5 + parent: 6 + type: Transform +- proto: ComputerComms + entities: + - uid: 611 + components: + - pos: -4.5,10.5 + parent: 6 + type: Transform + - uid: 4386 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 6 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 1516 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-22.5 + parent: 6 + type: Transform + - uid: 5083 + components: + - pos: -1.5,10.5 + parent: 6 + type: Transform +- proto: ComputerCriminalRecords + entities: + - uid: 315 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-1.5 + parent: 6 + type: Transform + - uid: 605 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 6 + type: Transform + - uid: 4512 + components: + - pos: 8.5,-3.5 + parent: 6 + type: Transform + - uid: 4592 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-29.5 + parent: 6 + type: Transform +- proto: ComputerFrame + entities: + - uid: 5276 + components: + - pos: 1.5,-31.5 + parent: 6 + type: Transform + - uid: 5277 + components: + - pos: 2.5,-31.5 + parent: 6 + type: Transform + - uid: 5648 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-78.5 + parent: 6 + type: Transform +- proto: ComputerId + entities: + - uid: 608 + components: + - pos: -5.5,10.5 + parent: 6 + type: Transform + - uid: 4399 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 6 + type: Transform +- proto: ComputerMedicalRecords + entities: + - uid: 1611 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-25.5 + parent: 6 + type: Transform +- proto: ComputerPowerMonitoring + entities: + - uid: 467 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 6 + type: Transform + - uid: 4839 + components: + - pos: -27.5,-5.5 + parent: 6 + type: Transform + - uid: 5037 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,2.5 + parent: 6 + type: Transform +- proto: ComputerRadar + entities: + - uid: 5286 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-59.5 + parent: 6 + type: Transform +- proto: ComputerResearchAndDevelopment + entities: + - uid: 610 + components: + - pos: -7.5,10.5 + parent: 6 + type: Transform + - uid: 1653 + components: + - pos: -0.5,-75.5 + parent: 6 + type: Transform + - uid: 3657 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-50.5 + parent: 6 + type: Transform + - uid: 5356 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-52.5 + parent: 6 + type: Transform +- proto: ComputerShuttleCargo + entities: + - uid: 4535 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-36.5 + parent: 6 + type: Transform +- proto: ComputerSolarControl + entities: + - uid: 5039 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,1.5 + parent: 6 + type: Transform + - uid: 5085 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 6 + type: Transform + - uid: 5575 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,-19.5 + parent: 6 + type: Transform + - uid: 6677 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-62.5 + parent: 6 + type: Transform + - uid: 7219 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-22.5 + parent: 6 + type: Transform + - uid: 8190 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,17.5 + parent: 6 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 5086 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 6 + type: Transform +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 606 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,7.5 + parent: 6 + type: Transform + - uid: 3427 + components: + - pos: 16.5,0.5 + parent: 6 + type: Transform + - uid: 4513 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 6 + type: Transform + - uid: 4607 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-30.5 + parent: 6 + type: Transform +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 14033 + components: + - pos: -2.5,-54.5 + parent: 6 + type: Transform +- proto: ComputerTelevision + entities: + - uid: 4656 + components: + - pos: -39.5,-17.5 + parent: 6 + type: Transform + - uid: 5846 + components: + - pos: -35.5,-27.5 + parent: 6 + type: Transform + - uid: 6217 + components: + - pos: -45.5,-36.5 + parent: 6 + type: Transform + - uid: 6218 + components: + - pos: -40.5,-38.5 + parent: 6 + type: Transform + - uid: 7598 + components: + - pos: -46.5,-54.5 + parent: 6 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 5433 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-34.5 + parent: 6 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 13053 + Forward: + - port: Left + uid: 13053 + Off: + - port: Middle + uid: 13053 + type: SignalReceiver + - uid: 5434 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,-34.5 + parent: 6 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 13053 + Forward: + - port: Left + uid: 13053 + Off: + - port: Middle + uid: 13053 + type: SignalReceiver + - type: ActiveConveyor + - uid: 5435 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-34.5 + parent: 6 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 13053 + Forward: + - port: Left + uid: 13053 + Off: + - port: Middle + uid: 13053 + type: SignalReceiver + - uid: 5436 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,-34.5 + parent: 6 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 13053 + Forward: + - port: Left + uid: 13053 + Off: + - port: Middle + uid: 13053 + type: SignalReceiver + - uid: 5437 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-34.5 + parent: 6 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 13053 + Forward: + - port: Left + uid: 13053 + Off: + - port: Middle + uid: 13053 + type: SignalReceiver + - uid: 5438 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-34.5 + parent: 6 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 13053 + Forward: + - port: Left + uid: 13053 + Off: + - port: Middle + uid: 13053 + type: SignalReceiver + - uid: 5439 + components: + - rot: -1.5707963267948966 rad + pos: -57.5,-34.5 + parent: 6 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 13053 + Forward: + - port: Left + uid: 13053 + Off: + - port: Middle + uid: 13053 + type: SignalReceiver + - uid: 5440 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-35.5 + parent: 6 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 13053 + Forward: + - port: Left + uid: 13053 + Off: + - port: Middle + uid: 13053 + type: SignalReceiver + - uid: 6494 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-34.5 + parent: 6 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 6520 + Forward: + - port: Left + uid: 6520 + Off: + - port: Middle + uid: 6520 + type: SignalReceiver + - uid: 6495 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-34.5 + parent: 6 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 6520 + Forward: + - port: Left + uid: 6520 + Off: + - port: Middle + uid: 6520 + type: SignalReceiver + - uid: 6496 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-34.5 + parent: 6 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 6520 + Forward: + - port: Left + uid: 6520 + Off: + - port: Middle + uid: 6520 + type: SignalReceiver + - uid: 6497 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-34.5 + parent: 6 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 6520 + Forward: + - port: Left + uid: 6520 + Off: + - port: Middle + uid: 6520 + type: SignalReceiver + - uid: 6498 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-34.5 + parent: 6 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 6520 + Forward: + - port: Left + uid: 6520 + Off: + - port: Middle + uid: 6520 + type: SignalReceiver + - uid: 6499 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-38.5 + parent: 6 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 6520 + Forward: + - port: Left + uid: 6520 + Off: + - port: Middle + uid: 6520 + type: SignalReceiver + - uid: 6500 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-38.5 + parent: 6 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 6520 + Forward: + - port: Left + uid: 6520 + Off: + - port: Middle + uid: 6520 + type: SignalReceiver + - uid: 6501 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-38.5 + parent: 6 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 6520 + Forward: + - port: Left + uid: 6520 + Off: + - port: Middle + uid: 6520 + type: SignalReceiver + - uid: 6502 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-38.5 + parent: 6 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 6520 + Forward: + - port: Left + uid: 6520 + Off: + - port: Middle + uid: 6520 + type: SignalReceiver + - uid: 6503 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-38.5 + parent: 6 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 6520 + Forward: + - port: Left + uid: 6520 + Off: + - port: Middle + uid: 6520 + type: SignalReceiver +- proto: CowToolboxFilled + entities: + - uid: 10897 + components: + - pos: 22.70911,-5.4801354 + parent: 6 + type: Transform +- proto: CrateEmptySpawner + entities: + - uid: 6504 + components: + - pos: 16.5,-40.5 + parent: 6 + type: Transform + - uid: 6505 + components: + - pos: 19.5,-41.5 + parent: 6 + type: Transform + - uid: 6506 + components: + - pos: 19.5,-42.5 + parent: 6 + type: Transform + - uid: 6507 + components: + - pos: 19.5,-43.5 + parent: 6 + type: Transform + - uid: 6510 + components: + - pos: 15.5,-35.5 + parent: 6 + type: Transform + - uid: 6519 + components: + - pos: 16.5,-43.5 + parent: 6 + type: Transform +- proto: CrateEngineering + entities: + - uid: 6365 + components: + - pos: -32.5,2.5 + parent: 6 + 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: CrateEngineeringAMEJar + entities: + - uid: 4892 + components: + - pos: -34.5,2.5 + parent: 6 + 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: CrateEngineeringAMEShielding + entities: + - uid: 4893 + components: + - pos: -34.5,1.5 + parent: 6 + 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: CrateEngineeringCableBulk + entities: + - uid: 5577 + components: + - pos: -62.5,-18.5 + parent: 6 + 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: 6361 + components: + - pos: -36.5,-4.5 + parent: 6 + 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: 7223 + components: + - pos: 22.5,-20.5 + parent: 6 + 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: CrateEngineeringCableHV + entities: + - uid: 8191 + components: + - pos: -24.5,18.5 + parent: 6 + 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: CrateEngineeringSecure + entities: + - uid: 6363 + components: + - pos: -32.5,3.5 + parent: 6 + 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: CrateFilledSpawner + entities: + - uid: 6508 + components: + - pos: 15.5,-36.5 + parent: 6 + type: Transform + - uid: 6509 + components: + - pos: 16.5,-35.5 + parent: 6 + type: Transform +- proto: CrateMedicalSurgery + entities: + - uid: 4542 + components: + - pos: -14.5,-47.5 + parent: 6 + 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: CrateServiceBureaucracy + entities: + - uid: 6517 + components: + - pos: 16.5,-41.5 + parent: 6 + 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: CrateServiceJanitorialSupplies + entities: + - uid: 7635 + components: + - pos: 24.5,7.5 + parent: 6 + 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: CrateServiceReplacementLights + entities: + - uid: 6518 + components: + - pos: 16.5,-42.5 + parent: 6 + 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: CrateSurgery + entities: + - uid: 14290 + components: + - pos: -32.5,-17.5 + parent: 6 + 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: CrayonBox + entities: + - uid: 5458 + components: + - pos: -52.454147,-16.514137 + parent: 6 + type: Transform + - uid: 14321 + components: + - pos: -52.454147,-16.514137 + parent: 6 + type: Transform +- proto: Crematorium + entities: + - uid: 4418 + components: + - pos: -29.5,-54.5 + parent: 6 + 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: CrewMonitoringServer + entities: + - uid: 3582 + components: + - pos: -24.5,1.5 + parent: 6 + type: Transform +- proto: Crowbar + entities: + - uid: 5377 + components: + - pos: -3.5277874,-56.48735 + parent: 6 + type: Transform +- proto: CrowbarRed + entities: + - uid: 6385 + components: + - pos: -7.5256,-72.580124 + parent: 6 + type: Transform +- proto: CryoPod + entities: + - uid: 4646 + components: + - pos: -29.5,-15.5 + parent: 6 + type: Transform +- proto: CryostasisBeaker + entities: + - uid: 4647 + components: + - pos: -28.674484,-14.221745 + parent: 6 + type: Transform + - uid: 14040 + components: + - pos: -28.500662,-14.437793 + parent: 6 + type: Transform +- proto: CultAltarSpawner + entities: + - uid: 5968 + components: + - pos: -25.5,-56.5 + parent: 6 + type: Transform +- proto: DawInstrumentMachineCircuitboard + entities: + - uid: 1440 + components: + - pos: -47.58592,-6.486152 + parent: 6 + type: Transform + - uid: 5630 + components: + - pos: 14.519512,-28.344076 + parent: 6 + type: Transform +- proto: DeployableBarrier + entities: + - uid: 6487 + components: + - anchored: False + pos: 12.5,-4.5 + parent: 6 + type: Transform + - uid: 14077 + components: + - anchored: False + pos: 13.5,-4.5 + parent: 6 + type: Transform +- proto: DiceBag + entities: + - uid: 5508 + components: + - pos: -51.465637,-16.68054 + parent: 6 + type: Transform + - uid: 6028 + components: + - pos: 14.364713,19.581854 + parent: 6 + type: Transform +- proto: DiseaseDiagnoser + entities: + - uid: 3410 + components: + - pos: -21.5,-32.5 + parent: 6 + type: Transform +- proto: DiseaseSwab + entities: + - uid: 6380 + components: + - pos: -7.309714,-73.4543 + parent: 6 + type: Transform + - uid: 6383 + components: + - pos: -7.389226,-73.29536 + parent: 6 + type: Transform +- proto: DisposalBend + entities: + - uid: 12566 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-11.5 + parent: 6 + type: Transform + - uid: 12592 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-20.5 + parent: 6 + type: Transform + - uid: 12594 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-20.5 + parent: 6 + type: Transform + - uid: 12595 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-21.5 + parent: 6 + type: Transform + - uid: 12603 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-21.5 + parent: 6 + type: Transform + - uid: 12609 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-27.5 + parent: 6 + type: Transform + - uid: 12610 + components: + - pos: -49.5,-27.5 + parent: 6 + type: Transform + - uid: 12619 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-35.5 + parent: 6 + type: Transform + - uid: 12680 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-21.5 + parent: 6 + type: Transform + - uid: 12695 + components: + - pos: -15.5,6.5 + parent: 6 + type: Transform + - uid: 12743 + components: + - pos: -3.5,4.5 + parent: 6 + type: Transform + - uid: 12747 + components: + - pos: -4.5,8.5 + parent: 6 + type: Transform + - uid: 12794 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,7.5 + parent: 6 + type: Transform + - uid: 12795 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 6 + type: Transform + - uid: 12816 + components: + - pos: 12.5,1.5 + parent: 6 + type: Transform + - uid: 12822 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 6 + type: Transform + - uid: 12823 + components: + - pos: 14.5,-4.5 + parent: 6 + type: Transform + - uid: 12826 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-6.5 + parent: 6 + type: Transform + - uid: 12878 + components: + - pos: 30.5,7.5 + parent: 6 + type: Transform + - uid: 12901 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-11.5 + parent: 6 + type: Transform + - uid: 12946 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-35.5 + parent: 6 + type: Transform + - uid: 12955 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-39.5 + parent: 6 + type: Transform + - uid: 12977 + components: + - pos: -2.5,-44.5 + parent: 6 + type: Transform + - uid: 12986 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-54.5 + parent: 6 + type: Transform + - uid: 13020 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-44.5 + parent: 6 + type: Transform +- proto: DisposalJunction + entities: + - uid: 8441 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-24.5 + parent: 6 + type: Transform + - uid: 12583 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-11.5 + parent: 6 + type: Transform + - uid: 12631 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-11.5 + parent: 6 + type: Transform + - uid: 12713 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-11.5 + parent: 6 + type: Transform + - uid: 12742 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 6 + type: Transform + - uid: 12814 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 6 + type: Transform + - uid: 12859 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-11.5 + parent: 6 + type: Transform + - uid: 12876 + components: + - pos: 30.5,5.5 + parent: 6 + type: Transform + - uid: 12916 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-30.5 + parent: 6 + type: Transform + - uid: 12922 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-44.5 + parent: 6 + type: Transform + - uid: 12959 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-35.5 + parent: 6 + type: Transform + - uid: 12966 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-28.5 + parent: 6 + type: Transform +- proto: DisposalJunctionFlipped + entities: + - uid: 12690 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 6 + type: Transform + - uid: 12697 + components: + - pos: -15.5,4.5 + parent: 6 + type: Transform + - uid: 12714 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-11.5 + parent: 6 + type: Transform + - uid: 12763 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-19.5 + parent: 6 + type: Transform + - uid: 12771 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 6 + type: Transform + - uid: 12784 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 6 + type: Transform + - uid: 12809 + components: + - pos: 6.5,-6.5 + parent: 6 + type: Transform + - uid: 12847 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-11.5 + parent: 6 + type: Transform + - uid: 12996 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-44.5 + parent: 6 + type: Transform +- proto: DisposalPipe + entities: + - uid: 5536 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-21.5 + parent: 6 + type: Transform + - uid: 9035 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-24.5 + parent: 6 + type: Transform + - uid: 9036 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-24.5 + parent: 6 + type: Transform + - uid: 12564 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-13.5 + parent: 6 + type: Transform + - uid: 12565 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-12.5 + parent: 6 + type: Transform + - uid: 12567 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-11.5 + parent: 6 + type: Transform + - uid: 12568 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-11.5 + parent: 6 + type: Transform + - uid: 12569 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-11.5 + parent: 6 + type: Transform + - uid: 12570 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-11.5 + parent: 6 + type: Transform + - uid: 12571 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-11.5 + parent: 6 + type: Transform + - uid: 12572 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-11.5 + parent: 6 + type: Transform + - uid: 12573 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-11.5 + parent: 6 + type: Transform + - uid: 12574 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,-11.5 + parent: 6 + type: Transform + - uid: 12575 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-11.5 + parent: 6 + type: Transform + - uid: 12576 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-11.5 + parent: 6 + type: Transform + - uid: 12577 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-11.5 + parent: 6 + type: Transform + - uid: 12578 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-11.5 + parent: 6 + type: Transform + - uid: 12579 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-11.5 + parent: 6 + type: Transform + - uid: 12580 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-11.5 + parent: 6 + type: Transform + - uid: 12581 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-11.5 + parent: 6 + type: Transform + - uid: 12584 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-12.5 + parent: 6 + type: Transform + - uid: 12585 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-13.5 + parent: 6 + type: Transform + - uid: 12586 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-14.5 + parent: 6 + type: Transform + - uid: 12587 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-15.5 + parent: 6 + type: Transform + - uid: 12588 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-16.5 + parent: 6 + type: Transform + - uid: 12589 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-17.5 + parent: 6 + type: Transform + - uid: 12590 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-18.5 + parent: 6 + type: Transform + - uid: 12591 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-19.5 + parent: 6 + type: Transform + - uid: 12593 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-20.5 + parent: 6 + type: Transform + - uid: 12596 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-21.5 + parent: 6 + type: Transform + - uid: 12597 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-21.5 + parent: 6 + type: Transform + - uid: 12598 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-21.5 + parent: 6 + type: Transform + - uid: 12599 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-21.5 + parent: 6 + type: Transform + - uid: 12600 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-21.5 + parent: 6 + type: Transform + - uid: 12601 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-21.5 + parent: 6 + type: Transform + - uid: 12602 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-21.5 + parent: 6 + type: Transform + - uid: 12604 + components: + - pos: -51.5,-22.5 + parent: 6 + type: Transform + - uid: 12605 + components: + - pos: -51.5,-23.5 + parent: 6 + type: Transform + - uid: 12606 + components: + - pos: -51.5,-24.5 + parent: 6 + type: Transform + - uid: 12607 + components: + - pos: -51.5,-25.5 + parent: 6 + type: Transform + - uid: 12608 + components: + - pos: -51.5,-26.5 + parent: 6 + type: Transform + - uid: 12611 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-27.5 + parent: 6 + type: Transform + - uid: 12612 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-28.5 + parent: 6 + type: Transform + - uid: 12613 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-29.5 + parent: 6 + type: Transform + - uid: 12614 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-30.5 + parent: 6 + type: Transform + - uid: 12615 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-32.5 + parent: 6 + type: Transform + - uid: 12616 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-31.5 + parent: 6 + type: Transform + - uid: 12617 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-33.5 + parent: 6 + type: Transform + - uid: 12618 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-34.5 + parent: 6 + type: Transform + - uid: 12620 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-35.5 + parent: 6 + type: Transform + - uid: 12623 + components: + - pos: -40.5,-10.5 + parent: 6 + type: Transform + - uid: 12624 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-11.5 + parent: 6 + type: Transform + - uid: 12625 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-11.5 + parent: 6 + type: Transform + - uid: 12626 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-11.5 + parent: 6 + type: Transform + - uid: 12627 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-11.5 + parent: 6 + type: Transform + - uid: 12628 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-11.5 + parent: 6 + type: Transform + - uid: 12629 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-11.5 + parent: 6 + type: Transform + - uid: 12630 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-11.5 + parent: 6 + type: Transform + - uid: 12632 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-10.5 + parent: 6 + type: Transform + - uid: 12633 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-9.5 + parent: 6 + type: Transform + - uid: 12634 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-8.5 + parent: 6 + type: Transform + - uid: 12635 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-7.5 + parent: 6 + type: Transform + - uid: 12636 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-6.5 + parent: 6 + type: Transform + - uid: 12637 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-5.5 + parent: 6 + type: Transform + - uid: 12638 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-4.5 + parent: 6 + type: Transform + - uid: 12639 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-3.5 + parent: 6 + type: Transform + - uid: 12640 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-2.5 + parent: 6 + type: Transform + - uid: 12641 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-1.5 + parent: 6 + type: Transform + - uid: 12644 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-11.5 + parent: 6 + type: Transform + - uid: 12645 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-11.5 + parent: 6 + type: Transform + - uid: 12646 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-11.5 + parent: 6 + type: Transform + - uid: 12647 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-11.5 + parent: 6 + type: Transform + - uid: 12648 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-11.5 + parent: 6 + type: Transform + - uid: 12649 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-11.5 + parent: 6 + type: Transform + - uid: 12650 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-11.5 + parent: 6 + type: Transform + - uid: 12651 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-11.5 + parent: 6 + type: Transform + - uid: 12652 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-11.5 + parent: 6 + type: Transform + - uid: 12653 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 6 + type: Transform + - uid: 12654 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-11.5 + parent: 6 + type: Transform + - uid: 12655 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 6 + type: Transform + - uid: 12656 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-11.5 + parent: 6 + type: Transform + - uid: 12659 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-21.5 + parent: 6 + type: Transform + - uid: 12660 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-21.5 + parent: 6 + type: Transform + - uid: 12661 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-21.5 + parent: 6 + type: Transform + - uid: 12662 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-21.5 + parent: 6 + type: Transform + - uid: 12663 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-21.5 + parent: 6 + type: Transform + - uid: 12664 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-21.5 + parent: 6 + type: Transform + - uid: 12665 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-21.5 + parent: 6 + type: Transform + - uid: 12666 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-21.5 + parent: 6 + type: Transform + - uid: 12667 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-21.5 + parent: 6 + type: Transform + - uid: 12668 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-21.5 + parent: 6 + type: Transform + - uid: 12669 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-21.5 + parent: 6 + type: Transform + - uid: 12672 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-21.5 + parent: 6 + type: Transform + - uid: 12673 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-21.5 + parent: 6 + type: Transform + - uid: 12674 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-21.5 + parent: 6 + type: Transform + - uid: 12675 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-21.5 + parent: 6 + type: Transform + - uid: 12676 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-21.5 + parent: 6 + type: Transform + - uid: 12677 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-21.5 + parent: 6 + type: Transform + - uid: 12678 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-21.5 + parent: 6 + type: Transform + - uid: 12679 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-21.5 + parent: 6 + type: Transform + - uid: 12681 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-20.5 + parent: 6 + type: Transform + - uid: 12682 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-19.5 + parent: 6 + type: Transform + - uid: 12683 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-18.5 + parent: 6 + type: Transform + - uid: 12684 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-17.5 + parent: 6 + type: Transform + - uid: 12685 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-16.5 + parent: 6 + type: Transform + - uid: 12686 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-15.5 + parent: 6 + type: Transform + - uid: 12687 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-14.5 + parent: 6 + type: Transform + - uid: 12688 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-13.5 + parent: 6 + type: Transform + - uid: 12689 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-12.5 + parent: 6 + type: Transform + - uid: 12693 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,6.5 + parent: 6 + type: Transform + - uid: 12694 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,6.5 + parent: 6 + type: Transform + - uid: 12696 + components: + - pos: -15.5,5.5 + parent: 6 + type: Transform + - uid: 12698 + components: + - pos: -15.5,3.5 + parent: 6 + type: Transform + - uid: 12699 + components: + - pos: -15.5,2.5 + parent: 6 + type: Transform + - uid: 12700 + components: + - pos: -15.5,1.5 + parent: 6 + type: Transform + - uid: 12701 + components: + - pos: -15.5,0.5 + parent: 6 + type: Transform + - uid: 12702 + components: + - pos: -15.5,-0.5 + parent: 6 + type: Transform + - uid: 12703 + components: + - pos: -15.5,-1.5 + parent: 6 + type: Transform + - uid: 12704 + components: + - pos: -15.5,-2.5 + parent: 6 + type: Transform + - uid: 12705 + components: + - pos: -15.5,-3.5 + parent: 6 + type: Transform + - uid: 12706 + components: + - pos: -15.5,-4.5 + parent: 6 + type: Transform + - uid: 12707 + components: + - pos: -15.5,-5.5 + parent: 6 + type: Transform + - uid: 12708 + components: + - pos: -15.5,-6.5 + parent: 6 + type: Transform + - uid: 12709 + components: + - pos: -15.5,-7.5 + parent: 6 + type: Transform + - uid: 12710 + components: + - pos: -15.5,-8.5 + parent: 6 + type: Transform + - uid: 12711 + components: + - pos: -15.5,-9.5 + parent: 6 + type: Transform + - uid: 12712 + components: + - pos: -15.5,-10.5 + parent: 6 + type: Transform + - uid: 12715 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-11.5 + parent: 6 + type: Transform + - uid: 12716 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-11.5 + parent: 6 + type: Transform + - uid: 12717 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-12.5 + parent: 6 + type: Transform + - uid: 12718 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-13.5 + parent: 6 + type: Transform + - uid: 12719 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-14.5 + parent: 6 + type: Transform + - uid: 12720 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-15.5 + parent: 6 + type: Transform + - uid: 12721 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-16.5 + parent: 6 + type: Transform + - uid: 12722 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-17.5 + parent: 6 + type: Transform + - uid: 12723 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-18.5 + parent: 6 + type: Transform + - uid: 12724 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-19.5 + parent: 6 + type: Transform + - uid: 12725 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-20.5 + parent: 6 + type: Transform + - uid: 12726 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-21.5 + parent: 6 + type: Transform + - uid: 12727 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-22.5 + parent: 6 + type: Transform + - uid: 12728 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-23.5 + parent: 6 + type: Transform + - uid: 12730 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-25.5 + parent: 6 + type: Transform + - uid: 12731 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-26.5 + parent: 6 + type: Transform + - uid: 12732 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,4.5 + parent: 6 + type: Transform + - uid: 12733 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,4.5 + parent: 6 + type: Transform + - uid: 12734 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,4.5 + parent: 6 + type: Transform + - uid: 12735 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,4.5 + parent: 6 + type: Transform + - uid: 12736 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,4.5 + parent: 6 + type: Transform + - uid: 12737 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,4.5 + parent: 6 + type: Transform + - uid: 12738 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 6 + type: Transform + - uid: 12739 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 6 + type: Transform + - uid: 12740 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 6 + type: Transform + - uid: 12741 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,4.5 + parent: 6 + type: Transform + - uid: 12746 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 6 + type: Transform + - uid: 12748 + components: + - pos: -4.5,7.5 + parent: 6 + type: Transform + - uid: 12749 + components: + - pos: -4.5,6.5 + parent: 6 + type: Transform + - uid: 12750 + components: + - pos: -4.5,5.5 + parent: 6 + type: Transform + - uid: 12751 + components: + - pos: -3.5,3.5 + parent: 6 + type: Transform + - uid: 12752 + components: + - pos: -3.5,2.5 + parent: 6 + type: Transform + - uid: 12755 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-19.5 + parent: 6 + type: Transform + - uid: 12756 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-19.5 + parent: 6 + type: Transform + - uid: 12757 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-19.5 + parent: 6 + type: Transform + - uid: 12758 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-19.5 + parent: 6 + type: Transform + - uid: 12759 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-19.5 + parent: 6 + type: Transform + - uid: 12760 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-19.5 + parent: 6 + type: Transform + - uid: 12761 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 6 + type: Transform + - uid: 12762 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-19.5 + parent: 6 + type: Transform + - uid: 12764 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-18.5 + parent: 6 + type: Transform + - uid: 12765 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-17.5 + parent: 6 + type: Transform + - uid: 12766 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-16.5 + parent: 6 + type: Transform + - uid: 12767 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-15.5 + parent: 6 + type: Transform + - uid: 12768 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-14.5 + parent: 6 + type: Transform + - uid: 12769 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-13.5 + parent: 6 + type: Transform + - uid: 12770 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-12.5 + parent: 6 + type: Transform + - uid: 12772 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 6 + type: Transform + - uid: 12773 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 6 + type: Transform + - uid: 12774 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 6 + type: Transform + - uid: 12775 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 6 + type: Transform + - uid: 12776 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 6 + type: Transform + - uid: 12777 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 6 + type: Transform + - uid: 12778 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 6 + type: Transform + - uid: 12779 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 6 + type: Transform + - uid: 12780 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 6 + type: Transform + - uid: 12781 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 6 + type: Transform + - uid: 12783 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-12.5 + parent: 6 + type: Transform + - uid: 12785 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 6 + type: Transform + - uid: 12786 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 6 + type: Transform + - uid: 12787 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 6 + type: Transform + - uid: 12788 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 6 + type: Transform + - uid: 12789 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-11.5 + parent: 6 + type: Transform + - uid: 12790 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-11.5 + parent: 6 + type: Transform + - uid: 12791 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-11.5 + parent: 6 + type: Transform + - uid: 12792 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-11.5 + parent: 6 + type: Transform + - uid: 12796 + components: + - pos: 6.5,6.5 + parent: 6 + type: Transform + - uid: 12797 + components: + - pos: 6.5,5.5 + parent: 6 + type: Transform + - uid: 12798 + components: + - pos: 6.5,4.5 + parent: 6 + type: Transform + - uid: 12799 + components: + - pos: 6.5,3.5 + parent: 6 + type: Transform + - uid: 12800 + components: + - pos: 6.5,2.5 + parent: 6 + type: Transform + - uid: 12801 + components: + - pos: 6.5,1.5 + parent: 6 + type: Transform + - uid: 12802 + components: + - pos: 6.5,0.5 + parent: 6 + type: Transform + - uid: 12803 + components: + - pos: 6.5,-0.5 + parent: 6 + type: Transform + - uid: 12804 + components: + - pos: 6.5,-1.5 + parent: 6 + type: Transform + - uid: 12805 + components: + - pos: 6.5,-2.5 + parent: 6 + type: Transform + - uid: 12806 + components: + - pos: 6.5,-3.5 + parent: 6 + type: Transform + - uid: 12807 + components: + - pos: 6.5,-4.5 + parent: 6 + type: Transform + - uid: 12808 + components: + - pos: 6.5,-5.5 + parent: 6 + type: Transform + - uid: 12810 + components: + - pos: 6.5,-7.5 + parent: 6 + type: Transform + - uid: 12811 + components: + - pos: 6.5,-8.5 + parent: 6 + type: Transform + - uid: 12812 + components: + - pos: 6.5,-9.5 + parent: 6 + type: Transform + - uid: 12813 + components: + - pos: 6.5,-10.5 + parent: 6 + type: Transform + - uid: 12817 + components: + - pos: 12.5,0.5 + parent: 6 + type: Transform + - uid: 12818 + components: + - pos: 12.5,-0.5 + parent: 6 + type: Transform + - uid: 12819 + components: + - pos: 12.5,-1.5 + parent: 6 + type: Transform + - uid: 12820 + components: + - pos: 12.5,-2.5 + parent: 6 + type: Transform + - uid: 12821 + components: + - pos: 12.5,-3.5 + parent: 6 + type: Transform + - uid: 12824 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-4.5 + parent: 6 + type: Transform + - uid: 12825 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-5.5 + parent: 6 + type: Transform + - uid: 12827 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 6 + type: Transform + - uid: 12828 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-6.5 + parent: 6 + type: Transform + - uid: 12829 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 6 + type: Transform + - uid: 12830 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 6 + type: Transform + - uid: 12831 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 6 + type: Transform + - uid: 12832 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 6 + type: Transform + - uid: 12833 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 6 + type: Transform + - uid: 12834 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 6 + type: Transform + - uid: 12835 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 6 + type: Transform + - uid: 12836 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 6 + type: Transform + - uid: 12837 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-11.5 + parent: 6 + type: Transform + - uid: 12838 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 6 + type: Transform + - uid: 12839 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-11.5 + parent: 6 + type: Transform + - uid: 12840 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-11.5 + parent: 6 + type: Transform + - uid: 12841 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-11.5 + parent: 6 + type: Transform + - uid: 12842 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-11.5 + parent: 6 + type: Transform + - uid: 12843 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-11.5 + parent: 6 + type: Transform + - uid: 12844 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-11.5 + parent: 6 + type: Transform + - uid: 12845 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-11.5 + parent: 6 + type: Transform + - uid: 12846 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-11.5 + parent: 6 + type: Transform + - uid: 12848 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-12.5 + parent: 6 + type: Transform + - uid: 12850 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-11.5 + parent: 6 + type: Transform + - uid: 12851 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-11.5 + parent: 6 + type: Transform + - uid: 12852 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-11.5 + parent: 6 + type: Transform + - uid: 12853 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-11.5 + parent: 6 + type: Transform + - uid: 12854 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-11.5 + parent: 6 + type: Transform + - uid: 12855 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-11.5 + parent: 6 + type: Transform + - uid: 12856 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-11.5 + parent: 6 + type: Transform + - uid: 12857 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-11.5 + parent: 6 + type: Transform + - uid: 12858 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-11.5 + parent: 6 + type: Transform + - uid: 12860 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-10.5 + parent: 6 + type: Transform + - uid: 12861 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-9.5 + parent: 6 + type: Transform + - uid: 12862 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-8.5 + parent: 6 + type: Transform + - uid: 12863 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-7.5 + parent: 6 + type: Transform + - uid: 12864 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-6.5 + parent: 6 + type: Transform + - uid: 12865 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-5.5 + parent: 6 + type: Transform + - uid: 12866 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-4.5 + parent: 6 + type: Transform + - uid: 12867 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-3.5 + parent: 6 + type: Transform + - uid: 12868 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-2.5 + parent: 6 + type: Transform + - uid: 12869 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-1.5 + parent: 6 + type: Transform + - uid: 12870 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-0.5 + parent: 6 + type: Transform + - uid: 12871 + components: + - rot: 3.141592653589793 rad + pos: 30.5,0.5 + parent: 6 + type: Transform + - uid: 12872 + components: + - rot: 3.141592653589793 rad + pos: 30.5,1.5 + parent: 6 + type: Transform + - uid: 12873 + components: + - rot: 3.141592653589793 rad + pos: 30.5,2.5 + parent: 6 + type: Transform + - uid: 12874 + components: + - rot: 3.141592653589793 rad + pos: 30.5,3.5 + parent: 6 + type: Transform + - uid: 12875 + components: + - rot: 3.141592653589793 rad + pos: 30.5,4.5 + parent: 6 + type: Transform + - uid: 12877 + components: + - rot: 3.141592653589793 rad + pos: 30.5,6.5 + parent: 6 + type: Transform + - uid: 12881 + components: + - pos: 43.5,8.5 + parent: 6 + type: Transform + - uid: 12882 + components: + - pos: 43.5,7.5 + parent: 6 + type: Transform + - uid: 12883 + components: + - pos: 43.5,6.5 + parent: 6 + type: Transform + - uid: 12884 + components: + - pos: 43.5,5.5 + parent: 6 + type: Transform + - uid: 12885 + components: + - pos: 43.5,4.5 + parent: 6 + type: Transform + - uid: 12886 + components: + - pos: 43.5,3.5 + parent: 6 + type: Transform + - uid: 12887 + components: + - pos: 43.5,2.5 + parent: 6 + type: Transform + - uid: 12888 + components: + - pos: 43.5,1.5 + parent: 6 + type: Transform + - uid: 12889 + components: + - pos: 43.5,0.5 + parent: 6 + type: Transform + - uid: 12890 + components: + - pos: 43.5,-0.5 + parent: 6 + type: Transform + - uid: 12891 + components: + - pos: 43.5,-1.5 + parent: 6 + type: Transform + - uid: 12892 + components: + - pos: 43.5,-2.5 + parent: 6 + type: Transform + - uid: 12893 + components: + - pos: 43.5,-3.5 + parent: 6 + type: Transform + - uid: 12894 + components: + - pos: 43.5,-4.5 + parent: 6 + type: Transform + - uid: 12895 + components: + - pos: 43.5,-5.5 + parent: 6 + type: Transform + - uid: 12896 + components: + - pos: 43.5,-6.5 + parent: 6 + type: Transform + - uid: 12897 + components: + - pos: 43.5,-7.5 + parent: 6 + type: Transform + - uid: 12898 + components: + - pos: 43.5,-8.5 + parent: 6 + type: Transform + - uid: 12899 + components: + - pos: 43.5,-9.5 + parent: 6 + type: Transform + - uid: 12900 + components: + - pos: 43.5,-10.5 + parent: 6 + type: Transform + - uid: 12902 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-11.5 + parent: 6 + type: Transform + - uid: 12903 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-11.5 + parent: 6 + type: Transform + - uid: 12904 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-11.5 + parent: 6 + type: Transform + - uid: 12905 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-11.5 + parent: 6 + type: Transform + - uid: 12906 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-11.5 + parent: 6 + type: Transform + - uid: 12907 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-11.5 + parent: 6 + type: Transform + - uid: 12908 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-11.5 + parent: 6 + type: Transform + - uid: 12909 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-11.5 + parent: 6 + type: Transform + - uid: 12910 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-11.5 + parent: 6 + type: Transform + - uid: 12911 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-11.5 + parent: 6 + type: Transform + - uid: 12912 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-11.5 + parent: 6 + type: Transform + - uid: 12913 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-11.5 + parent: 6 + type: Transform + - uid: 12917 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-29.5 + parent: 6 + type: Transform + - uid: 12918 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-28.5 + parent: 6 + type: Transform + - uid: 12919 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-27.5 + parent: 6 + type: Transform + - uid: 12921 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-45.5 + parent: 6 + type: Transform + - uid: 12923 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-44.5 + parent: 6 + type: Transform + - uid: 12924 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-44.5 + parent: 6 + type: Transform + - uid: 12925 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-44.5 + parent: 6 + type: Transform + - uid: 12926 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-44.5 + parent: 6 + type: Transform + - uid: 12927 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-44.5 + parent: 6 + type: Transform + - uid: 12928 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-44.5 + parent: 6 + type: Transform + - uid: 12930 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-43.5 + parent: 6 + type: Transform + - uid: 12931 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-42.5 + parent: 6 + type: Transform + - uid: 12932 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-41.5 + parent: 6 + type: Transform + - uid: 12933 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-40.5 + parent: 6 + type: Transform + - uid: 12934 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-39.5 + parent: 6 + type: Transform + - uid: 12935 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-38.5 + parent: 6 + type: Transform + - uid: 12936 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-37.5 + parent: 6 + type: Transform + - uid: 12937 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-36.5 + parent: 6 + type: Transform + - uid: 12938 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-35.5 + parent: 6 + type: Transform + - uid: 12939 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-34.5 + parent: 6 + type: Transform + - uid: 12940 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-33.5 + parent: 6 + type: Transform + - uid: 12941 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-32.5 + parent: 6 + type: Transform + - uid: 12942 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-31.5 + parent: 6 + type: Transform + - uid: 12945 + components: + - pos: 13.5,-34.5 + parent: 6 + type: Transform + - uid: 12947 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-35.5 + parent: 6 + type: Transform + - uid: 12948 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-35.5 + parent: 6 + type: Transform + - uid: 12949 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-35.5 + parent: 6 + type: Transform + - uid: 12950 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-35.5 + parent: 6 + type: Transform + - uid: 12951 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-35.5 + parent: 6 + type: Transform + - uid: 12952 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-35.5 + parent: 6 + type: Transform + - uid: 12953 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-35.5 + parent: 6 + type: Transform + - uid: 12956 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-38.5 + parent: 6 + type: Transform + - uid: 12957 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-37.5 + parent: 6 + type: Transform + - uid: 12958 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-36.5 + parent: 6 + type: Transform + - uid: 12960 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-34.5 + parent: 6 + type: Transform + - uid: 12961 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-33.5 + parent: 6 + type: Transform + - uid: 12962 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-32.5 + parent: 6 + type: Transform + - uid: 12963 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-31.5 + parent: 6 + type: Transform + - uid: 12964 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-30.5 + parent: 6 + type: Transform + - uid: 12965 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-29.5 + parent: 6 + type: Transform + - uid: 12967 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-27.5 + parent: 6 + type: Transform + - uid: 12968 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-26.5 + parent: 6 + type: Transform + - uid: 12969 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-25.5 + parent: 6 + type: Transform + - uid: 12970 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-24.5 + parent: 6 + type: Transform + - uid: 12971 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-23.5 + parent: 6 + type: Transform + - uid: 12972 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-22.5 + parent: 6 + type: Transform + - uid: 12973 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-21.5 + parent: 6 + type: Transform + - uid: 12974 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-20.5 + parent: 6 + type: Transform + - uid: 12976 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-45.5 + parent: 6 + type: Transform + - uid: 12978 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-44.5 + parent: 6 + type: Transform + - uid: 12979 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-44.5 + parent: 6 + type: Transform + - uid: 12980 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-44.5 + parent: 6 + type: Transform + - uid: 12981 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-44.5 + parent: 6 + type: Transform + - uid: 12982 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-44.5 + parent: 6 + type: Transform + - uid: 12983 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-44.5 + parent: 6 + type: Transform + - uid: 12987 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-53.5 + parent: 6 + type: Transform + - uid: 12988 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-52.5 + parent: 6 + type: Transform + - uid: 12989 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-51.5 + parent: 6 + type: Transform + - uid: 12990 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-50.5 + parent: 6 + type: Transform + - uid: 12991 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-49.5 + parent: 6 + type: Transform + - uid: 12992 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-48.5 + parent: 6 + type: Transform + - uid: 12993 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-47.5 + parent: 6 + type: Transform + - uid: 12994 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-46.5 + parent: 6 + type: Transform + - uid: 12995 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-45.5 + parent: 6 + type: Transform + - uid: 12997 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-44.5 + parent: 6 + type: Transform + - uid: 12998 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-44.5 + parent: 6 + type: Transform + - uid: 12999 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-44.5 + parent: 6 + type: Transform + - uid: 13000 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-44.5 + parent: 6 + type: Transform + - uid: 13001 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-44.5 + parent: 6 + type: Transform + - uid: 13002 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-44.5 + parent: 6 + type: Transform + - uid: 13003 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-44.5 + parent: 6 + type: Transform + - uid: 13004 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-44.5 + parent: 6 + type: Transform + - uid: 13005 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-44.5 + parent: 6 + type: Transform + - uid: 13006 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-44.5 + parent: 6 + type: Transform + - uid: 13007 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-44.5 + parent: 6 + type: Transform + - uid: 13008 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-44.5 + parent: 6 + type: Transform + - uid: 13009 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-44.5 + parent: 6 + type: Transform + - uid: 13010 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-44.5 + parent: 6 + type: Transform + - uid: 13011 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-44.5 + parent: 6 + type: Transform + - uid: 13012 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-44.5 + parent: 6 + type: Transform + - uid: 13013 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-44.5 + parent: 6 + type: Transform + - uid: 13014 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-44.5 + parent: 6 + type: Transform + - uid: 13015 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-44.5 + parent: 6 + type: Transform + - uid: 13016 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-44.5 + parent: 6 + type: Transform + - uid: 13017 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-44.5 + parent: 6 + type: Transform + - uid: 13021 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-28.5 + parent: 6 + type: Transform + - uid: 13763 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,5.5 + parent: 6 + type: Transform + - uid: 13764 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,5.5 + parent: 6 + type: Transform + - uid: 13765 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,5.5 + parent: 6 + type: Transform + - uid: 13766 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,5.5 + parent: 6 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 9034 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-24.5 + parent: 6 + type: Transform + - uid: 12563 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-14.5 + parent: 6 + type: Transform + - uid: 12621 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-35.5 + parent: 6 + type: Transform + - uid: 12622 + components: + - pos: -40.5,-9.5 + parent: 6 + type: Transform + - uid: 12642 + components: + - pos: -32.5,-0.5 + parent: 6 + type: Transform + - uid: 12658 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-21.5 + parent: 6 + type: Transform + - uid: 12692 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,6.5 + parent: 6 + type: Transform + - uid: 12745 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,8.5 + parent: 6 + type: Transform + - uid: 12753 + components: + - rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 6 + type: Transform + - uid: 12754 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-19.5 + parent: 6 + type: Transform + - uid: 12782 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-13.5 + parent: 6 + type: Transform + - uid: 12793 + components: + - pos: 7.5,8.5 + parent: 6 + type: Transform + - uid: 12815 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 6 + type: Transform + - uid: 12849 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-13.5 + parent: 6 + type: Transform + - uid: 12879 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,7.5 + parent: 6 + type: Transform + - uid: 12880 + components: + - pos: 43.5,9.5 + parent: 6 + type: Transform + - uid: 12915 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 6 + type: Transform + - uid: 12920 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-46.5 + parent: 6 + type: Transform + - uid: 12944 + components: + - pos: 13.5,-33.5 + parent: 6 + type: Transform + - uid: 12954 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-39.5 + parent: 6 + type: Transform + - uid: 12975 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-46.5 + parent: 6 + type: Transform + - uid: 12985 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-54.5 + parent: 6 + type: Transform + - uid: 13019 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-45.5 + parent: 6 + type: Transform + - uid: 13022 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-28.5 + parent: 6 + type: Transform + - uid: 13762 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,5.5 + parent: 6 + type: Transform +- proto: DisposalUnit + entities: + - uid: 255 + components: + - pos: -5.5,-13.5 + parent: 6 + type: Transform + - uid: 631 + components: + - pos: 29.5,7.5 + parent: 6 + type: Transform + - uid: 1764 + components: + - pos: -40.5,-9.5 + parent: 6 + type: Transform + - uid: 4404 + components: + - pos: 25.5,5.5 + parent: 6 + type: Transform + - uid: 5170 + components: + - pos: -3.5,1.5 + parent: 6 + type: Transform + - uid: 5404 + components: + - pos: -2.5,-46.5 + parent: 6 + type: Transform + - uid: 5921 + components: + - pos: -3.5,-19.5 + parent: 6 + type: Transform + - uid: 6422 + components: + - pos: -30.5,-24.5 + parent: 6 + type: Transform + - uid: 6489 + components: + - pos: 20.5,-13.5 + parent: 6 + type: Transform + - uid: 6490 + components: + - pos: 7.5,8.5 + parent: 6 + type: Transform + - uid: 6521 + components: + - pos: 13.5,-33.5 + parent: 6 + type: Transform + - uid: 6522 + components: + - pos: 11.5,1.5 + parent: 6 + type: Transform + - uid: 7690 + components: + - pos: 43.5,9.5 + parent: 6 + type: Transform + - uid: 7719 + components: + - pos: 7.5,-28.5 + parent: 6 + type: Transform + - uid: 7833 + components: + - pos: -21.5,-46.5 + parent: 6 + type: Transform + - uid: 8582 + components: + - pos: -11.5,-24.5 + parent: 6 + type: Transform + - uid: 12562 + components: + - pos: -57.5,-14.5 + parent: 6 + type: Transform + - uid: 12643 + components: + - pos: -32.5,-0.5 + parent: 6 + type: Transform + - uid: 12657 + components: + - pos: -39.5,-21.5 + parent: 6 + type: Transform + - uid: 12691 + components: + - pos: -18.5,6.5 + parent: 6 + type: Transform + - uid: 12744 + components: + - pos: -6.5,8.5 + parent: 6 + type: Transform + - uid: 12914 + components: + - pos: -13.5,-30.5 + parent: 6 + type: Transform + - uid: 12943 + components: + - pos: 4.5,-39.5 + parent: 6 + type: Transform + - uid: 12984 + components: + - pos: -12.5,-54.5 + parent: 6 + type: Transform + - uid: 13018 + components: + - pos: -39.5,-45.5 + parent: 6 + type: Transform +- proto: DisposalYJunction + entities: + - uid: 12582 + components: + - pos: -41.5,-11.5 + parent: 6 + type: Transform + - uid: 12929 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-44.5 + parent: 6 + type: Transform +- proto: DogBed + entities: + - uid: 5103 + components: + - pos: 2.5,-5.5 + parent: 6 + type: Transform +- proto: DoorElectronics + entities: + - uid: 6366 + components: + - pos: -34.64085,-4.5804844 + parent: 6 + type: Transform + - uid: 6413 + components: + - pos: -46.62542,-23.372478 + parent: 6 + type: Transform +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 7222 + components: + - pos: 22.689976,-22.442604 + parent: 6 + type: Transform + - uid: 13642 + components: + - pos: 7.4970856,-7.4586945 + parent: 10465 + type: Transform +- proto: Dresser + entities: + - uid: 2147 + components: + - pos: -47.5,-29.5 + parent: 6 + type: Transform + - uid: 4629 + components: + - pos: -2.5,-17.5 + parent: 6 + type: Transform + - uid: 5099 + components: + - pos: 2.5,-7.5 + parent: 6 + type: Transform + - uid: 5165 + components: + - pos: -5.5,1.5 + parent: 6 + type: Transform + - uid: 6205 + components: + - pos: -38.5,-29.5 + parent: 6 + type: Transform + - uid: 6223 + components: + - pos: -39.5,-41.5 + parent: 6 + type: Transform + - uid: 6236 + components: + - pos: -46.5,-41.5 + parent: 6 + type: Transform + - uid: 7742 + components: + - pos: -24.5,-39.5 + parent: 6 + type: Transform +- proto: Drill + entities: + - uid: 7419 + components: + - pos: -17.555452,-51.97445 + parent: 6 + type: Transform +- proto: DrinkBottleOfNothingFull + entities: + - uid: 5629 + components: + - pos: 14.945476,-29.252306 + parent: 6 + type: Transform +- proto: DrinkBottleWine + entities: + - uid: 5893 + components: + - pos: -30.31717,-50.17819 + parent: 6 + type: Transform +- proto: DrinkChangelingStingCan + entities: + - uid: 13480 + components: + - pos: 21.488434,-25.70662 + parent: 6 + type: Transform +- proto: DrinkCognacBottleFull + entities: + - uid: 5204 + components: + - pos: -8.371432,1.0101887 + parent: 6 + type: Transform +- proto: DrinkDetFlask + entities: + - uid: 7608 + components: + - pos: -50.371704,-49.412464 + parent: 6 + type: Transform +- proto: DrinkDoctorsDelightGlass + entities: + - uid: 5641 + components: + - pos: -37.13765,-18.30765 + parent: 6 + type: Transform +- proto: DrinkFlask + entities: + - uid: 5203 + components: + - pos: -8.712202,0.7831309 + parent: 6 + type: Transform +- proto: DrinkGlass + entities: + - uid: 3383 + components: + - pos: -37.085846,-15.241236 + parent: 6 + type: Transform + - uid: 3384 + components: + - pos: -37.31501,-15.51207 + parent: 6 + type: Transform + - uid: 7809 + components: + - pos: 1.1886876,-16.276999 + parent: 6 + type: Transform + - uid: 7810 + components: + - pos: 1.3345215,-16.464499 + parent: 6 + type: Transform + - uid: 7811 + components: + - pos: 1.4803545,-16.29783 + parent: 6 + type: Transform +- proto: DrinkGoldenCup + entities: + - uid: 5068 + components: + - pos: -18.505444,3.7528613 + parent: 6 + type: Transform +- proto: DrinkLithiumFlask + entities: + - uid: 4241 + components: + - pos: 13.332008,-51.601818 + parent: 6 + type: Transform +- proto: DrinkMilkCarton + entities: + - uid: 3388 + components: + - pos: -37.648346,-15.26207 + parent: 6 + type: Transform +- proto: DrinkMugDog + entities: + - uid: 14039 + components: + - pos: -28.336329,-18.335003 + parent: 6 + type: Transform +- proto: DrinkMugGreen + entities: + - uid: 8454 + components: + - pos: -38.75039,-4.2522497 + parent: 6 + type: Transform +- proto: DrinkMugMetal + entities: + - uid: 6026 + components: + - pos: 15.770392,19.737957 + parent: 6 + type: Transform +- proto: DrinkMugMoebius + entities: + - uid: 2655 + components: + - pos: -1.8387411,-56.46771 + parent: 6 + type: Transform +- proto: DrinkMugRainbow + entities: + - uid: 8525 + components: + - pos: -38.646225,-4.5439167 + parent: 6 + type: Transform +- proto: DrinkMugRed + entities: + - uid: 3376 + components: + - pos: -39.415535,-20.54004 + parent: 6 + type: Transform + - uid: 6027 + components: + - pos: 15.500615,19.411562 + parent: 6 + type: Transform +- proto: DrinkRumBottleFull + entities: + - uid: 7609 + components: + - pos: -50.28837,-49.099964 + parent: 6 + type: Transform +- proto: DrinkShaker + entities: + - uid: 4635 + components: + - pos: -2.201659,-14.312722 + parent: 6 + type: Transform +- proto: DrinkShotGlass + entities: + - uid: 7812 + components: + - pos: 1.6886876,-16.54783 + parent: 6 + type: Transform + - uid: 7813 + components: + - pos: 1.7720215,-16.318665 + parent: 6 + type: Transform +- proto: DrinkTeacup + entities: + - uid: 10753 + components: + - pos: -45.35482,-4.5181093 + parent: 6 + type: Transform +- proto: DrinkTeapot + entities: + - uid: 10752 + components: + - pos: -45.60482,-4.2264423 + parent: 6 + type: Transform +- proto: DrinkVodkaBottleFull + entities: + - uid: 7724 + components: + - pos: -32.297493,-34.410748 + parent: 6 + type: Transform +- proto: DrinkWaterCup + entities: + - uid: 2653 + components: + - pos: -1.9295368,-56.269035 + parent: 6 + type: Transform +- proto: DrinkWineGlass + entities: + - uid: 5892 + components: + - pos: -30.6752,-50.499275 + parent: 6 + type: Transform + - uid: 7629 + components: + - pos: -40.251602,-41.354134 + parent: 6 + type: Transform +- proto: Dropper + entities: + - uid: 6171 + components: + - pos: -22.277338,-17.610338 + parent: 6 + type: Transform + - uid: 6172 + components: + - pos: -23.569427,-14.303812 + parent: 6 + type: Transform +- proto: EmergencyLight + entities: + - uid: 8359 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,0.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8361 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,14.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8395 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-12.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8396 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-12.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8397 + components: + - rot: 3.141592653589793 rad + pos: -60.5,-14.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8398 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-12.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8399 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-12.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8400 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-12.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8403 + components: + - pos: 13.5,4.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8404 + components: + - pos: 11.5,20.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8405 + components: + - pos: 0.5,1.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8406 + components: + - pos: -4.5,10.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8407 + components: + - pos: -20.5,4.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8408 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8409 + components: + - pos: -25.5,-20.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8410 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-31.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8411 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-19.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8412 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-26.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8413 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-33.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8414 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8415 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8416 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-37.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8417 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-47.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8418 + components: + - pos: -5.5,-43.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8419 + components: + - pos: -5.5,-54.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8420 + components: + - pos: -23.5,-43.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8421 + components: + - pos: -45.5,-43.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8422 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-56.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8423 + components: + - pos: -4.5,-72.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 8541 + components: + - pos: -7.5,-58.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight + - uid: 9757 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-29.5 + parent: 6 + type: Transform + - enabled: True + type: PointLight + - enabled: True + type: AmbientSound + - type: ActiveEmergencyLight +- proto: EncryptionKeyCargo + entities: + - uid: 14239 + components: + - flags: InContainer + type: MetaData + - parent: 14238 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommand + entities: + - uid: 14253 + components: + - flags: InContainer + type: MetaData + - parent: 14252 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommon + entities: + - uid: 14247 + components: + - flags: InContainer + type: MetaData + - parent: 14246 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyEngineering + entities: + - uid: 14251 + components: + - flags: InContainer + type: MetaData + - parent: 14250 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyMedical + entities: + - uid: 14245 + components: + - flags: InContainer + type: MetaData + - parent: 14244 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyScience + entities: + - uid: 14243 + components: + - flags: InContainer + type: MetaData + - parent: 14242 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeySecurity + entities: + - uid: 14249 + components: + - flags: InContainer + type: MetaData + - parent: 14248 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyService + entities: + - uid: 14241 + components: + - flags: InContainer + type: MetaData + - parent: 14240 + type: Transform + - canCollide: False + type: Physics +- proto: ExosuitFabricator + entities: + - uid: 5400 + components: + - pos: -14.5,-51.5 + parent: 6 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 7848 + components: + - pos: 13.5,6.5 + parent: 6 + type: Transform + - uid: 7851 + components: + - pos: 2.5,6.5 + parent: 6 + type: Transform + - uid: 7852 + components: + - pos: -4.5,-1.5 + parent: 6 + type: Transform + - uid: 7875 + components: + - pos: -7.5,-13.5 + parent: 6 + type: Transform + - uid: 7883 + components: + - pos: -27.5,-13.5 + parent: 6 + type: Transform + - uid: 7891 + components: + - pos: -33.5,0.5 + parent: 6 + type: Transform + - uid: 7892 + components: + - pos: -35.5,7.5 + parent: 6 + type: Transform + - uid: 7900 + components: + - pos: -48.5,-13.5 + parent: 6 + type: Transform + - uid: 7908 + components: + - pos: -61.5,-15.5 + parent: 6 + type: Transform + - uid: 7913 + components: + - pos: -41.5,-37.5 + parent: 6 + type: Transform + - uid: 7914 + components: + - pos: -30.5,-42.5 + parent: 6 + type: Transform + - uid: 7915 + components: + - pos: -13.5,-55.5 + parent: 6 + type: Transform + - uid: 7916 + components: + - pos: -0.5,-74.5 + parent: 6 + type: Transform + - uid: 7917 + components: + - pos: 3.5,-32.5 + parent: 6 + type: Transform + - uid: 7918 + components: + - pos: -4.5,-22.5 + parent: 6 + type: Transform + - uid: 7936 + components: + - pos: 15.5,-38.5 + parent: 6 + type: Transform + - uid: 7938 + components: + - pos: 7.5,9.5 + parent: 6 + type: Transform + - uid: 7939 + components: + - pos: 20.5,-9.5 + parent: 6 + type: Transform + - uid: 8006 + components: + - pos: -32.5,-23.5 + parent: 6 + type: Transform + - uid: 8014 + components: + - pos: -20.5,-17.5 + parent: 6 + type: Transform + - uid: 8022 + components: + - pos: -16.5,4.5 + parent: 6 + type: Transform + - uid: 8060 + components: + - pos: -25.5,-46.5 + parent: 6 + type: Transform + - uid: 8061 + components: + - pos: 7.5,-49.5 + parent: 6 + type: Transform + - uid: 8062 + components: + - pos: 13.5,-24.5 + parent: 6 + type: Transform + - uid: 8063 + components: + - pos: -33.5,-57.5 + parent: 6 + type: Transform + - uid: 14144 + components: + - pos: -22.5,-26.5 + parent: 6 + type: Transform +- proto: FaxMachineBase + entities: + - uid: 7746 + components: + - pos: -19.5,-21.5 + parent: 6 + type: Transform + - name: Medbay + type: FaxMachine + - uid: 7799 + components: + - pos: 8.5,-15.5 + parent: 6 + type: Transform + - name: Lawyer's Office + type: FaxMachine + - uid: 14068 + components: + - pos: 12.5,-42.5 + parent: 6 + type: Transform + - name: Cargo + type: FaxMachine + - uid: 14074 + components: + - pos: -12.5,-51.5 + parent: 6 + type: Transform + - name: Science + type: FaxMachine + - uid: 14076 + components: + - pos: 3.5,-5.5 + parent: 6 + type: Transform + - name: HoP + type: FaxMachine + - uid: 14078 + components: + - pos: 14.5,1.5 + parent: 6 + type: Transform + - name: Security + type: FaxMachine + - uid: 14083 + components: + - pos: 11.5,20.5 + parent: 6 + type: Transform + - name: Brig + type: FaxMachine + - uid: 14084 + components: + - pos: -20.5,-40.5 + parent: 6 + type: Transform + - name: Library + type: FaxMachine + - uid: 14093 + components: + - pos: -2.5,10.5 + parent: 6 + type: Transform + - name: Bridge + type: FaxMachine +- proto: FaxMachineCaptain + entities: + - uid: 14065 + components: + - pos: -3.5,-0.5 + parent: 6 + type: Transform +- proto: filingCabinet + entities: + - uid: 3586 + components: + - pos: -50.5,-50.5 + parent: 6 + type: Transform + - uid: 4496 + components: + - pos: 8.5,-14.5 + parent: 6 + type: Transform + - uid: 5644 + components: + - pos: -39.5,-18.5 + parent: 6 + type: Transform + - uid: 6210 + components: + - pos: -38.5,-35.5 + parent: 6 + type: Transform + - uid: 6486 + components: + - pos: 10.5,6.5 + parent: 6 + type: Transform +- proto: FireAlarm + entities: + - uid: 2980 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-23.5 + parent: 6 + type: Transform + - devices: + - 13064 + - 6560 + - 6632 + - 6631 + - 2981 + - 3643 + - 3635 + type: DeviceList + - uid: 6044 + components: + - pos: 14.5,21.5 + parent: 6 + type: Transform + - devices: + - 12416 + - 12415 + - 12417 + - 12418 + type: DeviceList + - uid: 9172 + components: + - pos: -4.5,-71.5 + parent: 6 + type: Transform + - devices: + - 13095 + - 13096 + - 13094 + - 13093 + - 13097 + type: DeviceList + - uid: 13055 + components: + - rot: 3.141592653589793 rad + pos: -59.5,-15.5 + parent: 6 + type: Transform + - devices: + - 6543 + - 6544 + - 6545 + - 6546 + type: DeviceList + - uid: 13057 + components: + - pos: -47.5,-9.5 + parent: 6 + type: Transform + - devices: + - 6543 + - 6544 + - 6545 + - 6548 + - 6547 + type: DeviceList + - uid: 13059 + components: + - pos: -35.5,-9.5 + parent: 6 + type: Transform + - devices: + - 6549 + - 6550 + - 6551 + - 3381 + - 3382 + - 6552 + - 6553 + - 6554 + - 3332 + - 3325 + - 3335 + type: DeviceList + - uid: 13061 + components: + - pos: -29.5,0.5 + parent: 6 + type: Transform + - uid: 13063 + components: + - pos: -17.5,-9.5 + parent: 6 + type: Transform + - devices: + - 6554 + - 6553 + - 6552 + - 6555 + - 6556 + - 6565 + - 6564 + - 6563 + - 6558 + - 6557 + - 6560 + - 6568 + - 6567 + - 6566 + - 11382 + - 11406 + - 6562 + - 2981 + type: DeviceList + - uid: 13073 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-24.5 + parent: 6 + type: Transform + - devices: + - 6558 + - 6557 + - 6627 + - 6624 + - 6625 + - 6626 + type: DeviceList + - uid: 13076 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-20.5 + parent: 6 + type: Transform + - devices: + - 6602 + - 6603 + - 6604 + - 6605 + - 5156 + - 13077 + - 830 + type: DeviceList + - uid: 13079 + components: + - pos: -4.5,-29.5 + parent: 6 + type: Transform + - devices: + - 6622 + - 6623 + - 6620 + - 6621 + type: DeviceList + - uid: 13081 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-36.5 + parent: 6 + type: Transform + - devices: + - 6626 + - 6625 + - 6624 + - 11590 + - 11589 + - 6620 + - 6621 + - 6634 + - 6635 + - 6636 + type: DeviceList + - uid: 13083 + components: + - pos: -9.5,-42.5 + parent: 6 + type: Transform + - devices: + - 6657 + - 6658 + - 6659 + - 6654 + - 6653 + - 6656 + - 6655 + - 6634 + - 6635 + - 6636 + - 5488 + - 5487 + - 5486 + type: DeviceList + - uid: 13085 + components: + - pos: -31.5,-42.5 + parent: 6 + type: Transform + - devices: + - 5488 + - 5487 + - 5486 + - 6641 + - 6642 + - 6646 + - 6647 + - 6648 + - 6649 + - 6650 + type: DeviceList + - uid: 13087 + components: + - pos: 1.5,-42.5 + parent: 6 + type: Transform + - devices: + - 6657 + - 6658 + - 6659 + - 6643 + - 6644 + - 6613 + - 6612 + - 6611 + type: DeviceList + - uid: 13089 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-54.5 + parent: 6 + type: Transform + - devices: + - 6652 + - 7413 + - 3344 + - 13090 + - 7414 + - 7415 + type: DeviceList + - uid: 13099 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-33.5 + parent: 6 + type: Transform + - devices: + - 6608 + - 6609 + - 6610 + - 6616 + - 6617 + - 6614 + - 6615 + - 6611 + - 6612 + - 6613 + type: DeviceList + - uid: 13101 + components: + - pos: 15.5,-33.5 + parent: 6 + type: Transform + - devices: + - 6618 + - 6619 + - 13102 + - 13103 + type: DeviceList + - uid: 13105 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-17.5 + parent: 6 + type: Transform + - devices: + - 6577 + - 6578 + - 456 + - 476 + - 5947 + - 478 + - 480 + - 489 + - 496 + - 628 + - 629 + - 5156 + - 6602 + - 6603 + - 6604 + - 6605 + - 6610 + - 6609 + - 6608 + - 830 + type: DeviceList + - uid: 13112 + components: + - rot: 3.141592653589793 rad + pos: -32.5,8.5 + parent: 6 + type: Transform + - devices: + - 3328 + type: DeviceList + - uid: 13114 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 6 + type: Transform + - devices: + - 6569 + - 6570 + - 6592 + - 6593 + - 6556 + - 6555 + - 3333 + type: DeviceList + - uid: 13116 + components: + - rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 6 + type: Transform + - devices: + - 6593 + - 6592 + - 6596 + - 6598 + - 6597 + - 6594 + - 6595 + - 6599 + - 6600 + type: DeviceList + - uid: 13117 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-13.5 + parent: 6 + type: Transform + - devices: + - 6575 + - 6574 + - 6573 + - 6563 + - 6564 + - 6565 + - 8275 + - 8276 + - 6576 + type: DeviceList + - uid: 13120 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 6 + type: Transform + - devices: + - 6582 + - 6583 + - 6595 + - 6594 + - 6571 + - 6572 + type: DeviceList + - uid: 13122 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-13.5 + parent: 6 + type: Transform + - devices: + - 6581 + - 6580 + - 6579 + - 6587 + - 6586 + - 6585 + - 6584 + - 6583 + - 6582 + - 6577 + - 6578 + - 6573 + - 6574 + - 6575 + - 11697 + - 11696 + type: DeviceList + - uid: 13124 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 6 + type: Transform + - devices: + - 6591 + - 6590 + - 6589 + - 6588 + type: DeviceList + - uid: 13128 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-13.5 + parent: 6 + type: Transform + - devices: + - 7656 + - 7655 + - 7654 + - 6579 + - 6580 + - 6581 + - 13125 + - 13126 + type: DeviceList + - uid: 13130 + components: + - pos: 36.5,-9.5 + parent: 6 + type: Transform + - devices: + - 7659 + - 7658 + - 7654 + - 7655 + - 7656 + - 7657 + type: DeviceList + - uid: 13133 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-3.5 + parent: 6 + type: Transform + - devices: + - 7657 + type: DeviceList +- proto: FireAxeCabinetFilled + entities: + - uid: 6378 + components: + - rot: 3.141592653589793 rad + pos: -33.5,8.5 + parent: 6 + type: Transform + - uid: 10879 + components: + - pos: -4.5,11.5 + parent: 6 + type: Transform +- proto: FireExtinguisher + entities: + - uid: 5349 + components: + - pos: 4.7012115,-54.43301 + parent: 6 + type: Transform + - uid: 6381 + components: + - pos: -7.5880094,-72.8384 + parent: 6 + type: Transform +- proto: Firelock + entities: + - uid: 6688 + components: + - pos: -75.5,-40.5 + parent: 6 + type: Transform + - uid: 7702 + components: + - pos: 18.5,-24.5 + parent: 6 + type: Transform + - uid: 13097 + components: + - pos: -8.5,-74.5 + parent: 6 + type: Transform +- proto: FirelockEdge + entities: + - uid: 456 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 6 + type: Transform + - uid: 476 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-19.5 + parent: 6 + type: Transform + - uid: 478 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 6 + type: Transform + - uid: 480 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-22.5 + parent: 6 + type: Transform + - uid: 489 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-23.5 + parent: 6 + type: Transform + - uid: 496 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-24.5 + parent: 6 + type: Transform + - uid: 628 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-25.5 + parent: 6 + type: Transform + - uid: 629 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-26.5 + parent: 6 + type: Transform + - uid: 5947 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 6 + type: Transform + - uid: 8275 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-10.5 + parent: 6 + type: Transform + - uid: 8276 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-10.5 + parent: 6 + type: Transform +- proto: FirelockFrame + entities: + - uid: 6687 + components: + - pos: -76.5,-40.5 + parent: 6 + type: Transform + - uid: 6691 + components: + - pos: -79.5,-53.5 + parent: 6 + type: Transform +- proto: FirelockGlass + entities: + - uid: 830 + components: + - pos: 3.5,-20.5 + parent: 6 + type: Transform + - uid: 2117 + components: + - pos: -29.5,6.5 + parent: 6 + type: Transform + - uid: 2156 + components: + - pos: -33.5,6.5 + parent: 6 + type: Transform + - uid: 2981 + components: + - pos: -19.5,-17.5 + parent: 6 + type: Transform + - uid: 3323 + components: + - pos: -31.5,5.5 + parent: 6 + type: Transform + - uid: 3325 + components: + - pos: -27.5,-8.5 + parent: 6 + type: Transform + - uid: 3328 + components: + - pos: -31.5,8.5 + parent: 6 + type: Transform + - uid: 3331 + components: + - pos: -26.5,0.5 + parent: 6 + type: Transform + - uid: 3332 + components: + - pos: -28.5,-8.5 + parent: 6 + type: Transform + - uid: 3333 + components: + - pos: -16.5,-0.5 + parent: 6 + type: Transform + - uid: 3335 + components: + - pos: -26.5,-8.5 + parent: 6 + type: Transform + - uid: 3336 + components: + - pos: -29.5,-4.5 + parent: 6 + type: Transform + - uid: 3337 + components: + - pos: -30.5,-4.5 + parent: 6 + type: Transform + - uid: 3338 + components: + - pos: -31.5,-7.5 + parent: 6 + type: Transform + - uid: 3339 + components: + - pos: -35.5,-7.5 + parent: 6 + type: Transform + - uid: 3344 + components: + - pos: -8.5,-55.5 + parent: 6 + type: Transform + - uid: 3381 + components: + - pos: -37.5,-13.5 + parent: 6 + type: Transform + - uid: 3382 + components: + - pos: -36.5,-13.5 + parent: 6 + type: Transform + - uid: 3635 + components: + - pos: -27.5,-22.5 + parent: 6 + type: Transform + - uid: 3643 + components: + - pos: -27.5,-20.5 + parent: 6 + type: Transform + - uid: 5156 + components: + - pos: 3.5,-21.5 + parent: 6 + type: Transform + - uid: 5486 + components: + - pos: -26.5,-45.5 + parent: 6 + type: Transform + - uid: 5487 + components: + - pos: -26.5,-44.5 + parent: 6 + type: Transform + - uid: 5488 + components: + - pos: -26.5,-43.5 + parent: 6 + type: Transform + - uid: 5907 + components: + - pos: 12.5,11.5 + parent: 6 + type: Transform + - uid: 5908 + components: + - pos: 17.5,11.5 + parent: 6 + type: Transform + - uid: 6543 + components: + - pos: -55.5,-10.5 + parent: 6 + type: Transform + - uid: 6544 + components: + - pos: -55.5,-11.5 + parent: 6 + type: Transform + - uid: 6545 + components: + - pos: -55.5,-12.5 + parent: 6 + type: Transform + - uid: 6546 + components: + - pos: -65.5,-12.5 + parent: 6 + type: Transform + - uid: 6547 + components: + - pos: -50.5,-13.5 + parent: 6 + type: Transform + - uid: 6548 + components: + - pos: -53.5,-13.5 + parent: 6 + type: Transform + - uid: 6549 + components: + - pos: -43.5,-10.5 + parent: 6 + type: Transform + - uid: 6550 + components: + - pos: -43.5,-11.5 + parent: 6 + type: Transform + - uid: 6551 + components: + - pos: -43.5,-12.5 + parent: 6 + type: Transform + - uid: 6552 + components: + - pos: -20.5,-12.5 + parent: 6 + type: Transform + - uid: 6553 + components: + - pos: -20.5,-11.5 + parent: 6 + type: Transform + - uid: 6554 + components: + - pos: -20.5,-10.5 + parent: 6 + type: Transform + - uid: 6555 + components: + - pos: -15.5,-9.5 + parent: 6 + type: Transform + - uid: 6556 + components: + - pos: -14.5,-9.5 + parent: 6 + type: Transform + - uid: 6557 + components: + - pos: -14.5,-17.5 + parent: 6 + type: Transform + - uid: 6558 + components: + - pos: -15.5,-17.5 + parent: 6 + type: Transform + - uid: 6560 + components: + - pos: -18.5,-17.5 + parent: 6 + type: Transform + - uid: 6562 + components: + - pos: -20.5,-15.5 + parent: 6 + type: Transform + - uid: 6563 + components: + - pos: -13.5,-12.5 + parent: 6 + type: Transform + - uid: 6564 + components: + - pos: -13.5,-11.5 + parent: 6 + type: Transform + - uid: 6565 + components: + - pos: -13.5,-10.5 + parent: 6 + type: Transform + - uid: 6566 + components: + - pos: -13.5,-14.5 + parent: 6 + type: Transform + - uid: 6567 + components: + - pos: -13.5,-15.5 + parent: 6 + type: Transform + - uid: 6568 + components: + - pos: -13.5,-16.5 + parent: 6 + type: Transform + - uid: 6569 + components: + - pos: -15.5,5.5 + parent: 6 + type: Transform + - uid: 6570 + components: + - pos: -14.5,5.5 + parent: 6 + type: Transform + - uid: 6571 + components: + - pos: 5.5,5.5 + parent: 6 + type: Transform + - uid: 6572 + components: + - pos: 6.5,5.5 + parent: 6 + type: Transform + - uid: 6573 + components: + - pos: 4.5,-12.5 + parent: 6 + type: Transform + - uid: 6574 + components: + - pos: 4.5,-11.5 + parent: 6 + type: Transform + - uid: 6575 + components: + - pos: 4.5,-10.5 + parent: 6 + type: Transform + - uid: 6576 + components: + - pos: -0.5,-8.5 + parent: 6 + type: Transform + - uid: 6577 + components: + - pos: 5.5,-13.5 + parent: 6 + type: Transform + - uid: 6578 + components: + - pos: 6.5,-13.5 + parent: 6 + type: Transform + - uid: 6579 + components: + - pos: 11.5,-10.5 + parent: 6 + type: Transform + - uid: 6580 + components: + - pos: 11.5,-11.5 + parent: 6 + type: Transform + - uid: 6581 + components: + - pos: 11.5,-12.5 + parent: 6 + type: Transform + - uid: 6582 + components: + - pos: 5.5,-5.5 + parent: 6 + type: Transform + - uid: 6583 + components: + - pos: 6.5,-5.5 + parent: 6 + type: Transform + - uid: 6584 + components: + - pos: 8.5,-5.5 + parent: 6 + type: Transform + - uid: 6585 + components: + - pos: 9.5,-5.5 + parent: 6 + type: Transform + - uid: 6586 + components: + - pos: 11.5,-6.5 + parent: 6 + type: Transform + - uid: 6587 + components: + - pos: 11.5,-8.5 + parent: 6 + type: Transform + - uid: 6588 + components: + - pos: 15.5,5.5 + parent: 6 + type: Transform + - uid: 6589 + components: + - pos: 14.5,5.5 + parent: 6 + type: Transform + - uid: 6590 + components: + - pos: 14.5,-5.5 + parent: 6 + type: Transform + - uid: 6591 + components: + - pos: 15.5,-5.5 + parent: 6 + type: Transform + - uid: 6592 + components: + - pos: -13.5,4.5 + parent: 6 + type: Transform + - uid: 6593 + components: + - pos: -13.5,3.5 + parent: 6 + type: Transform + - uid: 6594 + components: + - pos: 4.5,4.5 + parent: 6 + type: Transform + - uid: 6595 + components: + - pos: 4.5,3.5 + parent: 6 + type: Transform + - uid: 6596 + components: + - pos: -5.5,5.5 + parent: 6 + type: Transform + - uid: 6597 + components: + - pos: -4.5,5.5 + parent: 6 + type: Transform + - uid: 6598 + components: + - pos: -3.5,5.5 + parent: 6 + type: Transform + - uid: 6599 + components: + - pos: -1.5,2.5 + parent: 6 + type: Transform + - uid: 6600 + components: + - pos: -0.5,2.5 + parent: 6 + type: Transform + - uid: 6601 + components: + - pos: -7.5,-6.5 + parent: 6 + type: Transform + - uid: 6602 + components: + - pos: 3.5,-14.5 + parent: 6 + type: Transform + - uid: 6603 + components: + - pos: 3.5,-15.5 + parent: 6 + type: Transform + - uid: 6604 + components: + - pos: 3.5,-16.5 + parent: 6 + type: Transform + - uid: 6605 + components: + - pos: 3.5,-17.5 + parent: 6 + type: Transform + - uid: 6608 + components: + - pos: 4.5,-30.5 + parent: 6 + type: Transform + - uid: 6609 + components: + - pos: 5.5,-30.5 + parent: 6 + type: Transform + - uid: 6610 + components: + - pos: 6.5,-30.5 + parent: 6 + type: Transform + - uid: 6611 + components: + - pos: 6.5,-42.5 + parent: 6 + type: Transform + - uid: 6612 + components: + - pos: 5.5,-42.5 + parent: 6 + type: Transform + - uid: 6613 + components: + - pos: 4.5,-42.5 + parent: 6 + type: Transform + - uid: 6614 + components: + - pos: 7.5,-39.5 + parent: 6 + type: Transform + - uid: 6615 + components: + - pos: 7.5,-40.5 + parent: 6 + type: Transform + - uid: 6616 + components: + - pos: 7.5,-35.5 + parent: 6 + type: Transform + - uid: 6617 + components: + - pos: 7.5,-36.5 + parent: 6 + type: Transform + - uid: 6618 + components: + - pos: 10.5,-35.5 + parent: 6 + type: Transform + - uid: 6619 + components: + - pos: 10.5,-36.5 + parent: 6 + type: Transform + - uid: 6620 + components: + - pos: -12.5,-34.5 + parent: 6 + type: Transform + - uid: 6621 + components: + - pos: -12.5,-35.5 + parent: 6 + type: Transform + - uid: 6622 + components: + - pos: 0.5,-34.5 + parent: 6 + type: Transform + - uid: 6623 + components: + - pos: 0.5,-35.5 + parent: 6 + type: Transform + - uid: 6624 + components: + - pos: -13.5,-28.5 + parent: 6 + type: Transform + - uid: 6625 + components: + - pos: -14.5,-28.5 + parent: 6 + type: Transform + - uid: 6626 + components: + - pos: -15.5,-28.5 + parent: 6 + type: Transform + - uid: 6627 + components: + - pos: -12.5,-20.5 + parent: 6 + type: Transform + - uid: 6631 + components: + - pos: -25.5,-23.5 + parent: 6 + type: Transform + - uid: 6632 + components: + - pos: -24.5,-23.5 + parent: 6 + type: Transform + - uid: 6633 + components: + - pos: -22.5,-27.5 + parent: 6 + type: Transform + - uid: 6634 + components: + - pos: -13.5,-42.5 + parent: 6 + type: Transform + - uid: 6635 + components: + - pos: -14.5,-42.5 + parent: 6 + type: Transform + - uid: 6636 + components: + - pos: -15.5,-42.5 + parent: 6 + type: Transform + - uid: 6637 + components: + - pos: -30.5,-29.5 + parent: 6 + type: Transform + - uid: 6638 + components: + - pos: -50.5,-21.5 + parent: 6 + type: Transform + - uid: 6639 + components: + - pos: -50.5,-27.5 + parent: 6 + type: Transform + - uid: 6640 + components: + - pos: -37.5,-24.5 + parent: 6 + type: Transform + - uid: 6641 + components: + - pos: -32.5,-46.5 + parent: 6 + type: Transform + - uid: 6642 + components: + - pos: -34.5,-46.5 + parent: 6 + type: Transform + - uid: 6643 + components: + - pos: 2.5,-46.5 + parent: 6 + type: Transform + - uid: 6644 + components: + - pos: 4.5,-46.5 + parent: 6 + type: Transform + - uid: 6645 + components: + - pos: 8.5,-47.5 + parent: 6 + type: Transform + - uid: 6646 + components: + - pos: -42.5,-42.5 + parent: 6 + type: Transform + - uid: 6647 + components: + - pos: -43.5,-42.5 + parent: 6 + type: Transform + - uid: 6648 + components: + - pos: -51.5,-43.5 + parent: 6 + type: Transform + - uid: 6649 + components: + - pos: -51.5,-45.5 + parent: 6 + type: Transform + - uid: 6650 + components: + - pos: -49.5,-46.5 + parent: 6 + type: Transform + - uid: 6652 + components: + - pos: -11.5,-49.5 + parent: 6 + type: Transform + - uid: 6653 + components: + - pos: -8.5,-46.5 + parent: 6 + type: Transform + - uid: 6654 + components: + - pos: -7.5,-46.5 + parent: 6 + type: Transform + - uid: 6655 + components: + - pos: -12.5,-46.5 + parent: 6 + type: Transform + - uid: 6656 + components: + - pos: -11.5,-46.5 + parent: 6 + type: Transform + - uid: 6657 + components: + - pos: -4.5,-43.5 + parent: 6 + type: Transform + - uid: 6658 + components: + - pos: -4.5,-44.5 + parent: 6 + type: Transform + - uid: 6659 + components: + - pos: -4.5,-45.5 + parent: 6 + type: Transform + - uid: 6663 + components: + - pos: 8.5,-48.5 + parent: 6 + type: Transform + - uid: 6664 + components: + - pos: 1.5,-48.5 + parent: 6 + type: Transform + - uid: 7392 + components: + - pos: -8.5,-58.5 + parent: 6 + type: Transform + - uid: 7393 + components: + - pos: -3.5,-58.5 + parent: 6 + type: Transform + - uid: 7413 + components: + - pos: -8.5,-56.5 + parent: 6 + type: Transform + - uid: 7414 + components: + - pos: -5.5,-60.5 + parent: 6 + type: Transform + - uid: 7415 + components: + - pos: -6.5,-60.5 + parent: 6 + type: Transform + - uid: 7652 + components: + - pos: 20.5,-2.5 + parent: 6 + type: Transform + - uid: 7653 + components: + - pos: 29.5,3.5 + parent: 6 + type: Transform + - uid: 7654 + components: + - pos: 29.5,-10.5 + parent: 6 + type: Transform + - uid: 7655 + components: + - pos: 29.5,-11.5 + parent: 6 + type: Transform + - uid: 7656 + components: + - pos: 29.5,-12.5 + parent: 6 + type: Transform + - uid: 7657 + components: + - pos: 43.5,-9.5 + parent: 6 + type: Transform + - uid: 7658 + components: + - pos: 30.5,-9.5 + parent: 6 + type: Transform + - uid: 7659 + components: + - pos: 31.5,-9.5 + parent: 6 + type: Transform + - uid: 11589 + components: + - pos: -16.5,-30.5 + parent: 6 + type: Transform + - uid: 11590 + components: + - pos: -16.5,-29.5 + parent: 6 + type: Transform + - uid: 11591 + components: + - pos: -16.5,-32.5 + parent: 6 + type: Transform + - uid: 12415 + components: + - pos: 15.5,17.5 + parent: 6 + type: Transform + - uid: 12416 + components: + - pos: 14.5,17.5 + parent: 6 + type: Transform + - uid: 12417 + components: + - pos: 15.5,13.5 + parent: 6 + type: Transform + - uid: 12418 + components: + - pos: 14.5,13.5 + parent: 6 + type: Transform + - uid: 13064 + components: + - pos: -23.5,-18.5 + parent: 6 + type: Transform + - uid: 13077 + components: + - pos: -9.5,-23.5 + parent: 6 + type: Transform + - uid: 13090 + components: + - pos: -7.5,-49.5 + parent: 6 + type: Transform + - uid: 13093 + components: + - pos: -6.5,-71.5 + parent: 6 + type: Transform + - uid: 13094 + components: + - pos: -5.5,-71.5 + parent: 6 + type: Transform + - uid: 13095 + components: + - pos: 1.5,-78.5 + parent: 6 + type: Transform + - uid: 13096 + components: + - pos: 0.5,-78.5 + parent: 6 + type: Transform + - uid: 13102 + components: + - pos: 13.5,-38.5 + parent: 6 + type: Transform + - uid: 13103 + components: + - pos: 14.5,-38.5 + parent: 6 + type: Transform + - uid: 13125 + components: + - pos: 13.5,-13.5 + parent: 6 + type: Transform + - uid: 13126 + components: + - pos: 16.5,-13.5 + parent: 6 + type: Transform +- proto: Fireplace + entities: + - uid: 5100 + components: + - pos: 1.5,-5.5 + parent: 6 + type: Transform + - uid: 5164 + components: + - pos: -6.5,1.5 + parent: 6 + type: Transform + - uid: 5422 + components: + - pos: -38.5,-37.5 + parent: 6 + type: Transform +- proto: Flash + entities: + - uid: 6339 + components: + - pos: -10.037393,8.564573 + parent: 6 + type: Transform +- proto: FloodlightBroken + entities: + - uid: 11169 + components: + - pos: -52.523926,-35.49571 + parent: 6 + type: Transform +- proto: FloorDrain + entities: + - uid: 1519 + components: + - pos: 26.5,4.5 + parent: 6 + type: Transform + + - uid: 4637 + components: + - pos: -6.5,-21.5 + parent: 6 + type: Transform + + - uid: 5161 + components: + - pos: -9.5,-4.5 + parent: 6 + type: Transform + + - uid: 5417 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-39.5 + parent: 6 + type: Transform + + - uid: 6002 + components: + - pos: 13.5,23.5 + parent: 6 + type: Transform + +- proto: FloorTileItemDirty + entities: + - uid: 4779 + components: + - rot: 1.5707963267948966 rad + pos: -83.63268,-40.218216 + parent: 6 + type: Transform +- proto: FloorTileItemSilver + entities: + - uid: 13476 + components: + - pos: -39.52305,-61.514 + parent: 6 + type: Transform + - count: 20 + type: Stack +- proto: FloraRockSolid01 + entities: + - uid: 3045 + components: + - pos: 6.5111475,-57.13191 + parent: 6 + type: Transform + - uid: 3392 + components: + - pos: -61.812347,-29.324266 + parent: 6 + type: Transform + - uid: 6404 + components: + - pos: 3.0725744,-0.16421038 + parent: 6 + type: Transform + - uid: 13458 + components: + - pos: 1.1552553,13.699205 + parent: 6 + type: Transform + - uid: 13460 + components: + - pos: -44.398453,-0.9168674 + parent: 6 + type: Transform +- proto: FloraRockSolid02 + entities: + - uid: 2830 + components: + - pos: -60.357754,-38.41907 + parent: 6 + type: Transform + - uid: 3903 + components: + - pos: -64.08084,-28.510105 + parent: 6 + type: Transform + - uid: 5563 + components: + - pos: 2.6674764,-62.22875 + parent: 6 + type: Transform + - uid: 7942 + components: + - pos: -10.158922,13.093135 + parent: 6 + type: Transform +- proto: FloraRockSolid03 + entities: + - uid: 2999 + components: + - pos: -5.07331,-85.093 + parent: 6 + type: Transform + - uid: 13459 + components: + - pos: -19.609337,17.033985 + parent: 6 + type: Transform + - uid: 13461 + components: + - pos: -70.13768,-21.781702 + parent: 6 + type: Transform +- proto: FloraTree02 + entities: + - uid: 1339 + components: + - pos: -17.087059,-5.479291 + parent: 6 + type: Transform +- proto: FloraTreeLarge05 + entities: + - uid: 541 + components: + - pos: -18.958637,-6.908564 + parent: 6 + type: Transform +- proto: FloraTreeStump + entities: + - uid: 6347 + components: + - pos: -19.254988,-3.2183788 + parent: 6 + type: Transform + - uid: 6348 + components: + - pos: -17.207521,-7.847518 + parent: 6 + type: Transform +- proto: FoamBlade + entities: + - uid: 4319 + components: + - pos: 21.361864,-25.670048 + parent: 6 + type: Transform + - nextAttack: 8133.9348649 + type: MeleeWeapon +- proto: FoodBakedBunHoney + entities: + - uid: 13464 + components: + - pos: -25.511547,28.579197 + parent: 6 + type: Transform +- proto: FoodBanana + entities: + - uid: 5624 + components: + - pos: 16.40795,-29.521938 + parent: 6 + type: Transform + - uid: 5625 + components: + - pos: 16.26596,-29.29488 + parent: 6 + type: Transform + - uid: 5626 + components: + - pos: 15.996186,-29.56451 + parent: 6 + type: Transform +- proto: FoodBowlBig + entities: + - uid: 6023 + components: + - pos: 16.324144,21.795668 + parent: 6 + type: Transform +- proto: FoodBoxDonkpocket + entities: + - uid: 13824 + components: + - pos: -70.5262,-13.338938 + parent: 6 + type: Transform +- proto: FoodBoxDonkpocketHonk + entities: + - uid: 7623 + components: + - pos: -39.426613,-31.363337 + parent: 6 + type: Transform +- proto: FoodBoxDonut + entities: + - uid: 6337 + components: + - pos: -6.523168,9.621988 + parent: 6 + type: Transform + - uid: 6485 + components: + - pos: 15.499124,-0.38366717 + parent: 6 + type: Transform +- proto: FoodBoxPizzaFilled + entities: + - uid: 5729 + components: + - pos: 27.494638,-4.2537265 + parent: 6 + type: Transform +- proto: FoodBreadBanana + entities: + - uid: 7622 + components: + - pos: -38.572445,-31.363337 + parent: 6 + type: Transform +- proto: FoodBreadPlain + entities: + - uid: 5891 + components: + - pos: -30.449894,-51.434753 + parent: 6 + type: Transform +- proto: FoodBurgerRobot + entities: + - uid: 7421 + components: + - pos: -17.483595,-50.879738 + parent: 6 + type: Transform +- proto: FoodBurgerSuper + entities: + - uid: 2793 + components: + - pos: 10.429161,27.368525 + parent: 6 + type: Transform +- proto: FoodCakeBirthdaySlice + entities: + - uid: 7814 + components: + - pos: 0.5428545,-16.42283 + parent: 6 + type: Transform +- proto: FoodCakeChocolateSlice + entities: + - uid: 7630 + components: + - pos: -40.626602,-41.31247 + parent: 6 + type: Transform +- proto: FoodCakeSuppermatter + entities: + - uid: 8057 + components: + - pos: -19.508875,10.470149 + parent: 6 + type: Transform +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 4611 + components: + - pos: -8.779711,-26.401459 + parent: 6 + type: Transform +- proto: FoodCondimentPacketSalt + entities: + - uid: 6024 + components: + - pos: 16.806902,21.710522 + parent: 6 + type: Transform +- proto: FoodContainerEgg + entities: + - uid: 4614 + components: + - pos: -8.779711,-26.172293 + parent: 6 + type: Transform +- proto: FoodDonutJellyBungo + entities: + - uid: 13483 + components: + - pos: 26.456028,-15.391834 + parent: 6 + type: Transform +- proto: FoodFrozenPopsicleBerry + entities: + - uid: 6326 + components: + - flags: InContainer + type: MetaData + - parent: 5076 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleJumbo + entities: + - uid: 6323 + components: + - flags: InContainer + type: MetaData + - parent: 5076 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleOrange + entities: + - uid: 5174 + components: + - flags: InContainer + type: MetaData + - parent: 5076 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodFrozenSandwich + entities: + - uid: 6325 + components: + - flags: InContainer + type: MetaData + - parent: 5076 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodFrozenSandwichStrawberry + entities: + - uid: 6324 + components: + - flags: InContainer + type: MetaData + - parent: 5076 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodMealCubancarp + entities: + - uid: 14052 + components: + - pos: -1.5245855,-31.062477 + parent: 6 + type: Transform +- proto: FoodMealMemoryleek + entities: + - uid: 1442 + components: + - pos: -43.450493,7.615522 + parent: 6 + type: Transform +- proto: FoodMeatXeno + entities: + - uid: 13465 + components: + - pos: -38.4764,31.389072 + parent: 6 + type: Transform + - uid: 13631 + components: + - pos: 9.93219,-5.5282135 + parent: 10465 + type: Transform +- proto: FoodPieBananaCream + entities: + - uid: 5619 + components: + - pos: 17.430262,-29.15297 + parent: 6 + type: Transform + - uid: 5620 + components: + - pos: 17.302473,-29.29488 + parent: 6 + type: Transform + - uid: 5621 + components: + - pos: 17.146286,-29.465174 + parent: 6 + type: Transform + - uid: 5622 + components: + - pos: 17.018497,-29.195543 + parent: 6 + type: Transform +- proto: FoodPlate + entities: + - uid: 6021 + components: + - pos: 16.36674,21.639565 + parent: 6 + type: Transform +- proto: FoodPlateSmall + entities: + - uid: 6022 + components: + - pos: 16.49453,21.540228 + parent: 6 + type: Transform +- proto: FoodPlateTrash + entities: + - uid: 11167 + components: + - pos: -54.497555,-33.452187 + parent: 6 + type: Transform +- proto: FoodSoupBungo + entities: + - uid: 5726 + components: + - pos: 25.439394,11.475561 + parent: 6 + type: Transform +- proto: FoodSoupMonkey + entities: + - uid: 3943 + components: + - pos: -18.621372,-62.49699 + parent: 6 + type: Transform +- proto: FoodTartMime + entities: + - uid: 5628 + components: + - pos: 15.300446,-29.40841 + parent: 6 + type: Transform +- proto: FoodTinPeachesMaintTrash + entities: + - uid: 13744 + components: + - pos: 2.083191,5.0137787 + parent: 13645 + type: Transform +- proto: GasAnalyzer + entities: + - uid: 4884 + components: + - pos: -33.370625,-6.4446573 + parent: 6 + type: Transform + - uid: 5197 + components: + - pos: -13.306403,8.4866905 + parent: 6 + type: Transform + - uid: 6376 + components: + - pos: -36.95325,22.538956 + parent: 6 + type: Transform + - uid: 6384 + components: + - pos: 1.5268581,-75.500656 + parent: 6 + type: Transform + - uid: 6416 + components: + - pos: -46.62542,-24.922148 + parent: 6 + type: Transform + - uid: 6417 + components: + - pos: -46.347122,-25.240028 + parent: 6 + type: Transform +- proto: GasCanisterBrokenBase + entities: + - uid: 3641 + components: + - pos: -62.5,-34.5 + parent: 6 + type: Transform + - uid: 5534 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-29.5 + parent: 6 + type: Transform + - uid: 11168 + components: + - pos: -54.5,-35.5 + parent: 6 + type: Transform +- proto: GasFilterFlipped + entities: + - uid: 2166 + components: + - pos: -36.5,10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 2167 + components: + - pos: -36.5,12.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2168 + components: + - pos: -36.5,14.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2169 + components: + - pos: -36.5,16.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2170 + components: + - pos: -36.5,18.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2171 + components: + - pos: -36.5,20.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics +- proto: GasMinerCarbonDioxide + entities: + - uid: 3458 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,13.5 + parent: 6 + type: Transform +- proto: GasMinerNitrogen + entities: + - uid: 3459 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,9.5 + parent: 6 + type: Transform +- proto: GasMinerOxygen + entities: + - uid: 3460 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,11.5 + parent: 6 + type: Transform +- proto: GasMinerPlasma + entities: + - uid: 3461 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,17.5 + parent: 6 + type: Transform +- proto: GasMixerFlipped + entities: + - uid: 1895 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-73.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2172 + components: + - pos: -34.5,13.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2173 + components: + - pos: -34.5,12.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2174 + components: + - pos: -34.5,15.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2175 + components: + - pos: -34.5,17.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2176 + components: + - pos: -34.5,19.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2229 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,9.5 + parent: 6 + type: Transform + - inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 + type: GasMixer + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 5948 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-74.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics +- proto: GasOutletInjector + entities: + - uid: 2333 + components: + - rot: 3.141592653589793 rad + pos: -43.5,19.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2334 + components: + - rot: 3.141592653589793 rad + pos: -43.5,17.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2335 + components: + - rot: 3.141592653589793 rad + pos: -43.5,15.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2336 + components: + - rot: 3.141592653589793 rad + pos: -43.5,13.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2337 + components: + - rot: 3.141592653589793 rad + pos: -43.5,11.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2338 + components: + - rot: 3.141592653589793 rad + pos: -43.5,9.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2430 + components: + - pos: -35.5,26.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics +- proto: GasPassiveVent + entities: + - uid: 1456 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-80.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 1457 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-80.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 1458 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-80.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 1459 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-80.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2230 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,8.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 2364 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,19.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2365 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,17.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2366 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,15.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2367 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,13.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2368 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,11.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2369 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,9.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2422 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,21.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2431 + components: + - pos: -33.5,26.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5446 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-42.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics +- proto: GasPipeBend + entities: + - uid: 659 + components: + - pos: 36.5,-10.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 671 + components: + - pos: 30.5,3.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 677 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,2.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 1729 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-72.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2226 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,12.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2327 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,20.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2328 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,18.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2329 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,16.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2330 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,14.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2331 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,12.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2332 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,10.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2426 + components: + - pos: -34.5,23.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2427 + components: + - rot: 3.141592653589793 rad + pos: -35.5,23.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2439 + components: + - rot: 3.141592653589793 rad + pos: -33.5,18.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2440 + components: + - pos: -32.5,18.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 4644 + components: + - pos: -28.5,-16.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6256 + components: + - pos: -24.5,-7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6258 + components: + - pos: -25.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6259 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6261 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6267 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6308 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6739 + components: + - pos: -80.5,-39.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 6740 + components: + - rot: 1.5707963267948966 rad + pos: -82.5,-39.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 8052 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11278 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11282 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11358 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11424 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11425 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-16.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11485 + components: + - pos: -13.5,-18.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11486 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-18.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11492 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11493 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11529 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-18.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 11548 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-30.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 11557 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-29.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11571 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11675 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11683 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11701 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11744 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11752 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11759 + components: + - pos: 14.5,-4.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11760 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11765 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11773 + components: + - pos: 17.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11778 + components: + - pos: 15.5,-3.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11779 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-3.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11796 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,3.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11797 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11817 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,4.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11819 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,4.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11857 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-30.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11858 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-31.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11862 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-29.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11977 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11980 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-48.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11987 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-48.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11988 + components: + - pos: 3.5,-48.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11989 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-49.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11994 + components: + - rot: 3.141592653589793 rad + pos: -56.5,-43.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 11997 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-45.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 12014 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-29.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12052 + components: + - pos: -42.5,-31.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12084 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12180 + components: + - pos: 31.5,5.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12244 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-19.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12245 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-19.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12269 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12335 + components: + - pos: 9.5,-14.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12341 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12359 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-25.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12399 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-40.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12402 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-37.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12406 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-37.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12437 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-50.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12438 + components: + - pos: -6.5,-50.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12457 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-52.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12459 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-53.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12470 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-55.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12479 + components: + - pos: -5.5,-54.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12532 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-54.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 13108 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,11.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound +- proto: GasPipeFourway + entities: + - uid: 2442 + components: + - pos: -32.5,16.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2443 + components: + - pos: -32.5,15.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 6255 + components: + - pos: -29.5,-7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6257 + components: + - pos: -25.5,-7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11302 + components: + - pos: -14.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11303 + components: + - pos: -15.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11411 + components: + - pos: -14.5,-16.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11421 + components: + - pos: -15.5,-15.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11533 + components: + - pos: -29.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11614 + components: + - pos: 5.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11644 + components: + - pos: 6.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11782 + components: + - pos: 14.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12259 + components: + - pos: 6.5,-36.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12386 + components: + - pos: 9.5,-36.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12443 + components: + - pos: -6.5,-54.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12452 + components: + - pos: -12.5,-52.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics +- proto: GasPipeStraight + entities: + - uid: 682 + components: + - pos: 43.5,-2.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 683 + components: + - pos: 31.5,-3.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 1452 + components: + - pos: -7.5,-79.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 1453 + components: + - pos: -5.5,-79.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 1454 + components: + - pos: -3.5,-79.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 1455 + components: + - pos: -1.5,-79.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2177 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,15.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2178 + components: + - pos: -36.5,17.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2179 + components: + - pos: -36.5,15.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2180 + components: + - pos: -36.5,9.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2182 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,10.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2183 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,11.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2184 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,14.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2185 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,15.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2186 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,18.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2187 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,19.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2188 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,18.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2189 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,9.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2190 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,16.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2191 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,13.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2192 + components: + - pos: -36.5,13.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2193 + components: + - pos: -36.5,11.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2194 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,8.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2195 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,9.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2196 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,12.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2197 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,13.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2198 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,16.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2199 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,17.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2200 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,20.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2201 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,20.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2202 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,15.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2203 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,13.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2204 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,11.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2205 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,12.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2206 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,10.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2207 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,14.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2212 + components: + - pos: -34.5,20.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2213 + components: + - pos: -34.5,18.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2216 + components: + - pos: -34.5,14.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2217 + components: + - pos: -34.5,16.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2218 + components: + - pos: -36.5,19.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2219 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,17.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2220 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,19.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2221 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,19.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2224 + components: + - rot: 3.141592653589793 rad + pos: -35.5,10.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2225 + components: + - rot: 3.141592653589793 rad + pos: -35.5,11.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2227 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,11.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2228 + components: + - pos: -34.5,10.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2291 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,20.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2292 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,19.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2293 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,18.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2294 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,17.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2295 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,16.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2296 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,15.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2297 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,14.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2298 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,13.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2299 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,12.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2300 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,11.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2301 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,10.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2302 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,9.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2303 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,20.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2304 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,19.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2305 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,18.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2306 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,17.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2307 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,16.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2308 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,15.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2309 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,14.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2310 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,13.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2311 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,12.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2312 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,11.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2313 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,10.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2314 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,9.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2315 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,20.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2316 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,20.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2317 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,18.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2318 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,18.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2319 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,16.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2320 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,16.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2321 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,14.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2322 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,14.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2323 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,12.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2324 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,12.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2325 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,10.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2326 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,10.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2339 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,19.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2340 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,17.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2341 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,15.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2342 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,13.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2343 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,11.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2344 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,9.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2421 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,21.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2428 + components: + - rot: 3.141592653589793 rad + pos: -35.5,24.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2429 + components: + - rot: 3.141592653589793 rad + pos: -35.5,25.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2432 + components: + - pos: -33.5,25.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2433 + components: + - pos: -33.5,24.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2434 + components: + - pos: -33.5,23.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2436 + components: + - pos: -33.5,21.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2437 + components: + - pos: -33.5,20.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2438 + components: + - pos: -33.5,19.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 3124 + components: + - rot: 3.141592653589793 rad + pos: -33.5,5.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 3125 + components: + - rot: 3.141592653589793 rad + pos: -33.5,4.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 3132 + components: + - rot: 3.141592653589793 rad + pos: -33.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 3133 + components: + - rot: 3.141592653589793 rad + pos: -33.5,2.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 3136 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,8.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 3137 + components: + - rot: 3.141592653589793 rad + pos: -33.5,6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 3140 + components: + - rot: 3.141592653589793 rad + pos: -33.5,1.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 3141 + components: + - rot: 3.141592653589793 rad + pos: -33.5,0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 3148 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 3149 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-1.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 3457 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,17.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 4516 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,9.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 4517 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,9.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 6250 + components: + - pos: -30.5,-8.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 6251 + components: + - pos: -29.5,-8.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 6252 + components: + - pos: -25.5,-8.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 6253 + components: + - pos: -24.5,-8.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 6263 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6264 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6265 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6266 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6268 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6269 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-5.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6270 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6271 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-3.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6272 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-2.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6275 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6276 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6277 + components: + - rot: 3.141592653589793 rad + pos: -31.5,0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6278 + components: + - rot: 3.141592653589793 rad + pos: -31.5,1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6279 + components: + - rot: 3.141592653589793 rad + pos: -31.5,2.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6280 + components: + - rot: 3.141592653589793 rad + pos: -31.5,3.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6281 + components: + - rot: 3.141592653589793 rad + pos: -31.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6282 + components: + - rot: 3.141592653589793 rad + pos: -31.5,5.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6283 + components: + - rot: 3.141592653589793 rad + pos: -31.5,6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 6285 + components: + - pos: -31.5,8.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6301 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-5.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6302 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-4.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6304 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6306 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-2.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6307 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-1.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6309 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6310 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6311 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6312 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6314 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6315 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6317 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6318 + components: + - rot: 3.141592653589793 rad + pos: -26.5,0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6426 + components: + - pos: -30.5,-15.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6742 + components: + - rot: 1.5707963267948966 rad + pos: -77.5,-50.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 6743 + components: + - pos: -83.5,-44.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 6744 + components: + - pos: -83.5,-45.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 7703 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-40.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 8051 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-2.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 10211 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-45.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 11179 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11180 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11182 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11183 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11184 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11188 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11189 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 11190 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11191 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11192 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11193 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11194 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11195 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11198 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11201 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11202 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11203 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11204 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11205 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11206 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11207 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11208 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 11209 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11212 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-2.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11213 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-3.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11215 + components: + - rot: 3.141592653589793 rad + pos: -15.5,0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11216 + components: + - rot: 3.141592653589793 rad + pos: -15.5,1.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11218 + components: + - rot: 3.141592653589793 rad + pos: -15.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11220 + components: + - pos: -14.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11221 + components: + - pos: -14.5,0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11222 + components: + - pos: -14.5,1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11223 + components: + - pos: -14.5,2.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11224 + components: + - pos: -14.5,3.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11226 + components: + - pos: -14.5,5.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11229 + components: + - pos: -15.5,5.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11230 + components: + - pos: -15.5,4.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11231 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11232 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11233 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11234 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11235 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11236 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11237 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11238 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11242 + components: + - pos: -5.5,5.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11244 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11247 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11248 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11249 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11250 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11251 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11252 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11253 + components: + - pos: -1.5,2.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11254 + components: + - pos: -1.5,1.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11256 + components: + - rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11257 + components: + - rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11261 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11262 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11263 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11264 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11265 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11268 + components: + - rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11269 + components: + - rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11271 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11272 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11273 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11274 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 11275 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11276 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 11280 + components: + - pos: -0.5,2.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11281 + components: + - pos: -0.5,3.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11283 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11284 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11285 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11286 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11287 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11288 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11290 + components: + - rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11292 + components: + - pos: 5.5,4.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11293 + components: + - pos: 5.5,5.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11295 + components: + - pos: -14.5,-5.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11296 + components: + - pos: -14.5,-6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11297 + components: + - pos: -14.5,-7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11298 + components: + - pos: -14.5,-8.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11299 + components: + - pos: -14.5,-9.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11300 + components: + - pos: -14.5,-10.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11301 + components: + - pos: -14.5,-11.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11304 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-9.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11305 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-8.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11306 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11307 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11308 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-5.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11309 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-4.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11310 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11311 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-2.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11312 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-1.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11313 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11314 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11315 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11316 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11317 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11318 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11319 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11321 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11323 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11324 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11326 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11327 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11328 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11329 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11330 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11331 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11332 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11334 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11335 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11336 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11337 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11338 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11339 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11340 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11341 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11342 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11343 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11344 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11346 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11347 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11348 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11349 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11350 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11351 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11352 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11353 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11354 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11357 + components: + - pos: -63.5,-11.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11359 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11360 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11361 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11362 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11363 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11364 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11365 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11366 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11367 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11368 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11370 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11371 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11372 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11373 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11374 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11375 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11376 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11377 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11378 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11379 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11380 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11381 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11383 + components: + - rot: 1.5707963267948966 rad + pos: -62.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11384 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11385 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11386 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11387 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11388 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11389 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11390 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11391 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11393 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11394 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11395 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11397 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11398 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11400 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11401 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11402 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11403 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11404 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11405 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11408 + components: + - pos: -14.5,-13.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11409 + components: + - pos: -14.5,-14.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11410 + components: + - pos: -14.5,-15.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11412 + components: + - pos: -14.5,-17.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11413 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-16.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11414 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-16.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11415 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-16.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11417 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-15.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11418 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-15.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11419 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-15.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11420 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-15.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11422 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-15.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11423 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11426 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-16.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11427 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-16.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11428 + components: + - pos: -15.5,-14.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11429 + components: + - pos: -15.5,-13.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11430 + components: + - pos: -15.5,-12.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11431 + components: + - pos: -15.5,-11.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11432 + components: + - pos: -15.5,-39.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11433 + components: + - pos: -15.5,-40.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11434 + components: + - pos: -15.5,-41.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11435 + components: + - pos: -15.5,-42.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11436 + components: + - pos: -15.5,-16.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11437 + components: + - pos: -15.5,-17.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11438 + components: + - pos: -15.5,-18.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11439 + components: + - pos: -15.5,-19.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11440 + components: + - pos: -15.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11441 + components: + - pos: -15.5,-21.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11443 + components: + - pos: -15.5,-23.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11445 + components: + - pos: -15.5,-25.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11446 + components: + - pos: -15.5,-26.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11447 + components: + - pos: -15.5,-27.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11448 + components: + - pos: -15.5,-28.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11450 + components: + - pos: -15.5,-30.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11451 + components: + - pos: -15.5,-31.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11452 + components: + - pos: -15.5,-32.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11453 + components: + - pos: -15.5,-33.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11454 + components: + - pos: -15.5,-34.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11455 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-30.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11457 + components: + - pos: -15.5,-37.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11458 + components: + - pos: -15.5,-38.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11459 + components: + - pos: -13.5,-44.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11460 + components: + - pos: -13.5,-43.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11461 + components: + - pos: -13.5,-42.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11462 + components: + - pos: -13.5,-41.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11463 + components: + - pos: -13.5,-40.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11464 + components: + - pos: -13.5,-39.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11465 + components: + - pos: -13.5,-38.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11466 + components: + - pos: -13.5,-37.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11467 + components: + - pos: -13.5,-36.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11468 + components: + - pos: -13.5,-35.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11471 + components: + - pos: -13.5,-32.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11472 + components: + - pos: -13.5,-31.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11474 + components: + - pos: -13.5,-29.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11475 + components: + - pos: -13.5,-28.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11476 + components: + - pos: -13.5,-27.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11477 + components: + - pos: -13.5,-26.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11478 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-24.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11479 + components: + - pos: -13.5,-24.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11480 + components: + - pos: -13.5,-23.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11481 + components: + - pos: -13.5,-22.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11483 + components: + - pos: -13.5,-20.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11484 + components: + - pos: -13.5,-19.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11487 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-16.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11488 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-17.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11489 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-17.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 11490 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-18.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11491 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-18.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11494 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-19.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11495 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-20.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11496 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-19.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11497 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11498 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11499 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11500 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11501 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11502 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11507 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11510 + components: + - pos: -23.5,-19.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11511 + components: + - pos: -23.5,-18.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11514 + components: + - pos: -21.5,-20.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11515 + components: + - pos: -21.5,-19.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11516 + components: + - pos: -21.5,-18.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 11518 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11519 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11520 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 11521 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11522 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11524 + components: + - pos: -30.5,-20.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11525 + components: + - pos: -30.5,-19.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 11526 + components: + - pos: -30.5,-18.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11532 + components: + - pos: -29.5,-19.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11534 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11535 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11536 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11538 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11539 + components: + - pos: -25.5,-21.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11540 + components: + - pos: -25.5,-22.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11541 + components: + - pos: -25.5,-23.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11542 + components: + - pos: -25.5,-24.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11543 + components: + - pos: -25.5,-25.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11544 + components: + - pos: -25.5,-26.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11545 + components: + - pos: -25.5,-27.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11546 + components: + - pos: -25.5,-28.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 11547 + components: + - pos: -25.5,-29.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11550 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-22.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11551 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-23.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11552 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-24.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11553 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-25.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11554 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-26.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11555 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-27.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11556 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-28.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11559 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11560 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11561 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11562 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11563 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11564 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11567 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11569 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11570 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11572 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-19.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11575 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-20.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11576 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-19.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 11578 + components: + - pos: -34.5,-20.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11579 + components: + - pos: -34.5,-19.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 11580 + components: + - pos: -34.5,-18.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11581 + components: + - pos: -34.5,-17.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11582 + components: + - pos: -33.5,-19.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11583 + components: + - pos: -33.5,-18.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11584 + components: + - pos: -33.5,-17.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11587 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11588 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11594 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11595 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11596 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11597 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11598 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11599 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11600 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11601 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11602 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11603 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11604 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11605 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11608 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11609 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11610 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11611 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11612 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11613 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11615 + components: + - pos: 5.5,-9.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11616 + components: + - pos: 5.5,-8.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11617 + components: + - pos: 5.5,-7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11618 + components: + - pos: 5.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11619 + components: + - pos: 5.5,-5.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11620 + components: + - pos: 5.5,-4.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11621 + components: + - pos: 5.5,-3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11622 + components: + - pos: 5.5,-2.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11623 + components: + - pos: 5.5,-1.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11624 + components: + - pos: 5.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11625 + components: + - pos: 5.5,0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11626 + components: + - pos: 5.5,1.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11628 + components: + - pos: 6.5,3.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11629 + components: + - pos: 6.5,2.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11630 + components: + - pos: 6.5,1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11631 + components: + - pos: 6.5,0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11632 + components: + - pos: 6.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11633 + components: + - pos: 6.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11634 + components: + - pos: 6.5,-2.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11635 + components: + - pos: 6.5,-3.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11637 + components: + - pos: 6.5,-5.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11638 + components: + - pos: 6.5,-6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11639 + components: + - pos: 6.5,-7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11640 + components: + - pos: 6.5,-8.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11641 + components: + - pos: 6.5,-9.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11642 + components: + - pos: 6.5,-10.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11643 + components: + - pos: 6.5,-11.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11645 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11646 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11647 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11648 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11649 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11650 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11652 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11653 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11655 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11656 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11657 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11658 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11659 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11660 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11661 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11662 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11663 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11664 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11665 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-11.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11666 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-10.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11667 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11668 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11669 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11672 + components: + - pos: -1.5,-9.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11673 + components: + - pos: -1.5,-8.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 11677 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11678 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 11679 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11680 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11684 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11685 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11690 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11691 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11698 + components: + - pos: 10.5,-11.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11699 + components: + - pos: 10.5,-10.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11700 + components: + - pos: 10.5,-9.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11702 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11705 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11706 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11707 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11708 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11709 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11711 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11712 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11713 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11714 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11715 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11716 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11717 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11718 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11720 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11721 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11722 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11725 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11726 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11727 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11728 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11729 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11730 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11731 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11733 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11734 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11735 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11737 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11738 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11739 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11740 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11741 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11742 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-8.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11743 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-8.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11746 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11747 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11749 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-9.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11750 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11751 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11753 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11754 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11755 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11756 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11758 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-5.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11761 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-4.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11763 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11764 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11767 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-2.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11771 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11772 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 11775 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11776 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-5.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11777 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11780 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-2.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11781 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11784 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11785 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11788 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11789 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11790 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 11791 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11793 + components: + - rot: 3.141592653589793 rad + pos: 14.5,0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11794 + components: + - rot: 3.141592653589793 rad + pos: 14.5,1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11795 + components: + - rot: 3.141592653589793 rad + pos: 14.5,2.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 11798 + components: + - rot: 3.141592653589793 rad + pos: 15.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11799 + components: + - rot: 3.141592653589793 rad + pos: 15.5,5.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11800 + components: + - rot: 3.141592653589793 rad + pos: 15.5,6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11801 + components: + - rot: 3.141592653589793 rad + pos: 15.5,7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11802 + components: + - rot: 3.141592653589793 rad + pos: 15.5,8.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11803 + components: + - rot: 3.141592653589793 rad + pos: 15.5,9.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11804 + components: + - rot: 3.141592653589793 rad + pos: 15.5,10.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11805 + components: + - rot: 3.141592653589793 rad + pos: 15.5,11.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11806 + components: + - rot: 3.141592653589793 rad + pos: 15.5,12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11807 + components: + - rot: 3.141592653589793 rad + pos: 15.5,13.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11809 + components: + - rot: 3.141592653589793 rad + pos: 15.5,15.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11810 + components: + - rot: 3.141592653589793 rad + pos: 15.5,16.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11811 + components: + - rot: 3.141592653589793 rad + pos: 15.5,17.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11814 + components: + - pos: 12.5,1.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11815 + components: + - pos: 12.5,2.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11818 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,4.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11820 + components: + - rot: 3.141592653589793 rad + pos: 14.5,5.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11823 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11824 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11826 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11828 + components: + - pos: 14.5,8.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11829 + components: + - pos: 14.5,9.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11830 + components: + - pos: 14.5,10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11831 + components: + - pos: 14.5,11.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11832 + components: + - pos: 14.5,12.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11833 + components: + - pos: 14.5,13.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11834 + components: + - pos: 14.5,14.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11835 + components: + - pos: 14.5,15.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11837 + components: + - pos: 14.5,17.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11840 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-24.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11841 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-24.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 11842 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-24.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11843 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-24.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11844 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-24.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11846 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-25.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 11847 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-25.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11848 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-25.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11849 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11850 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11851 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-24.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11854 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11855 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-30.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11856 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-30.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11860 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-29.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11861 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-29.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11864 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-29.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11866 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-35.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11867 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-35.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11868 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-35.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11869 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-35.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11870 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-35.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11871 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-34.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11872 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-34.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11873 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-34.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11877 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11878 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11879 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11880 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11882 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11883 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11884 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11885 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11886 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11888 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11889 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11890 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11892 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11893 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11894 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11895 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11896 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11897 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11898 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11899 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11900 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11901 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11902 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11903 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11904 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11905 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11906 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11907 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11910 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11912 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11913 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11914 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11915 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11916 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11917 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11918 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11919 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11920 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11921 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11922 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11923 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11924 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11925 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11926 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11927 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11929 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11930 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11931 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11932 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11933 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11935 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11936 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11937 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11938 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11939 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11941 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11942 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11943 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11944 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11945 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11946 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11948 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11949 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11951 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11952 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11958 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11959 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11960 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11961 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11962 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11964 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11965 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11966 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11967 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11968 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11969 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11970 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11972 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11973 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11974 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11976 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11978 + components: + - pos: 4.5,-46.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11979 + components: + - pos: 4.5,-47.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11983 + components: + - pos: 2.5,-44.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11984 + components: + - pos: 2.5,-45.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11985 + components: + - pos: 2.5,-46.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11986 + components: + - pos: 2.5,-47.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11991 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-43.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 11992 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-45.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 11993 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-43.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 11995 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-45.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 11998 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12006 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-42.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12007 + components: + - pos: -33.5,-41.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12015 + components: + - pos: -43.5,-42.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12016 + components: + - pos: -43.5,-41.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12017 + components: + - pos: -43.5,-38.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12018 + components: + - pos: -43.5,-37.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12020 + components: + - pos: -43.5,-33.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12021 + components: + - pos: -43.5,-32.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12022 + components: + - pos: -43.5,-30.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12023 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-31.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12024 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-35.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12025 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-39.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12032 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-34.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12033 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-34.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12034 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-29.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12035 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-29.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12036 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-40.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12037 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-40.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12038 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-44.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12039 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-43.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12040 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-42.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12041 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-41.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12042 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-40.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12045 + components: + - pos: -42.5,-38.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12046 + components: + - pos: -42.5,-37.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12047 + components: + - pos: -42.5,-36.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12048 + components: + - pos: -42.5,-35.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12049 + components: + - pos: -42.5,-34.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12050 + components: + - pos: -42.5,-33.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12051 + components: + - pos: -42.5,-32.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12055 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-11.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12056 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-10.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12057 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-9.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12060 + components: + - pos: 26.5,-9.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12063 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12064 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12065 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12072 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12073 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12074 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12075 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12076 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12077 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12078 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12079 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12080 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12081 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12082 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12083 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12085 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-11.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12086 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-10.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12087 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-9.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12088 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-8.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12089 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12095 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-3.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12096 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12097 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-5.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12098 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-11.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12099 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-10.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12100 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-9.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12101 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-8.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12102 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12103 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12104 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-5.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12105 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12108 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-9.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12109 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-8.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12110 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12111 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12112 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-5.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12113 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-4.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12114 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12115 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-2.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12116 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12117 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12118 + components: + - rot: 3.141592653589793 rad + pos: 43.5,0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12119 + components: + - rot: 3.141592653589793 rad + pos: 43.5,1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12149 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12150 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12151 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12152 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12153 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12160 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,2.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12161 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,2.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12162 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12163 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12181 + components: + - pos: 31.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12182 + components: + - pos: 31.5,3.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12183 + components: + - pos: 31.5,2.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12184 + components: + - pos: 31.5,1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12185 + components: + - pos: 31.5,0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12186 + components: + - pos: 31.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12187 + components: + - pos: 31.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12196 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,5.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12197 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,5.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12198 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,5.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12201 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12202 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12203 + components: + - pos: 30.5,2.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12204 + components: + - pos: 30.5,1.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12205 + components: + - pos: 30.5,0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12207 + components: + - pos: 30.5,-1.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12210 + components: + - pos: -53.5,-11.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12211 + components: + - pos: -53.5,-12.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12212 + components: + - pos: -53.5,-13.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12213 + components: + - pos: -53.5,-14.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12214 + components: + - pos: -53.5,-15.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12215 + components: + - pos: -50.5,-13.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12216 + components: + - pos: -50.5,-14.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12217 + components: + - pos: -50.5,-15.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12220 + components: + - pos: -46.5,-11.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12221 + components: + - pos: -46.5,-12.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12222 + components: + - pos: -46.5,-13.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12223 + components: + - pos: -46.5,-14.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12224 + components: + - pos: -46.5,-15.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12225 + components: + - pos: -45.5,-15.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12226 + components: + - pos: -45.5,-14.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12227 + components: + - pos: -45.5,-13.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12230 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12231 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12232 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12233 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12236 + components: + - pos: 5.5,-11.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12237 + components: + - pos: 5.5,-12.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12238 + components: + - pos: 5.5,-13.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12241 + components: + - pos: 5.5,-16.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12242 + components: + - pos: 5.5,-17.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12243 + components: + - pos: 5.5,-18.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12246 + components: + - pos: 4.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12247 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12248 + components: + - pos: 4.5,-22.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12250 + components: + - pos: 4.5,-24.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12252 + components: + - pos: 4.5,-26.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12253 + components: + - pos: 4.5,-27.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12254 + components: + - pos: 4.5,-28.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12255 + components: + - pos: 4.5,-29.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12256 + components: + - pos: 4.5,-30.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12257 + components: + - pos: 4.5,-31.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12258 + components: + - pos: 4.5,-32.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12261 + components: + - pos: 4.5,-35.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12262 + components: + - pos: 4.5,-36.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12263 + components: + - pos: 4.5,-37.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12264 + components: + - pos: 4.5,-38.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12265 + components: + - pos: 4.5,-39.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12267 + components: + - pos: 4.5,-41.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12268 + components: + - pos: 4.5,-42.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12270 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12272 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12273 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12274 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12275 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12276 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12277 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12278 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12279 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12280 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12281 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12282 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12283 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12284 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12286 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12287 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12289 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-20.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12290 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-19.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12291 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-18.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12292 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-17.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12294 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-15.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12295 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-14.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12296 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-13.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12297 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-44.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12298 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-43.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12299 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-42.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12300 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-41.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12301 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-40.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12302 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-39.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12303 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-38.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12304 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-37.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12307 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-34.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12308 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-33.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12309 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-32.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12310 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-31.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12311 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-30.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12312 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-29.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12313 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-28.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12314 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-27.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12315 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-26.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12316 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-25.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12318 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-23.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12320 + components: + - pos: 13.5,-11.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12321 + components: + - pos: 13.5,-12.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12322 + components: + - pos: 13.5,-13.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12323 + components: + - pos: 13.5,-14.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12324 + components: + - pos: 13.5,-15.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12325 + components: + - pos: 13.5,-16.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12326 + components: + - pos: 16.5,-16.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12327 + components: + - pos: 16.5,-15.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12328 + components: + - pos: 16.5,-14.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12329 + components: + - pos: 16.5,-13.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12332 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12333 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12334 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-14.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12337 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-16.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12338 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12339 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12340 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12342 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12343 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12344 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12347 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12348 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12349 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12350 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-24.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12351 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-24.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12352 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-24.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12353 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-24.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12354 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-24.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12355 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12360 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-23.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12361 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-23.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12362 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-23.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12365 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-22.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12366 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-22.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12367 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-23.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12370 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-35.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12371 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-35.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12372 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-35.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12373 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-35.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12374 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-34.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12375 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-34.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12376 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-34.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12377 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-34.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12378 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-35.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12379 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-35.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12384 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-36.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12385 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-36.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12387 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-36.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12388 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-36.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12389 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-36.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12391 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-40.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12392 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-40.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12394 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-40.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12395 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-40.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12396 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-40.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12398 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-40.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12400 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-39.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12401 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-38.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12403 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-37.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12404 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-37.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12405 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-37.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12409 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-37.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12410 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-38.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12411 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-39.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12412 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-40.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12422 + components: + - pos: 8.5,-39.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12423 + components: + - pos: 8.5,-37.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12424 + components: + - pos: 8.5,-36.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12425 + components: + - pos: 8.5,-35.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12426 + components: + - pos: 8.5,-34.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12427 + components: + - pos: 9.5,-35.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12428 + components: + - pos: 9.5,-34.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12433 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-46.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12434 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-47.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12436 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-49.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12441 + components: + - pos: -6.5,-52.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12442 + components: + - pos: -6.5,-53.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12444 + components: + - pos: -12.5,-44.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12445 + components: + - pos: -12.5,-45.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12446 + components: + - pos: -12.5,-46.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12447 + components: + - pos: -12.5,-47.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12449 + components: + - pos: -12.5,-49.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12450 + components: + - pos: -12.5,-50.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12451 + components: + - pos: -12.5,-51.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12455 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-52.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12456 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-52.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12461 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-53.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12462 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-53.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12463 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-53.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12464 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-53.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12468 + components: + - pos: -12.5,-53.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12469 + components: + - pos: -12.5,-54.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12471 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-55.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12472 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-55.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12473 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-55.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12474 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-55.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12476 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-55.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12481 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-55.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12482 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-56.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12483 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-57.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12484 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-58.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12485 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-59.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12486 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-60.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12487 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-61.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12492 + components: + - pos: -5.5,-60.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12493 + components: + - pos: -5.5,-59.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12494 + components: + - pos: -5.5,-58.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12495 + components: + - pos: -5.5,-57.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12496 + components: + - pos: -5.5,-56.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12497 + components: + - pos: -5.5,-62.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12498 + components: + - pos: -5.5,-63.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12499 + components: + - pos: -5.5,-64.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12500 + components: + - pos: -5.5,-65.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12501 + components: + - pos: -5.5,-66.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12502 + components: + - pos: -5.5,-67.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12503 + components: + - pos: -5.5,-68.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12508 + components: + - pos: -6.5,-69.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12509 + components: + - pos: -6.5,-68.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12510 + components: + - pos: -6.5,-67.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12511 + components: + - pos: -6.5,-66.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12512 + components: + - pos: -6.5,-65.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12513 + components: + - pos: -6.5,-64.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12514 + components: + - pos: -6.5,-63.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12515 + components: + - pos: -5.5,-70.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12516 + components: + - pos: -5.5,-71.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12517 + components: + - pos: -6.5,-71.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12518 + components: + - pos: -6.5,-72.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12519 + components: + - pos: -6.5,-73.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12521 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-74.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12522 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-74.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12524 + components: + - pos: -5.5,-72.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12525 + components: + - pos: -5.5,-73.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12526 + components: + - pos: -5.5,-74.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12529 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-54.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12530 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-54.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12531 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-54.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12533 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-54.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12534 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-53.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12536 + components: + - pos: -34.5,-44.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12537 + components: + - pos: -34.5,-45.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12538 + components: + - pos: -34.5,-46.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12539 + components: + - pos: -34.5,-47.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12540 + components: + - pos: -34.5,-48.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12541 + components: + - pos: -32.5,-46.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12542 + components: + - pos: -32.5,-47.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12543 + components: + - pos: -32.5,-48.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12552 + components: + - pos: -48.5,-46.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 12553 + components: + - pos: -48.5,-47.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12554 + components: + - pos: -48.5,-48.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12555 + components: + - pos: -49.5,-44.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12556 + components: + - pos: -49.5,-45.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12557 + components: + - pos: -49.5,-46.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12558 + components: + - pos: -49.5,-47.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12559 + components: + - pos: -49.5,-48.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 13067 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-21.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 13068 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-22.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 13069 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-23.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 13070 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-24.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 13106 + components: + - rot: 3.141592653589793 rad + pos: -33.5,9.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 13107 + components: + - rot: 3.141592653589793 rad + pos: -33.5,10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 13109 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,11.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound +- proto: GasPipeTJunction + entities: + - uid: 2165 + components: + - rot: 3.141592653589793 rad + pos: -36.5,8.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2222 + components: + - rot: 3.141592653589793 rad + pos: -35.5,9.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2223 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,11.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2419 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,21.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2420 + components: + - pos: -36.5,21.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 2444 + components: + - rot: 3.141592653589793 rad + pos: -32.5,14.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 3128 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 3129 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,8.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 3409 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-16.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 4645 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-16.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6254 + components: + - pos: -30.5,-7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6273 + components: + - pos: -29.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6274 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6284 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 6286 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,9.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6303 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6305 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6313 + components: + - pos: -25.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6316 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6320 + components: + - pos: -25.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6741 + components: + - rot: 3.141592653589793 rad + pos: -78.5,-50.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - enabled: True + type: AmbientSound + - uid: 11181 + components: + - pos: -33.5,-7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11186 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-8.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11196 + components: + - pos: -20.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11197 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11210 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11211 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11214 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11217 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,2.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11225 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11239 + components: + - rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11246 + components: + - pos: -1.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11255 + components: + - rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11259 + components: + - rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11267 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11270 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11289 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11320 + components: + - pos: -45.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11322 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11325 + components: + - pos: -50.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11333 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11345 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11369 + components: + - pos: -30.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11392 + components: + - pos: -53.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11396 + components: + - pos: -49.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11399 + components: + - pos: -46.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11407 + components: + - pos: -17.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11442 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11444 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-24.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11449 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11456 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-36.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11469 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11470 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-33.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11473 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-29.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11482 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-22.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11503 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11504 + components: + - pos: -22.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11505 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11506 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11517 + components: + - pos: -24.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11523 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11531 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-18.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 11537 + components: + - pos: -25.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11565 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11566 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11568 + components: + - pos: -35.5,-20.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11574 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11606 + components: + - pos: -2.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11607 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11627 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11636 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11651 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11654 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11670 + components: + - pos: -0.5,-6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11674 + components: + - pos: -1.5,-7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11692 + components: + - pos: 8.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11693 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11694 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11695 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11703 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11710 + components: + - pos: 13.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11719 + components: + - pos: 22.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11723 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11724 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11732 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11736 + components: + - pos: 16.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11745 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11757 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11762 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11768 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11769 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11787 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11808 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11816 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11821 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11822 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11836 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,16.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11845 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-25.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11865 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-35.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11876 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11881 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11887 + components: + - pos: -49.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11891 + components: + - pos: -16.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11908 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11909 + components: + - pos: -34.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11911 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11928 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11934 + components: + - pos: -48.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11940 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11947 + components: + - pos: -36.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11950 + components: + - pos: -32.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11953 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11963 + components: + - pos: -7.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11971 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11975 + components: + - pos: 4.5,-45.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11982 + components: + - pos: 2.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12009 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-40.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12010 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-39.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12011 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-35.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12012 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-34.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12013 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-31.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12019 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-36.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12043 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-39.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12066 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12067 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12069 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12090 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12107 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12206 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12239 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12240 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12249 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-23.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12251 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12260 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-35.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12266 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-40.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12271 + components: + - pos: 1.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12285 + components: + - pos: -12.5,-43.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12288 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12293 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-15.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12306 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-34.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12317 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-21.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12319 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-22.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12356 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-24.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12382 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-33.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12390 + components: + - pos: 13.5,-36.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12393 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-40.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12397 + components: + - pos: 12.5,-40.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12421 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-38.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12435 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-48.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12439 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-51.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12448 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-48.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12466 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-53.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12475 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-55.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12477 + components: + - pos: -5.5,-55.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12488 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-62.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12490 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-61.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12504 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-69.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12505 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-70.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12520 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-74.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics +- proto: GasPort + entities: + - uid: 1415 + components: + - pos: -5.5,-77.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 1416 + components: + - pos: -7.5,-77.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 1476 + components: + - pos: -3.5,-77.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 1477 + components: + - pos: -1.5,-77.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 1727 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-72.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 1807 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-73.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 1832 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-74.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 1833 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-75.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2445 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,16.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2446 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,15.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2447 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,14.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2448 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,16.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2449 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,15.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2450 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,14.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 3135 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6353 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-9.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6354 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-9.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6355 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-9.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6356 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-9.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6738 + components: + - rot: 3.141592653589793 rad + pos: -80.5,-40.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics +- proto: GasPressurePump + entities: + - uid: 1460 + components: + - pos: -3.5,-78.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 1461 + components: + - pos: -7.5,-78.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 1462 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-78.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 1463 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-78.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2208 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,11.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2209 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,15.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2210 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,13.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2211 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,19.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2214 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,9.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2215 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,17.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2425 + components: + - rot: 3.141592653589793 rad + pos: -34.5,22.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 2435 + components: + - pos: -33.5,22.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 11527 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-17.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 11528 + components: + - pos: -28.5,-17.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics +- proto: GasRecyclerMachineCircuitboard + entities: + - uid: 6373 + components: + - pos: -32.302933,21.88483 + parent: 6 + type: Transform +- proto: GasThermoMachineFreezer + entities: + - uid: 3603 + components: + - pos: -30.5,-14.5 + parent: 6 + type: Transform + - uid: 4853 + components: + - pos: -30.5,10.5 + parent: 6 + type: Transform + - uid: 5447 + components: + - pos: -57.5,-41.5 + parent: 6 + type: Transform +- proto: GasThermoMachineHeater + entities: + - uid: 4857 + components: + - pos: -30.5,9.5 + parent: 6 + type: Transform +- proto: GasValve + entities: + - uid: 2181 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,8.5 + parent: 6 + type: Transform + - open: False + type: GasValve + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 2423 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,21.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - bodyType: Static + type: Physics + - uid: 2424 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,21.5 + parent: 6 + type: Transform + - open: False + type: GasValve + - bodyType: Static + type: Physics + - uid: 2441 + components: + - pos: -32.5,17.5 + parent: 6 + type: Transform + - enabled: True + type: AmbientSound + - bodyType: Static + type: Physics +- proto: GasVentPump + entities: + - uid: 6260 + components: + - pos: -28.5,-6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6287 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6288 + components: + - pos: -31.5,10.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6300 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-2.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6319 + components: + - pos: -26.5,1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6322 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-2.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6745 + components: + - pos: -76.5,-45.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 11185 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11187 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-8.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11199 + components: + - pos: -19.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11219 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11227 + components: + - pos: -14.5,6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11240 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11241 + components: + - pos: -5.5,6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11277 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11279 + components: + - pos: 0.5,0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11291 + components: + - pos: 6.5,6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11355 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-12.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11406 + components: + - pos: -16.5,-11.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11416 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-16.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11509 + components: + - pos: -23.5,-20.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11512 + components: + - pos: -21.5,-17.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11558 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-29.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11577 + components: + - pos: -37.5,-18.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11586 + components: + - pos: -34.5,-16.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11592 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11671 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11681 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11686 + components: + - pos: -3.5,-11.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11688 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11697 + components: + - pos: 9.5,-11.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11704 + components: + - pos: 12.5,-7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11748 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-7.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11783 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11786 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11812 + components: + - pos: 15.5,18.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11813 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,14.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11853 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-25.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11859 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-31.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11875 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-34.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11955 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11956 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-33.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11981 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-48.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12002 + components: + - rot: 3.141592653589793 rad + pos: -56.5,-46.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 12004 + components: + - pos: -35.5,-44.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12044 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-39.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12053 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-31.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12058 + components: + - pos: 28.5,-8.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12061 + components: + - pos: 20.5,-11.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12071 + components: + - pos: 37.5,-11.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12168 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12170 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,2.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12199 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,5.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12208 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-2.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12219 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-16.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12229 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-16.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12305 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-36.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12330 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-17.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12346 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-17.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12358 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12364 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-21.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12368 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-22.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12381 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-35.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12408 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-36.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12413 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-41.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12419 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-37.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12430 + components: + - pos: 9.5,-33.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12431 + components: + - pos: 0.5,-44.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12440 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-51.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12453 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-48.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12460 + components: + - pos: -15.5,-52.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12467 + components: + - pos: -10.5,-52.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12480 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-55.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12489 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-62.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12506 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-70.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12523 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-74.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12528 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-75.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12544 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-49.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12547 + components: + - pos: -47.5,-11.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12548 + components: + - pos: -28.5,-11.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12550 + components: + - pos: -15.5,-44.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12560 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-49.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - bodyType: Static + type: Physics +- proto: GasVentScrubber + entities: + - uid: 6262 + components: + - pos: -26.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6321 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-1.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 6379 + components: + - pos: -32.5,-2.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11200 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11228 + components: + - pos: -15.5,6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11243 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,2.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11245 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11258 + components: + - pos: -3.5,6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11260 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11266 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11294 + components: + - pos: 5.5,6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11356 + components: + - rot: 3.141592653589793 rad + pos: -63.5,-12.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11382 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-11.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11508 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-21.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11513 + components: + - pos: -23.5,-17.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11530 + components: + - pos: -29.5,-17.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 11549 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-30.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11573 + components: + - pos: -38.5,-18.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11585 + components: + - pos: -33.5,-16.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11593 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-21.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11676 + components: + - pos: -2.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11682 + components: + - pos: 3.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11687 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-11.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11689 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11696 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-11.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11766 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-4.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11770 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11774 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11792 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11825 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11827 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11838 + components: + - pos: 14.5,18.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11839 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,16.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11852 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-24.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11863 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-30.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11874 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-35.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11954 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11957 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-36.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 11990 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-49.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12001 + components: + - pos: -56.5,-42.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 12005 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-44.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12008 + components: + - pos: -33.5,-40.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12026 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-39.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12027 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-35.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12028 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-31.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12029 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-29.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12030 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-34.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12031 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-40.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12054 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-36.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12059 + components: + - pos: 26.5,-8.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12062 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-11.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12070 + components: + - rot: 3.141592653589793 rad + pos: 36.5,-11.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12200 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12209 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12218 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-16.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12228 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-16.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12234 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12235 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12331 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-17.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12336 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-15.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12345 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12357 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-21.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12363 + components: + - pos: 5.5,-24.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12369 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-23.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12380 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-34.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12383 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-33.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12407 + components: + - pos: 18.5,-36.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12414 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-41.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12420 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-38.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12429 + components: + - pos: 8.5,-33.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12432 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-44.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12454 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-48.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12458 + components: + - pos: -15.5,-51.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12465 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-52.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12478 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-55.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12491 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-61.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12507 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-69.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12527 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-75.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12535 + components: + - pos: -7.5,-52.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12545 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-49.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12546 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-11.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12549 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-11.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12551 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-44.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 12561 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-49.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 13071 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-25.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 13074 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-15.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics + - uid: 13110 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,11.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics +- proto: GasVolumePump + entities: + - uid: 3408 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,8.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - bodyType: Static + type: Physics +- proto: Gauze + entities: + - uid: 6192 + components: + - pos: -33.467705,-14.4353285 + parent: 6 + type: Transform +- proto: GeigerCounter + entities: + - uid: 14089 + components: + - pos: -32.566555,0.55387294 + parent: 6 + type: Transform +- proto: GeneratorUranium + entities: + - uid: 4590 + components: + - pos: -30.5,4.5 + parent: 6 + type: Transform + - uid: 4591 + components: + - pos: -30.5,3.5 + parent: 6 + type: Transform +- proto: Girder + entities: + - uid: 1841 + components: + - pos: -30.5,-60.5 + parent: 6 + type: Transform + - uid: 3190 + components: + - pos: -59.5,-37.5 + parent: 6 + type: Transform + - uid: 3191 + components: + - pos: -62.5,-30.5 + parent: 6 + type: Transform + - uid: 3799 + components: + - pos: -40.5,-56.5 + parent: 6 + type: Transform + - uid: 4766 + components: + - pos: -81.5,-41.5 + parent: 6 + type: Transform + - uid: 4768 + components: + - pos: -81.5,-40.5 + parent: 6 + type: Transform + - uid: 5844 + components: + - pos: -36.5,-25.5 + parent: 6 + type: Transform + - uid: 5858 + components: + - pos: -20.5,-55.5 + parent: 6 + type: Transform + - uid: 5927 + components: + - pos: -22.5,-53.5 + parent: 6 + type: Transform + - uid: 5973 + components: + - pos: -22.5,-55.5 + parent: 6 + type: Transform + - uid: 7725 + components: + - pos: -31.5,-36.5 + parent: 6 + type: Transform + - uid: 7727 + components: + - pos: -35.5,-36.5 + parent: 6 + type: Transform +- proto: GlowstickBase + entities: + - uid: 13467 + components: + - pos: -11.508634,-62.539562 + parent: 6 + type: Transform +- proto: GlowstickPurple + entities: + - uid: 3803 + components: + - rot: -1.5707963267948966 rad + pos: -41.48739,-56.518326 + parent: 6 + type: Transform +- proto: GravityGenerator + entities: + - uid: 2015 + components: + - pos: -27.5,3.5 + parent: 6 + type: Transform + - charge: 100 + type: GravityGenerator + - radius: 175.75 + type: PointLight +- proto: Grille + entities: + - uid: 20 + components: + - pos: 3.5,2.5 + parent: 6 + type: Transform + - uid: 22 + components: + - pos: 4.5,-2.5 + parent: 6 + type: Transform + - uid: 29 + components: + - pos: 2.5,2.5 + parent: 6 + type: Transform + - uid: 38 + components: + - pos: 4.5,-1.5 + parent: 6 + type: Transform + - uid: 39 + components: + - pos: 4.5,0.5 + parent: 6 + type: Transform + - uid: 40 + components: + - pos: 4.5,-0.5 + parent: 6 + type: Transform + - uid: 66 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 6 + type: Transform + - uid: 71 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 6 + type: Transform + - uid: 72 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-8.5 + parent: 6 + type: Transform + - uid: 150 + components: + - pos: -10.5,9.5 + parent: 6 + type: Transform + - uid: 151 + components: + - pos: -9.5,9.5 + parent: 6 + type: Transform + - uid: 152 + components: + - pos: 1.5,9.5 + parent: 6 + type: Transform + - uid: 153 + components: + - pos: 0.5,9.5 + parent: 6 + type: Transform + - uid: 156 + components: + - pos: -8.5,11.5 + parent: 6 + type: Transform + - uid: 157 + components: + - pos: -7.5,11.5 + parent: 6 + type: Transform + - uid: 158 + components: + - pos: -6.5,11.5 + parent: 6 + type: Transform + - uid: 159 + components: + - pos: -5.5,11.5 + parent: 6 + type: Transform + - uid: 160 + components: + - pos: -0.5,11.5 + parent: 6 + type: Transform + - uid: 161 + components: + - pos: -1.5,11.5 + parent: 6 + type: Transform + - uid: 162 + components: + - pos: -2.5,11.5 + parent: 6 + type: Transform + - uid: 163 + components: + - pos: -3.5,11.5 + parent: 6 + type: Transform + - uid: 165 + components: + - pos: -9.5,10.5 + parent: 6 + type: Transform + - uid: 166 + components: + - pos: 0.5,10.5 + parent: 6 + type: Transform + - uid: 182 + components: + - pos: 1.5,-0.5 + parent: 6 + type: Transform + - uid: 227 + components: + - pos: -17.5,9.5 + parent: 6 + type: Transform + - uid: 228 + components: + - pos: -16.5,9.5 + parent: 6 + type: Transform + - uid: 229 + components: + - pos: -15.5,9.5 + parent: 6 + type: Transform + - uid: 230 + components: + - pos: -14.5,9.5 + parent: 6 + type: Transform + - uid: 231 + components: + - pos: -13.5,9.5 + parent: 6 + type: Transform + - uid: 232 + components: + - pos: 4.5,9.5 + parent: 6 + type: Transform + - uid: 233 + components: + - pos: 5.5,9.5 + parent: 6 + type: Transform + - uid: 234 + components: + - pos: 6.5,9.5 + parent: 6 + type: Transform + - uid: 281 + components: + - pos: 10.5,4.5 + parent: 6 + type: Transform + - uid: 282 + components: + - pos: 10.5,3.5 + parent: 6 + type: Transform + - uid: 283 + components: + - pos: 10.5,-1.5 + parent: 6 + type: Transform + - uid: 284 + components: + - pos: 10.5,-0.5 + parent: 6 + type: Transform + - uid: 308 + components: + - pos: 15.5,1.5 + parent: 6 + type: Transform + - uid: 309 + components: + - pos: 15.5,0.5 + parent: 6 + type: Transform + - uid: 320 + components: + - pos: 13.5,9.5 + parent: 6 + type: Transform + - uid: 321 + components: + - pos: 13.5,8.5 + parent: 6 + type: Transform + - uid: 332 + components: + - pos: 20.5,13.5 + parent: 6 + type: Transform + - uid: 333 + components: + - pos: 19.5,13.5 + parent: 6 + type: Transform + - uid: 408 + components: + - pos: 44.5,-11.5 + parent: 6 + type: Transform + - uid: 409 + components: + - pos: 44.5,-12.5 + parent: 6 + type: Transform + - uid: 414 + components: + - pos: 23.5,-13.5 + parent: 6 + type: Transform + - uid: 415 + components: + - pos: 24.5,-13.5 + parent: 6 + type: Transform + - uid: 416 + components: + - pos: 25.5,-13.5 + parent: 6 + type: Transform + - uid: 417 + components: + - pos: 27.5,-13.5 + parent: 6 + type: Transform + - uid: 418 + components: + - pos: 28.5,-13.5 + parent: 6 + type: Transform + - uid: 420 + components: + - pos: 31.5,-13.5 + parent: 6 + type: Transform + - uid: 421 + components: + - pos: 32.5,-13.5 + parent: 6 + type: Transform + - uid: 422 + components: + - pos: 33.5,-13.5 + parent: 6 + type: Transform + - uid: 423 + components: + - pos: 35.5,-13.5 + parent: 6 + type: Transform + - uid: 424 + components: + - pos: 39.5,-13.5 + parent: 6 + type: Transform + - uid: 425 + components: + - pos: 36.5,-13.5 + parent: 6 + type: Transform + - uid: 426 + components: + - pos: 37.5,-13.5 + parent: 6 + type: Transform + - uid: 440 + components: + - pos: 14.5,-13.5 + parent: 6 + type: Transform + - uid: 441 + components: + - pos: 15.5,-13.5 + parent: 6 + type: Transform + - uid: 472 + components: + - pos: 28.5,-9.5 + parent: 6 + type: Transform + - uid: 474 + components: + - pos: 26.5,-9.5 + parent: 6 + type: Transform + - uid: 522 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,10.5 + parent: 6 + type: Transform + - uid: 535 + components: + - pos: 32.5,-2.5 + parent: 6 + type: Transform + - uid: 537 + components: + - pos: 32.5,-1.5 + parent: 6 + type: Transform + - uid: 549 + components: + - pos: 41.5,-9.5 + parent: 6 + type: Transform + - uid: 553 + components: + - pos: 32.5,-0.5 + parent: 6 + type: Transform + - uid: 554 + components: + - pos: 32.5,0.5 + parent: 6 + type: Transform + - uid: 556 + components: + - pos: 42.5,7.5 + parent: 6 + type: Transform + - uid: 565 + components: + - pos: 45.5,-0.5 + parent: 6 + type: Transform + - uid: 567 + components: + - pos: 45.5,-1.5 + parent: 6 + type: Transform + - uid: 568 + components: + - pos: 45.5,-2.5 + parent: 6 + type: Transform + - uid: 569 + components: + - pos: 44.5,1.5 + parent: 6 + type: Transform + - uid: 570 + components: + - pos: 44.5,4.5 + parent: 6 + type: Transform + - uid: 571 + components: + - pos: 44.5,-4.5 + parent: 6 + type: Transform + - uid: 572 + components: + - pos: 44.5,-7.5 + parent: 6 + type: Transform + - uid: 574 + components: + - pos: 46.5,-3.5 + parent: 6 + type: Transform + - uid: 575 + components: + - pos: 47.5,-3.5 + parent: 6 + type: Transform + - uid: 576 + components: + - pos: 45.5,-8.5 + parent: 6 + type: Transform + - uid: 577 + components: + - pos: 46.5,-8.5 + parent: 6 + type: Transform + - uid: 578 + components: + - pos: 47.5,-8.5 + parent: 6 + type: Transform + - uid: 580 + components: + - pos: 46.5,0.5 + parent: 6 + type: Transform + - uid: 581 + components: + - pos: 47.5,0.5 + parent: 6 + type: Transform + - uid: 582 + components: + - pos: 45.5,5.5 + parent: 6 + type: Transform + - uid: 583 + components: + - pos: 46.5,5.5 + parent: 6 + type: Transform + - uid: 584 + components: + - pos: 47.5,5.5 + parent: 6 + type: Transform + - uid: 636 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,10.5 + parent: 6 + type: Transform + - uid: 637 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,10.5 + parent: 6 + type: Transform + - uid: 639 + components: + - pos: 42.5,8.5 + parent: 6 + type: Transform + - uid: 640 + components: + - pos: 32.5,4.5 + parent: 6 + type: Transform + - uid: 641 + components: + - pos: 32.5,7.5 + parent: 6 + type: Transform + - uid: 643 + components: + - rot: 3.141592653589793 rad + pos: 29.5,10.5 + parent: 6 + type: Transform + - uid: 661 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,10.5 + parent: 6 + type: Transform + - uid: 662 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,9.5 + parent: 6 + type: Transform + - uid: 663 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,8.5 + parent: 6 + type: Transform + - uid: 673 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 6 + type: Transform + - uid: 674 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 6 + type: Transform + - uid: 675 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-9.5 + parent: 6 + type: Transform + - uid: 678 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 6 + type: Transform + - uid: 679 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,10.5 + parent: 6 + type: Transform + - uid: 680 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,9.5 + parent: 6 + type: Transform + - uid: 681 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,8.5 + parent: 6 + type: Transform + - uid: 692 + components: + - pos: 42.5,-2.5 + parent: 6 + type: Transform + - uid: 693 + components: + - pos: 42.5,-1.5 + parent: 6 + type: Transform + - uid: 694 + components: + - pos: 42.5,-0.5 + parent: 6 + type: Transform + - uid: 695 + components: + - pos: 42.5,0.5 + parent: 6 + type: Transform + - uid: 696 + components: + - pos: 42.5,4.5 + parent: 6 + type: Transform + - uid: 697 + components: + - pos: 42.5,9.5 + parent: 6 + type: Transform + - uid: 754 + components: + - pos: 11.5,5.5 + parent: 6 + type: Transform + - uid: 755 + components: + - pos: 12.5,5.5 + parent: 6 + type: Transform + - uid: 763 + components: + - pos: 9.5,18.5 + parent: 6 + type: Transform + - uid: 772 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 6 + type: Transform + - uid: 773 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 6 + type: Transform + - uid: 774 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 6 + type: Transform + - uid: 775 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 6 + type: Transform + - uid: 776 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 6 + type: Transform + - uid: 777 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 6 + type: Transform + - uid: 817 + components: + - pos: -16.5,-26.5 + parent: 6 + type: Transform + - uid: 825 + components: + - pos: 20.5,18.5 + parent: 6 + type: Transform + - uid: 833 + components: + - pos: 12.5,17.5 + parent: 6 + type: Transform + - uid: 834 + components: + - pos: 11.5,17.5 + parent: 6 + type: Transform + - uid: 835 + components: + - pos: 10.5,17.5 + parent: 6 + type: Transform + - uid: 837 + components: + - pos: 9.5,19.5 + parent: 6 + type: Transform + - uid: 838 + components: + - pos: 9.5,20.5 + parent: 6 + type: Transform + - uid: 839 + components: + - pos: 17.5,17.5 + parent: 6 + type: Transform + - uid: 841 + components: + - pos: 18.5,17.5 + parent: 6 + type: Transform + - uid: 842 + components: + - pos: 19.5,17.5 + parent: 6 + type: Transform + - uid: 844 + components: + - pos: 20.5,19.5 + parent: 6 + type: Transform + - uid: 845 + components: + - pos: 20.5,20.5 + parent: 6 + type: Transform + - uid: 862 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 6 + type: Transform + - uid: 923 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-13.5 + parent: 6 + type: Transform + - uid: 991 + components: + - pos: 0.5,-31.5 + parent: 6 + type: Transform + - uid: 992 + components: + - pos: 0.5,-32.5 + parent: 6 + type: Transform + - uid: 993 + components: + - pos: 0.5,-33.5 + parent: 6 + type: Transform + - uid: 994 + components: + - pos: 0.5,-38.5 + parent: 6 + type: Transform + - uid: 995 + components: + - pos: 0.5,-37.5 + parent: 6 + type: Transform + - uid: 996 + components: + - pos: 0.5,-36.5 + parent: 6 + type: Transform + - uid: 997 + components: + - pos: -10.5,-38.5 + parent: 6 + type: Transform + - uid: 998 + components: + - pos: -10.5,-37.5 + parent: 6 + type: Transform + - uid: 999 + components: + - pos: -10.5,-36.5 + parent: 6 + type: Transform + - uid: 1000 + components: + - pos: -10.5,-33.5 + parent: 6 + type: Transform + - uid: 1001 + components: + - pos: -10.5,-32.5 + parent: 6 + type: Transform + - uid: 1002 + components: + - pos: -10.5,-31.5 + parent: 6 + type: Transform + - uid: 1003 + components: + - pos: -1.5,-40.5 + parent: 6 + type: Transform + - uid: 1004 + components: + - pos: -2.5,-40.5 + parent: 6 + type: Transform + - uid: 1005 + components: + - pos: -3.5,-40.5 + parent: 6 + type: Transform + - uid: 1006 + components: + - pos: -6.5,-40.5 + parent: 6 + type: Transform + - uid: 1007 + components: + - pos: -7.5,-40.5 + parent: 6 + type: Transform + - uid: 1008 + components: + - pos: -8.5,-40.5 + parent: 6 + type: Transform + - uid: 1009 + components: + - pos: -8.5,-29.5 + parent: 6 + type: Transform + - uid: 1010 + components: + - pos: -7.5,-29.5 + parent: 6 + type: Transform + - uid: 1011 + components: + - pos: -6.5,-29.5 + parent: 6 + type: Transform + - uid: 1012 + components: + - pos: -1.5,-29.5 + parent: 6 + type: Transform + - uid: 1013 + components: + - pos: -2.5,-29.5 + parent: 6 + type: Transform + - uid: 1014 + components: + - pos: -3.5,-29.5 + parent: 6 + type: Transform + - uid: 1025 + components: + - pos: -12.5,-31.5 + parent: 6 + type: Transform + - uid: 1026 + components: + - pos: -12.5,-32.5 + parent: 6 + type: Transform + - uid: 1027 + components: + - pos: -12.5,-33.5 + parent: 6 + type: Transform + - uid: 1028 + components: + - pos: -12.5,-36.5 + parent: 6 + type: Transform + - uid: 1029 + components: + - pos: -12.5,-37.5 + parent: 6 + type: Transform + - uid: 1030 + components: + - pos: -12.5,-38.5 + parent: 6 + type: Transform + - uid: 1100 + components: + - pos: -8.5,-42.5 + parent: 6 + type: Transform + - uid: 1101 + components: + - pos: -7.5,-42.5 + parent: 6 + type: Transform + - uid: 1102 + components: + - pos: -6.5,-42.5 + parent: 6 + type: Transform + - uid: 1103 + components: + - pos: -3.5,-42.5 + parent: 6 + type: Transform + - uid: 1104 + components: + - pos: -2.5,-42.5 + parent: 6 + type: Transform + - uid: 1105 + components: + - pos: -1.5,-42.5 + parent: 6 + type: Transform + - uid: 1128 + components: + - pos: 9.5,-34.5 + parent: 6 + type: Transform + - uid: 1136 + components: + - pos: 8.5,-34.5 + parent: 6 + type: Transform + - uid: 1143 + components: + - pos: 7.5,-38.5 + parent: 6 + type: Transform + - uid: 1144 + components: + - pos: 7.5,-37.5 + parent: 6 + type: Transform + - uid: 1148 + components: + - pos: 10.5,-37.5 + parent: 6 + type: Transform + - uid: 1157 + components: + - pos: 22.5,-33.5 + parent: 6 + type: Transform + - uid: 1158 + components: + - pos: 21.5,-33.5 + parent: 6 + type: Transform + - uid: 1159 + components: + - pos: 21.5,-39.5 + parent: 6 + type: Transform + - uid: 1160 + components: + - pos: 22.5,-39.5 + parent: 6 + type: Transform + - uid: 1168 + components: + - pos: 22.5,-36.5 + parent: 6 + type: Transform + - uid: 1169 + components: + - pos: 21.5,-36.5 + parent: 6 + type: Transform + - uid: 1192 + components: + - pos: 15.5,-48.5 + parent: 6 + type: Transform + - uid: 1193 + components: + - pos: 14.5,-48.5 + parent: 6 + type: Transform + - uid: 1194 + components: + - pos: 16.5,-48.5 + parent: 6 + type: Transform + - uid: 1195 + components: + - pos: 17.5,-48.5 + parent: 6 + type: Transform + - uid: 1198 + components: + - pos: 6.5,-55.5 + parent: 6 + type: Transform + - uid: 1199 + components: + - pos: 7.5,-51.5 + parent: 6 + type: Transform + - uid: 1200 + components: + - pos: 7.5,-50.5 + parent: 6 + type: Transform + - uid: 1220 + components: + - pos: -10.5,-46.5 + parent: 6 + type: Transform + - uid: 1221 + components: + - pos: -9.5,-46.5 + parent: 6 + type: Transform + - uid: 1235 + components: + - pos: -27.5,0.5 + parent: 6 + type: Transform + - uid: 1246 + components: + - pos: 7.5,-53.5 + parent: 6 + type: Transform + - uid: 1247 + components: + - pos: 7.5,-54.5 + parent: 6 + type: Transform + - uid: 1249 + components: + - pos: 5.5,-55.5 + parent: 6 + type: Transform + - uid: 1288 + components: + - pos: -8.5,-62.5 + parent: 6 + type: Transform + - uid: 1289 + components: + - pos: -8.5,-61.5 + parent: 6 + type: Transform + - uid: 1301 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-49.5 + parent: 6 + type: Transform + - uid: 1304 + components: + - pos: -9.5,-49.5 + parent: 6 + type: Transform + - uid: 1305 + components: + - pos: -10.5,-49.5 + parent: 6 + type: Transform + - uid: 1354 + components: + - pos: -8.5,-63.5 + parent: 6 + type: Transform + - uid: 1358 + components: + - pos: -3.5,-61.5 + parent: 6 + type: Transform + - uid: 1359 + components: + - pos: -3.5,-62.5 + parent: 6 + type: Transform + - uid: 1360 + components: + - pos: -3.5,-63.5 + parent: 6 + type: Transform + - uid: 1369 + components: + - pos: -8.5,-70.5 + parent: 6 + type: Transform + - uid: 1370 + components: + - pos: -8.5,-69.5 + parent: 6 + type: Transform + - uid: 1378 + components: + - pos: -8.5,-75.5 + parent: 6 + type: Transform + - uid: 1392 + components: + - pos: -2.5,-68.5 + parent: 6 + type: Transform + - uid: 1393 + components: + - pos: -1.5,-68.5 + parent: 6 + type: Transform + - uid: 1400 + components: + - pos: 1.5,-68.5 + parent: 6 + type: Transform + - uid: 1401 + components: + - pos: 0.5,-68.5 + parent: 6 + type: Transform + - uid: 1402 + components: + - pos: 0.5,-71.5 + parent: 6 + type: Transform + - uid: 1403 + components: + - pos: 1.5,-71.5 + parent: 6 + type: Transform + - uid: 1404 + components: + - pos: -7.5,-82.5 + parent: 6 + type: Transform + - uid: 1405 + components: + - pos: -5.5,-82.5 + parent: 6 + type: Transform + - uid: 1406 + components: + - pos: -7.5,-79.5 + parent: 6 + type: Transform + - uid: 1407 + components: + - pos: -6.5,-79.5 + parent: 6 + type: Transform + - uid: 1408 + components: + - pos: -5.5,-79.5 + parent: 6 + type: Transform + - uid: 1409 + components: + - pos: -3.5,-82.5 + parent: 6 + type: Transform + - uid: 1410 + components: + - pos: -1.5,-82.5 + parent: 6 + type: Transform + - uid: 1411 + components: + - pos: -3.5,-79.5 + parent: 6 + type: Transform + - uid: 1412 + components: + - pos: -2.5,-79.5 + parent: 6 + type: Transform + - uid: 1413 + components: + - pos: -1.5,-79.5 + parent: 6 + type: Transform + - uid: 1441 + components: + - pos: -23.5,-0.5 + parent: 6 + type: Transform + - uid: 1444 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-75.5 + parent: 6 + type: Transform + - uid: 1445 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-74.5 + parent: 6 + type: Transform + - uid: 1447 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-77.5 + parent: 6 + type: Transform + - uid: 1464 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-80.5 + parent: 6 + type: Transform + - uid: 1465 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-81.5 + parent: 6 + type: Transform + - uid: 1470 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-77.5 + parent: 6 + type: Transform + - uid: 1471 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-77.5 + parent: 6 + type: Transform + - uid: 1492 + components: + - pos: -20.5,-14.5 + parent: 6 + type: Transform + - uid: 1496 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-16.5 + parent: 6 + type: Transform + - uid: 1497 + components: + - pos: -16.5,-25.5 + parent: 6 + type: Transform + - uid: 1598 + components: + - pos: 9.5,13.5 + parent: 6 + type: Transform + - uid: 1610 + components: + - pos: 10.5,13.5 + parent: 6 + type: Transform + - uid: 1614 + components: + - pos: -22.5,-13.5 + parent: 6 + type: Transform + - uid: 1615 + components: + - pos: -24.5,-13.5 + parent: 6 + type: Transform + - uid: 1618 + components: + - pos: -28.5,-13.5 + parent: 6 + type: Transform + - uid: 1619 + components: + - pos: -30.5,-13.5 + parent: 6 + type: Transform + - uid: 1676 + components: + - pos: -16.5,-38.5 + parent: 6 + type: Transform + - uid: 1677 + components: + - pos: -16.5,-39.5 + parent: 6 + type: Transform + - uid: 1678 + components: + - pos: -16.5,-40.5 + parent: 6 + type: Transform + - uid: 1680 + components: + - pos: 8.5,13.5 + parent: 6 + type: Transform + - uid: 1690 + components: + - pos: 21.5,13.5 + parent: 6 + type: Transform + - uid: 1820 + components: + - pos: -36.5,-60.5 + parent: 6 + type: Transform + - uid: 1821 + components: + - pos: -37.5,-60.5 + parent: 6 + type: Transform + - uid: 1840 + components: + - pos: -38.5,-60.5 + parent: 6 + type: Transform + - uid: 1866 + components: + - pos: 16.5,16.5 + parent: 6 + type: Transform + - uid: 1921 + components: + - pos: -42.5,-4.5 + parent: 6 + type: Transform + - uid: 1960 + components: + - pos: 16.5,15.5 + parent: 6 + type: Transform + - uid: 1961 + components: + - pos: 16.5,-6.5 + parent: 6 + type: Transform + - uid: 1986 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-27.5 + parent: 6 + type: Transform + - uid: 1987 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-27.5 + parent: 6 + type: Transform + - uid: 1988 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-27.5 + parent: 6 + type: Transform + - uid: 1989 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-27.5 + parent: 6 + type: Transform + - uid: 1990 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-27.5 + parent: 6 + type: Transform + - uid: 1991 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-27.5 + parent: 6 + type: Transform + - uid: 2061 + components: + - pos: -74.5,-49.5 + parent: 6 + type: Transform + - uid: 2119 + components: + - pos: -33.5,2.5 + parent: 6 + type: Transform + - uid: 2120 + components: + - pos: -33.5,3.5 + parent: 6 + type: Transform + - uid: 2121 + components: + - pos: -33.5,4.5 + parent: 6 + type: Transform + - uid: 2132 + components: + - pos: -38.5,-0.5 + parent: 6 + type: Transform + - uid: 2133 + components: + - pos: -37.5,-0.5 + parent: 6 + type: Transform + - uid: 2134 + components: + - pos: -35.5,-0.5 + parent: 6 + type: Transform + - uid: 2135 + components: + - pos: -34.5,-0.5 + parent: 6 + type: Transform + - uid: 2231 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,8.5 + parent: 6 + type: Transform + - uid: 2232 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,9.5 + parent: 6 + type: Transform + - uid: 2233 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,10.5 + parent: 6 + type: Transform + - uid: 2234 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,11.5 + parent: 6 + type: Transform + - uid: 2235 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,12.5 + parent: 6 + type: Transform + - uid: 2236 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,13.5 + parent: 6 + type: Transform + - uid: 2237 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,14.5 + parent: 6 + type: Transform + - uid: 2238 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,15.5 + parent: 6 + type: Transform + - uid: 2239 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,16.5 + parent: 6 + type: Transform + - uid: 2240 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,17.5 + parent: 6 + type: Transform + - uid: 2241 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,18.5 + parent: 6 + type: Transform + - uid: 2242 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,19.5 + parent: 6 + type: Transform + - uid: 2243 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,20.5 + parent: 6 + type: Transform + - uid: 2358 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,19.5 + parent: 6 + type: Transform + - uid: 2359 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,17.5 + parent: 6 + type: Transform + - uid: 2360 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,15.5 + parent: 6 + type: Transform + - uid: 2361 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,13.5 + parent: 6 + type: Transform + - uid: 2362 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,11.5 + parent: 6 + type: Transform + - uid: 2363 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,9.5 + parent: 6 + type: Transform + - uid: 2370 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,21.5 + parent: 6 + type: Transform + - uid: 2371 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,22.5 + parent: 6 + type: Transform + - uid: 2373 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,23.5 + parent: 6 + type: Transform + - uid: 2374 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,23.5 + parent: 6 + type: Transform + - uid: 2375 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,23.5 + parent: 6 + type: Transform + - uid: 2376 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,23.5 + parent: 6 + type: Transform + - uid: 2377 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,23.5 + parent: 6 + type: Transform + - uid: 2378 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,23.5 + parent: 6 + type: Transform + - uid: 2389 + components: + - pos: -27.5,18.5 + parent: 6 + type: Transform + - uid: 2390 + components: + - pos: -27.5,17.5 + parent: 6 + type: Transform + - uid: 2391 + components: + - pos: -27.5,16.5 + parent: 6 + type: Transform + - uid: 2397 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,22.5 + parent: 6 + type: Transform + - uid: 2403 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,25.5 + parent: 6 + type: Transform + - uid: 2404 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,25.5 + parent: 6 + type: Transform + - uid: 2405 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,25.5 + parent: 6 + type: Transform + - uid: 2406 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,27.5 + parent: 6 + type: Transform + - uid: 2407 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,27.5 + parent: 6 + type: Transform + - uid: 2408 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,26.5 + parent: 6 + type: Transform + - uid: 2409 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,26.5 + parent: 6 + type: Transform + - uid: 2500 + components: + - pos: -42.5,-5.5 + parent: 6 + type: Transform + - uid: 2503 + components: + - pos: -42.5,-3.5 + parent: 6 + type: Transform + - uid: 2520 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-40.5 + parent: 6 + type: Transform + - uid: 2521 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-40.5 + parent: 6 + type: Transform + - uid: 2522 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-40.5 + parent: 6 + type: Transform + - uid: 2523 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-48.5 + parent: 6 + type: Transform + - uid: 2524 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-48.5 + parent: 6 + type: Transform + - uid: 2525 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-48.5 + parent: 6 + type: Transform + - uid: 2539 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-13.5 + parent: 6 + type: Transform + - uid: 2542 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-13.5 + parent: 6 + type: Transform + - uid: 2543 + components: + - rot: 3.141592653589793 rad + pos: -62.5,-9.5 + parent: 6 + type: Transform + - uid: 2544 + components: + - rot: 3.141592653589793 rad + pos: -61.5,-9.5 + parent: 6 + type: Transform + - uid: 2546 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-8.5 + parent: 6 + type: Transform + - uid: 2547 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-7.5 + parent: 6 + type: Transform + - uid: 2548 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,-8.5 + parent: 6 + type: Transform + - uid: 2549 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,-7.5 + parent: 6 + type: Transform + - uid: 2550 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,-8.5 + parent: 6 + type: Transform + - uid: 2551 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,-7.5 + parent: 6 + type: Transform + - uid: 2552 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-8.5 + parent: 6 + type: Transform + - uid: 2553 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-7.5 + parent: 6 + type: Transform + - uid: 2554 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-9.5 + parent: 6 + type: Transform + - uid: 2555 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-9.5 + parent: 6 + type: Transform + - uid: 2556 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-9.5 + parent: 6 + type: Transform + - uid: 2557 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-9.5 + parent: 6 + type: Transform + - uid: 2558 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,-9.5 + parent: 6 + type: Transform + - uid: 2559 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-9.5 + parent: 6 + type: Transform + - uid: 2581 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,-10.5 + parent: 6 + type: Transform + - uid: 2584 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,-11.5 + parent: 6 + type: Transform + - uid: 2585 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,-13.5 + parent: 6 + type: Transform + - uid: 2588 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,-9.5 + parent: 6 + type: Transform + - uid: 2589 + components: + - rot: 1.5707963267948966 rad + pos: -69.5,-9.5 + parent: 6 + type: Transform + - uid: 2590 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,-10.5 + parent: 6 + type: Transform + - uid: 2591 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,-11.5 + parent: 6 + type: Transform + - uid: 2592 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,-12.5 + parent: 6 + type: Transform + - uid: 2593 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,-13.5 + parent: 6 + type: Transform + - uid: 2594 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,-14.5 + parent: 6 + type: Transform + - uid: 2595 + components: + - rot: 1.5707963267948966 rad + pos: -69.5,-14.5 + parent: 6 + type: Transform + - uid: 2625 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-13.5 + parent: 6 + type: Transform + - uid: 2640 + components: + - pos: -16.5,-1.5 + parent: 6 + type: Transform + - uid: 2694 + components: + - pos: -42.5,-2.5 + parent: 6 + type: Transform + - uid: 2888 + components: + - rot: 3.141592653589793 rad + pos: -60.5,-9.5 + parent: 6 + type: Transform + - uid: 2947 + components: + - pos: 1.5,0.5 + parent: 6 + type: Transform + - uid: 2959 + components: + - rot: 3.141592653589793 rad + pos: -55.5,-31.5 + parent: 6 + type: Transform + - uid: 2960 + components: + - rot: 3.141592653589793 rad + pos: -55.5,-32.5 + parent: 6 + type: Transform + - uid: 2961 + components: + - rot: 3.141592653589793 rad + pos: -55.5,-35.5 + parent: 6 + type: Transform + - uid: 2962 + components: + - rot: 3.141592653589793 rad + pos: -55.5,-33.5 + parent: 6 + type: Transform + - uid: 2979 + components: + - pos: 1.5,-1.5 + parent: 6 + type: Transform + - uid: 3029 + components: + - pos: 1.5,-2.5 + parent: 6 + type: Transform + - uid: 3060 + components: + - pos: -58.5,-44.5 + parent: 6 + type: Transform + - uid: 3126 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,8.5 + parent: 6 + type: Transform + - uid: 3127 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,8.5 + parent: 6 + type: Transform + - uid: 3134 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,8.5 + parent: 6 + type: Transform + - uid: 3158 + components: + - pos: -29.5,18.5 + parent: 6 + type: Transform + - uid: 3159 + components: + - pos: -29.5,17.5 + parent: 6 + type: Transform + - uid: 3160 + components: + - pos: -29.5,16.5 + parent: 6 + type: Transform + - uid: 3390 + components: + - pos: -27.5,-21.5 + parent: 6 + type: Transform + - uid: 3395 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-13.5 + parent: 6 + type: Transform + - uid: 3417 + components: + - pos: 16.5,-8.5 + parent: 6 + type: Transform + - uid: 3488 + components: + - pos: 40.5,-13.5 + parent: 6 + type: Transform + - uid: 3489 + components: + - pos: 41.5,-13.5 + parent: 6 + type: Transform + - uid: 3587 + components: + - pos: -52.5,-49.5 + parent: 6 + type: Transform + - uid: 3588 + components: + - pos: -52.5,-50.5 + parent: 6 + type: Transform + - uid: 3589 + components: + - pos: -52.5,-51.5 + parent: 6 + type: Transform + - uid: 3590 + components: + - pos: -51.5,-52.5 + parent: 6 + type: Transform + - uid: 3591 + components: + - pos: -50.5,-52.5 + parent: 6 + type: Transform + - uid: 3592 + components: + - pos: -49.5,-52.5 + parent: 6 + type: Transform + - uid: 3610 + components: + - pos: -17.5,-17.5 + parent: 6 + type: Transform + - uid: 3627 + components: + - pos: 3.5,-22.5 + parent: 6 + type: Transform + - uid: 3644 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-71.5 + parent: 6 + type: Transform + - uid: 3646 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-71.5 + parent: 6 + type: Transform + - uid: 3648 + components: + - pos: 2.5,-80.5 + parent: 6 + type: Transform + - uid: 3649 + components: + - pos: 2.5,-81.5 + parent: 6 + type: Transform + - uid: 3650 + components: + - pos: 1.5,-82.5 + parent: 6 + type: Transform + - uid: 3651 + components: + - pos: 0.5,-82.5 + parent: 6 + type: Transform + - uid: 3660 + components: + - pos: -16.5,-22.5 + parent: 6 + type: Transform + - uid: 3661 + components: + - pos: -16.5,-18.5 + parent: 6 + type: Transform + - uid: 3663 + components: + - pos: -16.5,-20.5 + parent: 6 + type: Transform + - uid: 3678 + components: + - pos: 2.5,-77.5 + parent: 6 + type: Transform + - uid: 3679 + components: + - pos: 2.5,-76.5 + parent: 6 + type: Transform + - uid: 3680 + components: + - pos: 2.5,-75.5 + parent: 6 + type: Transform + - uid: 3776 + components: + - pos: -33.5,-63.5 + parent: 6 + type: Transform + - uid: 3778 + components: + - pos: -32.5,-63.5 + parent: 6 + type: Transform + - uid: 3781 + components: + - pos: -31.5,-63.5 + parent: 6 + type: Transform + - uid: 3787 + components: + - pos: -32.5,-63.5 + parent: 6 + type: Transform + - uid: 3788 + components: + - pos: -31.5,-63.5 + parent: 6 + type: Transform + - uid: 3816 + components: + - pos: -29.5,-61.5 + parent: 6 + type: Transform + - uid: 3905 + components: + - pos: -16.5,-23.5 + parent: 6 + type: Transform + - uid: 4198 + components: + - pos: 16.5,22.5 + parent: 6 + type: Transform + - uid: 4199 + components: + - pos: 17.5,22.5 + parent: 6 + type: Transform + - uid: 4200 + components: + - pos: 18.5,22.5 + parent: 6 + type: Transform + - uid: 4228 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-27.5 + parent: 6 + type: Transform + - uid: 4229 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-28.5 + parent: 6 + type: Transform + - uid: 4230 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-29.5 + parent: 6 + type: Transform + - uid: 4367 + components: + - pos: -20.5,-24.5 + parent: 6 + type: Transform + - uid: 4368 + components: + - pos: -21.5,-24.5 + parent: 6 + type: Transform + - uid: 4369 + components: + - pos: -21.5,-29.5 + parent: 6 + type: Transform + - uid: 4370 + components: + - pos: -20.5,-32.5 + parent: 6 + type: Transform + - uid: 4456 + components: + - pos: 16.5,14.5 + parent: 6 + type: Transform + - uid: 4457 + components: + - pos: 13.5,16.5 + parent: 6 + type: Transform + - uid: 4458 + components: + - pos: 13.5,15.5 + parent: 6 + type: Transform + - uid: 4503 + components: + - pos: 13.5,14.5 + parent: 6 + type: Transform + - uid: 4650 + components: + - pos: -25.5,-28.5 + parent: 6 + type: Transform + - uid: 4651 + components: + - pos: -25.5,-30.5 + parent: 6 + type: Transform + - uid: 4652 + components: + - pos: -25.5,-32.5 + parent: 6 + type: Transform + - uid: 4658 + components: + - pos: -36.5,-19.5 + parent: 6 + type: Transform + - uid: 4659 + components: + - pos: -37.5,-19.5 + parent: 6 + type: Transform + - uid: 4676 + components: + - pos: 11.5,-7.5 + parent: 6 + type: Transform + - uid: 4677 + components: + - pos: 13.5,-7.5 + parent: 6 + type: Transform + - uid: 4678 + components: + - pos: 12.5,-9.5 + parent: 6 + type: Transform + - uid: 4679 + components: + - pos: 14.5,-9.5 + parent: 6 + type: Transform + - uid: 4680 + components: + - pos: 15.5,-9.5 + parent: 6 + type: Transform + - uid: 4681 + components: + - pos: 17.5,-9.5 + parent: 6 + type: Transform + - uid: 4682 + components: + - pos: 18.5,-9.5 + parent: 6 + type: Transform + - uid: 4683 + components: + - pos: 19.5,-9.5 + parent: 6 + type: Transform + - uid: 4815 + components: + - pos: -22.5,-18.5 + parent: 6 + type: Transform + - uid: 4820 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-19.5 + parent: 6 + type: Transform + - uid: 4821 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-19.5 + parent: 6 + type: Transform + - uid: 4822 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-23.5 + parent: 6 + type: Transform + - uid: 4823 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-23.5 + parent: 6 + type: Transform + - uid: 4824 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-19.5 + parent: 6 + type: Transform + - uid: 4825 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-19.5 + parent: 6 + type: Transform + - uid: 5063 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-4.5 + parent: 6 + type: Transform + - uid: 5077 + components: + - pos: -9.5,5.5 + parent: 6 + type: Transform + - uid: 5078 + components: + - pos: -8.5,5.5 + parent: 6 + type: Transform + - uid: 5079 + components: + - pos: -7.5,5.5 + parent: 6 + type: Transform + - uid: 5080 + components: + - pos: -1.5,5.5 + parent: 6 + type: Transform + - uid: 5081 + components: + - pos: -0.5,5.5 + parent: 6 + type: Transform + - uid: 5082 + components: + - pos: 0.5,5.5 + parent: 6 + type: Transform + - uid: 5142 + components: + - pos: -12.5,-18.5 + parent: 6 + type: Transform + - uid: 5143 + components: + - pos: -12.5,-19.5 + parent: 6 + type: Transform + - uid: 5144 + components: + - pos: -12.5,-21.5 + parent: 6 + type: Transform + - uid: 5145 + components: + - pos: -12.5,-22.5 + parent: 6 + type: Transform + - uid: 5151 + components: + - pos: 3.5,-19.5 + parent: 6 + type: Transform + - uid: 5228 + components: + - pos: -11.5,-13.5 + parent: 6 + type: Transform + - uid: 5229 + components: + - pos: -10.5,-13.5 + parent: 6 + type: Transform + - uid: 5230 + components: + - pos: -9.5,-13.5 + parent: 6 + type: Transform + - uid: 5273 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-13.5 + parent: 6 + type: Transform + - uid: 5274 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-13.5 + parent: 6 + type: Transform + - uid: 5275 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 6 + type: Transform + - uid: 5282 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-46.5 + parent: 6 + type: Transform + - uid: 5283 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-46.5 + parent: 6 + type: Transform + - uid: 5343 + components: + - pos: 4.5,-52.5 + parent: 6 + type: Transform + - uid: 5344 + components: + - pos: 3.5,-52.5 + parent: 6 + type: Transform + - uid: 5345 + components: + - pos: 2.5,-52.5 + parent: 6 + type: Transform + - uid: 5448 + components: + - pos: -58.5,-45.5 + parent: 6 + type: Transform + - uid: 5500 + components: + - pos: -44.5,-40.5 + parent: 6 + type: Transform + - uid: 5501 + components: + - pos: -41.5,-39.5 + parent: 6 + type: Transform + - uid: 5502 + components: + - pos: -41.5,-35.5 + parent: 6 + type: Transform + - uid: 5503 + components: + - pos: -44.5,-34.5 + parent: 6 + type: Transform + - uid: 5504 + components: + - pos: -44.5,-30.5 + parent: 6 + type: Transform + - uid: 5505 + components: + - pos: -41.5,-30.5 + parent: 6 + type: Transform + - uid: 5583 + components: + - pos: -48.5,-46.5 + parent: 6 + type: Transform + - uid: 5651 + components: + - pos: 7.5,-14.5 + parent: 6 + type: Transform + - uid: 5661 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-67.5 + parent: 6 + type: Transform + - uid: 5662 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-71.5 + parent: 6 + type: Transform + - uid: 5663 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-72.5 + parent: 6 + type: Transform + - uid: 5664 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-74.5 + parent: 6 + type: Transform + - uid: 5665 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-75.5 + parent: 6 + type: Transform + - uid: 5666 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-76.5 + parent: 6 + type: Transform + - uid: 5667 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-78.5 + parent: 6 + type: Transform + - uid: 5668 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-80.5 + parent: 6 + type: Transform + - uid: 5669 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-81.5 + parent: 6 + type: Transform + - uid: 5670 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-82.5 + parent: 6 + type: Transform + - uid: 5671 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-83.5 + parent: 6 + type: Transform + - uid: 5672 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-84.5 + parent: 6 + type: Transform + - uid: 5673 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-84.5 + parent: 6 + type: Transform + - uid: 5674 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-84.5 + parent: 6 + type: Transform + - uid: 5675 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-84.5 + parent: 6 + type: Transform + - uid: 5676 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-84.5 + parent: 6 + type: Transform + - uid: 5677 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-84.5 + parent: 6 + type: Transform + - uid: 5678 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-84.5 + parent: 6 + type: Transform + - uid: 5679 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-86.5 + parent: 6 + type: Transform + - uid: 5680 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-86.5 + parent: 6 + type: Transform + - uid: 5681 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-86.5 + parent: 6 + type: Transform + - uid: 5682 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-86.5 + parent: 6 + type: Transform + - uid: 5683 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-86.5 + parent: 6 + type: Transform + - uid: 5684 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-86.5 + parent: 6 + type: Transform + - uid: 5685 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-85.5 + parent: 6 + type: Transform + - uid: 5686 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-84.5 + parent: 6 + type: Transform + - uid: 5687 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-83.5 + parent: 6 + type: Transform + - uid: 5688 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-82.5 + parent: 6 + type: Transform + - uid: 5689 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-81.5 + parent: 6 + type: Transform + - uid: 5690 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-80.5 + parent: 6 + type: Transform + - uid: 5691 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-79.5 + parent: 6 + type: Transform + - uid: 5703 + components: + - pos: 46.5,-17.5 + parent: 6 + type: Transform + - uid: 5704 + components: + - pos: 46.5,-19.5 + parent: 6 + type: Transform + - uid: 5705 + components: + - pos: 46.5,-21.5 + parent: 6 + type: Transform + - uid: 5706 + components: + - pos: 46.5,-22.5 + parent: 6 + type: Transform + - uid: 5707 + components: + - pos: 46.5,-23.5 + parent: 6 + type: Transform + - uid: 5708 + components: + - pos: 46.5,-24.5 + parent: 6 + type: Transform + - uid: 5709 + components: + - pos: 46.5,-25.5 + parent: 6 + type: Transform + - uid: 5710 + components: + - pos: 44.5,-27.5 + parent: 6 + type: Transform + - uid: 5711 + components: + - pos: 43.5,-27.5 + parent: 6 + type: Transform + - uid: 5712 + components: + - pos: 41.5,-27.5 + parent: 6 + type: Transform + - uid: 5713 + components: + - pos: 40.5,-27.5 + parent: 6 + type: Transform + - uid: 5714 + components: + - pos: 39.5,-27.5 + parent: 6 + type: Transform + - uid: 5715 + components: + - pos: 37.5,-27.5 + parent: 6 + type: Transform + - uid: 5716 + components: + - pos: 34.5,-27.5 + parent: 6 + type: Transform + - uid: 5717 + components: + - pos: 33.5,-27.5 + parent: 6 + type: Transform + - uid: 5718 + components: + - pos: 32.5,-27.5 + parent: 6 + type: Transform + - uid: 5719 + components: + - pos: 31.5,-27.5 + parent: 6 + type: Transform + - uid: 5720 + components: + - pos: 30.5,-27.5 + parent: 6 + type: Transform + - uid: 5735 + components: + - pos: 29.5,-8.5 + parent: 6 + type: Transform + - uid: 5736 + components: + - pos: 29.5,-6.5 + parent: 6 + type: Transform + - uid: 5737 + components: + - pos: 29.5,-4.5 + parent: 6 + type: Transform + - uid: 5886 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-51.5 + parent: 6 + type: Transform + - uid: 5887 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-46.5 + parent: 6 + type: Transform + - uid: 5888 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-46.5 + parent: 6 + type: Transform + - uid: 5889 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-46.5 + parent: 6 + type: Transform + - uid: 5938 + components: + - pos: 40.5,-9.5 + parent: 6 + type: Transform + - uid: 5953 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-68.5 + parent: 6 + type: Transform + - uid: 5978 + components: + - pos: 7.5,-16.5 + parent: 6 + type: Transform + - uid: 6167 + components: + - pos: -32.5,-9.5 + parent: 6 + type: Transform + - uid: 6168 + components: + - pos: -34.5,-9.5 + parent: 6 + type: Transform + - uid: 6169 + components: + - pos: -36.5,-9.5 + parent: 6 + type: Transform + - uid: 6170 + components: + - pos: -38.5,-9.5 + parent: 6 + type: Transform + - uid: 6201 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-5.5 + parent: 6 + type: Transform + - uid: 6297 + components: + - pos: -29.5,13.5 + parent: 6 + type: Transform + - uid: 6298 + components: + - pos: -29.5,12.5 + parent: 6 + type: Transform + - uid: 6299 + components: + - pos: -29.5,11.5 + parent: 6 + type: Transform + - uid: 6446 + components: + - pos: -56.5,-23.5 + parent: 6 + type: Transform + - uid: 6447 + components: + - pos: -55.5,-23.5 + parent: 6 + type: Transform + - uid: 6448 + components: + - pos: -53.5,-25.5 + parent: 6 + type: Transform + - uid: 6449 + components: + - pos: -53.5,-26.5 + parent: 6 + type: Transform + - uid: 6450 + components: + - pos: -53.5,-27.5 + parent: 6 + type: Transform + - uid: 6453 + components: + - pos: -27.5,-62.5 + parent: 6 + type: Transform + - uid: 6455 + components: + - pos: -28.5,-62.5 + parent: 6 + type: Transform + - uid: 6456 + components: + - pos: -33.5,-63.5 + parent: 6 + type: Transform + - uid: 6457 + components: + - pos: -13.5,-60.5 + parent: 6 + type: Transform + - uid: 6458 + components: + - pos: -12.5,-60.5 + parent: 6 + type: Transform + - uid: 6459 + components: + - pos: -11.5,-60.5 + parent: 6 + type: Transform + - uid: 6749 + components: + - pos: -74.5,-47.5 + parent: 6 + type: Transform + - uid: 6750 + components: + - pos: -74.5,-41.5 + parent: 6 + type: Transform + - uid: 6751 + components: + - pos: -74.5,-39.5 + parent: 6 + type: Transform + - uid: 6752 + components: + - pos: -74.5,-38.5 + parent: 6 + type: Transform + - uid: 6780 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,-39.5 + parent: 6 + type: Transform + - uid: 7925 + components: + - pos: -83.5,-13.5 + parent: 6 + type: Transform + - uid: 7926 + components: + - pos: -81.5,-13.5 + parent: 6 + type: Transform + - uid: 7927 + components: + - pos: -80.5,-13.5 + parent: 6 + type: Transform + - uid: 7928 + components: + - pos: -79.5,-13.5 + parent: 6 + type: Transform + - uid: 7929 + components: + - pos: -78.5,-13.5 + parent: 6 + type: Transform + - uid: 7930 + components: + - pos: -77.5,-13.5 + parent: 6 + type: Transform + - uid: 7931 + components: + - pos: -76.5,-13.5 + parent: 6 + type: Transform + - uid: 8064 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,-49.5 + parent: 6 + type: Transform + - uid: 8071 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,-49.5 + parent: 6 + type: Transform + - uid: 8073 + components: + - rot: 1.5707963267948966 rad + pos: -69.5,-49.5 + parent: 6 + type: Transform + - uid: 8074 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,-49.5 + parent: 6 + type: Transform + - uid: 8081 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,-49.5 + parent: 6 + type: Transform + - uid: 8087 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,-49.5 + parent: 6 + type: Transform + - uid: 8124 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,-49.5 + parent: 6 + type: Transform + - uid: 8135 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,-39.5 + parent: 6 + type: Transform + - uid: 8136 + components: + - rot: 1.5707963267948966 rad + pos: -66.5,-39.5 + parent: 6 + type: Transform + - uid: 8142 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,-39.5 + parent: 6 + type: Transform + - uid: 8183 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,-39.5 + parent: 6 + type: Transform + - uid: 8184 + components: + - rot: 1.5707963267948966 rad + pos: -69.5,-39.5 + parent: 6 + type: Transform + - uid: 8186 + components: + - rot: 1.5707963267948966 rad + pos: -70.5,-39.5 + parent: 6 + type: Transform + - uid: 8312 + components: + - pos: -50.5,-30.5 + parent: 6 + type: Transform + - uid: 8313 + components: + - pos: -50.5,-31.5 + parent: 6 + type: Transform + - uid: 8314 + components: + - pos: -50.5,-34.5 + parent: 6 + type: Transform + - uid: 8315 + components: + - pos: -50.5,-35.5 + parent: 6 + type: Transform + - uid: 8544 + components: + - pos: -11.5,-23.5 + parent: 6 + type: Transform + - uid: 12000 + components: + - pos: -58.5,-43.5 + parent: 6 + type: Transform + - uid: 13665 + components: + - rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 13645 + type: Transform + - uid: 13668 + components: + - rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 13645 + type: Transform + - uid: 13671 + components: + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 13645 + type: Transform + - uid: 13673 + components: + - rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 13645 + type: Transform + - uid: 13873 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,-13.5 + parent: 6 + type: Transform + - uid: 13874 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,-13.5 + parent: 6 + type: Transform + - uid: 13875 + components: + - rot: -1.5707963267948966 rad + pos: -86.5,-13.5 + parent: 6 + type: Transform + - uid: 13876 + components: + - rot: -1.5707963267948966 rad + pos: -87.5,-13.5 + parent: 6 + type: Transform + - uid: 13877 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,-15.5 + parent: 6 + type: Transform + - uid: 13878 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,-16.5 + parent: 6 + type: Transform + - uid: 13879 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,-17.5 + parent: 6 + type: Transform + - uid: 13880 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,-20.5 + parent: 6 + type: Transform + - uid: 13881 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,-21.5 + parent: 6 + type: Transform + - uid: 13882 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,-22.5 + parent: 6 + type: Transform + - uid: 13883 + components: + - rot: -1.5707963267948966 rad + pos: -89.5,-22.5 + parent: 6 + type: Transform + - uid: 13884 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,-28.5 + parent: 6 + type: Transform + - uid: 13885 + components: + - rot: -1.5707963267948966 rad + pos: -90.5,-24.5 + parent: 6 + type: Transform + - uid: 13886 + components: + - rot: -1.5707963267948966 rad + pos: -90.5,-25.5 + parent: 6 + type: Transform + - uid: 13887 + components: + - rot: -1.5707963267948966 rad + pos: -90.5,-26.5 + parent: 6 + type: Transform + - uid: 13888 + components: + - rot: -1.5707963267948966 rad + pos: -89.5,-26.5 + parent: 6 + type: Transform + - uid: 13889 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,-29.5 + parent: 6 + type: Transform + - uid: 13890 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,-30.5 + parent: 6 + type: Transform + - uid: 13891 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,-32.5 + parent: 6 + type: Transform + - uid: 13892 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,-33.5 + parent: 6 + type: Transform + - uid: 13893 + components: + - rot: -1.5707963267948966 rad + pos: -86.5,-34.5 + parent: 6 + type: Transform + - uid: 13894 + components: + - rot: -1.5707963267948966 rad + pos: -85.5,-34.5 + parent: 6 + type: Transform + - uid: 13895 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,-34.5 + parent: 6 + type: Transform + - uid: 14051 + components: + - pos: -2.5,22.5 + parent: 6 + type: Transform + - uid: 14095 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-71.5 + parent: 6 + type: Transform + - uid: 14153 + components: + - pos: -2.5,23.5 + parent: 6 + type: Transform + - uid: 14154 + components: + - pos: -2.5,24.5 + parent: 6 + type: Transform + - uid: 14155 + components: + - pos: -2.5,25.5 + parent: 6 + type: Transform + - uid: 14156 + components: + - pos: -2.5,26.5 + parent: 6 + type: Transform + - uid: 14157 + components: + - pos: -2.5,27.5 + parent: 6 + type: Transform + - uid: 14158 + components: + - pos: -2.5,19.5 + parent: 6 + type: Transform + - uid: 14159 + components: + - pos: -2.5,18.5 + parent: 6 + type: Transform + - uid: 14160 + components: + - pos: -2.5,30.5 + parent: 6 + type: Transform + - uid: 14161 + components: + - pos: -2.5,31.5 + parent: 6 + type: Transform + - uid: 14162 + components: + - pos: -2.5,32.5 + parent: 6 + type: Transform + - uid: 14163 + components: + - pos: -2.5,33.5 + parent: 6 + type: Transform + - uid: 14164 + components: + - pos: -2.5,34.5 + parent: 6 + type: Transform + - uid: 14165 + components: + - pos: -2.5,35.5 + parent: 6 + type: Transform + - uid: 14166 + components: + - pos: -2.5,37.5 + parent: 6 + type: Transform + - uid: 14167 + components: + - pos: -2.5,38.5 + parent: 6 + type: Transform + - uid: 14168 + components: + - pos: -4.5,38.5 + parent: 6 + type: Transform + - uid: 14169 + components: + - pos: -3.5,38.5 + parent: 6 + type: Transform + - uid: 14170 + components: + - pos: -6.5,38.5 + parent: 6 + type: Transform + - uid: 14171 + components: + - pos: -7.5,38.5 + parent: 6 + type: Transform + - uid: 14172 + components: + - pos: -8.5,38.5 + parent: 6 + type: Transform + - uid: 14173 + components: + - pos: -9.5,38.5 + parent: 6 + type: Transform + - uid: 14174 + components: + - pos: -10.5,38.5 + parent: 6 + type: Transform + - uid: 14175 + components: + - pos: -11.5,39.5 + parent: 6 + type: Transform + - uid: 14176 + components: + - pos: -11.5,40.5 + parent: 6 + type: Transform + - uid: 14177 + components: + - pos: -12.5,40.5 + parent: 6 + type: Transform + - uid: 14178 + components: + - pos: -13.5,40.5 + parent: 6 + type: Transform + - uid: 14179 + components: + - pos: -15.5,40.5 + parent: 6 + type: Transform + - uid: 14180 + components: + - pos: -15.5,39.5 + parent: 6 + type: Transform + - uid: 14181 + components: + - pos: -15.5,38.5 + parent: 6 + type: Transform + - uid: 14182 + components: + - pos: -16.5,38.5 + parent: 6 + type: Transform + - uid: 14183 + components: + - pos: -17.5,38.5 + parent: 6 + type: Transform + - uid: 14184 + components: + - pos: -18.5,38.5 + parent: 6 + type: Transform + - uid: 14185 + components: + - pos: -21.5,38.5 + parent: 6 + type: Transform + - uid: 14186 + components: + - pos: -21.5,36.5 + parent: 6 + type: Transform + - uid: 14187 + components: + - pos: -21.5,35.5 + parent: 6 + type: Transform + - uid: 14188 + components: + - pos: -21.5,34.5 + parent: 6 + type: Transform +- proto: GrilleBroken + entities: + - uid: 2834 + components: + - pos: -85.5,-40.5 + parent: 6 + type: Transform + - uid: 3391 + components: + - rot: 1.5707963267948966 rad + pos: -82.5,-37.5 + parent: 6 + type: Transform + - uid: 3798 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-57.5 + parent: 6 + type: Transform + - uid: 5652 + components: + - pos: -20.5,-78.5 + parent: 6 + type: Transform + - uid: 5653 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-86.5 + parent: 6 + type: Transform + - uid: 5654 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-85.5 + parent: 6 + type: Transform + - uid: 5655 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-84.5 + parent: 6 + type: Transform + - uid: 5656 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-84.5 + parent: 6 + type: Transform + - uid: 5657 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-79.5 + parent: 6 + type: Transform + - uid: 5658 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-77.5 + parent: 6 + type: Transform + - uid: 5659 + components: + - pos: -34.5,-73.5 + parent: 6 + type: Transform + - uid: 5660 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-69.5 + parent: 6 + type: Transform + - uid: 5692 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-27.5 + parent: 6 + type: Transform + - uid: 5693 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-27.5 + parent: 6 + type: Transform + - uid: 5694 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-27.5 + parent: 6 + type: Transform + - uid: 5695 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-27.5 + parent: 6 + type: Transform + - uid: 5696 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-27.5 + parent: 6 + type: Transform + - uid: 5697 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-27.5 + parent: 6 + type: Transform + - uid: 5698 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-26.5 + parent: 6 + type: Transform + - uid: 5699 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-20.5 + parent: 6 + type: Transform + - uid: 5700 + components: + - pos: 46.5,-18.5 + parent: 6 + type: Transform + - uid: 5701 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-18.5 + parent: 6 + type: Transform + - uid: 5702 + components: + - pos: 46.5,-16.5 + parent: 6 + type: Transform + - uid: 5951 + components: + - pos: -34.5,-70.5 + parent: 6 + type: Transform + - uid: 5952 + components: + - pos: -34.5,-66.5 + parent: 6 + type: Transform + - uid: 5971 + components: + - pos: -22.5,-50.5 + parent: 6 + type: Transform + - uid: 5972 + components: + - pos: -22.5,-54.5 + parent: 6 + type: Transform + - uid: 6753 + components: + - rot: 1.5707963267948966 rad + pos: -82.5,-40.5 + parent: 6 + type: Transform + - uid: 6754 + components: + - rot: 3.141592653589793 rad + pos: -74.5,-50.5 + parent: 6 + type: Transform + - uid: 7726 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-36.5 + parent: 6 + type: Transform + - uid: 7728 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-36.5 + parent: 6 + type: Transform + - uid: 7932 + components: + - rot: -1.5707963267948966 rad + pos: -75.5,-13.5 + parent: 6 + type: Transform + - uid: 7933 + components: + - rot: -1.5707963267948966 rad + pos: -82.5,-13.5 + parent: 6 + type: Transform + - uid: 8075 + components: + - rot: -1.5707963267948966 rad + pos: -67.5,-49.5 + parent: 6 + type: Transform + - uid: 8076 + components: + - rot: 1.5707963267948966 rad + pos: -66.5,-49.5 + parent: 6 + type: Transform + - uid: 8187 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,-39.5 + parent: 6 + type: Transform + - uid: 8188 + components: + - rot: -1.5707963267948966 rad + pos: -63.5,-39.5 + parent: 6 + type: Transform + - uid: 13667 + components: + - rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 13645 + type: Transform + - uid: 13670 + components: + - pos: 6.5,3.5 + parent: 13645 + type: Transform + - uid: 13674 + components: + - pos: 0.5,4.5 + parent: 13645 + type: Transform + - uid: 13896 + components: + - rot: 1.5707963267948966 rad + pos: -90.5,-22.5 + parent: 6 + type: Transform + - uid: 13897 + components: + - rot: 1.5707963267948966 rad + pos: -88.5,-13.5 + parent: 6 + type: Transform + - uid: 13898 + components: + - pos: -88.5,-14.5 + parent: 6 + type: Transform + - uid: 13899 + components: + - rot: 3.141592653589793 rad + pos: -88.5,-18.5 + parent: 6 + type: Transform + - uid: 13900 + components: + - pos: -88.5,-19.5 + parent: 6 + type: Transform + - uid: 13901 + components: + - pos: -90.5,-23.5 + parent: 6 + type: Transform + - uid: 13902 + components: + - rot: -1.5707963267948966 rad + pos: -88.5,-26.5 + parent: 6 + type: Transform + - uid: 13903 + components: + - pos: -88.5,-27.5 + parent: 6 + type: Transform + - uid: 13904 + components: + - rot: 3.141592653589793 rad + pos: -88.5,-31.5 + parent: 6 + type: Transform + - uid: 13905 + components: + - rot: 3.141592653589793 rad + pos: -88.5,-34.5 + parent: 6 + type: Transform + - uid: 13906 + components: + - rot: 1.5707963267948966 rad + pos: -87.5,-34.5 + parent: 6 + type: Transform + - uid: 13907 + components: + - rot: -1.5707963267948966 rad + pos: -83.5,-34.5 + parent: 6 + type: Transform + - uid: 14044 + components: + - rot: 3.141592653589793 rad + pos: -2.5,21.5 + parent: 6 + type: Transform + - uid: 14056 + components: + - pos: -2.5,28.5 + parent: 6 + type: Transform + - uid: 14061 + components: + - pos: -2.5,20.5 + parent: 6 + type: Transform + - uid: 14092 + components: + - rot: 3.141592653589793 rad + pos: -2.5,17.5 + parent: 6 + type: Transform + - uid: 14189 + components: + - rot: 3.141592653589793 rad + pos: -21.5,33.5 + parent: 6 + type: Transform + - uid: 14190 + components: + - rot: 3.141592653589793 rad + pos: -21.5,37.5 + parent: 6 + type: Transform + - uid: 14191 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,38.5 + parent: 6 + type: Transform + - uid: 14192 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,38.5 + parent: 6 + type: Transform + - uid: 14193 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,40.5 + parent: 6 + type: Transform + - uid: 14194 + components: + - rot: 3.141592653589793 rad + pos: -11.5,38.5 + parent: 6 + type: Transform + - uid: 14195 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,38.5 + parent: 6 + type: Transform + - uid: 14196 + components: + - rot: 3.141592653589793 rad + pos: -2.5,36.5 + parent: 6 + type: Transform + - uid: 14197 + components: + - pos: -2.5,36.5 + parent: 6 + type: Transform + - uid: 14198 + components: + - rot: 3.141592653589793 rad + pos: -2.5,29.5 + parent: 6 + type: Transform +- proto: Gyroscope + entities: + - uid: 13656 + components: + - pos: 3.5,-0.5 + parent: 13645 + type: Transform + - bodyType: Static + type: Physics +- proto: Handcuffs + entities: + - uid: 6335 + components: + - pos: -10.457354,8.58974 + parent: 6 + type: Transform +- proto: HandheldCrewMonitor + entities: + - uid: 5640 + components: + - pos: -37.635654,-18.448305 + parent: 6 + type: Transform +- proto: HandheldGPSBasic + entities: + - uid: 6491 + components: + - pos: 16.317135,-38.365986 + parent: 6 + type: Transform +- proto: HandheldHealthAnalyzer + entities: + - uid: 6437 + components: + - pos: -26.530235,-27.147102 + parent: 6 + type: Transform +- proto: HandLabeler + entities: + - uid: 5109 + components: + - pos: -2.8509688,-7.249933 + parent: 6 + type: Transform + - uid: 6492 + components: + - pos: 16.657906,-38.365986 + parent: 6 + type: Transform + - uid: 6493 + components: + - pos: -23.350414,-14.4585905 + parent: 6 + type: Transform +- proto: Hemostat + entities: + - uid: 6189 + components: + - pos: -34.47582,-14.4353285 + parent: 6 + type: Transform +- proto: HighSecArmoryLocked + entities: + - uid: 4697 + components: + - pos: 16.5,6.5 + parent: 6 + type: Transform +- proto: HighSecCommandLocked + entities: + - uid: 5045 + components: + - pos: -26.5,0.5 + parent: 6 + type: Transform + - uid: 5050 + components: + - pos: -20.5,0.5 + parent: 6 + type: Transform + - uid: 5443 + components: + - pos: -51.5,-43.5 + parent: 6 + type: Transform + - uid: 10210 + components: + - pos: -51.5,-45.5 + parent: 6 + type: Transform +- proto: HolofanProjector + entities: + - uid: 6352 + components: + - pos: -21.470198,-5.233407 + parent: 6 + type: Transform +- proto: HospitalCurtains + entities: + - uid: 3364 + components: + - pos: 10.5,18.5 + parent: 6 + type: Transform + - uid: 3365 + components: + - pos: 11.5,18.5 + parent: 6 + type: Transform + - uid: 3366 + components: + - pos: 12.5,18.5 + parent: 6 + type: Transform + - uid: 5419 + components: + - pos: -31.5,-39.5 + parent: 6 + type: Transform + - uid: 5420 + components: + - pos: -31.5,-40.5 + parent: 6 + type: Transform + - uid: 5421 + components: + - pos: -31.5,-41.5 + parent: 6 + type: Transform + - uid: 5882 + components: + - pos: -26.5,-48.5 + parent: 6 + type: Transform + - uid: 6004 + components: + - pos: 13.5,22.5 + parent: 6 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 1500 + components: + - pos: -25.5,-31.5 + parent: 6 + type: Transform + - uid: 1594 + components: + - pos: -25.5,-33.5 + parent: 6 + type: Transform + - uid: 1600 + components: + - pos: -25.5,-29.5 + parent: 6 + type: Transform + - uid: 2146 + components: + - pos: -45.5,-29.5 + parent: 6 + type: Transform + - uid: 5098 + components: + - pos: 3.5,-7.5 + parent: 6 + type: Transform + - uid: 5206 + components: + - pos: -8.5,-1.5 + parent: 6 + type: Transform + - uid: 6206 + components: + - pos: -40.5,-31.5 + parent: 6 + type: Transform + - uid: 6211 + components: + - pos: -40.5,-36.5 + parent: 6 + type: Transform + - uid: 6221 + components: + - pos: -38.5,-41.5 + parent: 6 + type: Transform + - uid: 6237 + components: + - pos: -47.5,-41.5 + parent: 6 + type: Transform + - uid: 6243 + components: + - pos: -47.5,-37.5 + parent: 6 + type: Transform +- proto: hydroponicsSoil + entities: + - uid: 5209 + components: + - pos: 3.5,8.5 + parent: 6 + type: Transform + - uid: 5210 + components: + - pos: 3.5,7.5 + parent: 6 + type: Transform + - uid: 5211 + components: + - pos: 3.5,6.5 + parent: 6 + type: Transform + - uid: 5981 + components: + - pos: 19.5,19.5 + parent: 6 + type: Transform + - uid: 5982 + components: + - pos: 18.5,19.5 + parent: 6 + type: Transform + - uid: 5983 + components: + - pos: 18.5,18.5 + parent: 6 + type: Transform + - uid: 5984 + components: + - pos: 19.5,18.5 + parent: 6 + type: Transform +- proto: HydroponicsToolHatchet + entities: + - uid: 5224 + components: + - pos: -8.644006,-18.557863 + parent: 6 + type: Transform +- proto: HydroponicsToolMiniHoe + entities: + - uid: 5223 + components: + - pos: -8.431025,-18.41595 + parent: 6 + type: Transform + - uid: 6340 + components: + - pos: 7.315955,6.461176 + parent: 6 + type: Transform + - uid: 13487 + components: + - pos: 17.361609,18.676716 + parent: 6 + type: Transform +- proto: HydroponicsToolScythe + entities: + - uid: 5226 + components: + - pos: -8.530416,-18.373379 + parent: 6 + type: Transform +- proto: HydroponicsToolSpade + entities: + - uid: 5225 + components: + - pos: -8.36003,-18.486906 + parent: 6 + type: Transform + - uid: 6341 + components: + - pos: 7.5147386,6.5803814 + parent: 6 + type: Transform + - uid: 13488 + components: + - pos: 17.390005,18.71929 + parent: 6 + type: Transform +- proto: hydroponicsTray + entities: + - uid: 4354 + components: + - pos: -11.5,-14.5 + parent: 6 + type: Transform + - uid: 4355 + components: + - pos: -10.5,-14.5 + parent: 6 + type: Transform + - uid: 4356 + components: + - pos: -11.5,-17.5 + parent: 6 + type: Transform + - uid: 4357 + components: + - pos: -11.5,-18.5 + parent: 6 + type: Transform + - uid: 4358 + components: + - pos: -11.5,-19.5 + parent: 6 + type: Transform + - uid: 4359 + components: + - pos: -9.5,-19.5 + parent: 6 + type: Transform + - uid: 4360 + components: + - pos: -9.5,-20.5 + parent: 6 + type: Transform + - uid: 4362 + components: + - pos: -9.5,-14.5 + parent: 6 + type: Transform + - uid: 8579 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-21.5 + parent: 6 + type: Transform + - uid: 8580 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-22.5 + parent: 6 + type: Transform +- proto: InflatableWall + entities: + - uid: 4521 + components: + - pos: -42.5,1.5 + parent: 6 + type: Transform + - uid: 4522 + components: + - pos: -42.5,2.5 + parent: 6 + type: Transform + - uid: 4523 + components: + - pos: -42.5,3.5 + parent: 6 + type: Transform +- proto: IngotGold + entities: + - uid: 5066 + components: + - pos: -18.462847,2.6033814 + parent: 6 + type: Transform +- proto: IngotGold1 + entities: + - uid: 3735 + components: + - pos: -15.702048,-62.305046 + parent: 6 + type: Transform + - uid: 5298 + components: + - pos: 12.464936,-45.216125 + parent: 6 + type: Transform + - uid: 5299 + components: + - pos: 14.523761,-44.591717 + parent: 6 + type: Transform + - uid: 13462 + components: + - pos: -15.659452,-62.560486 + parent: 6 + type: Transform +- proto: IngotSilver1 + entities: + - uid: 13634 + components: + - pos: 2.4263153,-7.4032135 + parent: 10465 + type: Transform +- proto: Intercom + entities: + - uid: 13170 + components: + - rot: 3.141592653589793 rad + pos: -17.5,5.5 + parent: 6 + type: Transform + - uid: 13411 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-16.5 + parent: 6 + type: Transform + - uid: 14103 + components: + - pos: 13.5,21.5 + parent: 6 + type: Transform + - uid: 14106 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-13.5 + parent: 6 + type: Transform + - uid: 14107 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-23.5 + parent: 6 + type: Transform + - uid: 14110 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-40.5 + parent: 6 + type: Transform + - uid: 14117 + components: + - pos: -0.5,-42.5 + parent: 6 + type: Transform + - uid: 14123 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-54.5 + parent: 6 + type: Transform + - uid: 14124 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-41.5 + parent: 6 + type: Transform + - uid: 14128 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-36.5 + parent: 6 + type: Transform + - uid: 14130 + components: + - pos: -59.5,-9.5 + parent: 6 + type: Transform + - uid: 14132 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-13.5 + parent: 6 + type: Transform + - uid: 14139 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 6 + type: Transform + - uid: 14147 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 6 + type: Transform +- proto: IntercomAll + entities: + - uid: 14096 + components: + - rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 6 + type: Transform + - uid: 14098 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 6 + type: Transform +- proto: IntercomCommand + entities: + - uid: 14097 + components: + - pos: -4.5,-8.5 + parent: 6 + type: Transform + - uid: 14101 + components: + - pos: 11.5,10.5 + parent: 6 + type: Transform + - uid: 14112 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-31.5 + parent: 6 + type: Transform + - uid: 14122 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-51.5 + parent: 6 + type: Transform + - uid: 14127 + components: + - pos: -52.5,-42.5 + parent: 6 + type: Transform + - uid: 14131 + components: + - pos: -67.5,-9.5 + parent: 6 + type: Transform + - uid: 14135 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-3.5 + parent: 6 + type: Transform + - uid: 14145 + components: + - pos: -37.5,-16.5 + parent: 6 + type: Transform +- proto: IntercomEngineering + entities: + - uid: 14133 + components: + - pos: -25.5,-8.5 + parent: 6 + type: Transform + - uid: 14134 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-5.5 + parent: 6 + type: Transform + - uid: 14136 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-6.5 + parent: 6 + type: Transform + - uid: 14137 + components: + - rot: 3.141592653589793 rad + pos: -34.5,7.5 + parent: 6 + type: Transform +- proto: IntercomMedical + entities: + - uid: 4829 + components: + - pos: -24.5,-19.5 + parent: 6 + type: Transform + - uid: 7998 + components: + - pos: -22.5,-28.5 + parent: 6 + type: Transform + - uid: 14142 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-16.5 + parent: 6 + type: Transform + - uid: 14143 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-16.5 + parent: 6 + type: Transform + - uid: 14146 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-23.5 + parent: 6 + type: Transform +- proto: IntercomScience + entities: + - uid: 14118 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-48.5 + parent: 6 + type: Transform + - uid: 14119 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-51.5 + parent: 6 + type: Transform + - uid: 14120 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-57.5 + parent: 6 + type: Transform + - uid: 14121 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-77.5 + parent: 6 + type: Transform +- proto: IntercomSecurity + entities: + - uid: 13145 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-48.5 + parent: 6 + type: Transform + - uid: 14099 + components: + - pos: 10.5,-5.5 + parent: 6 + type: Transform + - uid: 14100 + components: + - pos: 15.5,-2.5 + parent: 6 + type: Transform + - uid: 14102 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,8.5 + parent: 6 + type: Transform + - uid: 14125 + components: + - pos: -16.5,-28.5 + parent: 6 + type: Transform +- proto: IntercomService + entities: + - uid: 14108 + components: + - pos: -5.5,-22.5 + parent: 6 + type: Transform + - uid: 14109 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 6 + type: Transform + - uid: 14140 + components: + - pos: -13.5,-13.5 + parent: 6 + type: Transform + - uid: 14141 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-19.5 + parent: 6 + type: Transform +- proto: IntercomSupply + entities: + - uid: 14111 + components: + - pos: 10.5,-34.5 + parent: 6 + type: Transform + - uid: 14113 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-40.5 + parent: 6 + type: Transform + - uid: 14114 + components: + - pos: 19.5,-33.5 + parent: 6 + type: Transform + - uid: 14115 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-47.5 + parent: 6 + type: Transform + - uid: 14116 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-57.5 + parent: 6 + type: Transform +- proto: JanitorialTrolley + entities: + - uid: 7640 + components: + - pos: 27.5,5.5 + parent: 6 + type: Transform +- proto: JetpackMiniFilled + entities: + - uid: 4442 + components: + - pos: -44.60422,-16.11249 + parent: 6 + type: Transform + - uid: 4443 + components: + - pos: -44.42738,-16.377716 + parent: 6 + type: Transform +- proto: JetpackSecurityFilled + entities: + - uid: 4708 + components: + - pos: 17.481842,4.5026503 + parent: 6 + type: Transform +- proto: KalimbaInstrument + entities: + - uid: 13484 + components: + - pos: 44.56669,-25.483343 + parent: 6 + type: Transform +- proto: KitchenKnife + entities: + - uid: 3792 + components: + - pos: -34.523922,-61.71544 + parent: 6 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 3789 + components: + - pos: -34.5,-62.5 + parent: 6 + type: Transform + - uid: 4609 + components: + - pos: -7.5,-26.5 + parent: 6 + type: Transform + - uid: 5996 + components: + - pos: 17.5,21.5 + parent: 6 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 4610 + components: + - pos: -9.5,-26.5 + parent: 6 + type: Transform + - uid: 4809 + components: + - pos: -26.5,-14.5 + parent: 6 + type: Transform +- proto: KitchenSpike + entities: + - uid: 4636 + components: + - pos: -5.5,-21.5 + parent: 6 + type: Transform +- proto: KnifePlastic + entities: + - uid: 6020 + components: + - pos: 16.8353,21.540228 + parent: 6 + type: Transform + - uid: 7442 + components: + - rot: -1.5707963267948966 rad + pos: -30.404367,-51.061775 + parent: 6 + type: Transform +- proto: Lamp + entities: + - uid: 5845 + components: + - pos: -35.576878,-26.298307 + parent: 6 + type: Transform +- proto: LampBanana + entities: + - uid: 5623 + components: + - pos: 16.620932,-29.096205 + parent: 6 + type: Transform +- proto: LampGold + entities: + - uid: 7610 + components: + - rot: -1.5707963267948966 rad + pos: -50.28837,-48.099964 + parent: 6 + type: Transform + - uid: 7806 + components: + - pos: 8.320713,-16.093054 + parent: 6 + type: Transform +- proto: LargeBeaker + entities: + - uid: 6173 + components: + - pos: -22.232916,-17.287807 + parent: 6 + type: Transform +- proto: LauncherCreamPie + entities: + - uid: 5618 + components: + - pos: 17.501255,-29.56451 + parent: 6 + type: Transform +- proto: LockerAtmosphericsFilled + entities: + - uid: 4843 + components: + - pos: -38.5,-8.5 + parent: 6 + 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: 4844 + components: + - pos: -38.5,-7.5 + parent: 6 + 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: LockerBoozeFilled + entities: + - uid: 3368 + components: + - pos: -41.5,-49.5 + parent: 6 + 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: 3411 + components: + - pos: -2.5,-16.5 + parent: 6 + 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: 3831 + components: + - pos: -48.5,-56.5 + parent: 6 + 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: LockerBotanistFilled + entities: + - uid: 4361 + components: + - pos: -9.5,-22.5 + parent: 6 + 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: 4366 + components: + - pos: -9.5,-21.5 + parent: 6 + 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: LockerCaptainFilled + entities: + - uid: 4383 + components: + - pos: -8.5,-0.5 + parent: 6 + 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: LockerChemistryFilled + entities: + - uid: 4799 + components: + - pos: -26.5,-18.5 + parent: 6 + 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: 4800 + components: + - pos: -25.5,-18.5 + parent: 6 + 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: LockerChiefEngineerFilled + entities: + - uid: 5065 + components: + - pos: -21.5,-3.5 + parent: 6 + 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: LockerChiefMedicalOfficerFilled + entities: + - uid: 4653 + components: + - pos: -36.5,-17.5 + parent: 6 + 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: LockerDetectiveFilled + entities: + - uid: 3594 + components: + - pos: -48.5,-50.5 + parent: 6 + 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: LockerElectricalSuppliesFilled + entities: + - uid: 4880 + components: + - pos: -34.5,-8.5 + parent: 6 + 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: LockerEngineerFilled + entities: + - uid: 4841 + components: + - pos: -38.5,-5.5 + parent: 6 + 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: 4842 + components: + - pos: -38.5,-6.5 + parent: 6 + 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: LockerEvidence + entities: + - uid: 4608 + components: + - pos: -19.5,-32.5 + parent: 6 + 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: 4664 + components: + - pos: 11.5,-1.5 + parent: 6 + 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: 4665 + components: + - pos: 11.5,4.5 + parent: 6 + 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: LockerFreezer + entities: + - uid: 5075 + components: + - pos: -22.5,1.5 + parent: 6 + 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 + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5173 + type: ContainerContainer + - uid: 5076 + components: + - pos: -18.5,1.5 + parent: 6 + 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 + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6326 + - 6325 + - 6324 + - 6323 + - 5174 + type: ContainerContainer +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 5096 + components: + - pos: 1.5,-7.5 + parent: 6 + 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: LockerHeadOfSecurityFilled + entities: + - uid: 4671 + components: + - pos: 10.5,9.5 + parent: 6 + 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: LockerMedicalFilled + entities: + - uid: 3400 + components: + - pos: -19.5,-25.5 + parent: 6 + 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: 3401 + components: + - pos: -18.5,-25.5 + parent: 6 + 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: LockerQuarterMasterFilled + entities: + - uid: 4536 + components: + - pos: 8.5,-31.5 + parent: 6 + 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: LockerResearchDirectorFilled + entities: + - uid: 5354 + components: + - pos: -2.5,-50.5 + parent: 6 + 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: LockerSalvageSpecialistFilled + entities: + - uid: 4528 + components: + - pos: 2.5,-50.5 + parent: 6 + 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: 4529 + components: + - pos: 2.5,-49.5 + parent: 6 + 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: LockerScienceFilled + entities: + - uid: 5402 + components: + - pos: -10.5,-56.5 + parent: 6 + 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: 5403 + components: + - pos: -9.5,-56.5 + parent: 6 + 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: LockerSecurityFilled + entities: + - uid: 306 + components: + - pos: 17.5,-8.5 + parent: 6 + 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: 446 + components: + - pos: 19.5,-8.5 + parent: 6 + 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: 465 + components: + - pos: 18.5,-8.5 + parent: 6 + 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: LockerWardenFilled + entities: + - uid: 3429 + components: + - pos: 17.5,1.5 + parent: 6 + 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: LockerWeldingSuppliesFilled + entities: + - uid: 3402 + components: + - pos: -51.5,-19.5 + parent: 6 + 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: 4881 + components: + - pos: -32.5,-8.5 + parent: 6 + 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: 4896 + components: + - pos: -38.5,0.5 + parent: 6 + 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: MachineAnomalyGenerator + entities: + - uid: 1475 + components: + - pos: -10.5,-73.5 + parent: 6 + type: Transform + - enabled: False + type: AmbientSound +- proto: MachineAnomalyVessel + entities: + - uid: 14284 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-56.5 + parent: 6 + type: Transform +- proto: MachineAPE + entities: + - uid: 14283 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-54.5 + parent: 6 + type: Transform +- proto: MachineArtifactAnalyzer + entities: + - uid: 5650 + components: + - pos: -2.5,-80.5 + parent: 6 + type: Transform +- proto: MachineFrameDestroyed + entities: + - uid: 4778 + components: + - pos: -80.5,-48.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5539 + components: + - pos: -62.5,-32.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5540 + components: + - pos: -61.5,-31.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 6684 + components: + - pos: -79.5,-48.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 13680 + components: + - pos: 1.5,0.5 + parent: 13645 + type: Transform + - bodyType: Static + type: Physics +- proto: MagazinePistol + entities: + - uid: 4715 + components: + - pos: 17.285416,8.608155 + parent: 6 + type: Transform + - uid: 4716 + components: + - pos: 17.611988,8.551391 + parent: 6 + type: Transform +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 6478 + components: + - pos: 11.546731,8.494321 + parent: 6 + type: Transform + - uid: 6479 + components: + - pos: 11.475738,8.366601 + parent: 6 + type: Transform +- proto: MagazineRifleHighVelocity + entities: + - uid: 4722 + components: + - pos: 19.689945,4.549178 + parent: 6 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 3804 + components: + - pos: -42.5,-57.5 + parent: 6 + type: Transform + - uid: 11055 + components: + - pos: -66.5,-16.5 + parent: 6 + type: Transform + - uid: 11062 + components: + - pos: -28.5,-30.5 + parent: 6 + type: Transform + - uid: 11065 + components: + - pos: -50.5,-38.5 + parent: 6 + type: Transform + - uid: 11070 + components: + - pos: -30.5,-58.5 + parent: 6 + type: Transform + - uid: 11071 + components: + - pos: -25.5,-58.5 + parent: 6 + type: Transform + - uid: 11072 + components: + - pos: -23.5,-58.5 + parent: 6 + type: Transform + - uid: 11077 + components: + - pos: 12.5,-44.5 + parent: 6 + type: Transform + - uid: 11078 + components: + - pos: 19.5,-32.5 + parent: 6 + type: Transform + - uid: 11081 + components: + - pos: 20.5,-20.5 + parent: 6 + type: Transform + - uid: 11082 + components: + - pos: 21.5,-0.5 + parent: 6 + type: Transform + - uid: 11085 + components: + - pos: 20.5,12.5 + parent: 6 + type: Transform + - uid: 11087 + components: + - pos: 9.5,12.5 + parent: 6 + type: Transform + - uid: 11091 + components: + - pos: -11.5,-7.5 + parent: 6 + type: Transform + - uid: 11093 + components: + - pos: -40.5,0.5 + parent: 6 + type: Transform + - uid: 11098 + components: + - pos: -25.5,7.5 + parent: 6 + type: Transform + - uid: 11099 + components: + - pos: -6.5,-18.5 + parent: 6 + type: Transform + - uid: 11112 + components: + - pos: -46.5,-19.5 + parent: 6 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 3611 + components: + - pos: -4.5,-61.5 + parent: 6 + type: Transform + - uid: 11056 + components: + - pos: -57.5,-20.5 + parent: 6 + type: Transform + - uid: 11059 + components: + - pos: -47.5,-19.5 + parent: 6 + type: Transform + - uid: 11060 + components: + - pos: -44.5,-23.5 + parent: 6 + type: Transform + - uid: 11064 + components: + - pos: -28.5,-34.5 + parent: 6 + type: Transform + - uid: 11067 + components: + - pos: -27.5,-40.5 + parent: 6 + type: Transform + - uid: 11068 + components: + - pos: -34.5,-58.5 + parent: 6 + type: Transform + - uid: 11074 + components: + - pos: -11.5,-59.5 + parent: 6 + type: Transform + - uid: 11075 + components: + - pos: -0.5,-59.5 + parent: 6 + type: Transform + - uid: 11089 + components: + - pos: -5.5,-7.5 + parent: 6 + type: Transform + - uid: 11090 + components: + - pos: -11.5,-5.5 + parent: 6 + type: Transform + - uid: 11094 + components: + - pos: -40.5,4.5 + parent: 6 + type: Transform + - uid: 11095 + components: + - pos: -40.5,-7.5 + parent: 6 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 11058 + components: + - pos: -44.5,-19.5 + parent: 6 + type: Transform + - uid: 11061 + components: + - pos: -44.5,-26.5 + parent: 6 + type: Transform + - uid: 11069 + components: + - pos: -28.5,-61.5 + parent: 6 + type: Transform + - uid: 11076 + components: + - pos: 14.5,-45.5 + parent: 6 + type: Transform + - uid: 11086 + components: + - pos: 25.5,7.5 + parent: 6 + type: Transform + - uid: 11088 + components: + - pos: 10.5,12.5 + parent: 6 + type: Transform + - uid: 11092 + components: + - pos: -12.5,-7.5 + parent: 6 + type: Transform + - uid: 11171 + components: + - pos: -26.5,18.5 + parent: 6 + type: Transform +- proto: MarimbaInstrument + entities: + - uid: 8067 + components: + - pos: -11.5,10.5 + parent: 6 + type: Transform +- proto: Matchbox + entities: + - uid: 5183 + components: + - pos: -0.5177345,-1.0809245 + parent: 6 + type: Transform + - uid: 5946 + components: + - pos: 12.566873,18.334364 + parent: 6 + type: Transform +- proto: MatchstickSpent + entities: + - uid: 5184 + components: + - rot: -1.5707963267948966 rad + pos: -0.7307167,-0.8538667 + parent: 6 + type: Transform +- proto: MaterialCloth + entities: + - uid: 5107 + components: + - pos: -3.6319022,-7.4344172 + parent: 6 + type: Transform +- proto: MaterialDurathread + entities: + - uid: 5108 + components: + - pos: -3.3479273,-7.576328 + parent: 6 + type: Transform +- proto: MaterialWoodPlank1 + entities: + - uid: 7843 + components: + - pos: 27.559465,-0.5166031 + parent: 6 + type: Transform +- proto: MedicalBed + entities: + - uid: 1607 + components: + - pos: -26.5,-28.5 + parent: 6 + type: Transform + - uid: 1608 + components: + - pos: -26.5,-30.5 + parent: 6 + type: Transform + - uid: 1609 + components: + - pos: -26.5,-32.5 + parent: 6 + type: Transform +- proto: MedicalScanner + entities: + - uid: 14292 + components: + - pos: -34.5,-18.5 + parent: 6 + type: Transform +- proto: MedicalTechFab + entities: + - uid: 1693 + components: + - pos: -21.5,-25.5 + parent: 6 + type: Transform +- proto: MedkitAdvancedFilled + entities: + - uid: 3370 + components: + - pos: -25.501886,-27.410276 + parent: 6 + type: Transform + - uid: 6333 + components: + - pos: -0.32305157,10.691305 + parent: 6 + type: Transform +- proto: MedkitBruteFilled + entities: + - uid: 6334 + components: + - pos: -0.6609837,10.492631 + parent: 6 + type: Transform + - uid: 6431 + components: + - pos: -19.618067,-27.245295 + parent: 6 + type: Transform +- proto: MedkitBurnFilled + entities: + - uid: 6432 + components: + - pos: -19.362488,-27.472353 + parent: 6 + type: Transform +- proto: MedkitCombatFilled + entities: + - uid: 2829 + components: + - pos: 18.383371,25.533783 + parent: 6 + type: Transform +- proto: MedkitFilled + entities: + - uid: 6436 + components: + - pos: -18.382772,-27.472353 + parent: 6 + type: Transform +- proto: MedkitOxygenFilled + entities: + - uid: 6433 + components: + - pos: -19.121109,-27.216913 + parent: 6 + type: Transform +- proto: MedkitRadiationFilled + entities: + - uid: 6434 + components: + - pos: -18.908127,-27.472353 + parent: 6 + type: Transform +- proto: MedkitToxinFilled + entities: + - uid: 6435 + components: + - pos: -18.595753,-27.216913 + parent: 6 + type: Transform +- proto: MinimoogInstrument + entities: + - uid: 3801 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-56.5 + parent: 6 + type: Transform +- proto: Mirror + entities: + - uid: 5162 + components: + - pos: -8.5,-2.5 + parent: 6 + type: Transform + - uid: 5413 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-42.5 + parent: 6 + type: Transform + - uid: 5414 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-42.5 + parent: 6 + type: Transform + - uid: 5415 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-42.5 + parent: 6 + type: Transform + - uid: 6001 + components: + - pos: 12.5,24.5 + parent: 6 + type: Transform +- proto: MonkeyCubeBox + entities: + - uid: 6382 + components: + - pos: -7.6675234,-73.374825 + parent: 6 + type: Transform +- proto: MonkeyCubeWrapped + entities: + - uid: 4638 + components: + - pos: -6.3379927,-21.009727 + parent: 6 + type: Transform + - uid: 4639 + components: + - pos: -6.5463266,-21.280561 + parent: 6 + type: Transform +- proto: MopItem + entities: + - uid: 7636 + components: + - pos: 27.457216,5.473096 + parent: 6 + type: Transform +- proto: Morgue + entities: + - uid: 4505 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-24.5 + parent: 6 + 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: 4511 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-25.5 + parent: 6 + 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: 4518 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-26.5 + parent: 6 + 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: 4558 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-27.5 + parent: 6 + 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: MouseTimedSpawner + entities: + - uid: 13552 + components: + - pos: -7.5,-20.5 + parent: 6 + type: Transform +- proto: Multitool + entities: + - uid: 5359 + components: + - pos: -2.6900132,-51.289413 + parent: 6 + type: Transform + - uid: 6089 + components: + - pos: -4.749701,-78.328835 + parent: 6 + type: Transform + - uid: 6187 + components: + - pos: -36.361042,-18.306019 + parent: 6 + type: Transform + - uid: 6331 + components: + - pos: 0.9441077,8.567007 + parent: 6 + type: Transform + - uid: 6410 + components: + - pos: -48.27532,-25.597645 + parent: 6 + type: Transform + - uid: 6411 + components: + - pos: -48.036777,-25.359234 + parent: 6 + type: Transform + - uid: 6680 + components: + - pos: -22.366201,-61.434616 + parent: 6 + type: Transform +- proto: NanoManipulatorStockPart + entities: + - uid: 5393 + components: + - pos: -9.525309,-54.22893 + parent: 6 + type: Transform + - uid: 5394 + components: + - pos: -9.823483,-54.34246 + parent: 6 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 3463 + components: + - pos: -43.5,9.5 + parent: 6 + type: Transform + - uid: 4433 + components: + - pos: -47.5,-14.5 + parent: 6 + type: Transform + - uid: 4855 + components: + - pos: -30.5,12.5 + parent: 6 + type: Transform + - uid: 5006 + components: + - pos: -26.5,17.5 + parent: 6 + type: Transform + - uid: 5310 + components: + - pos: 19.5,-46.5 + parent: 6 + type: Transform + - uid: 5347 + components: + - pos: 5.5,-54.5 + parent: 6 + type: Transform + - uid: 5579 + components: + - pos: -62.5,-20.5 + parent: 6 + type: Transform + - uid: 6093 + components: + - pos: -3.5,-72.5 + parent: 6 + type: Transform + - uid: 6681 + components: + - pos: -24.5,-63.5 + parent: 6 + type: Transform + - uid: 7224 + components: + - pos: 24.5,-20.5 + parent: 6 + type: Transform + - uid: 10887 + components: + - pos: 23.5,10.5 + parent: 6 + type: Transform + - uid: 10914 + components: + - pos: 14.5,-21.5 + parent: 6 + type: Transform + - uid: 10923 + components: + - pos: -15.5,-55.5 + parent: 6 + type: Transform + - uid: 10981 + components: + - pos: -34.5,-32.5 + parent: 6 + type: Transform + - uid: 11006 + components: + - pos: -44.5,-25.5 + parent: 6 + type: Transform + - uid: 11026 + components: + - pos: -57.5,-18.5 + parent: 6 + type: Transform +- proto: NitrogenTankFilled + entities: + - uid: 7377 + components: + - pos: -7.6515384,-61.38327 + parent: 6 + type: Transform +- proto: NitrousOxideCanister + entities: + - uid: 3464 + components: + - pos: -43.5,15.5 + parent: 6 + type: Transform + - uid: 6095 + components: + - pos: -3.5,-74.5 + parent: 6 + type: Transform +- proto: NitrousOxideTankFilled + entities: + - uid: 6438 + components: + - pos: -32.419903,-14.511417 + parent: 6 + type: Transform +- proto: NuclearBomb + entities: + - uid: 4786 + components: + - pos: -20.5,3.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics +- proto: Omnitool + entities: + - uid: 5173 + components: + - flags: InContainer + type: MetaData + - parent: 5075 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: OperatingTable + entities: + - uid: 4543 + components: + - pos: -14.5,-49.5 + parent: 6 + type: Transform + - uid: 14291 + components: + - pos: -34.5,-16.5 + parent: 6 + type: Transform +- proto: OreProcessor + entities: + - uid: 7594 + components: + - pos: 4.5,-50.5 + parent: 6 + type: Transform +- proto: OxygenCanister + entities: + - uid: 3465 + components: + - pos: -43.5,11.5 + parent: 6 + type: Transform + - uid: 4434 + components: + - pos: -47.5,-15.5 + parent: 6 + type: Transform + - uid: 4848 + components: + - pos: -24.5,-7.5 + parent: 6 + type: Transform + - uid: 4856 + components: + - pos: -30.5,11.5 + parent: 6 + type: Transform + - uid: 5005 + components: + - pos: -26.5,16.5 + parent: 6 + type: Transform + - uid: 5309 + components: + - pos: 19.5,-45.5 + parent: 6 + type: Transform + - uid: 5346 + components: + - pos: 6.5,-54.5 + parent: 6 + type: Transform + - uid: 5578 + components: + - pos: -62.5,-19.5 + parent: 6 + type: Transform + - uid: 6094 + components: + - pos: -3.5,-73.5 + parent: 6 + type: Transform + - uid: 6682 + components: + - pos: -24.5,-62.5 + parent: 6 + type: Transform + - uid: 7225 + components: + - pos: 23.5,-20.5 + parent: 6 + type: Transform + - uid: 10886 + components: + - pos: 23.5,11.5 + parent: 6 + type: Transform + - uid: 10924 + components: + - pos: -16.5,-55.5 + parent: 6 + type: Transform + - uid: 10982 + components: + - pos: -34.5,-33.5 + parent: 6 + type: Transform + - uid: 11005 + components: + - pos: -44.5,-24.5 + parent: 6 + type: Transform + - uid: 11027 + components: + - pos: -57.5,-19.5 + parent: 6 + type: Transform + - uid: 13743 + components: + - pos: 5.5,0.5 + parent: 13645 + type: Transform +- proto: OxygenTank + entities: + - uid: 7378 + components: + - pos: -7.4848714,-61.44577 + parent: 6 + type: Transform +- proto: Paper + entities: + - uid: 4643 + components: + - pos: -28.609644,-18.461634 + parent: 6 + type: Transform + - content: "1:1:1\nwater:dexalin:oxygen\n \nturn the freezer down to 150 or below\n \nmake sure to have some warm clothes and maybe some hot cocoa for people when they get done\n" + type: Paper + - uid: 5148 + components: + - pos: -38.31556,-4.426944 + parent: 6 + type: Transform + - content: > + NT is having trouble getting supplies all the way out here so we only have one AME core for now. Make sure all four solar arrays are connected and calibrated or get those braniacs down in science to build us a couple generators in the meantime. + type: Paper + - uid: 5634 + components: + - pos: 15.201054,-29.238115 + parent: 6 + type: Transform + - uid: 5635 + components: + - pos: 15.357241,-29.351645 + parent: 6 + type: Transform + - uid: 6091 + components: + - rot: 3.141592653589793 rad + pos: -4.29534,-78.314644 + parent: 6 + type: Transform + - uid: 6092 + components: + - rot: 3.141592653589793 rad + pos: -4.465725,-78.328835 + parent: 6 + type: Transform + - uid: 7611 + components: + - rot: -1.5707963267948966 rad + pos: -50.78846,-48.41529 + parent: 6 + type: Transform + - uid: 7612 + components: + - rot: -1.5707963267948966 rad + pos: -50.68429,-48.54029 + parent: 6 + type: Transform + - uid: 7801 + components: + - rot: 3.141592653589793 rad + pos: 9.529046,-16.38472 + parent: 6 + type: Transform + - uid: 7802 + components: + - rot: 3.141592653589793 rad + pos: 9.341546,-16.468054 + parent: 6 + type: Transform + - uid: 7803 + components: + - rot: 3.141592653589793 rad + pos: 9.154046,-16.280554 + parent: 6 + type: Transform + - uid: 14085 + components: + - pos: -18.299112,-21.610239 + parent: 6 + type: Transform + - uid: 14086 + components: + - pos: -18.174112,-21.422739 + parent: 6 + type: Transform +- proto: PaperBin5 + entities: + - uid: 3722 + components: + - pos: 0.5,-0.5 + parent: 6 + type: Transform + - uid: 3728 + components: + - pos: -2.5,-7.5 + parent: 6 + type: Transform + - uid: 3729 + components: + - pos: 11.5,-42.5 + parent: 6 + type: Transform +- proto: PaperCaptainsThoughts + entities: + - uid: 3495 + components: + - pos: -3.5858924,-1.50383 + parent: 6 + type: Transform + - uid: 6030 + components: + - pos: 15.074664,19.62828 + parent: 6 + type: Transform + - uid: 14055 + components: + - pos: -3.6301029,-1.1501954 + parent: 6 + type: Transform + - uid: 14066 + components: + - pos: -3.4385238,-1.312278 + parent: 6 + type: Transform +- proto: PaperOffice + entities: + - uid: 2388 + components: + - pos: 9.519505,-32.34975 + parent: 6 + type: Transform + - uid: 3327 + components: + - pos: 9.3574,-32.24661 + parent: 6 + type: Transform + - uid: 4561 + components: + - pos: -0.64610034,-1.548034 + parent: 6 + type: Transform + - uid: 5186 + components: + - pos: -0.32188922,-0.6344782 + parent: 6 + type: Transform + - uid: 5187 + components: + - pos: -0.64610034,-0.48713046 + parent: 6 + type: Transform + - uid: 5260 + components: + - pos: -52.38101,-17.154945 + parent: 6 + type: Transform + - uid: 5509 + components: + - pos: -52.64627,-17.066538 + parent: 6 + type: Transform + - uid: 5949 + components: + - pos: -2.58343,9.793996 + parent: 6 + type: Transform + - uid: 5950 + components: + - pos: 14.942032,19.466198 + parent: 6 + type: Transform + - uid: 6029 + components: + - pos: 14.838875,19.701954 + parent: 6 + type: Transform + - uid: 14048 + components: + - pos: -52.55785,-17.405437 + parent: 6 + type: Transform + - uid: 14067 + components: + - pos: 13.163263,-42.28465 + parent: 6 + type: Transform + - uid: 14069 + components: + - pos: 13.354842,-42.38779 + parent: 6 + type: Transform + - uid: 14070 + components: + - pos: -11.293639,-56.567303 + parent: 6 + type: Transform + - uid: 14072 + components: + - pos: -11.470482,-56.346283 + parent: 6 + type: Transform + - uid: 14073 + components: + - pos: 14.556609,0.4773055 + parent: 6 + type: Transform + - uid: 14079 + components: + - pos: 14.335556,0.7425319 + parent: 6 + type: Transform + - uid: 14080 + components: + - pos: 14.733451,0.6835929 + parent: 6 + type: Transform + - uid: 14081 + components: + - pos: -2.671852,9.897139 + parent: 6 + type: Transform + - uid: 14295 + components: + - pos: -2.3918521,9.926609 + parent: 6 + type: Transform + - uid: 14296 + components: + - pos: 15.082604,-18.291609 + parent: 6 + type: Transform + - uid: 14297 + components: + - pos: 15.288921,-18.556835 + parent: 6 + type: Transform + - uid: 14298 + components: + - pos: 10.471988,-35.699043 + parent: 6 + type: Transform + - uid: 14299 + components: + - pos: 13.207474,-42.549873 + parent: 6 + type: Transform +- proto: PartRodMetal + entities: + - uid: 3229 + components: + - pos: -49.48453,-25.282488 + parent: 6 + type: Transform + - uid: 6368 + components: + - pos: -33.97272,-4.3672857 + parent: 6 + type: Transform +- proto: Pen + entities: + - uid: 6032 + components: + - pos: 14.97526,19.610237 + parent: 6 + type: Transform + - uid: 14275 + components: + - rot: -1.5707963267948966 rad + pos: 13.489696,-15.993451 + parent: 6 + type: Transform + - uid: 14276 + components: + - pos: 16.58859,-16.160116 + parent: 6 + type: Transform +- proto: PersonalAI + entities: + - uid: 5507 + components: + - flags: SessionSpecific + type: MetaData + - pos: -50.51295,-17.471216 + parent: 6 + type: Transform + - uid: 5851 + components: + - flags: SessionSpecific, InContainer + type: MetaData + - parent: 5852 + type: Transform + - canCollide: False + type: Physics + - uid: 6327 + components: + - flags: SessionSpecific + type: MetaData + - pos: -6.4823546,10.29305 + parent: 6 + type: Transform +- proto: PhoneInstrument + entities: + - uid: 5179 + components: + - pos: -0.049175262,-0.93523586 + parent: 6 + type: Transform +- proto: PianoInstrument + entities: + - uid: 4416 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-23.5 + parent: 6 + type: Transform +- proto: Pickaxe + entities: + - uid: 3806 + components: + - pos: -45.543205,-5.551377 + parent: 6 + type: Transform + - uid: 3964 + components: + - pos: -0.45833784,-64.641205 + parent: 6 + type: Transform + - uid: 5350 + components: + - pos: 4.4314346,-54.40463 + parent: 6 + type: Transform + - uid: 6042 + components: + - pos: -24.429323,11.583329 + parent: 6 + type: Transform + - uid: 13472 + components: + - pos: -58.49994,-27.622883 + parent: 6 + type: Transform + - uid: 13473 + components: + - pos: 24.569006,-18.62334 + parent: 6 + type: Transform +- proto: PineappleSeeds + entities: + - uid: 6343 + components: + - pos: 4.1699715,7.870975 + parent: 6 + type: Transform +- proto: PinpointerNuclear + entities: + - uid: 5072 + components: + - pos: -22.452705,3.4974205 + parent: 6 + type: Transform +- proto: PlasmaCanister + entities: + - uid: 3466 + components: + - pos: -43.5,17.5 + parent: 6 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 2967 + components: + - pos: -55.5,-34.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5602 + components: + - pos: 23.5,-38.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5603 + components: + - pos: 20.5,-38.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5604 + components: + - pos: 20.5,-34.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5605 + components: + - pos: 23.5,-34.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics +- proto: PlushieBee + entities: + - uid: 3308 + components: + - pos: -26.491262,28.565004 + parent: 6 + type: Transform +- proto: PlushieCarp + entities: + - uid: 9715 + components: + - pos: -7.8455157,-37.171967 + parent: 6 + type: Transform + - uid: 13534 + components: + - pos: -5.5760427,-38.306545 + parent: 6 + type: Transform +- proto: PlushieLizard + entities: + - uid: 7626 + components: + - pos: -46.459057,-39.48002 + parent: 6 + type: Transform + - uid: 13543 + components: + - pos: 25.352015,7.5901046 + parent: 6 + type: Transform +- proto: PlushieNar + entities: + - uid: 7451 + components: + - pos: -25.510965,-55.129906 + parent: 6 + type: Transform +- proto: PlushieNuke + entities: + - uid: 5073 + components: + - pos: -22.621544,4.592372 + parent: 6 + type: Transform + - nextAttack: 33302.4501269 + type: MeleeWeapon +- proto: PlushieRGBee + entities: + - uid: 7839 + components: + - pos: 26.475145,-2.5994675 + parent: 6 + type: Transform +- proto: PlushieSharkBlue + entities: + - uid: 13541 + components: + - pos: -23.522182,-83.46182 + parent: 6 + type: Transform +- proto: PlushieSharkGrey + entities: + - uid: 1503 + components: + - pos: -61.533226,-8.586437 + parent: 6 + type: Transform + - uid: 14042 + components: + - pos: -2.9528847,-36.921474 + parent: 6 + type: Transform +- proto: PlushieSharkPink + entities: + - uid: 7450 + components: + - pos: -28.597982,-56.52574 + parent: 6 + type: Transform + - uid: 13540 + components: + - pos: -56.558464,-30.556938 + parent: 6 + type: Transform + - uid: 14041 + components: + - pos: -8.140252,-38.807526 + parent: 6 + type: Transform +- proto: PlushieSpaceLizard + entities: + - uid: 13542 + components: + - pos: 22.47971,-47.58987 + parent: 6 + type: Transform +- proto: PlushieVox + entities: + - uid: 13485 + components: + - pos: 46.35333,-1.4987546 + parent: 6 + type: Transform +- proto: PonderingOrb + entities: + - uid: 5958 + components: + - flags: InContainer + type: MetaData + - parent: 5852 + type: Transform + - canCollide: False + type: Physics + - uid: 13644 + components: + - pos: 6.580597,-7.4501877 + parent: 10465 + type: Transform +- proto: PortableFlasher + entities: + - uid: 4873 + components: + - pos: 18.5,6.5 + parent: 6 + type: Transform +- proto: PortableScrubber + entities: + - uid: 4874 + components: + - pos: -25.5,-9.5 + parent: 6 + type: Transform + - uid: 4875 + components: + - pos: -24.5,-9.5 + parent: 6 + type: Transform + - uid: 4904 + components: + - pos: -32.5,7.5 + parent: 6 + type: Transform +- proto: PosterBroken + entities: + - uid: 6692 + components: + - pos: -85.5,-42.5 + parent: 6 + type: Transform + - uid: 6693 + components: + - pos: -77.5,-40.5 + parent: 6 + type: Transform + - uid: 6694 + components: + - pos: -77.5,-48.5 + parent: 6 + type: Transform + - uid: 6695 + components: + - pos: -81.5,-48.5 + parent: 6 + type: Transform + - uid: 6748 + components: + - pos: -74.5,-42.5 + parent: 6 + type: Transform +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 13135 + components: + - pos: -29.5,19.5 + parent: 6 + type: Transform +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 13136 + components: + - pos: -22.5,-7.5 + parent: 6 + type: Transform + - uid: 13137 + components: + - pos: -6.5,-0.5 + parent: 6 + type: Transform +- proto: PosterContrabandBorgFancyv2 + entities: + - uid: 13138 + components: + - pos: -50.5,-24.5 + parent: 6 + type: Transform +- proto: PosterContrabandBountyHunters + entities: + - uid: 13139 + components: + - pos: -47.5,-48.5 + parent: 6 + type: Transform +- proto: PosterContrabandClown + entities: + - uid: 13142 + components: + - pos: 17.5,-25.5 + parent: 6 + type: Transform + - uid: 13143 + components: + - pos: 13.5,-25.5 + parent: 6 + type: Transform +- proto: PosterContrabandDonutCorp + entities: + - uid: 13375 + components: + - pos: -20.5,-47.5 + parent: 6 + type: Transform + - uid: 13821 + components: + - pos: -67.5,-14.5 + parent: 6 + type: Transform +- proto: PosterContrabandEAT + entities: + - uid: 13146 + components: + - pos: -4.5,-24.5 + parent: 6 + type: Transform +- proto: PosterContrabandFreeDrone + entities: + - uid: 13148 + components: + - pos: -49.5,-22.5 + parent: 6 + type: Transform +- proto: PosterContrabandFunPolice + entities: + - uid: 5543 + components: + - pos: -10.5,-8.5 + parent: 6 + type: Transform + - uid: 13149 + components: + - pos: 16.5,7.5 + parent: 6 + type: Transform +- proto: PosterContrabandGreyTide + entities: + - uid: 13150 + components: + - pos: -19.5,8.5 + parent: 6 + type: Transform +- proto: PosterContrabandHackingGuide + entities: + - uid: 13151 + components: + - pos: -33.5,-5.5 + parent: 6 + type: Transform +- proto: PosterContrabandKosmicheskayaStantsiya + entities: + - uid: 13156 + components: + - pos: -27.5,-58.5 + parent: 6 + type: Transform +- proto: PosterContrabandLustyExomorph + entities: + - uid: 13154 + components: + - pos: -39.5,-36.5 + parent: 6 + type: Transform +- proto: PosterContrabandNuclearDeviceInformational + entities: + - uid: 13165 + components: + - pos: -20.5,5.5 + parent: 6 + type: Transform +- proto: PosterContrabandPower + entities: + - uid: 13167 + components: + - pos: -39.5,2.5 + parent: 6 + type: Transform +- proto: PosterContrabandTools + entities: + - uid: 14138 + components: + - pos: -18.5,5.5 + parent: 6 + type: Transform +- proto: PosterContrabandVoteWeh + entities: + - uid: 13172 + components: + - pos: -44.5,-41.5 + parent: 6 + type: Transform +- proto: PosterContrabandWehWatches + entities: + - uid: 13171 + components: + - pos: -46.5,-38.5 + parent: 6 + type: Transform +- proto: PosterLegitBuild + entities: + - uid: 13140 + components: + - pos: -26.5,-4.5 + parent: 6 + type: Transform +- proto: PosterLegitCleanliness + entities: + - uid: 13141 + components: + - pos: 29.5,4.5 + parent: 6 + type: Transform +- proto: PosterLegitCohibaRobustoAd + entities: + - uid: 13144 + components: + - pos: 8.5,-17.5 + parent: 6 + type: Transform +- proto: PosterLegitDickGumshue + entities: + - uid: 14126 + components: + - pos: -48.5,-52.5 + parent: 6 + type: Transform +- proto: PosterLegitEnlist + entities: + - uid: 13147 + components: + - pos: 13.5,-9.5 + parent: 6 + type: Transform +- proto: PosterLegitHelpOthers + entities: + - uid: 13321 + components: + - pos: 3.5,-8.5 + parent: 6 + type: Transform +- proto: PosterLegitHighClassMartini + entities: + - uid: 13152 + components: + - pos: -39.5,-50.5 + parent: 6 + type: Transform +- proto: PosterLegitJustAWeekAway + entities: + - uid: 13153 + components: + - pos: -32.5,-38.5 + parent: 6 + type: Transform +- proto: PosterLegitLoveIan + entities: + - uid: 13155 + components: + - pos: 2.5,-4.5 + parent: 6 + type: Transform +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 13320 + components: + - pos: 1.5,-8.5 + parent: 6 + type: Transform +- proto: PosterLegitNoERP + entities: + - uid: 13164 + components: + - pos: -34.5,-38.5 + parent: 6 + type: Transform +- proto: PosterLegitPDAAd + entities: + - uid: 13166 + components: + - pos: -5.5,-9.5 + parent: 6 + type: Transform +- proto: PosterLegitReportCrimes + entities: + - uid: 13168 + components: + - pos: 16.5,-2.5 + parent: 6 + type: Transform +- proto: PosterLegitScience + entities: + - uid: 13169 + components: + - pos: -14.5,-46.5 + parent: 6 + type: Transform +- proto: PosterMapMoose + entities: + - uid: 450 + components: + - pos: 38.5,-9.5 + parent: 6 + type: Transform + - uid: 13157 + components: + - pos: -45.5,-9.5 + parent: 6 + type: Transform + - uid: 13158 + components: + - pos: -21.5,-9.5 + parent: 6 + type: Transform + - uid: 13159 + components: + - pos: 0.5,-9.5 + parent: 6 + type: Transform + - uid: 13160 + components: + - pos: 25.5,-9.5 + parent: 6 + type: Transform + - uid: 13162 + components: + - pos: 2.5,-42.5 + parent: 6 + type: Transform + - uid: 13163 + components: + - pos: -29.5,-42.5 + parent: 6 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 2648 + components: + - pos: -17.5,-20.5 + parent: 6 + type: Transform + - uid: 3181 + components: + - pos: -19.5,-14.5 + parent: 6 + type: Transform + - uid: 3897 + components: + - pos: -13.5,-36.5 + parent: 6 + type: Transform + - uid: 4585 + components: + - pos: -13.5,-33.5 + parent: 6 + type: Transform + - uid: 5175 + components: + - pos: -6.5,4.5 + parent: 6 + type: Transform + - uid: 5176 + components: + - pos: -2.5,4.5 + parent: 6 + type: Transform + - uid: 5207 + components: + - pos: -6.5,6.5 + parent: 6 + type: Transform + - uid: 5208 + components: + - pos: -2.5,6.5 + parent: 6 + type: Transform + - uid: 5459 + components: + - pos: -51.5,-47.5 + parent: 6 + type: Transform + - uid: 5460 + components: + - pos: -51.5,-51.5 + parent: 6 + type: Transform + - uid: 6513 + components: + - pos: 4.5,-36.5 + parent: 6 + type: Transform + - uid: 6514 + components: + - pos: 4.5,-33.5 + parent: 6 + type: Transform + - uid: 7361 + components: + - pos: -37.5,-20.5 + parent: 6 + type: Transform + - uid: 7649 + components: + - pos: -58.5,-13.5 + parent: 6 + type: Transform + - uid: 7650 + components: + - pos: -62.5,-13.5 + parent: 6 + type: Transform + - uid: 7651 + components: + - pos: -50.5,-10.5 + parent: 6 + type: Transform + - uid: 7661 + components: + - pos: 25.5,-12.5 + parent: 6 + type: Transform + - uid: 7666 + components: + - pos: 37.5,-10.5 + parent: 6 + type: Transform + - uid: 7692 + components: + - pos: 30.5,9.5 + parent: 6 + type: Transform + - uid: 7825 + components: + - pos: -20.5,-43.5 + parent: 6 + type: Transform + - uid: 7828 + components: + - pos: -36.5,-45.5 + parent: 6 + type: Transform + - uid: 9037 + components: + - pos: -13.5,-18.5 + parent: 6 + type: Transform + - uid: 9171 + components: + - pos: -13.5,-24.5 + parent: 6 + type: Transform + - uid: 13562 + components: + - pos: -68.5,-10.5 + parent: 6 + type: Transform + - uid: 13571 + components: + - pos: -50.5,-44.5 + parent: 6 + type: Transform + - uid: 13572 + components: + - pos: 6.5,-45.5 + parent: 6 + type: Transform + - uid: 13573 + components: + - pos: 7.5,-18.5 + parent: 6 + type: Transform + - uid: 13574 + components: + - pos: -1.5,-26.5 + parent: 6 + type: Transform + - uid: 13575 + components: + - pos: 12.5,4.5 + parent: 6 + type: Transform + - uid: 13576 + components: + - pos: -5.5,-10.5 + parent: 6 + type: Transform + - uid: 13577 + components: + - pos: 0.5,-10.5 + parent: 6 + type: Transform + - uid: 13579 + components: + - pos: -49.5,-16.5 + parent: 6 + type: Transform + - uid: 13580 + components: + - pos: -54.5,-16.5 + parent: 6 + type: Transform +- proto: PottedPlantRandomPlastic + entities: + - uid: 7619 + components: + - pos: -42.5,-33.5 + parent: 6 + type: Transform + - uid: 7620 + components: + - pos: -43.5,-38.5 + parent: 6 + type: Transform +- proto: PottedPlantRD + entities: + - uid: 5358 + components: + - pos: -1.5,-50.5 + parent: 6 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 4437 + components: + - pos: -47.5,-16.5 + parent: 6 + type: Transform + - uid: 4849 + components: + - pos: -28.5,-8.5 + parent: 6 + type: Transform + - uid: 5193 + components: + - pos: -17.5,8.5 + parent: 6 + type: Transform + - uid: 5353 + components: + - pos: 4.5,-51.5 + parent: 6 + type: Transform + - uid: 5381 + components: + - pos: -9.5,-53.5 + parent: 6 + type: Transform + - uid: 5513 + components: + - pos: -52.5,-19.5 + parent: 6 + type: Transform + - uid: 5581 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-18.5 + parent: 6 + type: Transform + - uid: 6332 + components: + - pos: 0.5,8.5 + parent: 6 + type: Transform + - uid: 6364 + components: + - pos: -30.5,0.5 + parent: 6 + type: Transform + - uid: 6409 + components: + - pos: -47.5,-25.5 + parent: 6 + type: Transform + - uid: 14317 + components: + - pos: -17.5,-21.5 + parent: 6 + type: Transform + - uid: 14319 + components: + - pos: -13.5,-16.5 + parent: 6 + type: Transform + - uid: 14320 + components: + - pos: 10.5,-36.5 + parent: 6 + type: Transform + - uid: 14323 + components: + - pos: 8.5,-5.5 + parent: 6 + type: Transform + - uid: 14325 + components: + - pos: 10.5,-20.5 + parent: 6 + type: Transform +- proto: Poweredlight + entities: + - uid: 12 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2575 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,-7.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2576 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,-7.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2893 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-7.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2894 + components: + - rot: -1.5707963267948966 rad + pos: -66.5,-7.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3014 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3612 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3642 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-76.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4941 + components: + - pos: -16.5,-10.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5535 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-22.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5559 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-16.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6412 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-26.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6423 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-34.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6424 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-40.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6425 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-48.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6559 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-45.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6561 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-46.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8189 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-4.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8425 + components: + - pos: -36.5,4.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8426 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-3.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8427 + components: + - pos: -25.5,-0.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8428 + components: + - pos: -25.5,4.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8429 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,3.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8430 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,3.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8431 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-1.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8432 + components: + - pos: -22.5,-3.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8433 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-6.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8434 + components: + - pos: -33.5,-6.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8435 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-6.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8438 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-16.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8439 + components: + - pos: -20.5,-19.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8440 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-76.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8442 + components: + - pos: -38.5,-17.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8443 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-73.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8444 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-32.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8457 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-40.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8458 + components: + - pos: -39.5,-29.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8459 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-35.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8460 + components: + - pos: -46.5,-29.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8461 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-32.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8462 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-38.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8471 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,-44.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8472 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-33.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8473 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-25.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8474 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-19.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8475 + components: + - pos: -59.5,-10.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8476 + components: + - rot: 3.141592653589793 rad + pos: -61.5,-14.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8477 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-17.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8478 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-15.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8479 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-26.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8480 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-27.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8491 + components: + - pos: -8.5,-24.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8492 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-20.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8493 + components: + - pos: -8.5,-14.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8500 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-17.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8501 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8502 + components: + - pos: 8.5,-18.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8504 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-32.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8505 + components: + - pos: 15.5,-34.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8506 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-38.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8507 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-32.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8508 + components: + - pos: 3.5,-43.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8509 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-40.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8510 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-42.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8513 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-27.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8514 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,4.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8515 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,6.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8516 + components: + - pos: 11.5,9.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8519 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8520 + components: + - pos: 9.5,-3.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8521 + components: + - pos: 18.5,-6.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8522 + components: + - pos: 2.5,-9.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8523 + components: + - pos: -2.5,-5.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8524 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8527 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8529 + components: + - rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8530 + components: + - rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8531 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8532 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,7.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8533 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8534 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-49.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8535 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-51.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8536 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-56.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8537 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-51.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8538 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-52.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8539 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-50.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8540 + components: + - pos: -4.5,-58.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8542 + components: + - pos: -7.5,-61.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8543 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-70.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8545 + components: + - pos: 0.5,-75.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8546 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-70.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8547 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-73.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8548 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-78.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8549 + components: + - pos: -4.5,-83.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8642 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,15.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8643 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,20.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8644 + components: + - rot: 3.141592653589793 rad + pos: -33.5,9.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - type: Timer + - uid: 8645 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,10.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8646 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,18.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8647 + components: + - pos: -32.5,24.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8648 + components: + - pos: -36.5,24.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8649 + components: + - rot: 3.141592653589793 rad + pos: -36.5,28.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8650 + components: + - rot: 3.141592653589793 rad + pos: -32.5,28.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9681 + components: + - pos: -8.5,-83.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9682 + components: + - pos: -4.5,-83.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9683 + components: + - pos: -0.5,-83.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9685 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-79.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10756 + components: + - pos: -37.5,-10.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10757 + components: + - rot: 3.141592653589793 rad + pos: -16.5,6.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10758 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,0.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10759 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-7.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10760 + components: + - pos: -18.5,-3.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10762 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,12.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10768 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-12.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10769 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-12.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10775 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,6.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10776 + components: + - rot: 3.141592653589793 rad + pos: 45.5,1.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10777 + components: + - pos: 45.5,-4.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10778 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-3.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10779 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-12.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10780 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-3.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10781 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,6.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10782 + components: + - pos: 13.5,-10.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10784 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-12.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10785 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-12.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10829 + components: + - pos: -10.5,-43.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10830 + components: + - pos: -22.5,-43.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10831 + components: + - pos: -32.5,-43.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10832 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-44.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10846 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-12.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10847 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13760 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-6.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13767 + components: + - pos: 7.5,-6.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13768 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-12.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13799 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-12.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13800 + components: + - rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13801 + components: + - rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13802 + components: + - pos: 12.5,20.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13803 + components: + - rot: 3.141592653589793 rad + pos: 12.5,22.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13804 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13805 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-17.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13807 + components: + - pos: -40.5,-43.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13809 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,7.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13810 + components: + - rot: 3.141592653589793 rad + pos: -13.5,6.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13827 + components: + - pos: -68.5,-10.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13832 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13833 + components: + - pos: 12.5,-6.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13835 + components: + - rot: 3.141592653589793 rad + pos: 16.5,18.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13836 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,23.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightExterior + entities: + - uid: 3189 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-36.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5205 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-30.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightLED + entities: + - uid: 4944 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-16.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4945 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-28.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5520 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-22.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6405 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-16.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredLightPostSmall + entities: + - uid: 8830 + components: + - pos: -62.5,-22.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10248 + components: + - pos: -24.5,-66.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10798 + components: + - pos: 27.5,-22.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10804 + components: + - pos: 6.5,-61.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightSodium + entities: + - uid: 3730 + components: + - pos: -4.5,-30.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8424 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,15.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 14043 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-39.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 2649 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-52.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2652 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-50.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4946 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-39.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4947 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-41.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8445 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-29.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8446 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-31.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8447 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-33.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8448 + components: + - pos: -20.5,-37.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8449 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-40.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8450 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-37.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8453 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-39.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8455 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-41.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8456 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-41.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8463 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-54.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8464 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-54.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8465 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-49.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8466 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-49.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8467 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-55.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8468 + components: + - pos: -27.5,-47.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8469 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-49.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8470 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-48.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8489 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-37.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8490 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-32.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8494 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8495 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-22.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8496 + components: + - pos: -0.5,-14.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8497 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-26.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8498 + components: + - pos: -1.5,-19.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8499 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8503 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-24.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8511 + components: + - pos: 21.5,-34.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8512 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-38.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8517 + components: + - pos: 8.5,0.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8518 + components: + - rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8528 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8636 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,19.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8637 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,17.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8638 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,15.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8639 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,13.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8640 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,11.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8641 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,9.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9818 + components: + - pos: -6.5,-20.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10749 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-1.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10754 + components: + - pos: -37.5,6.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10755 + components: + - rot: 3.141592653589793 rad + pos: -30.5,6.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - type: Timer + - uid: 10761 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,11.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10763 + components: + - pos: 22.5,12.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10764 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,4.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10765 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10766 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-4.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10767 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-4.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10786 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-30.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10787 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-28.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10788 + components: + - pos: 18.5,-21.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10789 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-22.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10799 + components: + - pos: 13.5,-44.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10800 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-42.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10801 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10802 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-17.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10803 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-54.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10811 + components: + - pos: -2.5,-48.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10812 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-59.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10813 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-58.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10814 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-59.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10815 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-50.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10816 + components: + - pos: -24.5,-58.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10817 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-62.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10820 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-58.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10821 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-49.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10822 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-52.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10823 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-54.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10824 + components: + - pos: -44.5,-47.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10833 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-39.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10834 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-33.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10835 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-35.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10836 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-27.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10837 + components: + - pos: -43.5,-23.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10838 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-21.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10839 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-25.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10840 + components: + - rot: 3.141592653589793 rad + pos: -59.5,-16.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 10841 + components: + - rot: 1.5707963267948966 rad + pos: -62.5,-19.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13769 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,22.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13808 + components: + - rot: 3.141592653589793 rad + pos: -23.5,7.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13834 + components: + - pos: -8.5,-6.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 13837 + components: + - pos: -3.5,-14.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Protolathe + entities: + - uid: 4479 + components: + - pos: -9.5,-51.5 + parent: 6 + type: Transform +- proto: Rack + entities: + - uid: 269 + components: + - pos: 17.5,8.5 + parent: 6 + type: Transform + - uid: 3413 + components: + - pos: 14.5,3.5 + parent: 6 + type: Transform + - uid: 3421 + components: + - pos: 17.5,-6.5 + parent: 6 + type: Transform + - uid: 3428 + components: + - pos: 16.5,1.5 + parent: 6 + type: Transform + - uid: 3884 + components: + - pos: -20.5,-25.5 + parent: 6 + type: Transform + - uid: 4382 + components: + - pos: -12.5,6.5 + parent: 6 + type: Transform + - uid: 4429 + components: + - pos: -44.5,-14.5 + parent: 6 + type: Transform + - uid: 4430 + components: + - pos: -44.5,-15.5 + parent: 6 + type: Transform + - uid: 4431 + components: + - pos: -44.5,-16.5 + parent: 6 + type: Transform + - uid: 4432 + components: + - pos: -44.5,-17.5 + parent: 6 + type: Transform + - uid: 4506 + components: + - pos: 18.5,8.5 + parent: 6 + type: Transform + - uid: 4507 + components: + - pos: 19.5,8.5 + parent: 6 + type: Transform + - uid: 4508 + components: + - pos: 17.5,4.5 + parent: 6 + type: Transform + - uid: 4509 + components: + - pos: 18.5,4.5 + parent: 6 + type: Transform + - uid: 4510 + components: + - pos: 19.5,4.5 + parent: 6 + type: Transform + - uid: 4632 + components: + - pos: -2.5,-14.5 + parent: 6 + type: Transform + - uid: 4882 + components: + - pos: -33.5,-6.5 + parent: 6 + type: Transform + - uid: 5279 + components: + - pos: 1.5,-38.5 + parent: 6 + type: Transform + - uid: 5348 + components: + - pos: 4.5,-54.5 + parent: 6 + type: Transform + - uid: 5596 + components: + - pos: 16.5,-38.5 + parent: 6 + type: Transform + - uid: 5861 + components: + - pos: -23.5,-54.5 + parent: 6 + type: Transform + - uid: 6040 + components: + - pos: -4.5,-61.5 + parent: 6 + type: Transform + - uid: 6200 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-6.5 + parent: 6 + type: Transform + - uid: 6678 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-61.5 + parent: 6 + type: Transform + - uid: 7220 + components: + - pos: 22.5,-22.5 + parent: 6 + type: Transform + - uid: 7376 + components: + - pos: -7.5,-61.5 + parent: 6 + type: Transform + - uid: 7385 + components: + - pos: -7.5,-69.5 + parent: 6 + type: Transform + - uid: 7386 + components: + - pos: -4.5,-69.5 + parent: 6 + type: Transform + - uid: 7840 + components: + - pos: 28.5,-2.5 + parent: 6 + type: Transform + - uid: 7841 + components: + - pos: 27.5,1.5 + parent: 6 + type: Transform + - uid: 7842 + components: + - pos: 28.5,1.5 + parent: 6 + type: Transform + - uid: 10895 + components: + - pos: 22.5,-5.5 + parent: 6 + type: Transform + - uid: 10925 + components: + - pos: -17.5,-59.5 + parent: 6 + type: Transform + - uid: 10933 + components: + - pos: -11.5,-59.5 + parent: 6 + type: Transform + - uid: 10934 + components: + - pos: -0.5,-59.5 + parent: 6 + type: Transform + - uid: 10948 + components: + - pos: -34.5,-58.5 + parent: 6 + type: Transform + - uid: 10979 + components: + - pos: -27.5,-40.5 + parent: 6 + type: Transform + - uid: 10998 + components: + - pos: -28.5,-34.5 + parent: 6 + type: Transform + - uid: 11004 + components: + - pos: -44.5,-23.5 + parent: 6 + type: Transform + - uid: 11014 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-19.5 + parent: 6 + type: Transform + - uid: 11028 + components: + - pos: -57.5,-20.5 + parent: 6 + type: Transform + - uid: 11033 + components: + - pos: -40.5,-7.5 + parent: 6 + type: Transform + - uid: 11037 + components: + - pos: -40.5,4.5 + parent: 6 + type: Transform + - uid: 11045 + components: + - pos: -5.5,-7.5 + parent: 6 + type: Transform + - uid: 11050 + components: + - pos: -11.5,-5.5 + parent: 6 + type: Transform + - uid: 11170 + components: + - pos: -26.5,18.5 + parent: 6 + type: Transform +- proto: RadioHandheld + entities: + - uid: 6336 + components: + - pos: -2.338426,9.537729 + parent: 6 + type: Transform + - uid: 14309 + components: + - pos: 16.755468,1.4682413 + parent: 6 + type: Transform + - uid: 14310 + components: + - pos: 11.689532,8.751254 + parent: 6 + type: Transform + - uid: 14311 + components: + - pos: 14.567074,0.98600256 + parent: 6 + type: Transform + - uid: 14312 + components: + - pos: 17.71683,-6.2649827 + parent: 6 + type: Transform + - uid: 14313 + components: + - pos: -21.305681,-5.3845315 + parent: 6 + type: Transform + - uid: 14314 + components: + - pos: -32.35327,0.71963346 + parent: 6 + type: Transform + - uid: 14315 + components: + - pos: -28.69588,-5.2698426 + parent: 6 + type: Transform + - uid: 14316 + components: + - pos: -36.295105,22.529224 + parent: 6 + type: Transform +- proto: Railing + entities: + - uid: 183 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-8.5 + parent: 6 + type: Transform + - uid: 218 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-7.5 + parent: 6 + type: Transform + - uid: 1741 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-3.5 + parent: 6 + type: Transform + - uid: 1742 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 6 + type: Transform + - uid: 1743 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-5.5 + parent: 6 + type: Transform + - uid: 1744 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-6.5 + parent: 6 + type: Transform + - uid: 2512 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-44.5 + parent: 6 + type: Transform + - uid: 3952 + components: + - pos: -56.5,-35.5 + parent: 6 + type: Transform + - uid: 3953 + components: + - pos: -57.5,-35.5 + parent: 6 + type: Transform + - uid: 3954 + components: + - pos: -58.5,-35.5 + parent: 6 + type: Transform + - uid: 3956 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,-34.5 + parent: 6 + type: Transform + - uid: 3957 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,-33.5 + parent: 6 + type: Transform + - uid: 3958 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,-32.5 + parent: 6 + type: Transform + - uid: 3960 + components: + - rot: 3.141592653589793 rad + pos: -58.5,-31.5 + parent: 6 + type: Transform + - uid: 3961 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-31.5 + parent: 6 + type: Transform + - uid: 3962 + components: + - rot: 3.141592653589793 rad + pos: -56.5,-31.5 + parent: 6 + type: Transform + - uid: 4407 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-26.5 + parent: 6 + type: Transform + - uid: 4408 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-25.5 + parent: 6 + type: Transform + - uid: 4409 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 6 + type: Transform + - uid: 4410 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-23.5 + parent: 6 + type: Transform + - uid: 4411 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-22.5 + parent: 6 + type: Transform + - uid: 4412 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-21.5 + parent: 6 + type: Transform + - uid: 4414 + components: + - pos: 10.5,-20.5 + parent: 6 + type: Transform + - uid: 5212 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 6 + type: Transform + - uid: 5213 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,7.5 + parent: 6 + type: Transform + - uid: 5214 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 6 + type: Transform + - uid: 5258 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-76.5 + parent: 6 + type: Transform + - uid: 5396 + components: + - pos: -17.5,-49.5 + parent: 6 + type: Transform + - uid: 5398 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-48.5 + parent: 6 + type: Transform + - uid: 5428 + components: + - pos: -51.5,-33.5 + parent: 6 + type: Transform + - uid: 5430 + components: + - pos: -52.5,-33.5 + parent: 6 + type: Transform + - uid: 5431 + components: + - pos: -53.5,-33.5 + parent: 6 + type: Transform + - uid: 5985 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,18.5 + parent: 6 + type: Transform + - uid: 5986 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,19.5 + parent: 6 + type: Transform + - uid: 5988 + components: + - pos: 18.5,20.5 + parent: 6 + type: Transform + - uid: 5989 + components: + - pos: 19.5,20.5 + parent: 6 + type: Transform + - uid: 6041 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,18.5 + parent: 6 + type: Transform + - uid: 13298 + components: + - pos: -52.5,-44.5 + parent: 6 + type: Transform + - uid: 14293 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-76.5 + parent: 6 + type: Transform + - uid: 14294 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-76.5 + parent: 6 + type: Transform +- proto: RailingCorner + entities: + - uid: 3955 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,-35.5 + parent: 6 + type: Transform + - uid: 3959 + components: + - rot: 3.141592653589793 rad + pos: -59.5,-31.5 + parent: 6 + type: Transform + - uid: 5397 + components: + - pos: -16.5,-49.5 + parent: 6 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 4413 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 6 + type: Transform + - uid: 5399 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-47.5 + parent: 6 + type: Transform + - uid: 5432 + components: + - rot: 3.141592653589793 rad + pos: -54.5,-33.5 + parent: 6 + type: Transform + - uid: 5987 + components: + - rot: 3.141592653589793 rad + pos: 17.5,20.5 + parent: 6 + type: Transform +- proto: RandomArcade + entities: + - uid: 514 + components: + - pos: 26.5,-4.5 + parent: 6 + type: Transform + - uid: 515 + components: + - pos: 26.5,-6.5 + parent: 6 + type: Transform + - uid: 516 + components: + - pos: 28.5,-4.5 + parent: 6 + type: Transform + - uid: 517 + components: + - pos: 28.5,-6.5 + parent: 6 + type: Transform + - uid: 5462 + components: + - pos: -48.5,-47.5 + parent: 6 + type: Transform + - uid: 6216 + components: + - pos: -47.5,-33.5 + parent: 6 + type: Transform + - uid: 11021 + components: + - pos: -66.5,-15.5 + parent: 6 + type: Transform + - uid: 13490 + components: + - pos: 12.5,20.5 + parent: 6 + type: Transform +- proto: RandomArtifactSpawner + entities: + - uid: 3618 + components: + - pos: -2.5,-80.5 + parent: 6 + type: Transform + - uid: 13477 + components: + - pos: -6.5,-80.5 + parent: 6 + type: Transform +- proto: RandomArtifactSpawner20 + entities: + - uid: 4261 + components: + - pos: 15.5,-51.5 + parent: 6 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 11066 + components: + - pos: -50.5,-37.5 + parent: 6 + type: Transform +- proto: RandomDrinkGlass + entities: + - uid: 5904 + components: + - pos: -1.5,-46.5 + parent: 6 + type: Transform + - uid: 7617 + components: + - pos: -47.5,-31.5 + parent: 6 + type: Transform + - uid: 9712 + components: + - pos: -7.5,-31.5 + parent: 6 + type: Transform + - uid: 9713 + components: + - pos: -4.5,-30.5 + parent: 6 + type: Transform + - uid: 11079 + components: + - pos: 18.5,-32.5 + parent: 6 + type: Transform + - uid: 11080 + components: + - pos: 20.5,-22.5 + parent: 6 + type: Transform + - uid: 11159 + components: + - pos: 0.5,-18.5 + parent: 6 + type: Transform + - uid: 11160 + components: + - pos: 2.5,-18.5 + parent: 6 + type: Transform + - uid: 11161 + components: + - pos: 3.5,-16.5 + parent: 6 + type: Transform + - uid: 11162 + components: + - pos: 3.5,-17.5 + parent: 6 + type: Transform + - uid: 11163 + components: + - pos: 3.5,-15.5 + parent: 6 + type: Transform +- proto: RandomFoodBakedSingle + entities: + - uid: 7616 + components: + - pos: -38.5,-33.5 + parent: 6 + type: Transform + - uid: 11063 + components: + - pos: -28.5,-31.5 + parent: 6 + type: Transform + - uid: 11083 + components: + - pos: 22.5,-0.5 + parent: 6 + type: Transform + - uid: 11096 + components: + - pos: -40.5,-0.5 + parent: 6 + type: Transform + - uid: 11153 + components: + - pos: -10.5,-9.5 + parent: 6 + type: Transform + - uid: 11155 + components: + - pos: -1.5,-21.5 + parent: 6 + type: Transform +- proto: RandomFoodBakedWhole + entities: + - uid: 11154 + components: + - pos: -4.5,-25.5 + parent: 6 + type: Transform +- proto: RandomFoodMeal + entities: + - uid: 11084 + components: + - pos: 21.5,12.5 + parent: 6 + type: Transform + - uid: 11156 + components: + - pos: -2.5,-22.5 + parent: 6 + type: Transform + - uid: 11157 + components: + - pos: -2.5,-21.5 + parent: 6 + type: Transform +- proto: RandomFoodSingle + entities: + - uid: 7625 + components: + - pos: -46.5,-33.5 + parent: 6 + type: Transform + - uid: 11057 + components: + - pos: -45.5,-19.5 + parent: 6 + type: Transform + - uid: 11073 + components: + - pos: -24.5,-58.5 + parent: 6 + type: Transform + - uid: 11158 + components: + - pos: 1.5,-22.5 + parent: 6 + type: Transform +- proto: RandomInstruments + entities: + - uid: 5511 + components: + - pos: -51.5,-17.5 + parent: 6 + type: Transform + - uid: 5631 + components: + - pos: 14.5,-29.5 + parent: 6 + type: Transform + - uid: 6017 + components: + - pos: 15.5,20.5 + parent: 6 + type: Transform + - uid: 7600 + components: + - pos: -43.5,-52.5 + parent: 6 + type: Transform + - uid: 7618 + components: + - pos: -45.5,-33.5 + parent: 6 + type: Transform +- proto: RandomPainting + entities: + - uid: 13567 + components: + - pos: -39.5,-32.5 + parent: 6 + type: Transform + - uid: 13568 + components: + - pos: -40.5,-37.5 + parent: 6 + type: Transform + - uid: 13569 + components: + - pos: -46.5,-32.5 + parent: 6 + type: Transform + - uid: 13570 + components: + - pos: -46.5,-28.5 + parent: 6 + type: Transform +- proto: RandomPosterAny + entities: + - uid: 13347 + components: + - pos: 13.5,-23.5 + parent: 6 + type: Transform + - uid: 13348 + components: + - pos: 12.5,-20.5 + parent: 6 + type: Transform + - uid: 13358 + components: + - pos: -10.5,-57.5 + parent: 6 + type: Transform + - uid: 13359 + components: + - pos: -1.5,-57.5 + parent: 6 + type: Transform + - uid: 13387 + components: + - pos: 10.5,-27.5 + parent: 6 + type: Transform + - uid: 13388 + components: + - pos: 12.5,-38.5 + parent: 6 + type: Transform + - uid: 13389 + components: + - pos: 15.5,-41.5 + parent: 6 + type: Transform + - uid: 13390 + components: + - pos: 20.5,-41.5 + parent: 6 + type: Transform + - uid: 13391 + components: + - pos: 18.5,-33.5 + parent: 6 + type: Transform + - uid: 13392 + components: + - pos: 12.5,-32.5 + parent: 6 + type: Transform + - uid: 13395 + components: + - pos: 16.5,-20.5 + parent: 6 + type: Transform + - uid: 13410 + components: + - pos: -51.5,-20.5 + parent: 6 + type: Transform + - uid: 13412 + components: + - pos: -48.5,-16.5 + parent: 6 + type: Transform + - uid: 13420 + components: + - pos: -23.5,-38.5 + parent: 6 + type: Transform + - uid: 13451 + components: + - pos: -2.5,-18.5 + parent: 6 + type: Transform + - uid: 13452 + components: + - pos: 0.5,-27.5 + parent: 6 + type: Transform + - uid: 14129 + components: + - pos: -55.5,-17.5 + parent: 6 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 13369 + components: + - pos: -35.5,-60.5 + parent: 6 + type: Transform + - uid: 13370 + components: + - pos: -27.5,-60.5 + parent: 6 + type: Transform + - uid: 13371 + components: + - pos: -18.5,-58.5 + parent: 6 + type: Transform + - uid: 13372 + components: + - pos: -20.5,-51.5 + parent: 6 + type: Transform + - uid: 13373 + components: + - pos: -23.5,-53.5 + parent: 6 + type: Transform + - uid: 13376 + components: + - pos: -15.5,-58.5 + parent: 6 + type: Transform + - uid: 13377 + components: + - pos: -1.5,-60.5 + parent: 6 + type: Transform + - uid: 13378 + components: + - pos: 1.5,-56.5 + parent: 6 + type: Transform + - uid: 13379 + components: + - pos: 1.5,-50.5 + parent: 6 + type: Transform + - uid: 13380 + components: + - pos: -3.5,-51.5 + parent: 6 + type: Transform + - uid: 13381 + components: + - pos: 11.5,-48.5 + parent: 6 + type: Transform + - uid: 13382 + components: + - pos: 19.5,-48.5 + parent: 6 + type: Transform + - uid: 13383 + components: + - pos: 13.5,-43.5 + parent: 6 + type: Transform + - uid: 13385 + components: + - pos: 15.5,-30.5 + parent: 6 + type: Transform + - uid: 13386 + components: + - pos: 18.5,-28.5 + parent: 6 + type: Transform + - uid: 13393 + components: + - pos: 9.5,-30.5 + parent: 6 + type: Transform + - uid: 13394 + components: + - pos: 21.5,-16.5 + parent: 6 + type: Transform + - uid: 13396 + components: + - pos: 23.5,-5.5 + parent: 6 + type: Transform + - uid: 13397 + components: + - pos: 25.5,-2.5 + parent: 6 + type: Transform + - uid: 13398 + components: + - pos: 22.5,0.5 + parent: 6 + type: Transform + - uid: 13414 + components: + - pos: -43.5,-22.5 + parent: 6 + type: Transform + - uid: 13415 + components: + - pos: -39.5,-25.5 + parent: 6 + type: Transform + - uid: 13416 + components: + - pos: -37.5,-25.5 + parent: 6 + type: Transform + - uid: 13417 + components: + - pos: -33.5,-32.5 + parent: 6 + type: Transform + - uid: 13418 + components: + - pos: -30.5,-35.5 + parent: 6 + type: Transform + - uid: 13419 + components: + - pos: -26.5,-38.5 + parent: 6 + type: Transform + - uid: 13423 + components: + - pos: -37.5,-34.5 + parent: 6 + type: Transform + - uid: 13424 + components: + - pos: -48.5,-30.5 + parent: 6 + type: Transform + - uid: 13425 + components: + - pos: -48.5,-35.5 + parent: 6 + type: Transform + - uid: 13426 + components: + - pos: -48.5,-40.5 + parent: 6 + type: Transform + - uid: 13427 + components: + - pos: -37.5,-30.5 + parent: 6 + type: Transform + - uid: 13428 + components: + - pos: -58.5,-19.5 + parent: 6 + type: Transform + - uid: 13429 + components: + - pos: -65.5,-18.5 + parent: 6 + type: Transform + - uid: 13430 + components: + - pos: -40.5,-16.5 + parent: 6 + type: Transform + - uid: 13433 + components: + - pos: -29.5,-40.5 + parent: 6 + type: Transform + - uid: 13434 + components: + - pos: -47.5,-50.5 + parent: 6 + type: Transform + - uid: 13435 + components: + - pos: -53.5,-36.5 + parent: 6 + type: Transform + - uid: 13436 + components: + - pos: -45.5,-55.5 + parent: 6 + type: Transform + - uid: 13437 + components: + - pos: -41.5,-55.5 + parent: 6 + type: Transform + - uid: 13438 + components: + - pos: -36.5,-58.5 + parent: 6 + type: Transform + - uid: 13441 + components: + - pos: -7.5,-16.5 + parent: 6 + type: Transform + - uid: 13442 + components: + - pos: 18.5,-23.5 + parent: 6 + type: Transform + - uid: 13443 + components: + - pos: 20.5,2.5 + parent: 6 + type: Transform + - uid: 13444 + components: + - pos: 21.5,6.5 + parent: 6 + type: Transform + - uid: 13445 + components: + - pos: 20.5,10.5 + parent: 6 + type: Transform + - uid: 13446 + components: + - pos: 7.5,11.5 + parent: 6 + type: Transform + - uid: 13453 + components: + - pos: 8.5,-43.5 + parent: 6 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 3002 + components: + - pos: 3.5,-24.5 + parent: 6 + type: Transform + - uid: 13322 + components: + - pos: -4.5,-13.5 + parent: 6 + type: Transform + - uid: 13323 + components: + - pos: -8.5,-13.5 + parent: 6 + type: Transform + - uid: 13324 + components: + - pos: -25.5,-13.5 + parent: 6 + type: Transform + - uid: 13325 + components: + - pos: -38.5,-13.5 + parent: 6 + type: Transform + - uid: 13326 + components: + - pos: -54.5,-13.5 + parent: 6 + type: Transform + - uid: 13327 + components: + - pos: -62.5,-15.5 + parent: 6 + type: Transform + - uid: 13328 + components: + - pos: -57.5,-15.5 + parent: 6 + type: Transform + - uid: 13329 + components: + - pos: -23.5,-9.5 + parent: 6 + type: Transform + - uid: 13330 + components: + - pos: -13.5,-6.5 + parent: 6 + type: Transform + - uid: 13331 + components: + - pos: -13.5,-3.5 + parent: 6 + type: Transform + - uid: 13332 + components: + - pos: -16.5,2.5 + parent: 6 + type: Transform + - uid: 13333 + components: + - pos: -11.5,7.5 + parent: 6 + type: Transform + - uid: 13334 + components: + - pos: 2.5,7.5 + parent: 6 + type: Transform + - uid: 13335 + components: + - pos: 9.5,7.5 + parent: 6 + type: Transform + - uid: 13336 + components: + - pos: 20.5,7.5 + parent: 6 + type: Transform + - uid: 13337 + components: + - pos: 20.5,5.5 + parent: 6 + type: Transform + - uid: 13338 + components: + - pos: 4.5,-6.5 + parent: 6 + type: Transform + - uid: 13339 + components: + - pos: 11.5,-13.5 + parent: 6 + type: Transform + - uid: 13340 + components: + - pos: 43.5,-13.5 + parent: 6 + type: Transform + - uid: 13341 + components: + - pos: 44.5,-9.5 + parent: 6 + type: Transform + - uid: 13342 + components: + - pos: 44.5,6.5 + parent: 6 + type: Transform + - uid: 13343 + components: + - pos: 29.5,-0.5 + parent: 6 + type: Transform + - uid: 13344 + components: + - pos: 29.5,-7.5 + parent: 6 + type: Transform + - uid: 13349 + components: + - pos: 18.5,-16.5 + parent: 6 + type: Transform + - uid: 13350 + components: + - pos: 3.5,-29.5 + parent: 6 + type: Transform + - uid: 13351 + components: + - pos: 7.5,-32.5 + parent: 6 + type: Transform + - uid: 13352 + components: + - pos: 3.5,-39.5 + parent: 6 + type: Transform + - uid: 13353 + components: + - pos: -0.5,-47.5 + parent: 6 + type: Transform + - uid: 13354 + components: + - pos: -2.5,-47.5 + parent: 6 + type: Transform + - uid: 13355 + components: + - pos: -13.5,-47.5 + parent: 6 + type: Transform + - uid: 13356 + components: + - pos: -18.5,-49.5 + parent: 6 + type: Transform + - uid: 13357 + components: + - pos: -15.5,-54.5 + parent: 6 + type: Transform + - uid: 13360 + components: + - pos: -22.5,-42.5 + parent: 6 + type: Transform + - uid: 13361 + components: + - pos: -28.5,-46.5 + parent: 6 + type: Transform + - uid: 13362 + components: + - pos: -39.5,-42.5 + parent: 6 + type: Transform + - uid: 13363 + components: + - pos: -43.5,-46.5 + parent: 6 + type: Transform + - uid: 13364 + components: + - pos: -48.5,-42.5 + parent: 6 + type: Transform + - uid: 13365 + components: + - pos: -46.5,-46.5 + parent: 6 + type: Transform + - uid: 13366 + components: + - pos: -27.5,-42.5 + parent: 6 + type: Transform + - uid: 13367 + components: + - pos: -12.5,-29.5 + parent: 6 + type: Transform + - uid: 13368 + components: + - pos: -16.5,-24.5 + parent: 6 + type: Transform + - uid: 13374 + components: + - pos: -22.5,-47.5 + parent: 6 + type: Transform + - uid: 13413 + components: + - pos: -43.5,-16.5 + parent: 6 + type: Transform + - uid: 13421 + components: + - pos: -18.5,-33.5 + parent: 6 + type: Transform + - uid: 13422 + components: + - pos: -18.5,-28.5 + parent: 6 + type: Transform + - uid: 13431 + components: + - pos: -38.5,-23.5 + parent: 6 + type: Transform + - uid: 13432 + components: + - pos: -35.5,-23.5 + parent: 6 + type: Transform + - uid: 13439 + components: + - pos: -5.5,-51.5 + parent: 6 + type: Transform + - uid: 13440 + components: + - pos: -8.5,-51.5 + parent: 6 + type: Transform + - uid: 13447 + components: + - pos: -10.5,-4.5 + parent: 6 + type: Transform + - uid: 13448 + components: + - pos: -9.5,1.5 + parent: 6 + type: Transform + - uid: 13449 + components: + - pos: -7.5,2.5 + parent: 6 + type: Transform + - uid: 13454 + components: + - pos: -36.5,-53.5 + parent: 6 + type: Transform + - uid: 13455 + components: + - pos: -36.5,-49.5 + parent: 6 + type: Transform + - uid: 13456 + components: + - pos: -30.5,-49.5 + parent: 6 + type: Transform + - uid: 13457 + components: + - pos: -30.5,-53.5 + parent: 6 + type: Transform + - uid: 13502 + components: + - pos: -27.5,-30.5 + parent: 6 + type: Transform + - uid: 13503 + components: + - pos: -27.5,-26.5 + parent: 6 + type: Transform +- proto: RandomSoap + entities: + - uid: 5160 + components: + - pos: -9.5,-3.5 + parent: 6 + type: Transform + - uid: 5418 + components: + - pos: -35.5,-39.5 + parent: 6 + type: Transform + - uid: 6003 + components: + - pos: 13.5,23.5 + parent: 6 + type: Transform + - uid: 7621 + components: + - pos: -47.5,-30.5 + parent: 6 + type: Transform +- proto: RandomSpawner + entities: + - uid: 11101 + components: + - pos: 24.5,9.5 + parent: 6 + type: Transform + - uid: 11102 + components: + - pos: 19.5,11.5 + parent: 6 + type: Transform + - uid: 11103 + components: + - pos: 22.5,3.5 + parent: 6 + type: Transform + - uid: 11104 + components: + - pos: 8.5,12.5 + parent: 6 + type: Transform + - uid: 11105 + components: + - pos: -5.5,-5.5 + parent: 6 + type: Transform + - uid: 11106 + components: + - pos: -12.5,-0.5 + parent: 6 + type: Transform + - uid: 11107 + components: + - pos: -24.5,7.5 + parent: 6 + type: Transform + - uid: 11108 + components: + - pos: -38.5,6.5 + parent: 6 + type: Transform + - uid: 11109 + components: + - pos: -41.5,-3.5 + parent: 6 + type: Transform + - uid: 11110 + components: + - pos: -44.5,1.5 + parent: 6 + type: Transform + - uid: 11111 + components: + - pos: -46.5,-20.5 + parent: 6 + type: Transform + - uid: 11113 + components: + - pos: -57.5,-22.5 + parent: 6 + type: Transform + - uid: 11114 + components: + - pos: -64.5,-16.5 + parent: 6 + type: Transform + - uid: 11115 + components: + - pos: -62.5,-11.5 + parent: 6 + type: Transform + - uid: 11116 + components: + - pos: -30.5,-12.5 + parent: 6 + type: Transform + - uid: 11117 + components: + - pos: -13.5,-30.5 + parent: 6 + type: Transform + - uid: 11118 + components: + - pos: -28.5,-33.5 + parent: 6 + type: Transform + - uid: 11119 + components: + - pos: -49.5,-27.5 + parent: 6 + type: Transform + - uid: 11120 + components: + - pos: -34.5,-35.5 + parent: 6 + type: Transform + - uid: 11121 + components: + - pos: -58.5,-33.5 + parent: 6 + type: Transform + - uid: 11122 + components: + - pos: -58.5,-31.5 + parent: 6 + type: Transform + - uid: 11123 + components: + - pos: -56.5,-32.5 + parent: 6 + type: Transform + - uid: 11124 + components: + - pos: -57.5,-33.5 + parent: 6 + type: Transform + - uid: 11125 + components: + - pos: -58.5,-32.5 + parent: 6 + type: Transform + - uid: 11126 + components: + - pos: -59.5,-33.5 + parent: 6 + type: Transform + - uid: 11127 + components: + - pos: -60.5,-28.5 + parent: 6 + type: Transform + - uid: 11128 + components: + - pos: -62.5,-31.5 + parent: 6 + type: Transform + - uid: 11129 + components: + - pos: -61.5,-34.5 + parent: 6 + type: Transform + - uid: 11130 + components: + - pos: -58.5,-38.5 + parent: 6 + type: Transform + - uid: 11131 + components: + - pos: -57.5,-36.5 + parent: 6 + type: Transform + - uid: 11132 + components: + - pos: -61.5,-35.5 + parent: 6 + type: Transform + - uid: 11133 + components: + - pos: -59.5,-29.5 + parent: 6 + type: Transform + - uid: 11134 + components: + - pos: -58.5,-34.5 + parent: 6 + type: Transform + - uid: 11135 + components: + - pos: -59.5,-34.5 + parent: 6 + type: Transform + - uid: 11136 + components: + - pos: -58.5,-35.5 + parent: 6 + type: Transform + - uid: 11137 + components: + - pos: -59.5,-35.5 + parent: 6 + type: Transform + - uid: 11138 + components: + - pos: -49.5,-36.5 + parent: 6 + type: Transform + - uid: 11139 + components: + - pos: -37.5,-52.5 + parent: 6 + type: Transform + - uid: 11140 + components: + - pos: -32.5,-58.5 + parent: 6 + type: Transform + - uid: 11141 + components: + - pos: -17.5,-55.5 + parent: 6 + type: Transform + - uid: 11142 + components: + - pos: -13.5,-59.5 + parent: 6 + type: Transform + - uid: 11143 + components: + - pos: 0.5,-53.5 + parent: 6 + type: Transform + - uid: 11144 + components: + - pos: -4.5,-49.5 + parent: 6 + type: Transform + - uid: 11145 + components: + - pos: 12.5,-46.5 + parent: 6 + type: Transform + - uid: 11146 + components: + - pos: 12.5,-28.5 + parent: 6 + type: Transform + - uid: 11147 + components: + - pos: 14.5,-23.5 + parent: 6 + type: Transform + - uid: 11148 + components: + - pos: 24.5,-2.5 + parent: 6 + type: Transform + - uid: 11149 + components: + - pos: 25.5,-0.5 + parent: 6 + type: Transform + - uid: 11150 + components: + - pos: 23.5,-12.5 + parent: 6 + type: Transform + - uid: 11151 + components: + - pos: 41.5,-10.5 + parent: 6 + type: Transform + - uid: 11152 + components: + - pos: -11.5,-10.5 + parent: 6 + type: Transform +- proto: RandomVending + entities: + - uid: 579 + components: + - pos: 44.5,-0.5 + parent: 6 + type: Transform + - uid: 4640 + components: + - pos: -38.5,-3.5 + parent: 6 + type: Transform + - uid: 7837 + components: + - pos: 24.5,-9.5 + parent: 6 + type: Transform + - uid: 8277 + components: + - pos: 29.5,9.5 + parent: 6 + type: Transform + - uid: 10917 + components: + - pos: 14.5,-24.5 + parent: 6 + type: Transform +- proto: RCD + entities: + - uid: 6349 + components: + - pos: -21.370808,-4.3989697 + parent: 6 + type: Transform +- proto: RCDAmmo + entities: + - uid: 6350 + components: + - pos: -21.509954,-4.617513 + parent: 6 + type: Transform +- proto: ReagentContainerFlour + entities: + - uid: 3795 + components: + - pos: -34.607254,-61.319603 + parent: 6 + type: Transform + - uid: 4613 + components: + - pos: -8.446377,-26.505625 + parent: 6 + type: Transform +- proto: ReagentContainerMilkOat + entities: + - uid: 3393 + components: + - pos: -37.544178,-15.470403 + parent: 6 + type: Transform +- proto: ReagentContainerMilkSoy + entities: + - uid: 3468 + components: + - pos: -37.356678,-15.241236 + parent: 6 + type: Transform +- proto: ReagentContainerRice + entities: + - uid: 4612 + components: + - pos: -8.363044,-26.297293 + parent: 6 + type: Transform +- proto: Recycler + entities: + - uid: 5427 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-34.5 + parent: 6 + type: Transform + + - inputs: + Reverse: + - port: Left + uid: 13053 + Forward: + - port: Right + uid: 13053 + Off: + - port: Middle + uid: 13053 + type: SignalReceiver +- proto: ReinforcedGirder + entities: + - uid: 2831 + components: + - pos: -85.5,-41.5 + parent: 6 + type: Transform + - uid: 2832 + components: + - pos: -81.5,-36.5 + parent: 6 + type: Transform + - uid: 2833 + components: + - pos: -81.5,-37.5 + parent: 6 + type: Transform + - uid: 4791 + components: + - pos: -87.5,-46.5 + parent: 6 + type: Transform + - uid: 4792 + components: + - pos: -87.5,-44.5 + parent: 6 + type: Transform +- proto: ReinforcedPlasmaWindow + entities: + - uid: 1975 + components: + - pos: -74.5,-38.5 + parent: 6 + type: Transform + - uid: 2048 + components: + - pos: -74.5,-49.5 + parent: 6 + type: Transform + - uid: 2352 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,19.5 + parent: 6 + type: Transform + - uid: 2353 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,17.5 + parent: 6 + type: Transform + - uid: 2354 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,15.5 + parent: 6 + type: Transform + - uid: 2355 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,13.5 + parent: 6 + type: Transform + - uid: 2356 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,11.5 + parent: 6 + type: Transform + - uid: 2357 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,9.5 + parent: 6 + type: Transform + - uid: 2410 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,25.5 + parent: 6 + type: Transform + - uid: 2411 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,25.5 + parent: 6 + type: Transform + - uid: 2412 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,25.5 + parent: 6 + type: Transform + - uid: 2413 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,27.5 + parent: 6 + type: Transform + - uid: 2414 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,27.5 + parent: 6 + type: Transform + - uid: 2415 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,26.5 + parent: 6 + type: Transform + - uid: 2416 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,26.5 + parent: 6 + type: Transform + - uid: 4750 + components: + - pos: -74.5,-39.5 + parent: 6 + type: Transform + - uid: 4751 + components: + - pos: -74.5,-41.5 + parent: 6 + type: Transform + - uid: 4753 + components: + - pos: -74.5,-47.5 + parent: 6 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 73 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 6 + type: Transform + - uid: 74 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 6 + type: Transform + - uid: 75 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-8.5 + parent: 6 + type: Transform + - uid: 130 + components: + - pos: -9.5,5.5 + parent: 6 + type: Transform + - uid: 131 + components: + - pos: -7.5,5.5 + parent: 6 + type: Transform + - uid: 132 + components: + - pos: -8.5,5.5 + parent: 6 + type: Transform + - uid: 133 + components: + - pos: -0.5,5.5 + parent: 6 + type: Transform + - uid: 137 + components: + - pos: -1.5,5.5 + parent: 6 + type: Transform + - uid: 140 + components: + - pos: 0.5,5.5 + parent: 6 + type: Transform + - uid: 167 + components: + - pos: -9.5,10.5 + parent: 6 + type: Transform + - uid: 168 + components: + - pos: -9.5,9.5 + parent: 6 + type: Transform + - uid: 169 + components: + - pos: -10.5,9.5 + parent: 6 + type: Transform + - uid: 170 + components: + - pos: -8.5,11.5 + parent: 6 + type: Transform + - uid: 171 + components: + - pos: -7.5,11.5 + parent: 6 + type: Transform + - uid: 172 + components: + - pos: -6.5,11.5 + parent: 6 + type: Transform + - uid: 173 + components: + - pos: -5.5,11.5 + parent: 6 + type: Transform + - uid: 174 + components: + - pos: -3.5,11.5 + parent: 6 + type: Transform + - uid: 175 + components: + - pos: -2.5,11.5 + parent: 6 + type: Transform + - uid: 176 + components: + - pos: -1.5,11.5 + parent: 6 + type: Transform + - uid: 177 + components: + - pos: -0.5,11.5 + parent: 6 + type: Transform + - uid: 178 + components: + - pos: 0.5,10.5 + parent: 6 + type: Transform + - uid: 179 + components: + - pos: 0.5,9.5 + parent: 6 + type: Transform + - uid: 180 + components: + - pos: 1.5,9.5 + parent: 6 + type: Transform + - uid: 194 + components: + - pos: 13.5,-7.5 + parent: 6 + type: Transform + - uid: 195 + components: + - pos: 11.5,-7.5 + parent: 6 + type: Transform + - uid: 203 + components: + - pos: 15.5,-9.5 + parent: 6 + type: Transform + - uid: 206 + components: + - pos: 14.5,-9.5 + parent: 6 + type: Transform + - uid: 207 + components: + - pos: 12.5,-9.5 + parent: 6 + type: Transform + - uid: 264 + components: + - pos: 16.5,16.5 + parent: 6 + type: Transform + - uid: 288 + components: + - pos: 10.5,4.5 + parent: 6 + type: Transform + - uid: 289 + components: + - pos: 10.5,3.5 + parent: 6 + type: Transform + - uid: 290 + components: + - pos: 10.5,-0.5 + parent: 6 + type: Transform + - uid: 291 + components: + - pos: 10.5,-1.5 + parent: 6 + type: Transform + - uid: 293 + components: + - pos: 17.5,-9.5 + parent: 6 + type: Transform + - uid: 296 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-8.5 + parent: 6 + type: Transform + - uid: 310 + components: + - pos: 11.5,5.5 + parent: 6 + type: Transform + - uid: 311 + components: + - pos: 12.5,5.5 + parent: 6 + type: Transform + - uid: 316 + components: + - pos: 15.5,0.5 + parent: 6 + type: Transform + - uid: 324 + components: + - pos: 13.5,16.5 + parent: 6 + type: Transform + - uid: 325 + components: + - pos: 13.5,15.5 + parent: 6 + type: Transform + - uid: 334 + components: + - pos: 16.5,15.5 + parent: 6 + type: Transform + - uid: 335 + components: + - pos: 16.5,14.5 + parent: 6 + type: Transform + - uid: 375 + components: + - pos: 18.5,-9.5 + parent: 6 + type: Transform + - uid: 412 + components: + - pos: 44.5,-11.5 + parent: 6 + type: Transform + - uid: 413 + components: + - pos: 44.5,-12.5 + parent: 6 + type: Transform + - uid: 447 + components: + - pos: 19.5,-9.5 + parent: 6 + type: Transform + - uid: 490 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-9.5 + parent: 6 + type: Transform + - uid: 491 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 6 + type: Transform + - uid: 492 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 6 + type: Transform + - uid: 493 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 6 + type: Transform + - uid: 497 + components: + - pos: 42.5,7.5 + parent: 6 + type: Transform + - uid: 520 + components: + - pos: 42.5,9.5 + parent: 6 + type: Transform + - uid: 525 + components: + - pos: 42.5,0.5 + parent: 6 + type: Transform + - uid: 526 + components: + - pos: 42.5,-1.5 + parent: 6 + type: Transform + - uid: 527 + components: + - pos: 32.5,-1.5 + parent: 6 + type: Transform + - uid: 528 + components: + - pos: 32.5,-0.5 + parent: 6 + type: Transform + - uid: 529 + components: + - pos: 42.5,-0.5 + parent: 6 + type: Transform + - uid: 530 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,8.5 + parent: 6 + type: Transform + - uid: 531 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,9.5 + parent: 6 + type: Transform + - uid: 532 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,10.5 + parent: 6 + type: Transform + - uid: 533 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,10.5 + parent: 6 + type: Transform + - uid: 534 + components: + - pos: 32.5,0.5 + parent: 6 + type: Transform + - uid: 536 + components: + - pos: 32.5,-2.5 + parent: 6 + type: Transform + - uid: 545 + components: + - rot: 3.141592653589793 rad + pos: 29.5,10.5 + parent: 6 + type: Transform + - uid: 550 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,10.5 + parent: 6 + type: Transform + - uid: 551 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,8.5 + parent: 6 + type: Transform + - uid: 552 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,9.5 + parent: 6 + type: Transform + - uid: 563 + components: + - pos: 45.5,-0.5 + parent: 6 + type: Transform + - uid: 564 + components: + - pos: 45.5,-2.5 + parent: 6 + type: Transform + - uid: 566 + components: + - pos: 45.5,-1.5 + parent: 6 + type: Transform + - uid: 593 + components: + - pos: 47.5,5.5 + parent: 6 + type: Transform + - uid: 594 + components: + - pos: 46.5,5.5 + parent: 6 + type: Transform + - uid: 595 + components: + - pos: 45.5,5.5 + parent: 6 + type: Transform + - uid: 596 + components: + - pos: 47.5,0.5 + parent: 6 + type: Transform + - uid: 597 + components: + - pos: 46.5,0.5 + parent: 6 + type: Transform + - uid: 599 + components: + - pos: 47.5,-3.5 + parent: 6 + type: Transform + - uid: 600 + components: + - pos: 46.5,-3.5 + parent: 6 + type: Transform + - uid: 602 + components: + - pos: 47.5,-8.5 + parent: 6 + type: Transform + - uid: 603 + components: + - pos: 46.5,-8.5 + parent: 6 + type: Transform + - uid: 604 + components: + - pos: 45.5,-8.5 + parent: 6 + type: Transform + - uid: 644 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,10.5 + parent: 6 + type: Transform + - uid: 645 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,10.5 + parent: 6 + type: Transform + - uid: 649 + components: + - pos: 32.5,7.5 + parent: 6 + type: Transform + - uid: 650 + components: + - pos: 42.5,8.5 + parent: 6 + type: Transform + - uid: 657 + components: + - pos: 42.5,4.5 + parent: 6 + type: Transform + - uid: 658 + components: + - pos: 32.5,4.5 + parent: 6 + type: Transform + - uid: 701 + components: + - pos: 41.5,-9.5 + parent: 6 + type: Transform + - uid: 702 + components: + - pos: 42.5,-2.5 + parent: 6 + type: Transform + - uid: 751 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 6 + type: Transform + - uid: 752 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 6 + type: Transform + - uid: 753 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,9.5 + parent: 6 + type: Transform + - uid: 758 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 6 + type: Transform + - uid: 759 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 6 + type: Transform + - uid: 760 + components: + - pos: 13.5,14.5 + parent: 6 + type: Transform + - uid: 761 + components: + - pos: 9.5,18.5 + parent: 6 + type: Transform + - uid: 766 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 6 + type: Transform + - uid: 767 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 6 + type: Transform + - uid: 768 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 6 + type: Transform + - uid: 769 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 6 + type: Transform + - uid: 770 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 6 + type: Transform + - uid: 771 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 6 + type: Transform + - uid: 778 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 6 + type: Transform + - uid: 779 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 6 + type: Transform + - uid: 780 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 6 + type: Transform + - uid: 781 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 6 + type: Transform + - uid: 856 + components: + - pos: 2.5,-52.5 + parent: 6 + type: Transform + - uid: 857 + components: + - pos: 3.5,-52.5 + parent: 6 + type: Transform + - uid: 858 + components: + - pos: 4.5,-52.5 + parent: 6 + type: Transform + - uid: 860 + components: + - pos: 9.5,20.5 + parent: 6 + type: Transform + - uid: 861 + components: + - pos: 9.5,19.5 + parent: 6 + type: Transform + - uid: 863 + components: + - pos: 10.5,17.5 + parent: 6 + type: Transform + - uid: 864 + components: + - pos: 11.5,17.5 + parent: 6 + type: Transform + - uid: 865 + components: + - pos: 12.5,17.5 + parent: 6 + type: Transform + - uid: 866 + components: + - pos: 17.5,17.5 + parent: 6 + type: Transform + - uid: 867 + components: + - pos: 18.5,17.5 + parent: 6 + type: Transform + - uid: 868 + components: + - pos: 19.5,17.5 + parent: 6 + type: Transform + - uid: 869 + components: + - pos: -22.5,-18.5 + parent: 6 + type: Transform + - uid: 870 + components: + - pos: 20.5,19.5 + parent: 6 + type: Transform + - uid: 871 + components: + - pos: 20.5,20.5 + parent: 6 + type: Transform + - uid: 927 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-27.5 + parent: 6 + type: Transform + - uid: 929 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-27.5 + parent: 6 + type: Transform + - uid: 930 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-27.5 + parent: 6 + type: Transform + - uid: 931 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-27.5 + parent: 6 + type: Transform + - uid: 932 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-27.5 + parent: 6 + type: Transform + - uid: 933 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-27.5 + parent: 6 + type: Transform + - uid: 1070 + components: + - pos: -12.5,-31.5 + parent: 6 + type: Transform + - uid: 1071 + components: + - pos: -12.5,-32.5 + parent: 6 + type: Transform + - uid: 1072 + components: + - pos: -12.5,-33.5 + parent: 6 + type: Transform + - uid: 1073 + components: + - pos: -10.5,-31.5 + parent: 6 + type: Transform + - uid: 1074 + components: + - pos: -10.5,-32.5 + parent: 6 + type: Transform + - uid: 1075 + components: + - pos: -10.5,-33.5 + parent: 6 + type: Transform + - uid: 1076 + components: + - pos: -8.5,-29.5 + parent: 6 + type: Transform + - uid: 1077 + components: + - pos: -7.5,-29.5 + parent: 6 + type: Transform + - uid: 1078 + components: + - pos: -6.5,-29.5 + parent: 6 + type: Transform + - uid: 1079 + components: + - pos: -3.5,-29.5 + parent: 6 + type: Transform + - uid: 1080 + components: + - pos: -2.5,-29.5 + parent: 6 + type: Transform + - uid: 1081 + components: + - pos: -1.5,-29.5 + parent: 6 + type: Transform + - uid: 1082 + components: + - pos: 0.5,-31.5 + parent: 6 + type: Transform + - uid: 1083 + components: + - pos: 0.5,-32.5 + parent: 6 + type: Transform + - uid: 1084 + components: + - pos: 0.5,-33.5 + parent: 6 + type: Transform + - uid: 1085 + components: + - pos: 0.5,-36.5 + parent: 6 + type: Transform + - uid: 1086 + components: + - pos: 0.5,-37.5 + parent: 6 + type: Transform + - uid: 1087 + components: + - pos: 0.5,-38.5 + parent: 6 + type: Transform + - uid: 1088 + components: + - pos: -3.5,-40.5 + parent: 6 + type: Transform + - uid: 1089 + components: + - pos: -2.5,-40.5 + parent: 6 + type: Transform + - uid: 1090 + components: + - pos: -1.5,-40.5 + parent: 6 + type: Transform + - uid: 1091 + components: + - pos: -8.5,-40.5 + parent: 6 + type: Transform + - uid: 1092 + components: + - pos: -7.5,-40.5 + parent: 6 + type: Transform + - uid: 1093 + components: + - pos: -6.5,-40.5 + parent: 6 + type: Transform + - uid: 1094 + components: + - pos: -8.5,-42.5 + parent: 6 + type: Transform + - uid: 1095 + components: + - pos: -7.5,-42.5 + parent: 6 + type: Transform + - uid: 1096 + components: + - pos: -6.5,-42.5 + parent: 6 + type: Transform + - uid: 1097 + components: + - pos: -3.5,-42.5 + parent: 6 + type: Transform + - uid: 1098 + components: + - pos: -2.5,-42.5 + parent: 6 + type: Transform + - uid: 1099 + components: + - pos: -1.5,-42.5 + parent: 6 + type: Transform + - uid: 1116 + components: + - pos: -10.5,-36.5 + parent: 6 + type: Transform + - uid: 1117 + components: + - pos: -10.5,-37.5 + parent: 6 + type: Transform + - uid: 1118 + components: + - pos: -10.5,-38.5 + parent: 6 + type: Transform + - uid: 1119 + components: + - pos: -12.5,-36.5 + parent: 6 + type: Transform + - uid: 1120 + components: + - pos: -12.5,-37.5 + parent: 6 + type: Transform + - uid: 1121 + components: + - pos: -12.5,-38.5 + parent: 6 + type: Transform + - uid: 1122 + components: + - pos: -17.5,9.5 + parent: 6 + type: Transform + - uid: 1123 + components: + - pos: -16.5,9.5 + parent: 6 + type: Transform + - uid: 1124 + components: + - pos: -15.5,9.5 + parent: 6 + type: Transform + - uid: 1125 + components: + - pos: -14.5,9.5 + parent: 6 + type: Transform + - uid: 1126 + components: + - pos: -13.5,9.5 + parent: 6 + type: Transform + - uid: 1129 + components: + - pos: 8.5,-34.5 + parent: 6 + type: Transform + - uid: 1130 + components: + - pos: 9.5,-34.5 + parent: 6 + type: Transform + - uid: 1161 + components: + - pos: 21.5,-39.5 + parent: 6 + type: Transform + - uid: 1162 + components: + - pos: 22.5,-39.5 + parent: 6 + type: Transform + - uid: 1163 + components: + - pos: 21.5,-33.5 + parent: 6 + type: Transform + - uid: 1164 + components: + - pos: 22.5,-33.5 + parent: 6 + type: Transform + - uid: 1171 + components: + - pos: 22.5,-36.5 + parent: 6 + type: Transform + - uid: 1172 + components: + - pos: 21.5,-36.5 + parent: 6 + type: Transform + - uid: 1205 + components: + - pos: -36.5,-19.5 + parent: 6 + type: Transform + - uid: 1208 + components: + - pos: -37.5,-19.5 + parent: 6 + type: Transform + - uid: 1294 + components: + - pos: -11.5,-60.5 + parent: 6 + type: Transform + - uid: 1295 + components: + - pos: -12.5,-60.5 + parent: 6 + type: Transform + - uid: 1296 + components: + - pos: -13.5,-60.5 + parent: 6 + type: Transform + - uid: 1379 + components: + - pos: 1.5,-68.5 + parent: 6 + type: Transform + - uid: 1381 + components: + - pos: -8.5,-61.5 + parent: 6 + type: Transform + - uid: 1382 + components: + - pos: -8.5,-62.5 + parent: 6 + type: Transform + - uid: 1383 + components: + - pos: -8.5,-63.5 + parent: 6 + type: Transform + - uid: 1384 + components: + - pos: -3.5,-61.5 + parent: 6 + type: Transform + - uid: 1385 + components: + - pos: -3.5,-62.5 + parent: 6 + type: Transform + - uid: 1386 + components: + - pos: -3.5,-63.5 + parent: 6 + type: Transform + - uid: 1387 + components: + - pos: -8.5,-69.5 + parent: 6 + type: Transform + - uid: 1388 + components: + - pos: -8.5,-70.5 + parent: 6 + type: Transform + - uid: 1389 + components: + - pos: -2.5,-68.5 + parent: 6 + type: Transform + - uid: 1390 + components: + - pos: -1.5,-68.5 + parent: 6 + type: Transform + - uid: 1423 + components: + - pos: 0.5,-68.5 + parent: 6 + type: Transform + - uid: 1424 + components: + - pos: 1.5,-71.5 + parent: 6 + type: Transform + - uid: 1425 + components: + - pos: 0.5,-71.5 + parent: 6 + type: Transform + - uid: 1431 + components: + - pos: 1.5,-0.5 + parent: 6 + type: Transform + - uid: 1432 + components: + - pos: 1.5,0.5 + parent: 6 + type: Transform + - uid: 1474 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-71.5 + parent: 6 + type: Transform + - uid: 1493 + components: + - pos: -20.5,-14.5 + parent: 6 + type: Transform + - uid: 1528 + components: + - pos: -24.5,-13.5 + parent: 6 + type: Transform + - uid: 1530 + components: + - pos: -26.5,-13.5 + parent: 6 + type: Transform + - uid: 1532 + components: + - pos: 20.5,18.5 + parent: 6 + type: Transform + - uid: 1582 + components: + - pos: -20.5,-32.5 + parent: 6 + type: Transform + - uid: 1583 + components: + - pos: -21.5,-29.5 + parent: 6 + type: Transform + - uid: 1599 + components: + - pos: 10.5,13.5 + parent: 6 + type: Transform + - uid: 1682 + components: + - pos: -28.5,-13.5 + parent: 6 + type: Transform + - uid: 1683 + components: + - pos: -30.5,-13.5 + parent: 6 + type: Transform + - uid: 1684 + components: + - pos: -32.5,-13.5 + parent: 6 + type: Transform + - uid: 1685 + components: + - pos: -34.5,-13.5 + parent: 6 + type: Transform + - uid: 1691 + components: + - pos: 19.5,13.5 + parent: 6 + type: Transform + - uid: 1694 + components: + - pos: 20.5,13.5 + parent: 6 + type: Transform + - uid: 1787 + components: + - pos: 21.5,13.5 + parent: 6 + type: Transform + - uid: 1788 + components: + - pos: 8.5,13.5 + parent: 6 + type: Transform + - uid: 1839 + components: + - pos: 9.5,13.5 + parent: 6 + type: Transform + - uid: 1844 + components: + - pos: -36.5,-60.5 + parent: 6 + type: Transform + - uid: 1845 + components: + - pos: -37.5,-60.5 + parent: 6 + type: Transform + - uid: 1846 + components: + - pos: -38.5,-60.5 + parent: 6 + type: Transform + - uid: 2045 + components: + - pos: -45.5,-13.5 + parent: 6 + type: Transform + - uid: 2096 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-9.5 + parent: 6 + type: Transform + - uid: 2097 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-9.5 + parent: 6 + type: Transform + - uid: 2098 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-9.5 + parent: 6 + type: Transform + - uid: 2099 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-9.5 + parent: 6 + type: Transform + - uid: 2125 + components: + - pos: -33.5,4.5 + parent: 6 + type: Transform + - uid: 2126 + components: + - pos: -33.5,3.5 + parent: 6 + type: Transform + - uid: 2127 + components: + - pos: -33.5,2.5 + parent: 6 + type: Transform + - uid: 2128 + components: + - pos: -34.5,-0.5 + parent: 6 + type: Transform + - uid: 2129 + components: + - pos: -35.5,-0.5 + parent: 6 + type: Transform + - uid: 2130 + components: + - pos: -38.5,-0.5 + parent: 6 + type: Transform + - uid: 2131 + components: + - pos: -37.5,-0.5 + parent: 6 + type: Transform + - uid: 2159 + components: + - pos: -29.5,13.5 + parent: 6 + type: Transform + - uid: 2160 + components: + - pos: -29.5,12.5 + parent: 6 + type: Transform + - uid: 2161 + components: + - pos: -29.5,11.5 + parent: 6 + type: Transform + - uid: 2244 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,8.5 + parent: 6 + type: Transform + - uid: 2245 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,9.5 + parent: 6 + type: Transform + - uid: 2246 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,10.5 + parent: 6 + type: Transform + - uid: 2247 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,11.5 + parent: 6 + type: Transform + - uid: 2248 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,12.5 + parent: 6 + type: Transform + - uid: 2249 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,13.5 + parent: 6 + type: Transform + - uid: 2250 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,14.5 + parent: 6 + type: Transform + - uid: 2251 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,15.5 + parent: 6 + type: Transform + - uid: 2252 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,16.5 + parent: 6 + type: Transform + - uid: 2253 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,17.5 + parent: 6 + type: Transform + - uid: 2254 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,18.5 + parent: 6 + type: Transform + - uid: 2255 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,19.5 + parent: 6 + type: Transform + - uid: 2256 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,20.5 + parent: 6 + type: Transform + - uid: 2379 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,22.5 + parent: 6 + type: Transform + - uid: 2381 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,23.5 + parent: 6 + type: Transform + - uid: 2382 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,23.5 + parent: 6 + type: Transform + - uid: 2383 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,23.5 + parent: 6 + type: Transform + - uid: 2384 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,23.5 + parent: 6 + type: Transform + - uid: 2385 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,23.5 + parent: 6 + type: Transform + - uid: 2386 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,23.5 + parent: 6 + type: Transform + - uid: 2417 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,22.5 + parent: 6 + type: Transform + - uid: 2418 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,21.5 + parent: 6 + type: Transform + - uid: 2501 + components: + - pos: -42.5,-2.5 + parent: 6 + type: Transform + - uid: 2502 + components: + - pos: -42.5,-3.5 + parent: 6 + type: Transform + - uid: 2504 + components: + - pos: -42.5,-4.5 + parent: 6 + type: Transform + - uid: 2528 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-48.5 + parent: 6 + type: Transform + - uid: 2529 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-48.5 + parent: 6 + type: Transform + - uid: 2530 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-48.5 + parent: 6 + type: Transform + - uid: 2531 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-40.5 + parent: 6 + type: Transform + - uid: 2532 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-40.5 + parent: 6 + type: Transform + - uid: 2533 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-40.5 + parent: 6 + type: Transform + - uid: 2545 + components: + - rot: 3.141592653589793 rad + pos: -65.5,-10.5 + parent: 6 + type: Transform + - uid: 2661 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-79.5 + parent: 6 + type: Transform + - uid: 2663 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-79.5 + parent: 6 + type: Transform + - uid: 2686 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-79.5 + parent: 6 + type: Transform + - uid: 2690 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-82.5 + parent: 6 + type: Transform + - uid: 2696 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-82.5 + parent: 6 + type: Transform + - uid: 2698 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-82.5 + parent: 6 + type: Transform + - uid: 2699 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-82.5 + parent: 6 + type: Transform + - uid: 2700 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-80.5 + parent: 6 + type: Transform + - uid: 2886 + components: + - rot: 3.141592653589793 rad + pos: -63.5,-7.5 + parent: 6 + type: Transform + - uid: 2887 + components: + - rot: 3.141592653589793 rad + pos: -63.5,-8.5 + parent: 6 + type: Transform + - uid: 2889 + components: + - rot: 3.141592653589793 rad + pos: -62.5,-9.5 + parent: 6 + type: Transform + - uid: 2890 + components: + - rot: 3.141592653589793 rad + pos: -65.5,-11.5 + parent: 6 + type: Transform + - uid: 2891 + components: + - rot: 3.141592653589793 rad + pos: -59.5,-8.5 + parent: 6 + type: Transform + - uid: 2892 + components: + - rot: 3.141592653589793 rad + pos: -59.5,-7.5 + parent: 6 + type: Transform + - uid: 2895 + components: + - rot: 3.141592653589793 rad + pos: -55.5,-8.5 + parent: 6 + type: Transform + - uid: 2896 + components: + - rot: 3.141592653589793 rad + pos: -55.5,-7.5 + parent: 6 + type: Transform + - uid: 2897 + components: + - rot: 3.141592653589793 rad + pos: -54.5,-9.5 + parent: 6 + type: Transform + - uid: 2898 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-9.5 + parent: 6 + type: Transform + - uid: 2899 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-9.5 + parent: 6 + type: Transform + - uid: 2900 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-9.5 + parent: 6 + type: Transform + - uid: 2901 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-9.5 + parent: 6 + type: Transform + - uid: 2902 + components: + - rot: 3.141592653589793 rad + pos: -48.5,-9.5 + parent: 6 + type: Transform + - uid: 2903 + components: + - rot: 3.141592653589793 rad + pos: -67.5,-8.5 + parent: 6 + type: Transform + - uid: 2904 + components: + - rot: 3.141592653589793 rad + pos: -61.5,-9.5 + parent: 6 + type: Transform + - uid: 2905 + components: + - rot: 3.141592653589793 rad + pos: -60.5,-9.5 + parent: 6 + type: Transform + - uid: 2906 + components: + - rot: 3.141592653589793 rad + pos: -67.5,-7.5 + parent: 6 + type: Transform + - uid: 2907 + components: + - rot: 3.141592653589793 rad + pos: -69.5,-9.5 + parent: 6 + type: Transform + - uid: 2908 + components: + - rot: 3.141592653589793 rad + pos: -70.5,-9.5 + parent: 6 + type: Transform + - uid: 2909 + components: + - rot: 3.141592653589793 rad + pos: -71.5,-10.5 + parent: 6 + type: Transform + - uid: 2910 + components: + - rot: 3.141592653589793 rad + pos: -71.5,-11.5 + parent: 6 + type: Transform + - uid: 2911 + components: + - rot: 3.141592653589793 rad + pos: -71.5,-12.5 + parent: 6 + type: Transform + - uid: 2912 + components: + - rot: 3.141592653589793 rad + pos: -71.5,-13.5 + parent: 6 + type: Transform + - uid: 2913 + components: + - rot: 3.141592653589793 rad + pos: -70.5,-14.5 + parent: 6 + type: Transform + - uid: 2914 + components: + - rot: 3.141592653589793 rad + pos: -69.5,-14.5 + parent: 6 + type: Transform + - uid: 2915 + components: + - rot: 3.141592653589793 rad + pos: -65.5,-13.5 + parent: 6 + type: Transform + - uid: 2917 + components: + - pos: -53.5,-26.5 + parent: 6 + type: Transform + - uid: 2918 + components: + - pos: -53.5,-27.5 + parent: 6 + type: Transform + - uid: 2926 + components: + - pos: -56.5,-23.5 + parent: 6 + type: Transform + - uid: 2927 + components: + - pos: -55.5,-23.5 + parent: 6 + type: Transform + - uid: 2928 + components: + - pos: -53.5,-25.5 + parent: 6 + type: Transform + - uid: 2930 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-81.5 + parent: 6 + type: Transform + - uid: 2931 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-79.5 + parent: 6 + type: Transform + - uid: 2932 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-79.5 + parent: 6 + type: Transform + - uid: 2933 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-79.5 + parent: 6 + type: Transform + - uid: 2963 + components: + - rot: 3.141592653589793 rad + pos: -55.5,-31.5 + parent: 6 + type: Transform + - uid: 2964 + components: + - rot: 3.141592653589793 rad + pos: -55.5,-32.5 + parent: 6 + type: Transform + - uid: 2965 + components: + - rot: 3.141592653589793 rad + pos: -55.5,-33.5 + parent: 6 + type: Transform + - uid: 2966 + components: + - rot: 3.141592653589793 rad + pos: -55.5,-35.5 + parent: 6 + type: Transform + - uid: 2987 + components: + - pos: -16.5,-1.5 + parent: 6 + type: Transform + - uid: 2996 + components: + - pos: -23.5,-0.5 + parent: 6 + type: Transform + - uid: 3011 + components: + - pos: 2.5,2.5 + parent: 6 + type: Transform + - uid: 3059 + components: + - pos: -58.5,-44.5 + parent: 6 + type: Transform + - uid: 3061 + components: + - pos: -52.5,-49.5 + parent: 6 + type: Transform + - uid: 3062 + components: + - pos: -52.5,-50.5 + parent: 6 + type: Transform + - uid: 3063 + components: + - pos: -52.5,-51.5 + parent: 6 + type: Transform + - uid: 3064 + components: + - pos: -51.5,-52.5 + parent: 6 + type: Transform + - uid: 3065 + components: + - pos: -50.5,-52.5 + parent: 6 + type: Transform + - uid: 3066 + components: + - pos: -49.5,-52.5 + parent: 6 + type: Transform + - uid: 3145 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,8.5 + parent: 6 + type: Transform + - uid: 3152 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,8.5 + parent: 6 + type: Transform + - uid: 3153 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,8.5 + parent: 6 + type: Transform + - uid: 3367 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-16.5 + parent: 6 + type: Transform + - uid: 3396 + components: + - pos: -22.5,-13.5 + parent: 6 + type: Transform + - uid: 3418 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-6.5 + parent: 6 + type: Transform + - uid: 3425 + components: + - pos: 15.5,1.5 + parent: 6 + type: Transform + - uid: 3490 + components: + - pos: 23.5,-13.5 + parent: 6 + type: Transform + - uid: 3491 + components: + - pos: 24.5,-13.5 + parent: 6 + type: Transform + - uid: 3492 + components: + - pos: 25.5,-13.5 + parent: 6 + type: Transform + - uid: 3493 + components: + - pos: 27.5,-13.5 + parent: 6 + type: Transform + - uid: 3494 + components: + - pos: 28.5,-13.5 + parent: 6 + type: Transform + - uid: 3496 + components: + - pos: 31.5,-13.5 + parent: 6 + type: Transform + - uid: 3497 + components: + - pos: 32.5,-13.5 + parent: 6 + type: Transform + - uid: 3498 + components: + - pos: 33.5,-13.5 + parent: 6 + type: Transform + - uid: 3499 + components: + - pos: 35.5,-13.5 + parent: 6 + type: Transform + - uid: 3500 + components: + - pos: 36.5,-13.5 + parent: 6 + type: Transform + - uid: 3501 + components: + - pos: 37.5,-13.5 + parent: 6 + type: Transform + - uid: 3502 + components: + - pos: 39.5,-13.5 + parent: 6 + type: Transform + - uid: 3503 + components: + - pos: 40.5,-13.5 + parent: 6 + type: Transform + - uid: 3504 + components: + - pos: 41.5,-13.5 + parent: 6 + type: Transform + - uid: 3664 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-71.5 + parent: 6 + type: Transform + - uid: 3665 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-71.5 + parent: 6 + type: Transform + - uid: 3667 + components: + - pos: -12.5,-74.5 + parent: 6 + type: Transform + - uid: 3668 + components: + - pos: -12.5,-75.5 + parent: 6 + type: Transform + - uid: 3669 + components: + - pos: -11.5,-77.5 + parent: 6 + type: Transform + - uid: 3670 + components: + - pos: -10.5,-77.5 + parent: 6 + type: Transform + - uid: 3671 + components: + - pos: -9.5,-77.5 + parent: 6 + type: Transform + - uid: 3681 + components: + - pos: 0.5,-82.5 + parent: 6 + type: Transform + - uid: 3682 + components: + - pos: 1.5,-82.5 + parent: 6 + type: Transform + - uid: 3683 + components: + - pos: 2.5,-81.5 + parent: 6 + type: Transform + - uid: 3684 + components: + - pos: 2.5,-80.5 + parent: 6 + type: Transform + - uid: 3685 + components: + - pos: 2.5,-77.5 + parent: 6 + type: Transform + - uid: 3686 + components: + - pos: 2.5,-76.5 + parent: 6 + type: Transform + - uid: 3687 + components: + - pos: 2.5,-75.5 + parent: 6 + type: Transform + - uid: 3777 + components: + - pos: -33.5,-63.5 + parent: 6 + type: Transform + - uid: 3779 + components: + - pos: -32.5,-63.5 + parent: 6 + type: Transform + - uid: 3780 + components: + - pos: -31.5,-63.5 + parent: 6 + type: Transform + - uid: 4195 + components: + - pos: 18.5,22.5 + parent: 6 + type: Transform + - uid: 4196 + components: + - pos: 17.5,22.5 + parent: 6 + type: Transform + - uid: 4197 + components: + - pos: 16.5,22.5 + parent: 6 + type: Transform + - uid: 4216 + components: + - pos: 5.5,-55.5 + parent: 6 + type: Transform + - uid: 4217 + components: + - pos: 6.5,-55.5 + parent: 6 + type: Transform + - uid: 4218 + components: + - pos: 7.5,-53.5 + parent: 6 + type: Transform + - uid: 4219 + components: + - pos: 7.5,-54.5 + parent: 6 + type: Transform + - uid: 4220 + components: + - pos: 7.5,-51.5 + parent: 6 + type: Transform + - uid: 4221 + components: + - pos: 7.5,-50.5 + parent: 6 + type: Transform + - uid: 4222 + components: + - pos: 14.5,-48.5 + parent: 6 + type: Transform + - uid: 4223 + components: + - pos: 15.5,-48.5 + parent: 6 + type: Transform + - uid: 4224 + components: + - pos: 16.5,-48.5 + parent: 6 + type: Transform + - uid: 4225 + components: + - pos: 17.5,-48.5 + parent: 6 + type: Transform + - uid: 4231 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-27.5 + parent: 6 + type: Transform + - uid: 4232 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-28.5 + parent: 6 + type: Transform + - uid: 4233 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-29.5 + parent: 6 + type: Transform + - uid: 4524 + components: + - pos: -42.5,-5.5 + parent: 6 + type: Transform + - uid: 4948 + components: + - pos: 3.5,2.5 + parent: 6 + type: Transform + - uid: 5032 + components: + - pos: -27.5,0.5 + parent: 6 + type: Transform + - uid: 5060 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-4.5 + parent: 6 + type: Transform + - uid: 5061 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-5.5 + parent: 6 + type: Transform + - uid: 5167 + components: + - pos: 1.5,-2.5 + parent: 6 + type: Transform + - uid: 5178 + components: + - pos: 1.5,-1.5 + parent: 6 + type: Transform + - uid: 5937 + components: + - pos: 40.5,-9.5 + parent: 6 + type: Transform + - uid: 6291 + components: + - pos: -29.5,18.5 + parent: 6 + type: Transform + - uid: 6292 + components: + - pos: -29.5,17.5 + parent: 6 + type: Transform + - uid: 6293 + components: + - pos: -29.5,16.5 + parent: 6 + type: Transform + - uid: 6294 + components: + - pos: -27.5,18.5 + parent: 6 + type: Transform + - uid: 6295 + components: + - pos: -27.5,17.5 + parent: 6 + type: Transform + - uid: 6296 + components: + - pos: -27.5,16.5 + parent: 6 + type: Transform + - uid: 6452 + components: + - pos: -27.5,-62.5 + parent: 6 + type: Transform + - uid: 6454 + components: + - pos: -28.5,-62.5 + parent: 6 + type: Transform + - uid: 8437 + components: + - pos: -8.5,-75.5 + parent: 6 + type: Transform + - uid: 14235 + components: + - pos: -58.5,-43.5 + parent: 6 + type: Transform + - uid: 14236 + components: + - pos: -58.5,-45.5 + parent: 6 + type: Transform +- proto: RemoteSignaller + entities: + - uid: 14094 + components: + - pos: -2.7013257,9.587708 + parent: 6 + type: Transform +- proto: ResearchAndDevelopmentServer + entities: + - uid: 5645 + components: + - pos: -9.5,-76.5 + parent: 6 + type: Transform +- proto: RockGuitarInstrument + entities: + - uid: 13466 + components: + - pos: -49.69898,-53.5255 + parent: 6 + type: Transform +- proto: RollerBed + entities: + - uid: 2948 + components: + - pos: -34.51006,-22.513144 + parent: 6 + type: Transform + - uid: 3659 + components: + - pos: -35.503975,-22.513144 + parent: 6 + type: Transform +- proto: RubberStampDenied + entities: + - uid: 3330 + components: + - pos: 9.599296,-32.124554 + parent: 6 + type: Transform + - uid: 5110 + components: + - pos: -2.9787586,-7.576328 + parent: 6 + type: Transform +- proto: RubberStampSyndicate + entities: + - uid: 13474 + components: + - pos: -69.38395,-17.66235 + parent: 6 + type: Transform +- proto: SalvageMagnet + entities: + - uid: 5463 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-58.5 + parent: 6 + type: Transform +- proto: Saw + entities: + - uid: 6195 + components: + - pos: -33.368313,-14.301024 + parent: 6 + type: Transform + - uid: 7418 + components: + - pos: -17.47212,-52.245285 + parent: 6 + type: Transform +- proto: Scalpel + entities: + - uid: 6191 + components: + - pos: -33.86527,-14.378564 + parent: 6 + type: Transform +- proto: ScalpelShiv + entities: + - uid: 5997 + components: + - pos: 11.476565,23.47423 + parent: 6 + type: Transform +- proto: Screwdriver + entities: + - uid: 5379 + components: + - pos: -2.83597,-56.558304 + parent: 6 + type: Transform + - nextAttack: 37935.7649256 + type: MeleeWeapon +- proto: SecurityTechFab + entities: + - uid: 4704 + components: + - pos: 15.5,3.5 + parent: 6 + type: Transform +- proto: SeedExtractor + entities: + - uid: 4353 + components: + - pos: -8.5,-14.5 + parent: 6 + type: Transform + - uid: 5215 + components: + - pos: 8.5,6.5 + parent: 6 + type: Transform + - uid: 5990 + components: + - pos: 19.5,21.5 + parent: 6 + type: Transform +- proto: ShardGlass + entities: + - uid: 6758 + components: + - rot: 3.141592653589793 rad + pos: -82.53409,-43.155975 + parent: 6 + type: Transform + - uid: 6759 + components: + - rot: 3.141592653589793 rad + pos: -76.436424,-39.24823 + parent: 6 + type: Transform + - uid: 6760 + components: + - rot: 3.141592653589793 rad + pos: -77.54393,-38.552864 + parent: 6 + type: Transform + - uid: 6761 + components: + - rot: 3.141592653589793 rad + pos: -79.4049,-50.786034 + parent: 6 + type: Transform + - uid: 7452 + components: + - pos: -25.512861,-52.433327 + parent: 6 + type: Transform + - nextAttack: 7464.2216396 + type: MeleeWeapon + - uid: 7453 + components: + - pos: -22.503988,-54.424194 + parent: 6 + type: Transform + - uid: 8291 + components: + - pos: -32.534348,-36.4765 + parent: 6 + type: Transform +- proto: ShardGlassPlasma + entities: + - uid: 6755 + components: + - rot: 3.141592653589793 rad + pos: -74.70313,-50.50518 + parent: 6 + type: Transform + - uid: 6756 + components: + - rot: 3.141592653589793 rad + pos: -84.445724,-40.58835 + parent: 6 + type: Transform + - uid: 6757 + components: + - rot: 3.141592653589793 rad + pos: -82.47209,-38.587402 + parent: 6 + type: Transform +- proto: ShardGlassReinforced + entities: + - uid: 13676 + components: + - rot: 3.141592653589793 rad + pos: 0.5732422,4.6299896 + parent: 13645 + type: Transform + - uid: 13677 + components: + - rot: 1.5707963267948966 rad + pos: 3.3315125,4.606613 + parent: 13645 + type: Transform + - uid: 13678 + components: + - rot: -1.5707963267948966 rad + pos: 6.390747,3.4191132 + parent: 13645 + type: Transform + - uid: 13679 + components: + - rot: 1.5707963267948966 rad + pos: 1.9258423,1.6437378 + parent: 13645 + type: Transform +- proto: SheetGlass + entities: + - uid: 5387 + components: + - pos: -12.523188,-55.97647 + parent: 6 + type: Transform + - uid: 5593 + components: + - pos: 14.5244465,-42.262287 + parent: 6 + type: Transform + - uid: 6359 + components: + - pos: -33.011555,-4.4244323 + parent: 6 + type: Transform + - uid: 6403 + components: + - pos: -49.50777,-24.723473 + parent: 6 + type: Transform + - uid: 13402 + components: + - pos: 27.650404,1.592239 + parent: 6 + type: Transform + - uid: 13547 + components: + - pos: 1.6470225,-38.474102 + parent: 6 + type: Transform +- proto: SheetPGlass + entities: + - uid: 6372 + components: + - pos: -32.43091,21.974386 + parent: 6 + type: Transform +- proto: SheetPlasma1 + entities: + - uid: 3188 + components: + - flags: InContainer + type: MetaData + - parent: 5850 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 6175 + components: + - pos: -22.511309,-17.34715 + parent: 6 + type: Transform + - count: 5 + type: Stack +- proto: SheetPlasteel + entities: + - uid: 6360 + components: + - pos: -33.568146,-4.444299 + parent: 6 + type: Transform + - uid: 6401 + components: + - pos: -49.487892,-23.59102 + parent: 6 + type: Transform +- proto: SheetPlastic + entities: + - uid: 3890 + components: + - pos: -20.40867,-25.474638 + parent: 6 + type: Transform + - uid: 5199 + components: + - pos: -12.548407,6.492931 + parent: 6 + type: Transform + - uid: 5388 + components: + - pos: -12.49479,-56.359627 + parent: 6 + type: Transform + - uid: 5594 + components: + - pos: 13.978914,-42.316196 + parent: 6 + type: Transform + - uid: 6481 + components: + - pos: 14.627311,3.5724547 + parent: 6 + type: Transform +- proto: SheetSteel + entities: + - uid: 3887 + components: + - pos: -20.637838,-25.432972 + parent: 6 + type: Transform + - uid: 5198 + components: + - pos: -12.25674,6.7220974 + parent: 6 + type: Transform + - uid: 5386 + components: + - pos: -12.537386,-55.564926 + parent: 6 + type: Transform + - uid: 5592 + components: + - pos: 14.187247,-42.253696 + parent: 6 + type: Transform + - uid: 6358 + components: + - pos: -32.474842,-4.4244323 + parent: 6 + type: Transform + - uid: 6371 + components: + - pos: -32.43559,22.44885 + parent: 6 + type: Transform + - uid: 6402 + components: + - pos: -49.487892,-24.206915 + parent: 6 + type: Transform + - uid: 6480 + components: + - pos: 14.40013,3.5582638 + parent: 6 + type: Transform + - uid: 13401 + components: + - pos: 27.389149,1.6035918 + parent: 6 + type: Transform + - uid: 13546 + components: + - pos: 1.3772457,-38.45991 + parent: 6 + type: Transform +- proto: SheetSteel1 + entities: + - uid: 7422 + components: + - pos: -17.56296,-50.59777 + parent: 6 + type: Transform + - count: 10 + type: Stack + - uid: 13658 + components: + - rot: 3.141592653589793 rad + pos: 2.0107422,3.0201569 + parent: 13645 + type: Transform + - uid: 13669 + components: + - rot: 3.141592653589793 rad + pos: 3.8440704,3.6868134 + parent: 13645 + type: Transform +- proto: Shovel + entities: + - uid: 7595 + components: + - pos: 4.5884767,-54.57562 + parent: 6 + type: Transform +- proto: ShuttersFrame + entities: + - uid: 4793 + components: + - pos: -81.5,-44.5 + parent: 6 + type: Transform +- proto: ShuttersNormal + entities: + - uid: 1345 + components: + - pos: -17.5,-46.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 3965 + type: SignalReceiver + - uid: 1346 + components: + - pos: -16.5,-46.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 3965 + type: SignalReceiver + - uid: 5597 + components: + - pos: 18.5,-39.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -114478.85 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 5599 + type: SignalReceiver + - uid: 5598 + components: + - pos: 17.5,-39.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -114478.85 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 5599 + type: SignalReceiver + - uid: 8381 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-5.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116215.945 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 8384 + type: SignalReceiver + - uid: 8382 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116215.945 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 8384 + type: SignalReceiver + - uid: 13023 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,4.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116732.86 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13040 + type: SignalReceiver + - uid: 13024 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,3.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116732.86 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13040 + type: SignalReceiver + - uid: 13025 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116732.86 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13040 + type: SignalReceiver + - uid: 13026 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116732.86 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13040 + type: SignalReceiver + - uid: 13027 + components: + - pos: -8.5,11.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116732.86 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13040 + type: SignalReceiver + - uid: 13028 + components: + - pos: -6.5,11.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116732.86 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13040 + type: SignalReceiver + - uid: 13029 + components: + - pos: -7.5,11.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116732.86 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13040 + type: SignalReceiver + - uid: 13030 + components: + - pos: -5.5,11.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116732.86 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13040 + type: SignalReceiver + - uid: 13031 + components: + - pos: -3.5,11.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116732.86 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13040 + type: SignalReceiver + - uid: 13032 + components: + - pos: -2.5,11.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116732.86 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13040 + type: SignalReceiver + - uid: 13033 + components: + - pos: -1.5,11.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116732.86 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13040 + type: SignalReceiver + - uid: 13034 + components: + - pos: -0.5,11.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116732.86 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13040 + type: SignalReceiver + - uid: 13035 + components: + - pos: -3.5,-8.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116728.36 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13039 + type: SignalReceiver + - uid: 13036 + components: + - pos: -2.5,-8.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116728.36 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13039 + type: SignalReceiver + - uid: 13037 + components: + - pos: -1.5,-8.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116728.36 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13039 + type: SignalReceiver + - uid: 13042 + components: + - pos: 13.5,9.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116547.05 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13041 + type: SignalReceiver + - uid: 13043 + components: + - pos: 13.5,8.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116547.05 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13041 + type: SignalReceiver + - uid: 13044 + components: + - pos: 13.5,7.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116547.05 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13041 + type: SignalReceiver + - uid: 13048 + components: + - pos: 8.5,-34.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116369.23 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13047 + type: SignalReceiver + - uid: 13049 + components: + - pos: 9.5,-34.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116369.23 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13047 + type: SignalReceiver + - uid: 13050 + components: + - pos: 11.5,-33.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116369.23 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13047 + type: SignalReceiver +- proto: ShuttersNormalOpen + entities: + - uid: 7667 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 6523 + type: SignalReceiver + - uid: 7668 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 6523 + type: SignalReceiver + - uid: 7669 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 6523 + type: SignalReceiver + - uid: 7670 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 6524 + type: SignalReceiver + - uid: 7671 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 6524 + type: SignalReceiver + - uid: 7672 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 6524 + type: SignalReceiver + - uid: 8383 + components: + - pos: -23.5,-5.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 8384 + type: SignalReceiver +- proto: ShuttersWindow + entities: + - uid: 13038 + components: + - pos: -0.5,-8.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -116728.36 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13039 + type: SignalReceiver +- proto: ShuttersWindowOpen + entities: + - uid: 7364 + components: + - pos: 0.5,-18.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13045 + type: SignalReceiver + - uid: 7365 + components: + - pos: 1.5,-18.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13045 + type: SignalReceiver + - uid: 7366 + components: + - pos: 2.5,-18.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13045 + type: SignalReceiver + - uid: 7367 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13045 + type: SignalReceiver + - uid: 7368 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13045 + type: SignalReceiver + - uid: 7369 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13045 + type: SignalReceiver + - uid: 7370 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13045 + type: SignalReceiver + - uid: 7371 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-25.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13046 + type: SignalReceiver + - uid: 7372 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-26.5 + parent: 6 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 13046 + type: SignalReceiver +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 13628 + components: + - pos: 7.515518,-3.5073776 + parent: 10465 + type: Transform +- proto: ShuttleWindow + entities: + - uid: 13659 + components: + - rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 13645 + type: Transform + - uid: 13660 + components: + - rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 13645 + type: Transform + - uid: 13664 + components: + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 13645 + type: Transform + - uid: 13666 + components: + - rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 13645 + type: Transform +- proto: SignAi + entities: + - uid: 6747 + components: + - pos: -74.5,-44.5 + parent: 6 + type: Transform +- proto: SignalButton + entities: + - uid: 3655 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-64.5 + parent: 6 + type: Transform + - outputs: + Pressed: + - port: Toggle + uid: 3699 + - port: Toggle + uid: 3700 + - port: Toggle + uid: 3702 + - port: Toggle + uid: 3696 + - port: Toggle + uid: 3697 + - port: Toggle + uid: 3698 + type: SignalTransmitter + - uid: 3656 + components: + - pos: -4.5,-68.5 + parent: 6 + type: Transform + - outputs: + Pressed: + - port: Toggle + uid: 3699 + - port: Toggle + uid: 3700 + - port: Toggle + uid: 3702 + - port: Toggle + uid: 3696 + - port: Toggle + uid: 3697 + - port: Toggle + uid: 3698 + type: SignalTransmitter + - uid: 3965 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-47.5 + parent: 6 + type: Transform + - outputs: + Pressed: + - port: Toggle + uid: 1345 + - port: Toggle + uid: 1346 + type: SignalTransmitter + - uid: 4909 + components: + - pos: -31.5,20.5 + parent: 6 + type: Transform + - outputs: + Pressed: + - port: Toggle + uid: 4908 + type: SignalTransmitter + - uid: 4910 + components: + - rot: 3.141592653589793 rad + pos: -32.5,27.5 + parent: 6 + type: Transform + - outputs: + Pressed: + - port: Toggle + uid: 4908 + type: SignalTransmitter + - uid: 5599 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-39.5 + parent: 6 + type: Transform + - state: True + type: SignalSwitch + - outputs: + Pressed: + - port: Toggle + uid: 5597 + - port: Toggle + uid: 5598 + type: SignalTransmitter + - type: ItemCooldown + - uid: 5600 + components: + - rot: -1.5707963267948966 rad + pos: 20.217419,-36.337383 + parent: 6 + type: Transform + - outputs: + Pressed: + - port: Toggle + uid: 1267 + - port: Toggle + uid: 1264 + type: SignalTransmitter + - uid: 5601 + components: + - rot: -1.5707963267948966 rad + pos: 20.217419,-36.635395 + parent: 6 + type: Transform + - outputs: + Pressed: + - port: Toggle + uid: 1266 + - port: Toggle + uid: 1265 + type: SignalTransmitter + - uid: 6388 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-78.5 + parent: 6 + type: Transform + - outputs: + Pressed: + - port: Toggle + uid: 6386 + type: SignalTransmitter + - uid: 6389 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-78.5 + parent: 6 + type: Transform + - outputs: + Pressed: + - port: Toggle + uid: 6387 + type: SignalTransmitter + - uid: 6523 + components: + - rot: 1.5707963267948966 rad + pos: 10.592008,1.6308464 + parent: 6 + type: Transform + - outputs: + Pressed: + - port: Toggle + uid: 7669 + - port: Toggle + uid: 7668 + - port: Toggle + uid: 7667 + type: SignalTransmitter + - uid: 6524 + components: + - rot: 1.5707963267948966 rad + pos: 10.596431,1.3530883 + parent: 6 + type: Transform + - outputs: + Pressed: + - port: Toggle + uid: 7670 + - port: Toggle + uid: 7671 + - port: Toggle + uid: 7672 + type: SignalTransmitter + - uid: 8384 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-4.5 + parent: 6 + type: Transform + - state: True + type: SignalSwitch + - outputs: + Pressed: + - port: Toggle + uid: 8382 + - port: Toggle + uid: 8381 + - port: Toggle + uid: 8383 + type: SignalTransmitter + - type: ItemCooldown + - uid: 13039 + components: + - pos: -2.5,-4.5 + parent: 6 + type: Transform + - state: True + type: SignalSwitch + - outputs: + Pressed: + - port: Toggle + uid: 13035 + - port: Toggle + uid: 13036 + - port: Toggle + uid: 13037 + - port: Toggle + uid: 13038 + type: SignalTransmitter + - type: ItemCooldown + - uid: 13040 + components: + - rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 6 + type: Transform + - state: True + type: SignalSwitch + - outputs: + Pressed: + - port: Toggle + uid: 13027 + - port: Toggle + uid: 13029 + - port: Toggle + uid: 13028 + - port: Toggle + uid: 13030 + - port: Toggle + uid: 13031 + - port: Toggle + uid: 13032 + - port: Toggle + uid: 13033 + - port: Toggle + uid: 13034 + - port: Toggle + uid: 13025 + - port: Toggle + uid: 13026 + - port: Toggle + uid: 13023 + - port: Toggle + uid: 13024 + type: SignalTransmitter + - type: ItemCooldown + - uid: 13041 + components: + - pos: 12.5,10.5 + parent: 6 + type: Transform + - state: True + type: SignalSwitch + - outputs: + Pressed: + - port: Toggle + uid: 13044 + - port: Toggle + uid: 13043 + - port: Toggle + uid: 13042 + type: SignalTransmitter + - type: ItemCooldown + - uid: 13045 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 6 + type: Transform + - outputs: + Pressed: + - port: Toggle + uid: 7364 + - port: Toggle + uid: 7365 + - port: Toggle + uid: 7366 + - port: Toggle + uid: 7367 + - port: Toggle + uid: 7368 + - port: Toggle + uid: 7369 + - port: Toggle + uid: 7370 + type: SignalTransmitter + - uid: 13046 + components: + - pos: -8.5,-23.5 + parent: 6 + type: Transform + - outputs: + Pressed: + - port: Toggle + uid: 7371 + - port: Toggle + uid: 7372 + type: SignalTransmitter + - uid: 13047 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-32.5 + parent: 6 + type: Transform + - state: True + type: SignalSwitch + - outputs: + Pressed: + - port: Toggle + uid: 13050 + - port: Toggle + uid: 13049 + - port: Toggle + uid: 13048 + type: SignalTransmitter + - type: ItemCooldown + - uid: 13052 + components: + - pos: -53.5,-30.5 + parent: 6 + type: Transform + - outputs: + Pressed: + - port: Toggle + uid: 2968 + type: SignalTransmitter +- proto: SignAnomaly + entities: + - uid: 13310 + components: + - pos: -7.5,-60.5 + parent: 6 + type: Transform +- proto: SignArmory + entities: + - uid: 13266 + components: + - pos: 16.5,5.5 + parent: 6 + type: Transform +- proto: SignAtmos + entities: + - uid: 13265 + components: + - pos: -30.5,5.5 + parent: 6 + type: Transform +- proto: SignAtmosMinsky + entities: + - uid: 13178 + components: + - pos: -32.5,5.5 + parent: 6 + type: Transform + - uid: 13179 + components: + - pos: -30.5,8.5 + parent: 6 + type: Transform +- proto: SignBar + entities: + - uid: 13267 + components: + - pos: 4.5,-13.5 + parent: 6 + type: Transform + - uid: 13268 + components: + - pos: 4.5,-18.5 + parent: 6 + type: Transform +- proto: SignBridge + entities: + - uid: 13269 + components: + - pos: 4.5,5.5 + parent: 6 + type: Transform + - uid: 13270 + components: + - pos: -13.5,5.5 + parent: 6 + type: Transform + - uid: 13271 + components: + - pos: -13.5,2.5 + parent: 6 + type: Transform + - uid: 13272 + components: + - pos: 4.5,2.5 + parent: 6 + type: Transform +- proto: SignCargo + entities: + - uid: 13275 + components: + - pos: 10.5,-38.5 + parent: 6 + type: Transform + - uid: 13276 + components: + - pos: 7.5,-34.5 + parent: 6 + type: Transform + - uid: 13384 + components: + - pos: 19.5,-44.5 + parent: 6 + type: Transform +- proto: SignCargoDock + entities: + - uid: 13273 + components: + - pos: 23.5,-39.5 + parent: 6 + type: Transform + - uid: 13274 + components: + - pos: 23.5,-33.5 + parent: 6 + type: Transform +- proto: SignChapel + entities: + - uid: 13277 + components: + - pos: -30.5,-46.5 + parent: 6 + type: Transform + - uid: 13278 + components: + - pos: -36.5,-46.5 + parent: 6 + type: Transform +- proto: SignChem + entities: + - uid: 13279 + components: + - pos: -20.5,-18.5 + parent: 6 + type: Transform +- proto: SignChemistry1 + entities: + - uid: 13280 + components: + - pos: -24.5,-18.5 + parent: 6 + type: Transform +- proto: SignCloning + entities: + - uid: 13281 + components: + - pos: -31.5,-19.5 + parent: 6 + type: Transform +- proto: SignConference + entities: + - uid: 13282 + components: + - pos: 0.5,2.5 + parent: 6 + type: Transform + - uid: 13283 + components: + - pos: -2.5,2.5 + parent: 6 + type: Transform +- proto: SignCryogenicsMed + entities: + - uid: 6420 + components: + - pos: -27.5,-19.5 + parent: 6 + type: Transform +- proto: SignDirectionalBar + entities: + - uid: 13223 + components: + - rot: 1.5707963267948966 rad + pos: -12.468365,-42.793804 + parent: 6 + type: Transform +- proto: SignDirectionalBridge + entities: + - uid: 13187 + components: + - rot: 1.5707963267948966 rad + pos: -51.471092,-9.207319 + parent: 6 + type: Transform + - uid: 13199 + components: + - rot: 1.5707963267948966 rad + pos: -31.484907,-13.697205 + parent: 6 + type: Transform + - uid: 13204 + components: + - rot: 3.141592653589793 rad + pos: -16.491478,-9.234153 + parent: 6 + type: Transform + - uid: 13231 + components: + - rot: 1.5707963267948966 rad + pos: -44.488472,-42.832462 + parent: 6 + type: Transform + - uid: 13232 + components: + - rot: 3.141592653589793 rad + pos: 7.5333533,-41.251606 + parent: 6 + type: Transform + - uid: 13253 + components: + - rot: 3.141592653589793 rad + pos: 4.526425,-9.180034 + parent: 6 + type: Transform +- proto: SignDirectionalBrig + entities: + - uid: 5909 + components: + - rot: 3.141592653589793 rad + pos: 16.5,9.5 + parent: 6 + type: Transform +- proto: SignDirectionalDorms + entities: + - uid: 13203 + components: + - pos: -16.473507,-13.825976 + parent: 6 + type: Transform + - uid: 13215 + components: + - pos: -16.470768,-34.771725 + parent: 6 + type: Transform + - uid: 13216 + components: + - rot: -1.5707963267948966 rad + pos: -16.489271,-42.194244 + parent: 6 + type: Transform + - uid: 13238 + components: + - rot: -1.5707963267948966 rad + pos: 3.5178459,-41.677635 + parent: 6 + type: Transform +- proto: SignDirectionalEng + entities: + - uid: 13188 + components: + - rot: 1.5707963267948966 rad + pos: -51.471092,-9.445729 + parent: 6 + type: Transform + - uid: 13201 + components: + - rot: -1.5707963267948966 rad + pos: -16.476416,-13.40592 + parent: 6 + type: Transform + - uid: 13210 + components: + - rot: 3.141592653589793 rad + pos: -16.470768,-33.633743 + parent: 6 + type: Transform + - uid: 13217 + components: + - rot: 3.141592653589793 rad + pos: -16.489101,-42.396454 + parent: 6 + type: Transform + - uid: 13226 + components: + - rot: 1.5707963267948966 rad + pos: -41.480995,-42.62811 + parent: 6 + type: Transform + - uid: 13235 + components: + - rot: 3.141592653589793 rad + pos: 7.5275826,-41.904694 + parent: 6 + type: Transform + - uid: 13245 + components: + - rot: 3.141592653589793 rad + pos: 3.5258262,-27.671892 + parent: 6 + type: Transform + - uid: 13247 + components: + - rot: -1.5707963267948966 rad + pos: 7.513849,-9.407091 + parent: 6 + type: Transform + - uid: 13261 + components: + - rot: -1.5707963267948966 rad + pos: 32.534897,-9.800926 + parent: 6 + type: Transform +- proto: SignDirectionalEvac + entities: + - uid: 13196 + components: + - rot: -1.5707963267948966 rad + pos: -49.490036,-13.231736 + parent: 6 + type: Transform + - uid: 13197 + components: + - rot: -1.5707963267948966 rad + pos: -31.481388,-13.231736 + parent: 6 + type: Transform + - uid: 13200 + components: + - rot: -1.5707963267948966 rad + pos: -16.476416,-13.190215 + parent: 6 + type: Transform + - uid: 13207 + components: + - rot: 3.141592653589793 rad + pos: -16.470768,-33.168278 + parent: 6 + type: Transform + - uid: 13219 + components: + - rot: 3.141592653589793 rad + pos: -16.489101,-42.816513 + parent: 6 + type: Transform + - uid: 13224 + components: + - rot: 1.5707963267948966 rad + pos: -41.480995,-42.208054 + parent: 6 + type: Transform + - uid: 13234 + components: + - rot: 3.141592653589793 rad + pos: 7.5275826,-41.688988 + parent: 6 + type: Transform + - uid: 13244 + components: + - rot: 3.141592653589793 rad + pos: 3.5258262,-27.456186 + parent: 6 + type: Transform + - uid: 13246 + components: + - rot: -1.5707963267948966 rad + pos: 7.513849,-9.195249 + parent: 6 + type: Transform + - uid: 13259 + components: + - rot: -1.5707963267948966 rad + pos: 32.534897,-9.392222 + parent: 6 + type: Transform +- proto: SignDirectionalFood + entities: + - uid: 13225 + components: + - rot: 1.5707963267948966 rad + pos: -41.480995,-42.42376 + parent: 6 + type: Transform + - uid: 13242 + components: + - rot: -1.5707963267948966 rad + pos: 7.529145,-27.683245 + parent: 6 + type: Transform + - uid: 13252 + components: + - pos: 4.526425,-9.384386 + parent: 6 + type: Transform + - uid: 13260 + components: + - rot: -1.5707963267948966 rad + pos: 32.534897,-9.607927 + parent: 6 + type: Transform +- proto: SignDirectionalHop + entities: + - uid: 13198 + components: + - rot: 1.5707963267948966 rad + pos: -31.481388,-13.458794 + parent: 6 + type: Transform + - uid: 13208 + components: + - rot: 1.5707963267948966 rad + pos: -16.491478,-9.847209 + parent: 6 + type: Transform + - uid: 13209 + components: + - rot: 3.141592653589793 rad + pos: -16.470768,-33.395336 + parent: 6 + type: Transform + - uid: 13236 + components: + - rot: 3.141592653589793 rad + pos: 3.5178459,-41.246223 + parent: 6 + type: Transform + - uid: 13248 + components: + - rot: -1.5707963267948966 rad + pos: 7.513849,-9.6114435 + parent: 6 + type: Transform + - uid: 13257 + components: + - rot: -1.5707963267948966 rad + pos: 29.513391,-9.857691 + parent: 6 + type: Transform +- proto: SignDirectionalJanitor + entities: + - uid: 9504 + components: + - rot: 1.5707963267948966 rad + pos: 4.529042,-9.595794 + parent: 6 + type: Transform + - uid: 13258 + components: + - rot: 3.141592653589793 rad + pos: 32.534897,-9.187871 + parent: 6 + type: Transform +- proto: SignDirectionalMed + entities: + - uid: 13194 + components: + - rot: 1.5707963267948966 rad + pos: -49.490036,-13.708557 + parent: 6 + type: Transform + - uid: 13211 + components: + - rot: 3.141592653589793 rad + pos: -16.470768,-33.8608 + parent: 6 + type: Transform + - uid: 13218 + components: + - rot: 3.141592653589793 rad + pos: -16.489101,-42.600807 + parent: 6 + type: Transform + - uid: 13229 + components: + - rot: 1.5707963267948966 rad + pos: -44.494762,-42.40105 + parent: 6 + type: Transform + - uid: 13249 + components: + - rot: -1.5707963267948966 rad + pos: 7.513849,-9.815796 + parent: 6 + type: Transform + - uid: 13256 + components: + - rot: -1.5707963267948966 rad + pos: 29.513391,-9.653339 + parent: 6 + type: Transform +- proto: SignDirectionalSalvage + entities: + - uid: 13214 + components: + - pos: -16.470768,-34.541977 + parent: 6 + type: Transform + - uid: 13222 + components: + - rot: 1.5707963267948966 rad + pos: -12.47234,-42.578102 + parent: 6 + type: Transform + - uid: 13239 + components: + - pos: 3.5178459,-41.89334 + parent: 6 + type: Transform +- proto: SignDirectionalSci + entities: + - uid: 13193 + components: + - rot: 1.5707963267948966 rad + pos: -35.48309,-13.696247 + parent: 6 + type: Transform + - uid: 13195 + components: + - rot: 1.5707963267948966 rad + pos: -49.490036,-13.470147 + parent: 6 + type: Transform + - uid: 13202 + components: + - pos: -16.476416,-13.621625 + parent: 6 + type: Transform + - uid: 13213 + components: + - pos: -16.470768,-34.31492 + parent: 6 + type: Transform + - uid: 13228 + components: + - rot: 1.5707963267948966 rad + pos: -44.490685,-42.208054 + parent: 6 + type: Transform + - uid: 13237 + components: + - rot: -1.5707963267948966 rad + pos: 3.5178459,-41.46193 + parent: 6 + type: Transform + - uid: 13241 + components: + - pos: 7.529145,-27.46754 + parent: 6 + type: Transform + - uid: 13255 + components: + - rot: -1.5707963267948966 rad + pos: 29.513391,-9.437634 + parent: 6 + type: Transform +- proto: SignDirectionalSec + entities: + - uid: 13189 + components: + - rot: 1.5707963267948966 rad + pos: -51.471092,-9.68414 + parent: 6 + type: Transform + - uid: 13191 + components: + - rot: 1.5707963267948966 rad + pos: -35.48309,-13.219425 + parent: 6 + type: Transform + - uid: 13205 + components: + - rot: 1.5707963267948966 rad + pos: -16.491478,-9.438504 + parent: 6 + type: Transform + - uid: 13212 + components: + - rot: 3.141592653589793 rad + pos: -16.470768,-34.08786 + parent: 6 + type: Transform + - uid: 13221 + components: + - rot: 1.5707963267948966 rad + pos: -12.47234,-42.362396 + parent: 6 + type: Transform + - uid: 13227 + components: + - rot: 1.5707963267948966 rad + pos: -41.480995,-42.832462 + parent: 6 + type: Transform + - uid: 13233 + components: + - rot: 3.141592653589793 rad + pos: 7.5275826,-41.47328 + parent: 6 + type: Transform + - uid: 13243 + components: + - rot: 3.141592653589793 rad + pos: 3.5258262,-27.240482 + parent: 6 + type: Transform + - uid: 13254 + components: + - rot: -1.5707963267948966 rad + pos: 29.513391,-9.22193 + parent: 6 + type: Transform +- proto: SignDirectionalSolar + entities: + - uid: 8215 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,15.5 + parent: 6 + type: Transform + - uid: 8216 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,19.5 + parent: 6 + type: Transform + - uid: 8217 + components: + - pos: -63.5,-15.5 + parent: 6 + type: Transform + - uid: 8218 + components: + - pos: -23.5,-47.5 + parent: 6 + type: Transform + - uid: 8219 + components: + - pos: -18.5,-54.5 + parent: 6 + type: Transform + - uid: 8226 + components: + - pos: -22.5,-60.5 + parent: 6 + type: Transform + - uid: 8251 + components: + - pos: -25.5,-60.5 + parent: 6 + type: Transform + - uid: 8252 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-57.5 + parent: 6 + type: Transform + - uid: 8272 + components: + - pos: -39.5,-46.5 + parent: 6 + type: Transform + - uid: 8283 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-19.5 + parent: 6 + type: Transform + - uid: 8285 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-23.5 + parent: 6 + type: Transform + - uid: 8287 + components: + - pos: 20.5,-14.5 + parent: 6 + type: Transform + - uid: 8330 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-30.5 + parent: 6 + type: Transform + - uid: 8436 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-28.5 + parent: 6 + type: Transform + - uid: 13190 + components: + - pos: -59.487583,-17.47181 + parent: 6 + type: Transform +- proto: SignDirectionalSupply + entities: + - uid: 13192 + components: + - rot: 1.5707963267948966 rad + pos: -35.48309,-13.457836 + parent: 6 + type: Transform + - uid: 13206 + components: + - rot: 1.5707963267948966 rad + pos: -16.491478,-9.642858 + parent: 6 + type: Transform + - uid: 13220 + components: + - rot: 1.5707963267948966 rad + pos: -12.47234,-42.14669 + parent: 6 + type: Transform + - uid: 13230 + components: + - rot: 1.5707963267948966 rad + pos: -44.494762,-42.616756 + parent: 6 + type: Transform + - uid: 13240 + components: + - pos: 7.529145,-27.251835 + parent: 6 + type: Transform + - uid: 13250 + components: + - pos: 4.526425,-9.804442 + parent: 6 + type: Transform +- proto: SignDisposalSpace + entities: + - uid: 13284 + components: + - pos: -55.5,-30.5 + parent: 6 + type: Transform + - uid: 13285 + components: + - pos: -50.5,-33.5 + parent: 6 + type: Transform + - uid: 13293 + components: + - pos: 25.5,-20.5 + parent: 6 + type: Transform + - uid: 13295 + components: + - pos: 4.5,-55.5 + parent: 6 + type: Transform + - uid: 13297 + components: + - pos: -24.5,-64.5 + parent: 6 + type: Transform +- proto: SignDoors + entities: + - uid: 13180 + components: + - pos: -31.5,21.5 + parent: 6 + type: Transform + - uid: 13286 + components: + - pos: -62.5,-17.5 + parent: 6 + type: Transform + - uid: 13287 + components: + - pos: -65.5,-9.5 + parent: 6 + type: Transform + - uid: 13288 + components: + - pos: -57.5,-9.5 + parent: 6 + type: Transform + - uid: 13289 + components: + - pos: 45.5,-3.5 + parent: 6 + type: Transform + - uid: 13290 + components: + - pos: 45.5,0.5 + parent: 6 + type: Transform + - uid: 13291 + components: + - pos: 21.5,-20.5 + parent: 6 + type: Transform + - uid: 13294 + components: + - pos: 7.5,-52.5 + parent: 6 + type: Transform + - uid: 13296 + components: + - pos: -24.5,-60.5 + parent: 6 + type: Transform +- proto: SignDrones + entities: + - uid: 13300 + components: + - pos: -46.5,-22.5 + parent: 6 + type: Transform +- proto: SignEngineering + entities: + - uid: 13181 + components: + - pos: -29.5,-8.5 + parent: 6 + type: Transform +- proto: SignEVA + entities: + - uid: 7632 + components: + - pos: -47.5,-13.5 + parent: 6 + type: Transform + - uid: 13263 + components: + - pos: -44.5,-13.5 + parent: 6 + type: Transform +- proto: SignFire + entities: + - uid: 13185 + components: + - pos: -32.5,25.5 + parent: 6 + type: Transform + - uid: 13186 + components: + - pos: -36.5,27.5 + parent: 6 + type: Transform +- proto: SignFlammableMed + entities: + - uid: 13184 + components: + - pos: -36.5,25.5 + parent: 6 + type: Transform +- proto: SignGravity + entities: + - uid: 13182 + components: + - pos: -25.5,0.5 + parent: 6 + type: Transform +- proto: SignHydro2 + entities: + - uid: 13301 + components: + - pos: -13.5,-17.5 + parent: 6 + type: Transform +- proto: SignLibrary + entities: + - uid: 7751 + components: + - pos: -18.5,-42.5 + parent: 6 + type: Transform + - uid: 13302 + components: + - pos: -20.5,-42.5 + parent: 6 + type: Transform +- proto: SignMedical + entities: + - uid: 13303 + components: + - pos: -20.5,-13.5 + parent: 6 + type: Transform + - uid: 13304 + components: + - pos: -16.5,-17.5 + parent: 6 + type: Transform +- proto: SignMorgue + entities: + - uid: 13305 + components: + - pos: -31.5,-23.5 + parent: 6 + type: Transform +- proto: SignPrison + entities: + - uid: 5975 + components: + - pos: 16.5,13.5 + parent: 6 + type: Transform + - uid: 6038 + components: + - pos: 16.5,10.5 + parent: 6 + type: Transform +- proto: SignRND + entities: + - uid: 13306 + components: + - pos: -8.5,-49.5 + parent: 6 + type: Transform +- proto: SignRobo + entities: + - uid: 13307 + components: + - pos: -18.5,-46.5 + parent: 6 + type: Transform +- proto: SignScience + entities: + - uid: 13308 + components: + - pos: -13.5,-46.5 + parent: 6 + type: Transform +- proto: SignSecureSmall + entities: + - uid: 13312 + components: + - pos: -28.5,0.5 + parent: 6 + type: Transform +- proto: SignSecureSmallRed + entities: + - uid: 13313 + components: + - pos: -19.5,0.5 + parent: 6 + type: Transform + - uid: 13314 + components: + - pos: -21.5,0.5 + parent: 6 + type: Transform +- proto: SignShipDock + entities: + - uid: 13292 + components: + - pos: 23.5,-36.5 + parent: 6 + type: Transform +- proto: SignTelecomms + entities: + - uid: 12003 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-44.5 + parent: 6 + type: Transform +- proto: SignToolStorage + entities: + - uid: 13309 + components: + - pos: -16.5,5.5 + parent: 6 + type: Transform +- proto: SignXenolab + entities: + - uid: 13311 + components: + - pos: -4.5,-60.5 + parent: 6 + type: Transform +- proto: Sink + entities: + - uid: 4620 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 6 + type: Transform + - uid: 5410 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-41.5 + parent: 6 + type: Transform + - uid: 5411 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-41.5 + parent: 6 + type: Transform + - uid: 5412 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-41.5 + parent: 6 + type: Transform + - uid: 8581 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-24.5 + parent: 6 + type: Transform +- proto: SinkStemlessWater + entities: + - uid: 3471 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-15.5 + parent: 6 + type: Transform + - uid: 5163 + components: + - pos: -8.5,-3.5 + parent: 6 + type: Transform + - uid: 6000 + components: + - pos: 12.5,23.5 + parent: 6 + type: Transform +- proto: SMESBasic + entities: + - uid: 4520 + components: + - pos: -26.5,-3.5 + parent: 6 + type: Transform + - uid: 4915 + components: + - pos: -24.5,16.5 + parent: 6 + type: Transform + - uid: 5013 + components: + - pos: -27.5,-3.5 + parent: 6 + type: Transform + - uid: 5568 + components: + - pos: -59.5,-20.5 + parent: 6 + type: Transform + - uid: 6196 + components: + - pos: -57.5,-47.5 + parent: 6 + type: Transform + - uid: 6665 + components: + - pos: -22.5,-63.5 + parent: 6 + type: Transform + - uid: 7218 + components: + - pos: 24.5,-22.5 + parent: 6 + type: Transform +- proto: SmokingPipe + entities: + - uid: 832 + components: + - pos: 2.4364183,-26.433908 + parent: 6 + type: Transform +- proto: SmokingPipeFilledCannabis + entities: + - uid: 5916 + components: + - pos: 12.611983,18.326534 + parent: 6 + type: Transform +- proto: SmokingPipeFilledTobacco + entities: + - uid: 5180 + components: + - pos: -1.3270658,-0.54166234 + parent: 6 + type: Transform + - uid: 5902 + components: + - pos: -1.6699085,-46.365376 + parent: 6 + type: Transform +- proto: SoapNT + entities: + - uid: 7642 + components: + - pos: 27.621904,3.4726746 + parent: 6 + type: Transform +- proto: soda_dispenser + entities: + - uid: 4465 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-15.5 + parent: 6 + type: Transform + - uid: 4619 + components: + - pos: 1.5,-14.5 + parent: 6 + type: Transform +- proto: SolarPanel + entities: + - uid: 3515 + components: + - pos: 30.5,-16.5 + parent: 6 + type: Transform + - uid: 3516 + components: + - pos: 30.5,-17.5 + parent: 6 + type: Transform + - uid: 3517 + components: + - pos: 30.5,-18.5 + parent: 6 + type: Transform + - uid: 3518 + components: + - pos: 30.5,-19.5 + parent: 6 + type: Transform + - uid: 3519 + components: + - pos: 30.5,-20.5 + parent: 6 + type: Transform + - uid: 3520 + components: + - pos: 30.5,-21.5 + parent: 6 + type: Transform + - uid: 3521 + components: + - pos: 30.5,-22.5 + parent: 6 + type: Transform + - uid: 3522 + components: + - pos: 30.5,-23.5 + parent: 6 + type: Transform + - uid: 3523 + components: + - pos: 32.5,-16.5 + parent: 6 + type: Transform + - uid: 3524 + components: + - pos: 32.5,-17.5 + parent: 6 + type: Transform + - uid: 3525 + components: + - pos: 32.5,-18.5 + parent: 6 + type: Transform + - uid: 3526 + components: + - pos: 32.5,-19.5 + parent: 6 + type: Transform + - uid: 3527 + components: + - pos: 32.5,-20.5 + parent: 6 + type: Transform + - uid: 3528 + components: + - pos: 32.5,-21.5 + parent: 6 + type: Transform + - uid: 3529 + components: + - pos: 32.5,-22.5 + parent: 6 + type: Transform + - uid: 3530 + components: + - pos: 32.5,-23.5 + parent: 6 + type: Transform + - uid: 3531 + components: + - pos: 34.5,-16.5 + parent: 6 + type: Transform + - uid: 3532 + components: + - pos: 34.5,-17.5 + parent: 6 + type: Transform + - uid: 3533 + components: + - pos: 34.5,-18.5 + parent: 6 + type: Transform + - uid: 3534 + components: + - pos: 34.5,-19.5 + parent: 6 + type: Transform + - uid: 3535 + components: + - pos: 34.5,-20.5 + parent: 6 + type: Transform + - uid: 3536 + components: + - pos: 34.5,-21.5 + parent: 6 + type: Transform + - uid: 3537 + components: + - pos: 34.5,-22.5 + parent: 6 + type: Transform + - uid: 3538 + components: + - pos: 34.5,-23.5 + parent: 6 + type: Transform + - uid: 3539 + components: + - pos: 36.5,-16.5 + parent: 6 + type: Transform + - uid: 3540 + components: + - pos: 36.5,-17.5 + parent: 6 + type: Transform + - uid: 3541 + components: + - pos: 36.5,-18.5 + parent: 6 + type: Transform + - uid: 3542 + components: + - pos: 36.5,-19.5 + parent: 6 + type: Transform + - uid: 3543 + components: + - pos: 36.5,-20.5 + parent: 6 + type: Transform + - uid: 3544 + components: + - pos: 36.5,-21.5 + parent: 6 + type: Transform + - uid: 3545 + components: + - pos: 36.5,-22.5 + parent: 6 + type: Transform + - uid: 3546 + components: + - pos: 36.5,-23.5 + parent: 6 + type: Transform + - uid: 3547 + components: + - pos: 38.5,-16.5 + parent: 6 + type: Transform + - uid: 3548 + components: + - pos: 38.5,-17.5 + parent: 6 + type: Transform + - uid: 3549 + components: + - pos: 38.5,-18.5 + parent: 6 + type: Transform + - uid: 3550 + components: + - pos: 38.5,-19.5 + parent: 6 + type: Transform + - uid: 3551 + components: + - pos: 38.5,-20.5 + parent: 6 + type: Transform + - uid: 3552 + components: + - pos: 38.5,-21.5 + parent: 6 + type: Transform + - uid: 3553 + components: + - pos: 38.5,-22.5 + parent: 6 + type: Transform + - uid: 3554 + components: + - pos: 38.5,-23.5 + parent: 6 + type: Transform + - uid: 3555 + components: + - pos: 40.5,-16.5 + parent: 6 + type: Transform + - uid: 3556 + components: + - pos: 40.5,-17.5 + parent: 6 + type: Transform + - uid: 3557 + components: + - pos: 40.5,-18.5 + parent: 6 + type: Transform + - uid: 3558 + components: + - pos: 40.5,-19.5 + parent: 6 + type: Transform + - uid: 3559 + components: + - pos: 40.5,-20.5 + parent: 6 + type: Transform + - uid: 3560 + components: + - pos: 40.5,-21.5 + parent: 6 + type: Transform + - uid: 3561 + components: + - pos: 40.5,-22.5 + parent: 6 + type: Transform + - uid: 3562 + components: + - pos: 40.5,-23.5 + parent: 6 + type: Transform + - uid: 3563 + components: + - pos: 42.5,-16.5 + parent: 6 + type: Transform + - uid: 3564 + components: + - pos: 42.5,-17.5 + parent: 6 + type: Transform + - uid: 3565 + components: + - pos: 42.5,-18.5 + parent: 6 + type: Transform + - uid: 3566 + components: + - pos: 42.5,-19.5 + parent: 6 + type: Transform + - uid: 3567 + components: + - pos: 42.5,-20.5 + parent: 6 + type: Transform + - uid: 3568 + components: + - pos: 42.5,-21.5 + parent: 6 + type: Transform + - uid: 3569 + components: + - pos: 42.5,-22.5 + parent: 6 + type: Transform + - uid: 3570 + components: + - pos: 42.5,-23.5 + parent: 6 + type: Transform + - uid: 3571 + components: + - pos: 44.5,-16.5 + parent: 6 + type: Transform + - uid: 3572 + components: + - pos: 44.5,-17.5 + parent: 6 + type: Transform + - uid: 3573 + components: + - pos: 44.5,-18.5 + parent: 6 + type: Transform + - uid: 3574 + components: + - pos: 44.5,-19.5 + parent: 6 + type: Transform + - uid: 3575 + components: + - pos: 44.5,-20.5 + parent: 6 + type: Transform + - uid: 3576 + components: + - pos: 44.5,-21.5 + parent: 6 + type: Transform + - uid: 3577 + components: + - pos: 44.5,-22.5 + parent: 6 + type: Transform + - uid: 3578 + components: + - pos: 44.5,-23.5 + parent: 6 + type: Transform + - uid: 4029 + components: + - pos: -32.5,-82.5 + parent: 6 + type: Transform + - uid: 4030 + components: + - pos: -31.5,-82.5 + parent: 6 + type: Transform + - uid: 4031 + components: + - pos: -30.5,-82.5 + parent: 6 + type: Transform + - uid: 4032 + components: + - pos: -29.5,-82.5 + parent: 6 + type: Transform + - uid: 4033 + components: + - pos: -28.5,-82.5 + parent: 6 + type: Transform + - uid: 4034 + components: + - pos: -27.5,-82.5 + parent: 6 + type: Transform + - uid: 4035 + components: + - pos: -26.5,-82.5 + parent: 6 + type: Transform + - uid: 4036 + components: + - pos: -25.5,-82.5 + parent: 6 + type: Transform + - uid: 4037 + components: + - pos: -25.5,-80.5 + parent: 6 + type: Transform + - uid: 4038 + components: + - pos: -26.5,-80.5 + parent: 6 + type: Transform + - uid: 4039 + components: + - pos: -27.5,-80.5 + parent: 6 + type: Transform + - uid: 4040 + components: + - pos: -28.5,-80.5 + parent: 6 + type: Transform + - uid: 4041 + components: + - pos: -29.5,-80.5 + parent: 6 + type: Transform + - uid: 4042 + components: + - pos: -30.5,-80.5 + parent: 6 + type: Transform + - uid: 4043 + components: + - pos: -31.5,-80.5 + parent: 6 + type: Transform + - uid: 4044 + components: + - pos: -32.5,-80.5 + parent: 6 + type: Transform + - uid: 4045 + components: + - pos: -32.5,-78.5 + parent: 6 + type: Transform + - uid: 4046 + components: + - pos: -31.5,-78.5 + parent: 6 + type: Transform + - uid: 4047 + components: + - pos: -30.5,-78.5 + parent: 6 + type: Transform + - uid: 4048 + components: + - pos: -29.5,-78.5 + parent: 6 + type: Transform + - uid: 4049 + components: + - pos: -28.5,-78.5 + parent: 6 + type: Transform + - uid: 4050 + components: + - pos: -27.5,-78.5 + parent: 6 + type: Transform + - uid: 4051 + components: + - pos: -26.5,-78.5 + parent: 6 + type: Transform + - uid: 4052 + components: + - pos: -25.5,-78.5 + parent: 6 + type: Transform + - uid: 4053 + components: + - pos: -32.5,-76.5 + parent: 6 + type: Transform + - uid: 4054 + components: + - pos: -31.5,-76.5 + parent: 6 + type: Transform + - uid: 4055 + components: + - pos: -30.5,-76.5 + parent: 6 + type: Transform + - uid: 4056 + components: + - pos: -29.5,-76.5 + parent: 6 + type: Transform + - uid: 4057 + components: + - pos: -28.5,-76.5 + parent: 6 + type: Transform + - uid: 4058 + components: + - pos: -27.5,-76.5 + parent: 6 + type: Transform + - uid: 4059 + components: + - pos: -26.5,-76.5 + parent: 6 + type: Transform + - uid: 4060 + components: + - pos: -25.5,-76.5 + parent: 6 + type: Transform + - uid: 4061 + components: + - pos: -32.5,-74.5 + parent: 6 + type: Transform + - uid: 4062 + components: + - pos: -31.5,-74.5 + parent: 6 + type: Transform + - uid: 4063 + components: + - pos: -30.5,-74.5 + parent: 6 + type: Transform + - uid: 4064 + components: + - pos: -29.5,-74.5 + parent: 6 + type: Transform + - uid: 4065 + components: + - pos: -28.5,-74.5 + parent: 6 + type: Transform + - uid: 4066 + components: + - pos: -27.5,-74.5 + parent: 6 + type: Transform + - uid: 4067 + components: + - pos: -26.5,-74.5 + parent: 6 + type: Transform + - uid: 4068 + components: + - pos: -25.5,-74.5 + parent: 6 + type: Transform + - uid: 4069 + components: + - pos: -32.5,-72.5 + parent: 6 + type: Transform + - uid: 4070 + components: + - pos: -31.5,-72.5 + parent: 6 + type: Transform + - uid: 4071 + components: + - pos: -30.5,-72.5 + parent: 6 + type: Transform + - uid: 4072 + components: + - pos: -29.5,-72.5 + parent: 6 + type: Transform + - uid: 4073 + components: + - pos: -28.5,-72.5 + parent: 6 + type: Transform + - uid: 4074 + components: + - pos: -27.5,-72.5 + parent: 6 + type: Transform + - uid: 4075 + components: + - pos: -26.5,-72.5 + parent: 6 + type: Transform + - uid: 4076 + components: + - pos: -25.5,-72.5 + parent: 6 + type: Transform + - uid: 4077 + components: + - pos: -32.5,-70.5 + parent: 6 + type: Transform + - uid: 4078 + components: + - pos: -31.5,-70.5 + parent: 6 + type: Transform + - uid: 4079 + components: + - pos: -30.5,-70.5 + parent: 6 + type: Transform + - uid: 4080 + components: + - pos: -29.5,-70.5 + parent: 6 + type: Transform + - uid: 4081 + components: + - pos: -28.5,-70.5 + parent: 6 + type: Transform + - uid: 4082 + components: + - pos: -27.5,-70.5 + parent: 6 + type: Transform + - uid: 4083 + components: + - pos: -26.5,-70.5 + parent: 6 + type: Transform + - uid: 4084 + components: + - pos: -25.5,-70.5 + parent: 6 + type: Transform + - uid: 4085 + components: + - pos: -32.5,-68.5 + parent: 6 + type: Transform + - uid: 4086 + components: + - pos: -31.5,-68.5 + parent: 6 + type: Transform + - uid: 4087 + components: + - pos: -30.5,-68.5 + parent: 6 + type: Transform + - uid: 4088 + components: + - pos: -29.5,-68.5 + parent: 6 + type: Transform + - uid: 4089 + components: + - pos: -28.5,-68.5 + parent: 6 + type: Transform + - uid: 4090 + components: + - pos: -27.5,-68.5 + parent: 6 + type: Transform + - uid: 4091 + components: + - pos: -26.5,-68.5 + parent: 6 + type: Transform + - uid: 4092 + components: + - pos: -25.5,-68.5 + parent: 6 + type: Transform + - uid: 4226 + components: + - rot: -1.5707963267948966 rad + pos: -86.5,-18.5 + parent: 6 + type: Transform + - uid: 4227 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,-16.5 + parent: 6 + type: Transform + - uid: 4235 + components: + - rot: -1.5707963267948966 rad + pos: -86.5,-16.5 + parent: 6 + type: Transform + - uid: 4236 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,-19.5 + parent: 6 + type: Transform + - uid: 4238 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,-20.5 + parent: 6 + type: Transform + - uid: 4239 + components: + - rot: -1.5707963267948966 rad + pos: -86.5,-17.5 + parent: 6 + type: Transform + - uid: 4267 + components: + - rot: -1.5707963267948966 rad + pos: -86.5,-19.5 + parent: 6 + type: Transform + - uid: 4299 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,-29.5 + parent: 6 + type: Transform + - uid: 4300 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,-31.5 + parent: 6 + type: Transform + - uid: 5542 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,-17.5 + parent: 6 + type: Transform + - uid: 5544 + components: + - rot: -1.5707963267948966 rad + pos: -86.5,-29.5 + parent: 6 + type: Transform + - uid: 5548 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,-21.5 + parent: 6 + type: Transform + - uid: 7909 + components: + - rot: -1.5707963267948966 rad + pos: -86.5,-20.5 + parent: 6 + type: Transform + - uid: 7910 + components: + - rot: -1.5707963267948966 rad + pos: -86.5,-21.5 + parent: 6 + type: Transform + - uid: 7911 + components: + - rot: -1.5707963267948966 rad + pos: -86.5,-22.5 + parent: 6 + type: Transform + - uid: 7912 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,-30.5 + parent: 6 + type: Transform + - uid: 7919 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,-32.5 + parent: 6 + type: Transform + - uid: 7920 + components: + - rot: -1.5707963267948966 rad + pos: -86.5,-26.5 + parent: 6 + type: Transform + - uid: 7921 + components: + - rot: -1.5707963267948966 rad + pos: -86.5,-27.5 + parent: 6 + type: Transform + - uid: 7922 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,-26.5 + parent: 6 + type: Transform + - uid: 7923 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,-27.5 + parent: 6 + type: Transform + - uid: 7924 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,-28.5 + parent: 6 + type: Transform + - uid: 7935 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,-22.5 + parent: 6 + type: Transform + - uid: 7937 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,-15.5 + parent: 6 + type: Transform + - uid: 7941 + components: + - rot: -1.5707963267948966 rad + pos: -86.5,-15.5 + parent: 6 + type: Transform + - uid: 7943 + components: + - pos: -82.5,-15.5 + parent: 6 + type: Transform + - uid: 7944 + components: + - pos: -82.5,-16.5 + parent: 6 + type: Transform + - uid: 7945 + components: + - pos: -82.5,-17.5 + parent: 6 + type: Transform + - uid: 7946 + components: + - pos: -82.5,-18.5 + parent: 6 + type: Transform + - uid: 7947 + components: + - pos: -82.5,-19.5 + parent: 6 + type: Transform + - uid: 7948 + components: + - pos: -82.5,-20.5 + parent: 6 + type: Transform + - uid: 7949 + components: + - pos: -82.5,-21.5 + parent: 6 + type: Transform + - uid: 7950 + components: + - pos: -82.5,-22.5 + parent: 6 + type: Transform + - uid: 7951 + components: + - pos: -80.5,-22.5 + parent: 6 + type: Transform + - uid: 7952 + components: + - pos: -80.5,-21.5 + parent: 6 + type: Transform + - uid: 7953 + components: + - pos: -80.5,-20.5 + parent: 6 + type: Transform + - uid: 7954 + components: + - pos: -80.5,-19.5 + parent: 6 + type: Transform + - uid: 7955 + components: + - pos: -80.5,-18.5 + parent: 6 + type: Transform + - uid: 7956 + components: + - pos: -80.5,-17.5 + parent: 6 + type: Transform + - uid: 7957 + components: + - pos: -80.5,-16.5 + parent: 6 + type: Transform + - uid: 7958 + components: + - pos: -80.5,-15.5 + parent: 6 + type: Transform + - uid: 7959 + components: + - pos: -78.5,-15.5 + parent: 6 + type: Transform + - uid: 7960 + components: + - pos: -78.5,-16.5 + parent: 6 + type: Transform + - uid: 7961 + components: + - pos: -78.5,-17.5 + parent: 6 + type: Transform + - uid: 7962 + components: + - pos: -78.5,-18.5 + parent: 6 + type: Transform + - uid: 7963 + components: + - pos: -78.5,-19.5 + parent: 6 + type: Transform + - uid: 7964 + components: + - pos: -78.5,-20.5 + parent: 6 + type: Transform + - uid: 7965 + components: + - pos: -78.5,-21.5 + parent: 6 + type: Transform + - uid: 7966 + components: + - pos: -78.5,-22.5 + parent: 6 + type: Transform + - uid: 7967 + components: + - pos: -76.5,-22.5 + parent: 6 + type: Transform + - uid: 7968 + components: + - pos: -76.5,-21.5 + parent: 6 + type: Transform + - uid: 7969 + components: + - pos: -76.5,-20.5 + parent: 6 + type: Transform + - uid: 7970 + components: + - pos: -76.5,-19.5 + parent: 6 + type: Transform + - uid: 7971 + components: + - pos: -76.5,-18.5 + parent: 6 + type: Transform + - uid: 7972 + components: + - pos: -76.5,-17.5 + parent: 6 + type: Transform + - uid: 7973 + components: + - pos: -76.5,-16.5 + parent: 6 + type: Transform + - uid: 7974 + components: + - pos: -76.5,-15.5 + parent: 6 + type: Transform + - uid: 7976 + components: + - pos: -82.5,-26.5 + parent: 6 + type: Transform + - uid: 7977 + components: + - pos: -82.5,-27.5 + parent: 6 + type: Transform + - uid: 7978 + components: + - pos: -82.5,-28.5 + parent: 6 + type: Transform + - uid: 7979 + components: + - pos: -82.5,-29.5 + parent: 6 + type: Transform + - uid: 7980 + components: + - pos: -82.5,-30.5 + parent: 6 + type: Transform + - uid: 7981 + components: + - pos: -82.5,-31.5 + parent: 6 + type: Transform + - uid: 7982 + components: + - pos: -82.5,-32.5 + parent: 6 + type: Transform + - uid: 7983 + components: + - pos: -80.5,-32.5 + parent: 6 + type: Transform + - uid: 7984 + components: + - pos: -80.5,-31.5 + parent: 6 + type: Transform + - uid: 7985 + components: + - pos: -80.5,-30.5 + parent: 6 + type: Transform + - uid: 7986 + components: + - pos: -80.5,-29.5 + parent: 6 + type: Transform + - uid: 7987 + components: + - pos: -80.5,-28.5 + parent: 6 + type: Transform + - uid: 7988 + components: + - pos: -80.5,-27.5 + parent: 6 + type: Transform + - uid: 7989 + components: + - pos: -80.5,-26.5 + parent: 6 + type: Transform + - uid: 7991 + components: + - pos: -78.5,-32.5 + parent: 6 + type: Transform + - uid: 7992 + components: + - pos: -78.5,-31.5 + parent: 6 + type: Transform + - uid: 7993 + components: + - pos: -78.5,-30.5 + parent: 6 + type: Transform + - uid: 7994 + components: + - pos: -78.5,-29.5 + parent: 6 + type: Transform + - uid: 7995 + components: + - pos: -78.5,-28.5 + parent: 6 + type: Transform + - uid: 7996 + components: + - pos: -78.5,-27.5 + parent: 6 + type: Transform + - uid: 7997 + components: + - pos: -78.5,-26.5 + parent: 6 + type: Transform + - uid: 7999 + components: + - pos: -76.5,-32.5 + parent: 6 + type: Transform + - uid: 8000 + components: + - pos: -76.5,-31.5 + parent: 6 + type: Transform + - uid: 8001 + components: + - pos: -76.5,-30.5 + parent: 6 + type: Transform + - uid: 8002 + components: + - pos: -76.5,-29.5 + parent: 6 + type: Transform + - uid: 8003 + components: + - pos: -76.5,-28.5 + parent: 6 + type: Transform + - uid: 8004 + components: + - pos: -76.5,-27.5 + parent: 6 + type: Transform + - uid: 8005 + components: + - pos: -76.5,-26.5 + parent: 6 + type: Transform + - uid: 8007 + components: + - pos: -72.5,-32.5 + parent: 6 + type: Transform + - uid: 8008 + components: + - pos: -72.5,-31.5 + parent: 6 + type: Transform + - uid: 8009 + components: + - pos: -72.5,-30.5 + parent: 6 + type: Transform + - uid: 8010 + components: + - pos: -72.5,-29.5 + parent: 6 + type: Transform + - uid: 8011 + components: + - pos: -72.5,-28.5 + parent: 6 + type: Transform + - uid: 8012 + components: + - pos: -72.5,-27.5 + parent: 6 + type: Transform + - uid: 8013 + components: + - pos: -72.5,-26.5 + parent: 6 + type: Transform + - uid: 8015 + components: + - pos: -74.5,-32.5 + parent: 6 + type: Transform + - uid: 8016 + components: + - pos: -74.5,-31.5 + parent: 6 + type: Transform + - uid: 8017 + components: + - pos: -74.5,-30.5 + parent: 6 + type: Transform + - uid: 8018 + components: + - pos: -74.5,-29.5 + parent: 6 + type: Transform + - uid: 8019 + components: + - pos: -74.5,-28.5 + parent: 6 + type: Transform + - uid: 8020 + components: + - pos: -74.5,-27.5 + parent: 6 + type: Transform + - uid: 8021 + components: + - pos: -74.5,-26.5 + parent: 6 + type: Transform + - uid: 8082 + components: + - pos: -19.5,28.5 + parent: 6 + type: Transform + - uid: 8083 + components: + - pos: -18.5,28.5 + parent: 6 + type: Transform + - uid: 8084 + components: + - pos: -17.5,28.5 + parent: 6 + type: Transform + - uid: 8085 + components: + - pos: -16.5,28.5 + parent: 6 + type: Transform + - uid: 8086 + components: + - pos: -15.5,28.5 + parent: 6 + type: Transform + - uid: 8088 + components: + - pos: -11.5,28.5 + parent: 6 + type: Transform + - uid: 8089 + components: + - pos: -10.5,28.5 + parent: 6 + type: Transform + - uid: 8090 + components: + - pos: -9.5,28.5 + parent: 6 + type: Transform + - uid: 8091 + components: + - pos: -8.5,28.5 + parent: 6 + type: Transform + - uid: 8092 + components: + - pos: -7.5,28.5 + parent: 6 + type: Transform + - uid: 8093 + components: + - pos: -6.5,28.5 + parent: 6 + type: Transform + - uid: 8094 + components: + - pos: -11.5,26.5 + parent: 6 + type: Transform + - uid: 8095 + components: + - pos: -10.5,26.5 + parent: 6 + type: Transform + - uid: 8096 + components: + - pos: -9.5,26.5 + parent: 6 + type: Transform + - uid: 8097 + components: + - pos: -8.5,26.5 + parent: 6 + type: Transform + - uid: 8098 + components: + - pos: -7.5,26.5 + parent: 6 + type: Transform + - uid: 8099 + components: + - pos: -6.5,26.5 + parent: 6 + type: Transform + - uid: 8100 + components: + - pos: -11.5,24.5 + parent: 6 + type: Transform + - uid: 8101 + components: + - pos: -10.5,24.5 + parent: 6 + type: Transform + - uid: 8102 + components: + - pos: -9.5,24.5 + parent: 6 + type: Transform + - uid: 8103 + components: + - pos: -8.5,24.5 + parent: 6 + type: Transform + - uid: 8104 + components: + - pos: -7.5,24.5 + parent: 6 + type: Transform + - uid: 8105 + components: + - pos: -6.5,24.5 + parent: 6 + type: Transform + - uid: 8106 + components: + - pos: -11.5,22.5 + parent: 6 + type: Transform + - uid: 8107 + components: + - pos: -10.5,22.5 + parent: 6 + type: Transform + - uid: 8108 + components: + - pos: -9.5,22.5 + parent: 6 + type: Transform + - uid: 8109 + components: + - pos: -8.5,22.5 + parent: 6 + type: Transform + - uid: 8110 + components: + - pos: -7.5,22.5 + parent: 6 + type: Transform + - uid: 8111 + components: + - pos: -6.5,22.5 + parent: 6 + type: Transform + - uid: 8112 + components: + - pos: -11.5,20.5 + parent: 6 + type: Transform + - uid: 8113 + components: + - pos: -10.5,20.5 + parent: 6 + type: Transform + - uid: 8114 + components: + - pos: -9.5,20.5 + parent: 6 + type: Transform + - uid: 8115 + components: + - pos: -8.5,20.5 + parent: 6 + type: Transform + - uid: 8116 + components: + - pos: -7.5,20.5 + parent: 6 + type: Transform + - uid: 8117 + components: + - pos: -6.5,20.5 + parent: 6 + type: Transform + - uid: 8118 + components: + - pos: -11.5,18.5 + parent: 6 + type: Transform + - uid: 8119 + components: + - pos: -10.5,18.5 + parent: 6 + type: Transform + - uid: 8120 + components: + - pos: -9.5,18.5 + parent: 6 + type: Transform + - uid: 8121 + components: + - pos: -8.5,18.5 + parent: 6 + type: Transform + - uid: 8122 + components: + - pos: -7.5,18.5 + parent: 6 + type: Transform + - uid: 8123 + components: + - pos: -6.5,18.5 + parent: 6 + type: Transform + - uid: 8125 + components: + - pos: -15.5,26.5 + parent: 6 + type: Transform + - uid: 8126 + components: + - pos: -16.5,26.5 + parent: 6 + type: Transform + - uid: 8127 + components: + - pos: -17.5,26.5 + parent: 6 + type: Transform + - uid: 8128 + components: + - pos: -18.5,26.5 + parent: 6 + type: Transform + - uid: 8129 + components: + - pos: -19.5,26.5 + parent: 6 + type: Transform + - uid: 8260 + components: + - rot: 3.141592653589793 rad + pos: -5.5,32.5 + parent: 6 + type: Transform + - uid: 8263 + components: + - rot: 3.141592653589793 rad + pos: -5.5,36.5 + parent: 6 + type: Transform + - uid: 8264 + components: + - rot: 3.141592653589793 rad + pos: -4.5,36.5 + parent: 6 + type: Transform + - uid: 8265 + components: + - rot: 3.141592653589793 rad + pos: -5.5,34.5 + parent: 6 + type: Transform + - uid: 9498 + components: + - rot: -1.5707963267948966 rad + pos: -84.5,-18.5 + parent: 6 + type: Transform + - uid: 13759 + components: + - rot: -1.5707963267948966 rad + pos: -86.5,-28.5 + parent: 6 + type: Transform + - uid: 13770 + components: + - rot: -1.5707963267948966 rad + pos: -86.5,-30.5 + parent: 6 + type: Transform + - uid: 13771 + components: + - rot: -1.5707963267948966 rad + pos: -86.5,-31.5 + parent: 6 + type: Transform + - uid: 13772 + components: + - rot: -1.5707963267948966 rad + pos: -86.5,-32.5 + parent: 6 + type: Transform + - uid: 13909 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,30.5 + parent: 6 + type: Transform + - uid: 13910 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,30.5 + parent: 6 + type: Transform + - uid: 13911 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,30.5 + parent: 6 + type: Transform + - uid: 13912 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,30.5 + parent: 6 + type: Transform + - uid: 13913 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,30.5 + parent: 6 + type: Transform + - uid: 13914 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,30.5 + parent: 6 + type: Transform + - uid: 13915 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,32.5 + parent: 6 + type: Transform + - uid: 13916 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,32.5 + parent: 6 + type: Transform + - uid: 13917 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,32.5 + parent: 6 + type: Transform + - uid: 13918 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,32.5 + parent: 6 + type: Transform + - uid: 13919 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,32.5 + parent: 6 + type: Transform + - uid: 13920 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,32.5 + parent: 6 + type: Transform + - uid: 13921 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,30.5 + parent: 6 + type: Transform + - uid: 13922 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,30.5 + parent: 6 + type: Transform + - uid: 13923 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,30.5 + parent: 6 + type: Transform + - uid: 13924 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,30.5 + parent: 6 + type: Transform + - uid: 13925 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,30.5 + parent: 6 + type: Transform + - uid: 13926 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,32.5 + parent: 6 + type: Transform + - uid: 13927 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,32.5 + parent: 6 + type: Transform + - uid: 13928 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,32.5 + parent: 6 + type: Transform + - uid: 13929 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,32.5 + parent: 6 + type: Transform + - uid: 13930 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,32.5 + parent: 6 + type: Transform + - uid: 13931 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,36.5 + parent: 6 + type: Transform + - uid: 13932 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,36.5 + parent: 6 + type: Transform + - uid: 13933 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,36.5 + parent: 6 + type: Transform + - uid: 13934 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,36.5 + parent: 6 + type: Transform + - uid: 13935 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,36.5 + parent: 6 + type: Transform + - uid: 13936 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,34.5 + parent: 6 + type: Transform + - uid: 13937 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,34.5 + parent: 6 + type: Transform + - uid: 13938 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,34.5 + parent: 6 + type: Transform + - uid: 13939 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,34.5 + parent: 6 + type: Transform + - uid: 13940 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,34.5 + parent: 6 + type: Transform + - uid: 13941 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,34.5 + parent: 6 + type: Transform + - uid: 13942 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,34.5 + parent: 6 + type: Transform + - uid: 13943 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,34.5 + parent: 6 + type: Transform + - uid: 13944 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,34.5 + parent: 6 + type: Transform + - uid: 13945 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,34.5 + parent: 6 + type: Transform + - uid: 13946 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,34.5 + parent: 6 + type: Transform + - uid: 13947 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,36.5 + parent: 6 + type: Transform + - uid: 13948 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,36.5 + parent: 6 + type: Transform + - uid: 13949 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,36.5 + parent: 6 + type: Transform + - uid: 13950 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,36.5 + parent: 6 + type: Transform + - uid: 13951 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,36.5 + parent: 6 + type: Transform + - uid: 13952 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,36.5 + parent: 6 + type: Transform + - uid: 14199 + components: + - rot: 3.141592653589793 rad + pos: -4.5,34.5 + parent: 6 + type: Transform + - uid: 14200 + components: + - rot: 3.141592653589793 rad + pos: -4.5,32.5 + parent: 6 + type: Transform + - uid: 14201 + components: + - rot: 3.141592653589793 rad + pos: -5.5,30.5 + parent: 6 + type: Transform + - uid: 14202 + components: + - rot: 3.141592653589793 rad + pos: -4.5,30.5 + parent: 6 + type: Transform + - uid: 14203 + components: + - rot: 3.141592653589793 rad + pos: -5.5,26.5 + parent: 6 + type: Transform + - uid: 14204 + components: + - rot: 3.141592653589793 rad + pos: -4.5,26.5 + parent: 6 + type: Transform + - uid: 14205 + components: + - rot: 3.141592653589793 rad + pos: -5.5,28.5 + parent: 6 + type: Transform + - uid: 14206 + components: + - rot: 3.141592653589793 rad + pos: -4.5,28.5 + parent: 6 + type: Transform + - uid: 14207 + components: + - rot: 3.141592653589793 rad + pos: -5.5,20.5 + parent: 6 + type: Transform + - uid: 14208 + components: + - rot: 3.141592653589793 rad + pos: -5.5,24.5 + parent: 6 + type: Transform + - uid: 14209 + components: + - rot: 3.141592653589793 rad + pos: -4.5,24.5 + parent: 6 + type: Transform + - uid: 14210 + components: + - rot: 3.141592653589793 rad + pos: -5.5,22.5 + parent: 6 + type: Transform + - uid: 14211 + components: + - rot: 3.141592653589793 rad + pos: -4.5,22.5 + parent: 6 + type: Transform + - uid: 14212 + components: + - rot: 3.141592653589793 rad + pos: -4.5,20.5 + parent: 6 + type: Transform + - uid: 14213 + components: + - rot: 3.141592653589793 rad + pos: -5.5,18.5 + parent: 6 + type: Transform + - uid: 14214 + components: + - rot: 3.141592653589793 rad + pos: -4.5,18.5 + parent: 6 + type: Transform +- proto: SolarTracker + entities: + - uid: 6674 + components: + - pos: -23.5,-84.5 + parent: 6 + type: Transform + - uid: 7226 + components: + - pos: 45.5,-24.5 + parent: 6 + type: Transform + - uid: 8274 + components: + - pos: -13.5,38.5 + parent: 6 + type: Transform + - uid: 13795 + components: + - pos: -88.5,-24.5 + parent: 6 + type: Transform +- proto: SpaceCash + entities: + - uid: 3793 + components: + - pos: -27.952768,-61.67399 + parent: 6 + type: Transform + - uid: 3794 + components: + - pos: -28.119436,-61.36149 + parent: 6 + type: Transform + - uid: 3813 + components: + - pos: -27.640268,-61.25732 + parent: 6 + type: Transform + - uid: 3814 + components: + - pos: -27.6611,-61.44482 + parent: 6 + type: Transform + - uid: 5300 + components: + - pos: 12.706316,-45.443184 + parent: 6 + type: Transform + - uid: 5301 + components: + - pos: 13.061285,-45.343845 + parent: 6 + type: Transform + - uid: 5302 + components: + - pos: 12.535931,-44.36466 + parent: 6 + type: Transform + - uid: 5303 + components: + - pos: 14.523761,-45.201935 + parent: 6 + type: Transform + - uid: 5304 + components: + - pos: 14.327511,-45.418064 + parent: 6 + type: Transform + - uid: 13468 + components: + - pos: -15.57426,-62.759163 + parent: 6 + type: Transform + - uid: 13469 + components: + - pos: -15.347079,-62.603058 + parent: 6 + type: Transform + - uid: 13470 + components: + - pos: -15.290285,-62.305046 + parent: 6 + type: Transform + - uid: 13635 + components: + - pos: 2.6409912,-7.5698776 + parent: 10465 + type: Transform +- proto: SpawnMobAlexander + entities: + - uid: 5257 + components: + - pos: -5.5,-26.5 + parent: 6 + type: Transform +- proto: SpawnMobBandito + entities: + - uid: 13548 + components: + - pos: 10.5,-32.5 + parent: 6 + type: Transform +- proto: SpawnMobBear + entities: + - uid: 13630 + components: + - pos: 10.5,-3.5 + parent: 10465 + type: Transform +- proto: SpawnMobCatException + entities: + - uid: 13549 + components: + - pos: -31.5,13.5 + parent: 6 + type: Transform +- proto: SpawnMobCatFloppa + entities: + - uid: 13633 + components: + - pos: 8.5,-8.5 + parent: 10465 + type: Transform +- proto: SpawnMobCatRuntime + entities: + - uid: 13564 + components: + - pos: -38.5,-17.5 + parent: 6 + type: Transform +- proto: SpawnMobCorgi + entities: + - uid: 5102 + components: + - pos: 2.5,-5.5 + parent: 6 + type: Transform +- proto: SpawnMobDrone + entities: + - uid: 6395 + components: + - pos: -48.5,-24.5 + parent: 6 + type: Transform + - uid: 6396 + components: + - pos: -48.5,-23.5 + parent: 6 + type: Transform +- proto: SpawnMobFoxRenault + entities: + - uid: 13550 + components: + - pos: -7.5,0.5 + parent: 6 + type: Transform +- proto: SpawnMobHamsterHamlet + entities: + - uid: 14062 + components: + - pos: -8.5,10.5 + parent: 6 + type: Transform +- proto: SpawnMobMcGriff + entities: + - uid: 13551 + components: + - pos: 16.5,-0.5 + parent: 6 + type: Transform +- proto: SpawnMobMouse + entities: + - uid: 49 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 6 + type: Transform + - uid: 13553 + components: + - pos: -16.5,7.5 + parent: 6 + type: Transform + - uid: 13554 + components: + - pos: -41.5,-1.5 + parent: 6 + type: Transform + - uid: 13555 + components: + - pos: -53.5,-18.5 + parent: 6 + type: Transform + - uid: 13556 + components: + - pos: -49.5,-38.5 + parent: 6 + type: Transform + - uid: 13557 + components: + - pos: -43.5,-54.5 + parent: 6 + type: Transform + - uid: 13558 + components: + - pos: -4.5,-72.5 + parent: 6 + type: Transform + - uid: 13559 + components: + - pos: 16.5,-46.5 + parent: 6 + type: Transform + - uid: 13560 + components: + - pos: 23.5,-1.5 + parent: 6 + type: Transform +- proto: SpawnMobPossumMorty + entities: + - uid: 3647 + components: + - pos: -29.5,-25.5 + parent: 6 + type: Transform +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 13563 + components: + - pos: -42.5,-51.5 + parent: 6 + type: Transform +- proto: SpawnMobSlothPaperwork + entities: + - uid: 13565 + components: + - pos: -22.5,-38.5 + parent: 6 + type: Transform +- proto: SpawnMobWalter + entities: + - uid: 13566 + components: + - pos: -23.5,-17.5 + parent: 6 + type: Transform +- proto: SpawnPointAssistant + entities: + - uid: 4568 + components: + - pos: -46.5,-40.5 + parent: 6 + type: Transform + - uid: 4569 + components: + - pos: -39.5,-40.5 + parent: 6 + type: Transform + - uid: 4570 + components: + - pos: -39.5,-34.5 + parent: 6 + type: Transform + - uid: 4571 + components: + - pos: -46.5,-34.5 + parent: 6 + type: Transform + - uid: 4572 + components: + - pos: -46.5,-30.5 + parent: 6 + type: Transform + - uid: 4573 + components: + - pos: -39.5,-30.5 + parent: 6 + type: Transform +- proto: SpawnPointAtmos + entities: + - uid: 4549 + components: + - pos: -37.5,-8.5 + parent: 6 + type: Transform + - uid: 4550 + components: + - pos: -37.5,-7.5 + parent: 6 + type: Transform +- proto: SpawnPointBartender + entities: + - uid: 4631 + components: + - pos: -3.5,-16.5 + parent: 6 + type: Transform +- proto: SpawnPointBotanist + entities: + - uid: 4565 + components: + - pos: -9.5,-17.5 + parent: 6 + type: Transform + - uid: 4566 + components: + - pos: -9.5,-16.5 + parent: 6 + type: Transform +- proto: SpawnPointCaptain + entities: + - uid: 4593 + components: + - pos: -0.5,0.5 + parent: 6 + type: Transform +- proto: SpawnPointCargoTechnician + entities: + - uid: 4583 + components: + - pos: 12.5,-41.5 + parent: 6 + type: Transform + - uid: 4584 + components: + - pos: 13.5,-41.5 + parent: 6 + type: Transform +- proto: SpawnPointChaplain + entities: + - uid: 5879 + components: + - pos: -27.5,-48.5 + parent: 6 + type: Transform +- proto: SpawnPointChef + entities: + - uid: 4563 + components: + - pos: -7.5,-25.5 + parent: 6 + type: Transform + - uid: 4564 + components: + - pos: -8.5,-25.5 + parent: 6 + type: Transform +- proto: SpawnPointChemist + entities: + - uid: 4554 + components: + - pos: -26.5,-17.5 + parent: 6 + type: Transform + - uid: 4555 + components: + - pos: -25.5,-17.5 + parent: 6 + type: Transform +- proto: SpawnPointChiefEngineer + entities: + - uid: 4594 + components: + - pos: -1.5,0.5 + parent: 6 + type: Transform +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 3023 + components: + - pos: -2.5,-0.5 + parent: 6 + type: Transform +- proto: SpawnPointClown + entities: + - uid: 4581 + components: + - pos: 17.5,-28.5 + parent: 6 + type: Transform +- proto: SpawnPointDetective + entities: + - uid: 4582 + components: + - pos: -51.5,-49.5 + parent: 6 + type: Transform +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 4596 + components: + - pos: 0.5,0.5 + parent: 6 + type: Transform +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 4597 + components: + - pos: -1.5,-2.5 + parent: 6 + type: Transform +- proto: SpawnPointJanitor + entities: + - uid: 4586 + components: + - pos: 27.5,4.5 + parent: 6 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 653 + components: + - pos: 35.5,-10.5 + parent: 6 + type: Transform + - uid: 654 + components: + - pos: 36.5,-10.5 + parent: 6 + type: Transform + - uid: 655 + components: + - pos: 38.5,-10.5 + parent: 6 + type: Transform + - uid: 656 + components: + - pos: 39.5,-10.5 + parent: 6 + type: Transform +- proto: SpawnPointLawyer + entities: + - uid: 4587 + components: + - pos: 9.5,-15.5 + parent: 6 + type: Transform +- proto: SpawnPointLibrarian + entities: + - uid: 4560 + components: + - pos: -21.5,-41.5 + parent: 6 + type: Transform +- proto: SpawnPointMedicalDoctor + entities: + - uid: 934 + components: + - pos: -18.5,-26.5 + parent: 6 + type: Transform + - uid: 935 + components: + - pos: -19.5,-26.5 + parent: 6 + type: Transform +- proto: SpawnPointMedicalIntern + entities: + - uid: 4556 + components: + - pos: -17.5,-22.5 + parent: 6 + type: Transform + - uid: 4557 + components: + - pos: -18.5,-22.5 + parent: 6 + type: Transform +- proto: SpawnPointMime + entities: + - uid: 4580 + components: + - pos: 15.5,-28.5 + parent: 6 + type: Transform +- proto: SpawnPointMusician + entities: + - uid: 4579 + components: + - pos: 16.5,-28.5 + parent: 6 + type: Transform +- proto: SpawnPointObserver + entities: + - uid: 4606 + components: + - pos: -5.5,-11.5 + parent: 6 + type: Transform +- proto: SpawnPointQuartermaster + entities: + - uid: 4598 + components: + - pos: -0.5,-2.5 + parent: 6 + type: Transform +- proto: SpawnPointResearchAssistant + entities: + - uid: 3966 + components: + - pos: -11.5,-50.5 + parent: 6 + type: Transform + - uid: 4576 + components: + - pos: -11.5,-51.5 + parent: 6 + type: Transform +- proto: SpawnPointResearchDirector + entities: + - uid: 4599 + components: + - pos: 0.5,-2.5 + parent: 6 + type: Transform +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 4577 + components: + - pos: 3.5,-49.5 + parent: 6 + type: Transform + - uid: 4578 + components: + - pos: 3.5,-50.5 + parent: 6 + type: Transform +- proto: SpawnPointScientist + entities: + - uid: 4574 + components: + - pos: -3.5,-55.5 + parent: 6 + type: Transform + - uid: 4575 + components: + - pos: -2.5,-55.5 + parent: 6 + type: Transform +- proto: SpawnPointSecurityCadet + entities: + - uid: 3412 + components: + - pos: 13.5,1.5 + parent: 6 + type: Transform + - uid: 4705 + components: + - pos: 13.5,0.5 + parent: 6 + type: Transform +- proto: SpawnPointSecurityOfficer + entities: + - uid: 3474 + components: + - pos: 19.5,-7.5 + parent: 6 + type: Transform + - uid: 3475 + components: + - pos: 18.5,-7.5 + parent: 6 + type: Transform +- proto: SpawnPointServiceWorker + entities: + - uid: 4567 + components: + - pos: -9.5,-25.5 + parent: 6 + type: Transform +- proto: SpawnPointStationEngineer + entities: + - uid: 4548 + components: + - pos: -37.5,-6.5 + parent: 6 + type: Transform + - uid: 4551 + components: + - pos: -37.5,-5.5 + parent: 6 + type: Transform +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 4552 + components: + - pos: -26.5,-7.5 + parent: 6 + type: Transform + - uid: 4553 + components: + - pos: -27.5,-7.5 + parent: 6 + type: Transform +- proto: SpawnPointWarden + entities: + - uid: 3424 + components: + - pos: 17.5,-0.5 + parent: 6 + type: Transform +- proto: SpawnVehicleATV + entities: + - uid: 3286 + components: + - pos: -22.5,24.5 + parent: 6 + type: Transform +- proto: SpawnVehicleJanicart + entities: + - uid: 5111 + components: + - pos: 26.5,3.5 + parent: 6 + type: Transform +- proto: SpawnVendingMachineRestockFoodDrink + entities: + - uid: 3666 + components: + - pos: 15.5,-24.5 + parent: 6 + type: Transform + - uid: 4420 + components: + - pos: 0.5,-59.5 + parent: 6 + type: Transform + - uid: 5188 + components: + - pos: 16.5,-36.5 + parent: 6 + type: Transform + - uid: 5255 + components: + - pos: 14.5,-44.5 + parent: 6 + type: Transform + - uid: 5256 + components: + - pos: 19.5,-40.5 + parent: 6 + type: Transform + - uid: 5646 + components: + - pos: 10.5,12.5 + parent: 6 + type: Transform +- proto: Spear + entities: + - uid: 5969 + components: + - pos: -26.3551,-55.833397 + parent: 6 + type: Transform + - uid: 13758 + components: + - pos: 0.8338318,6.6614532 + parent: 13645 + type: Transform +- proto: SprayBottleSpaceCleaner + entities: + - uid: 7641 + components: + - pos: 27.517736,3.6393416 + parent: 6 + type: Transform +- proto: StasisBedMachineCircuitboard + entities: + - uid: 5642 + components: + - pos: -36.498703,-18.43537 + parent: 6 + type: Transform +- proto: Stool + entities: + - uid: 4417 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-24.5 + parent: 6 + type: Transform + - uid: 5731 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-5.5 + parent: 6 + type: Transform + - uid: 5732 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-5.5 + parent: 6 + type: Transform + - uid: 5733 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-7.5 + parent: 6 + type: Transform + - uid: 5734 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-7.5 + parent: 6 + type: Transform + - uid: 5890 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-56.5 + parent: 6 + type: Transform + - uid: 7602 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-53.5 + parent: 6 + type: Transform +- proto: StoolBar + entities: + - uid: 4621 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 6 + type: Transform + - uid: 4622 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 6 + type: Transform + - uid: 4623 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 6 + type: Transform + - uid: 4624 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 6 + type: Transform + - uid: 4625 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-19.5 + parent: 6 + type: Transform + - uid: 4626 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-19.5 + parent: 6 + type: Transform + - uid: 4627 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-19.5 + parent: 6 + type: Transform + - uid: 6766 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-50.5 + parent: 6 + type: Transform + - uid: 6767 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-51.5 + parent: 6 + type: Transform + - uid: 6768 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-53.5 + parent: 6 + type: Transform +- proto: StorageCanister + entities: + - uid: 3467 + components: + - pos: -43.5,19.5 + parent: 6 + type: Transform + - uid: 4858 + components: + - pos: -33.5,16.5 + parent: 6 + type: Transform + - uid: 4859 + components: + - pos: -33.5,15.5 + parent: 6 + type: Transform + - uid: 4860 + components: + - pos: -33.5,14.5 + parent: 6 + type: Transform + - uid: 6097 + components: + - pos: -4.5,-75.5 + parent: 6 + type: Transform +- proto: SubstationBasic + entities: + - uid: 98 + components: + - pos: -10.5,-1.5 + parent: 6 + type: Transform + - uid: 323 + components: + - pos: 22.5,-4.5 + parent: 6 + type: Transform + - uid: 3758 + components: + - pos: -17.5,-58.5 + parent: 6 + type: Transform + - uid: 5030 + components: + - pos: -25.5,-3.5 + parent: 6 + type: Transform + - uid: 5031 + components: + - pos: -24.5,-3.5 + parent: 6 + type: Transform + - uid: 5308 + components: + - pos: 8.5,-42.5 + parent: 6 + type: Transform + - uid: 5843 + components: + - pos: -32.5,-31.5 + parent: 6 + type: Transform + - uid: 8288 + components: + - pos: -37.5,-56.5 + parent: 6 + type: Transform + - uid: 10209 + components: + - pos: -56.5,-47.5 + parent: 6 + type: Transform +- proto: SubstationMachineCircuitboard + entities: + - uid: 6369 + components: + - pos: -34.263165,-4.361941 + parent: 6 + type: Transform + - uid: 6415 + components: + - pos: -46.526028,-23.869167 + parent: 6 + type: Transform + - uid: 13399 + components: + - pos: 28.38439,-2.2716935 + parent: 6 + type: Transform +- proto: SurveillanceCameraCommand + entities: + - uid: 13475 + components: + - rot: 3.141592653589793 rad + pos: -26.5,4.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + type: SurveillanceCamera + - uid: 13491 + components: + - rot: 3.141592653589793 rad + pos: -20.5,4.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Vault + type: SurveillanceCamera + - uid: 13492 + components: + - pos: -2.5,6.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge + type: SurveillanceCamera + - uid: 13493 + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Conf. Room + type: SurveillanceCamera + - uid: 13494 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoP + type: SurveillanceCamera + - uid: 13505 + components: + - pos: -46.5,-17.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: EVA + type: SurveillanceCamera +- proto: SurveillanceCameraEngineering + entities: + - uid: 13516 + components: + - rot: 3.141592653589793 rad + pos: -37.5,4.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME Room + type: SurveillanceCamera + - uid: 13517 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,15.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmospherics + type: SurveillanceCamera + - uid: 13518 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-5.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Reception + type: SurveillanceCamera + - uid: 13519 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-2.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + type: SurveillanceCamera +- proto: SurveillanceCameraGeneral + entities: + - uid: 6779 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-19.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Botany + type: SurveillanceCamera + - uid: 13495 + components: + - pos: 15.5,-37.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cargo + type: SurveillanceCamera + - uid: 13496 + components: + - pos: -4.5,-39.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: HoloDeck + type: SurveillanceCamera + - uid: 13497 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-49.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Salvage + type: SurveillanceCamera + - uid: 13498 + components: + - pos: -0.5,-26.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cafeteria + type: SurveillanceCamera + - uid: 13499 + components: + - pos: 15.5,-19.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Courtroom + type: SurveillanceCamera + - uid: 13500 + components: + - pos: -23.5,-22.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Medbay + type: SurveillanceCamera + - uid: 13501 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-28.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Ward + type: SurveillanceCamera + - uid: 13504 + components: + - pos: -51.5,-19.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Laundry Room + type: SurveillanceCamera + - uid: 13506 + components: + - pos: -60.5,-14.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evac + type: SurveillanceCamera + - uid: 13507 + components: + - pos: -42.5,-45.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorm Halls + type: SurveillanceCamera + - uid: 13508 + components: + - pos: -33.5,-56.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Chapel + type: SurveillanceCamera + - uid: 13513 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-37.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + type: SurveillanceCamera + - uid: 13515 + components: + - pos: 34.5,-12.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals + type: SurveillanceCamera + - uid: 13525 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-31.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Disposals + type: SurveillanceCamera +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 3579 + components: + - pos: -24.5,4.5 + parent: 6 + type: Transform +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 11100 + components: + - pos: -22.5,-3.5 + parent: 6 + type: Transform +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 3581 + components: + - pos: -24.5,2.5 + parent: 6 + type: Transform +- proto: SurveillanceCameraRouterScience + entities: + - uid: 5259 + components: + - pos: -10.5,-76.5 + parent: 6 + type: Transform +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 3580 + components: + - pos: -24.5,3.5 + parent: 6 + type: Transform +- proto: SurveillanceCameraScience + entities: + - uid: 13509 + components: + - pos: -9.5,-56.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Sci Lobby + type: SurveillanceCamera + - uid: 13510 + components: + - pos: -16.5,-53.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics + type: SurveillanceCamera + - uid: 13511 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-72.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Xeno-Arch Lab + type: SurveillanceCamera + - uid: 13512 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-75.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Server Room + type: SurveillanceCamera +- proto: SurveillanceCameraSecurity + entities: + - uid: 13520 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-6.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Entrance + type: SurveillanceCamera + - uid: 13521 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security Lobby + type: SurveillanceCamera + - uid: 13522 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,6.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + type: SurveillanceCamera + - uid: 13523 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,8.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig Transfer + type: SurveillanceCamera + - uid: 13524 + components: + - rot: 3.141592653589793 rad + pos: 13.5,20.5 + parent: 6 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: PermaBrig + type: SurveillanceCamera +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 4415 + components: + - pos: 11.5,-21.5 + parent: 6 + type: Transform +- proto: Syringe + entities: + - uid: 6174 + components: + - pos: -23.55523,-14.431532 + parent: 6 + type: Transform +- proto: SyringeEphedrine + entities: + - uid: 13486 + components: + - pos: 18.653149,25.335108 + parent: 6 + type: Transform +- proto: SyringeSpaceacillin + entities: + - uid: 6445 + components: + - pos: -26.205353,-27.399559 + parent: 6 + type: Transform +- proto: Table + entities: + - uid: 2138 + components: + - pos: -47.5,-31.5 + parent: 6 + type: Transform + - uid: 3324 + components: + - pos: -32.5,22.5 + parent: 6 + type: Transform + - uid: 3785 + components: + - pos: -34.5,-61.5 + parent: 6 + type: Transform + - uid: 3786 + components: + - pos: -34.5,-62.5 + parent: 6 + type: Transform + - uid: 3802 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-57.5 + parent: 6 + type: Transform + - uid: 4446 + components: + - pos: -52.5,-16.5 + parent: 6 + type: Transform + - uid: 4447 + components: + - pos: -52.5,-17.5 + parent: 6 + type: Transform + - uid: 4448 + components: + - pos: -51.5,-16.5 + parent: 6 + type: Transform + - uid: 4449 + components: + - pos: -51.5,-17.5 + parent: 6 + type: Transform + - uid: 4911 + components: + - rot: 3.141592653589793 rad + pos: -37.5,22.5 + parent: 6 + type: Transform + - uid: 4912 + components: + - rot: 3.141592653589793 rad + pos: -36.5,22.5 + parent: 6 + type: Transform + - uid: 5044 + components: + - pos: -32.5,21.5 + parent: 6 + type: Transform + - uid: 5492 + components: + - pos: -32.5,-34.5 + parent: 6 + type: Transform + - uid: 5512 + components: + - pos: -52.5,-19.5 + parent: 6 + type: Transform + - uid: 5992 + components: + - pos: 17.5,21.5 + parent: 6 + type: Transform + - uid: 5993 + components: + - pos: 16.5,21.5 + parent: 6 + type: Transform + - uid: 5994 + components: + - pos: 15.5,19.5 + parent: 6 + type: Transform + - uid: 5995 + components: + - pos: 14.5,19.5 + parent: 6 + type: Transform + - uid: 6207 + components: + - pos: -38.5,-31.5 + parent: 6 + type: Transform + - uid: 6208 + components: + - pos: -39.5,-31.5 + parent: 6 + type: Transform + - uid: 6212 + components: + - pos: -38.5,-33.5 + parent: 6 + type: Transform + - uid: 6214 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-33.5 + parent: 6 + type: Transform + - uid: 6215 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-33.5 + parent: 6 + type: Transform + - uid: 6222 + components: + - pos: -40.5,-41.5 + parent: 6 + type: Transform + - uid: 6238 + components: + - pos: -47.5,-39.5 + parent: 6 + type: Transform + - uid: 8482 + components: + - pos: -7.5,-31.5 + parent: 6 + type: Transform + - uid: 8486 + components: + - pos: -4.5,-30.5 + parent: 6 + type: Transform + - uid: 9711 + components: + - pos: -1.5,-31.5 + parent: 6 + type: Transform + - uid: 10750 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-4.5 + parent: 6 + type: Transform + - uid: 10883 + components: + - pos: 21.5,12.5 + parent: 6 + type: Transform + - uid: 10894 + components: + - pos: 10.5,12.5 + parent: 6 + type: Transform + - uid: 10902 + components: + - pos: 22.5,-0.5 + parent: 6 + type: Transform + - uid: 10916 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-22.5 + parent: 6 + type: Transform + - uid: 10919 + components: + - pos: 18.5,-32.5 + parent: 6 + type: Transform + - uid: 10939 + components: + - pos: -24.5,-58.5 + parent: 6 + type: Transform + - uid: 10988 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-31.5 + parent: 6 + type: Transform + - uid: 10997 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-37.5 + parent: 6 + type: Transform + - uid: 11012 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-19.5 + parent: 6 + type: Transform + - uid: 11038 + components: + - pos: -40.5,-0.5 + parent: 6 + type: Transform + - uid: 11054 + components: + - pos: -12.5,-7.5 + parent: 6 + type: Transform + - uid: 14082 + components: + - pos: 11.5,20.5 + parent: 6 + type: Transform +- proto: TableCarpet + entities: + - uid: 5288 + components: + - pos: 12.5,-44.5 + parent: 6 + type: Transform + - uid: 5289 + components: + - pos: 12.5,-45.5 + parent: 6 + type: Transform + - uid: 5290 + components: + - pos: 13.5,-45.5 + parent: 6 + type: Transform + - uid: 5291 + components: + - pos: 14.5,-45.5 + parent: 6 + type: Transform + - uid: 5292 + components: + - pos: 14.5,-44.5 + parent: 6 + type: Transform +- proto: TableGlass + entities: + - uid: 267 + components: + - pos: 8.5,-18.5 + parent: 6 + type: Transform + - uid: 874 + components: + - pos: -26.5,-27.5 + parent: 6 + type: Transform + - uid: 887 + components: + - pos: -25.5,-27.5 + parent: 6 + type: Transform + - uid: 919 + components: + - pos: -26.5,-26.5 + parent: 6 + type: Transform + - uid: 3399 + components: + - pos: -8.5,-18.5 + parent: 6 + type: Transform + - uid: 4419 + components: + - pos: -28.5,-54.5 + parent: 6 + type: Transform + - uid: 4436 + components: + - pos: -47.5,-16.5 + parent: 6 + type: Transform + - uid: 4559 + components: + - pos: -34.5,-14.5 + parent: 6 + type: Transform + - uid: 4562 + components: + - pos: -32.5,-14.5 + parent: 6 + type: Transform + - uid: 4588 + components: + - pos: -33.5,-14.5 + parent: 6 + type: Transform + - uid: 4648 + components: + - pos: -30.5,-25.5 + parent: 6 + type: Transform + - uid: 4649 + components: + - pos: -30.5,-26.5 + parent: 6 + type: Transform + - uid: 4654 + components: + - pos: -37.5,-18.5 + parent: 6 + type: Transform + - uid: 4655 + components: + - pos: -36.5,-18.5 + parent: 6 + type: Transform + - uid: 4803 + components: + - pos: -23.5,-14.5 + parent: 6 + type: Transform + - uid: 4806 + components: + - pos: -22.5,-17.5 + parent: 6 + type: Transform + - uid: 4807 + components: + - pos: -26.5,-14.5 + parent: 6 + type: Transform + - uid: 4808 + components: + - pos: -26.5,-15.5 + parent: 6 + type: Transform + - uid: 5062 + components: + - pos: -21.5,-4.5 + parent: 6 + type: Transform + - uid: 5133 + components: + - pos: -10.5,-9.5 + parent: 6 + type: Transform + - uid: 5216 + components: + - pos: 7.5,6.5 + parent: 6 + type: Transform + - uid: 5355 + components: + - pos: -2.5,-51.5 + parent: 6 + type: Transform + - uid: 5584 + components: + - pos: 14.5,-42.5 + parent: 6 + type: Transform + - uid: 5585 + components: + - pos: 13.5,-42.5 + parent: 6 + type: Transform + - uid: 5586 + components: + - pos: 12.5,-42.5 + parent: 6 + type: Transform + - uid: 5587 + components: + - pos: 11.5,-42.5 + parent: 6 + type: Transform + - uid: 5898 + components: + - pos: -1.5,-46.5 + parent: 6 + type: Transform + - uid: 6198 + components: + - pos: -21.5,-5.5 + parent: 6 + type: Transform + - uid: 6419 + components: + - pos: -28.5,-14.5 + parent: 6 + type: Transform + - uid: 7363 + components: + - pos: -39.5,-20.5 + parent: 6 + type: Transform + - uid: 8394 + components: + - pos: 44.5,-1.5 + parent: 6 + type: Transform + - uid: 14050 + components: + - pos: -30.5,-18.5 + parent: 6 + type: Transform + - uid: 14058 + components: + - pos: -28.5,-18.5 + parent: 6 + type: Transform + - uid: 14324 + components: + - pos: 10.5,-20.5 + parent: 6 + type: Transform +- proto: TablePlasmaGlass + entities: + - uid: 210 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 6 + type: Transform + - uid: 1719 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-75.5 + parent: 6 + type: Transform + - uid: 1720 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-75.5 + parent: 6 + type: Transform + - uid: 1721 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-73.5 + parent: 6 + type: Transform + - uid: 1725 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-72.5 + parent: 6 + type: Transform + - uid: 4504 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 6 + type: Transform + - uid: 4735 + components: + - pos: -77.5,-42.5 + parent: 6 + type: Transform + - uid: 4736 + components: + - pos: -77.5,-43.5 + parent: 6 + type: Transform + - uid: 4738 + components: + - pos: -77.5,-45.5 + parent: 6 + type: Transform + - uid: 4739 + components: + - pos: -77.5,-46.5 + parent: 6 + type: Transform + - uid: 4782 + components: + - pos: -22.5,4.5 + parent: 6 + type: Transform + - uid: 4794 + components: + - pos: -22.5,3.5 + parent: 6 + type: Transform + - uid: 4795 + components: + - pos: -22.5,2.5 + parent: 6 + type: Transform + - uid: 4796 + components: + - pos: -18.5,4.5 + parent: 6 + type: Transform + - uid: 4797 + components: + - pos: -18.5,3.5 + parent: 6 + type: Transform + - uid: 4798 + components: + - pos: -18.5,2.5 + parent: 6 + type: Transform + - uid: 5647 + components: + - pos: -4.5,-78.5 + parent: 6 + type: Transform + - uid: 13817 + components: + - rot: 3.141592653589793 rad + pos: -70.5,-13.5 + parent: 6 + type: Transform + - uid: 13818 + components: + - rot: 3.141592653589793 rad + pos: -70.5,-10.5 + parent: 6 + type: Transform +- proto: TableReinforced + entities: + - uid: 274 + components: + - pos: 9.5,-5.5 + parent: 6 + type: Transform + - uid: 275 + components: + - pos: 8.5,-5.5 + parent: 6 + type: Transform + - uid: 466 + components: + - pos: -6.5,9.5 + parent: 6 + type: Transform + - uid: 539 + components: + - pos: 29.5,3.5 + parent: 6 + type: Transform + - uid: 607 + components: + - pos: -6.5,10.5 + parent: 6 + type: Transform + - uid: 612 + components: + - pos: -2.5,10.5 + parent: 6 + type: Transform + - uid: 613 + components: + - pos: -2.5,9.5 + parent: 6 + type: Transform + - uid: 614 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,8.5 + parent: 6 + type: Transform + - uid: 615 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,8.5 + parent: 6 + type: Transform + - uid: 616 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 6 + type: Transform + - uid: 617 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 6 + type: Transform + - uid: 619 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 6 + type: Transform + - uid: 620 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 6 + type: Transform + - uid: 875 + components: + - pos: 0.5,-18.5 + parent: 6 + type: Transform + - uid: 890 + components: + - pos: 1.5,-18.5 + parent: 6 + type: Transform + - uid: 893 + components: + - pos: -11.5,-49.5 + parent: 6 + type: Transform + - uid: 907 + components: + - pos: -4.5,-26.5 + parent: 6 + type: Transform + - uid: 908 + components: + - pos: -4.5,-25.5 + parent: 6 + type: Transform + - uid: 945 + components: + - pos: 2.5,-18.5 + parent: 6 + type: Transform + - uid: 946 + components: + - pos: 3.5,-17.5 + parent: 6 + type: Transform + - uid: 947 + components: + - pos: 3.5,-16.5 + parent: 6 + type: Transform + - uid: 948 + components: + - pos: 3.5,-15.5 + parent: 6 + type: Transform + - uid: 949 + components: + - pos: 3.5,-14.5 + parent: 6 + type: Transform + - uid: 1131 + components: + - pos: 10.5,-36.5 + parent: 6 + type: Transform + - uid: 1132 + components: + - pos: 10.5,-35.5 + parent: 6 + type: Transform + - uid: 1222 + components: + - pos: 4.5,-46.5 + parent: 6 + type: Transform + - uid: 1231 + components: + - pos: 3.5,-51.5 + parent: 6 + type: Transform + - uid: 1494 + components: + - pos: -20.5,-15.5 + parent: 6 + type: Transform + - uid: 1495 + components: + - pos: -20.5,-15.5 + parent: 6 + type: Transform + - uid: 1505 + components: + - pos: -18.5,-21.5 + parent: 6 + type: Transform + - uid: 1515 + components: + - pos: -19.5,-21.5 + parent: 6 + type: Transform + - uid: 1518 + components: + - pos: -17.5,-21.5 + parent: 6 + type: Transform + - uid: 1586 + components: + - pos: -16.5,-29.5 + parent: 6 + type: Transform + - uid: 1597 + components: + - pos: -16.5,-30.5 + parent: 6 + type: Transform + - uid: 1692 + components: + - pos: -19.5,-27.5 + parent: 6 + type: Transform + - uid: 1695 + components: + - pos: -18.5,-27.5 + parent: 6 + type: Transform + - uid: 1696 + components: + - pos: -17.5,-27.5 + parent: 6 + type: Transform + - uid: 1753 + components: + - pos: -37.5,-13.5 + parent: 6 + type: Transform + - uid: 1754 + components: + - pos: -36.5,-13.5 + parent: 6 + type: Transform + - uid: 1757 + components: + - pos: -28.5,-8.5 + parent: 6 + type: Transform + - uid: 2031 + components: + - pos: -27.5,-8.5 + parent: 6 + type: Transform + - uid: 2032 + components: + - pos: -26.5,-8.5 + parent: 6 + type: Transform + - uid: 3342 + components: + - pos: 27.5,3.5 + parent: 6 + type: Transform + - uid: 3416 + components: + - pos: 15.5,-0.5 + parent: 6 + type: Transform + - uid: 4343 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-26.5 + parent: 6 + type: Transform + - uid: 4344 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-26.5 + parent: 6 + type: Transform + - uid: 4345 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-26.5 + parent: 6 + type: Transform + - uid: 4363 + components: + - pos: -13.5,-14.5 + parent: 6 + type: Transform + - uid: 4364 + components: + - pos: -13.5,-15.5 + parent: 6 + type: Transform + - uid: 4365 + components: + - pos: -13.5,-16.5 + parent: 6 + type: Transform + - uid: 4371 + components: + - pos: -0.5,-8.5 + parent: 6 + type: Transform + - uid: 4375 + components: + - pos: -13.5,8.5 + parent: 6 + type: Transform + - uid: 4376 + components: + - pos: -12.5,8.5 + parent: 6 + type: Transform + - uid: 4377 + components: + - pos: -12.5,7.5 + parent: 6 + type: Transform + - uid: 4378 + components: + - pos: -17.5,8.5 + parent: 6 + type: Transform + - uid: 4379 + components: + - pos: -18.5,8.5 + parent: 6 + type: Transform + - uid: 4463 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-15.5 + parent: 6 + type: Transform + - uid: 4464 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-15.5 + parent: 6 + type: Transform + - uid: 4532 + components: + - pos: 4.5,-51.5 + parent: 6 + type: Transform + - uid: 4533 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-31.5 + parent: 6 + type: Transform + - uid: 4534 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-32.5 + parent: 6 + type: Transform + - uid: 4662 + components: + - pos: 14.5,-2.5 + parent: 6 + type: Transform + - uid: 4663 + components: + - pos: 14.5,-1.5 + parent: 6 + type: Transform + - uid: 4816 + components: + - pos: -23.5,-18.5 + parent: 6 + type: Transform + - uid: 4845 + components: + - pos: -28.5,-5.5 + parent: 6 + type: Transform + - uid: 4846 + components: + - pos: -25.5,-5.5 + parent: 6 + type: Transform + - uid: 4850 + components: + - pos: -32.5,-4.5 + parent: 6 + type: Transform + - uid: 4851 + components: + - pos: -33.5,-4.5 + parent: 6 + type: Transform + - uid: 4852 + components: + - pos: -34.5,-4.5 + parent: 6 + type: Transform + - uid: 4871 + components: + - pos: 14.5,1.5 + parent: 6 + type: Transform + - uid: 4872 + components: + - pos: 14.5,0.5 + parent: 6 + type: Transform + - uid: 5040 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,0.5 + parent: 6 + type: Transform + - uid: 5146 + components: + - pos: -38.5,-4.5 + parent: 6 + type: Transform + - uid: 5576 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,-18.5 + parent: 6 + type: Transform + - uid: 5612 + components: + - pos: 14.5,-29.5 + parent: 6 + type: Transform + - uid: 5613 + components: + - pos: 15.5,-29.5 + parent: 6 + type: Transform + - uid: 5614 + components: + - pos: 16.5,-29.5 + parent: 6 + type: Transform + - uid: 5615 + components: + - pos: 17.5,-29.5 + parent: 6 + type: Transform + - uid: 5616 + components: + - pos: 14.5,-28.5 + parent: 6 + type: Transform + - uid: 5730 + components: + - pos: 27.5,-4.5 + parent: 6 + type: Transform + - uid: 5842 + components: + - pos: -20.5,-29.5 + parent: 6 + type: Transform + - uid: 6391 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-24.5 + parent: 6 + type: Transform + - uid: 6392 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-25.5 + parent: 6 + type: Transform + - uid: 6393 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-25.5 + parent: 6 + type: Transform + - uid: 6394 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-25.5 + parent: 6 + type: Transform + - uid: 6397 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-23.5 + parent: 6 + type: Transform + - uid: 6398 + components: + - pos: -46.5,-25.5 + parent: 6 + type: Transform + - uid: 6399 + components: + - pos: -46.5,-24.5 + parent: 6 + type: Transform + - uid: 6400 + components: + - pos: -46.5,-23.5 + parent: 6 + type: Transform + - uid: 10205 + components: + - pos: -56.5,-41.5 + parent: 6 + type: Transform + - uid: 14032 + components: + - pos: -3.5,-24.5 + parent: 6 + type: Transform + - uid: 14063 + components: + - pos: -3.5,-0.5 + parent: 6 + type: Transform + - uid: 14064 + components: + - pos: -3.5,-1.5 + parent: 6 + type: Transform + - uid: 14087 + components: + - pos: -32.5,0.5 + parent: 6 + type: Transform + - uid: 14088 + components: + - pos: -32.5,1.5 + parent: 6 + type: Transform +- proto: TableReinforcedGlass + entities: + - uid: 10 + components: + - pos: -1.5,-0.5 + parent: 6 + type: Transform + - uid: 41 + components: + - pos: 0.5,-0.5 + parent: 6 + type: Transform + - uid: 46 + components: + - pos: -0.5,-0.5 + parent: 6 + type: Transform + - uid: 52 + components: + - pos: -1.5,-1.5 + parent: 6 + type: Transform + - uid: 53 + components: + - pos: 0.5,-1.5 + parent: 6 + type: Transform + - uid: 58 + components: + - pos: -0.5,-1.5 + parent: 6 + type: Transform + - uid: 4480 + components: + - pos: -9.5,-53.5 + parent: 6 + type: Transform + - uid: 4482 + components: + - pos: -9.5,-54.5 + parent: 6 + type: Transform + - uid: 4545 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-52.5 + parent: 6 + type: Transform + - uid: 4546 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-51.5 + parent: 6 + type: Transform + - uid: 4547 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-50.5 + parent: 6 + type: Transform + - uid: 5362 + components: + - pos: -1.5,-56.5 + parent: 6 + type: Transform + - uid: 5363 + components: + - pos: -2.5,-56.5 + parent: 6 + type: Transform + - uid: 5364 + components: + - pos: -3.5,-56.5 + parent: 6 + type: Transform + - uid: 5374 + components: + - pos: -12.5,-55.5 + parent: 6 + type: Transform + - uid: 5375 + components: + - pos: -12.5,-56.5 + parent: 6 + type: Transform + - uid: 5376 + components: + - pos: -11.5,-56.5 + parent: 6 + type: Transform + - uid: 14071 + components: + - pos: -12.5,-51.5 + parent: 6 + type: Transform +- proto: TableWood + entities: + - uid: 3583 + components: + - pos: -51.5,-48.5 + parent: 6 + type: Transform + - uid: 3584 + components: + - pos: -50.5,-48.5 + parent: 6 + type: Transform + - uid: 3585 + components: + - pos: -50.5,-49.5 + parent: 6 + type: Transform + - uid: 4387 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 6 + type: Transform + - uid: 4400 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 6 + type: Transform + - uid: 4401 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 6 + type: Transform + - uid: 4423 + components: + - pos: -43.5,-49.5 + parent: 6 + type: Transform + - uid: 4424 + components: + - pos: -43.5,-50.5 + parent: 6 + type: Transform + - uid: 4425 + components: + - pos: -43.5,-51.5 + parent: 6 + type: Transform + - uid: 4426 + components: + - pos: -43.5,-52.5 + parent: 6 + type: Transform + - uid: 4427 + components: + - pos: -42.5,-52.5 + parent: 6 + type: Transform + - uid: 4428 + components: + - pos: -41.5,-52.5 + parent: 6 + type: Transform + - uid: 4471 + components: + - pos: -20.5,-40.5 + parent: 6 + type: Transform + - uid: 4472 + components: + - pos: -20.5,-41.5 + parent: 6 + type: Transform + - uid: 4475 + components: + - pos: -19.5,-37.5 + parent: 6 + type: Transform + - uid: 4486 + components: + - pos: 13.5,-16.5 + parent: 6 + type: Transform + - uid: 4487 + components: + - pos: 16.5,-15.5 + parent: 6 + type: Transform + - uid: 4488 + components: + - pos: 16.5,-16.5 + parent: 6 + type: Transform + - uid: 4489 + components: + - pos: 13.5,-15.5 + parent: 6 + type: Transform + - uid: 4490 + components: + - pos: 15.5,-18.5 + parent: 6 + type: Transform + - uid: 4491 + components: + - pos: 14.5,-18.5 + parent: 6 + type: Transform + - uid: 4493 + components: + - pos: 8.5,-15.5 + parent: 6 + type: Transform + - uid: 4494 + components: + - pos: 8.5,-16.5 + parent: 6 + type: Transform + - uid: 4495 + components: + - pos: 9.5,-16.5 + parent: 6 + type: Transform + - uid: 4615 + components: + - pos: 0.5,-14.5 + parent: 6 + type: Transform + - uid: 4616 + components: + - pos: 1.5,-14.5 + parent: 6 + type: Transform + - uid: 5847 + components: + - pos: -35.5,-26.5 + parent: 6 + type: Transform + - uid: 5874 + components: + - pos: -30.5,-50.5 + parent: 6 + type: Transform + - uid: 5880 + components: + - pos: -28.5,-47.5 + parent: 6 + type: Transform + - uid: 5881 + components: + - pos: -27.5,-47.5 + parent: 6 + type: Transform + - uid: 5894 + components: + - pos: -30.5,-51.5 + parent: 6 + type: Transform + - uid: 5917 + components: + - pos: 1.5,-23.5 + parent: 6 + type: Transform + - uid: 6006 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-26.5 + parent: 6 + type: Transform + - uid: 6007 + components: + - pos: -2.5,-22.5 + parent: 6 + type: Transform + - uid: 6008 + components: + - pos: 1.5,-22.5 + parent: 6 + type: Transform + - uid: 6012 + components: + - pos: -1.5,-22.5 + parent: 6 + type: Transform + - uid: 6014 + components: + - pos: -2.5,-21.5 + parent: 6 + type: Transform + - uid: 6015 + components: + - pos: -1.5,-21.5 + parent: 6 + type: Transform + - uid: 6770 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-49.5 + parent: 6 + type: Transform + - uid: 7603 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-47.5 + parent: 6 + type: Transform + - uid: 7731 + components: + - pos: -22.5,-39.5 + parent: 6 + type: Transform + - uid: 7807 + components: + - pos: 0.5,-16.5 + parent: 6 + type: Transform + - uid: 7808 + components: + - pos: 1.5,-16.5 + parent: 6 + type: Transform + - uid: 13639 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 10465 + type: Transform + - uid: 14075 + components: + - pos: 3.5,-5.5 + parent: 6 + type: Transform +- proto: TelecomServer + entities: + - uid: 14238 + components: + - pos: -55.5,-46.5 + parent: 6 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 14239 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 14240 + components: + - pos: -55.5,-47.5 + parent: 6 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 14241 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 14242 + components: + - pos: -53.5,-47.5 + parent: 6 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 14243 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 14244 + components: + - pos: -53.5,-46.5 + parent: 6 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 14245 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 14246 + components: + - pos: -53.5,-42.5 + parent: 6 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 14247 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 14248 + components: + - pos: -53.5,-41.5 + parent: 6 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 14249 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 14250 + components: + - pos: -55.5,-42.5 + parent: 6 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 14251 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 14252 + components: + - pos: -55.5,-41.5 + parent: 6 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 14253 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: Thruster + entities: + - uid: 13650 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 13645 + type: Transform + - bodyType: Static + type: Physics + - uid: 13651 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 13645 + type: Transform + - bodyType: Static + type: Physics +- proto: TintedWindow + entities: + - uid: 1210 + components: + - pos: -48.5,-46.5 + parent: 6 + type: Transform + - uid: 1211 + components: + - pos: -41.5,-30.5 + parent: 6 + type: Transform + - uid: 1212 + components: + - pos: -44.5,-30.5 + parent: 6 + type: Transform + - uid: 1213 + components: + - pos: -41.5,-35.5 + parent: 6 + type: Transform + - uid: 1223 + components: + - pos: -41.5,-39.5 + parent: 6 + type: Transform + - uid: 1237 + components: + - pos: -44.5,-34.5 + parent: 6 + type: Transform + - uid: 1238 + components: + - pos: -44.5,-40.5 + parent: 6 + type: Transform + - uid: 1569 + components: + - pos: -30.5,-23.5 + parent: 6 + type: Transform + - uid: 1604 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-32.5 + parent: 6 + type: Transform + - uid: 1605 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-30.5 + parent: 6 + type: Transform + - uid: 1606 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-28.5 + parent: 6 + type: Transform + - uid: 1613 + components: + - pos: -28.5,-23.5 + parent: 6 + type: Transform + - uid: 4422 + components: + - pos: -28.5,-51.5 + parent: 6 + type: Transform +- proto: ToiletDirtyWater + entities: + - uid: 5158 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5998 + components: + - pos: 11.5,23.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics +- proto: ToiletEmpty + entities: + - uid: 5407 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-41.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5408 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-40.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics + - uid: 5409 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-39.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics +- proto: ToolboxArtistic + entities: + - uid: 14322 + components: + - pos: -51.957188,-16.428991 + parent: 6 + type: Transform +- proto: ToolboxElectricalFilled + entities: + - uid: 4888 + components: + - pos: -25.504246,-5.505117 + parent: 6 + type: Transform + - uid: 5191 + components: + - pos: -12.494616,7.947429 + parent: 6 + type: Transform + - uid: 10928 + components: + - pos: -17.727423,-59.27036 + parent: 6 + type: Transform +- proto: ToolboxEmergency + entities: + - uid: 13742 + components: + - pos: 4.055664,5.260956 + parent: 13645 + type: Transform + - nextAttack: 3861.317892 + type: MeleeWeapon +- proto: ToolboxEmergencyFilled + entities: + - uid: 5189 + components: + - pos: -12.496316,8.164643 + parent: 6 + type: Transform + - nextAttack: 416.6816706 + type: MeleeWeapon + - uid: 6330 + components: + - pos: 1.30425,8.527272 + parent: 6 + type: Transform +- proto: ToolboxGoldFilled + entities: + - uid: 5069 + components: + - pos: -18.519644,4.533372 + parent: 6 + type: Transform +- proto: ToolboxMechanicalFilled + entities: + - uid: 4887 + components: + - pos: -25.502045,-5.2071037 + parent: 6 + type: Transform + - uid: 5192 + components: + - pos: -12.494616,7.621034 + parent: 6 + type: Transform + - uid: 6329 + components: + - pos: 1.5626681,8.78555 + parent: 6 + type: Transform + - uid: 10929 + components: + - pos: -17.471846,-59.454845 + parent: 6 + type: Transform +- proto: ToyAi + entities: + - uid: 6746 + components: + - pos: -80.64318,-44.465263 + parent: 6 + type: Transform +- proto: ToyNuke + entities: + - uid: 5074 + components: + - pos: -22.32346,4.024728 + parent: 6 + type: Transform +- proto: trayScanner + entities: + - uid: 5196 + components: + - pos: -13.661372,8.742131 + parent: 6 + type: Transform +- proto: TubaInstrument + entities: + - uid: 5617 + components: + - pos: 17.5,-26.5 + parent: 6 + type: Transform +- proto: TwoWayLever + entities: + - uid: 6520 + components: + - pos: 17.5,-34.5 + parent: 6 + type: Transform + - outputs: + Left: + - port: Forward + uid: 6498 + - port: Forward + uid: 6497 + - port: Forward + uid: 6496 + - port: Forward + uid: 6495 + - port: Forward + uid: 6494 + - port: Forward + uid: 6499 + - port: Forward + uid: 6500 + - port: Forward + uid: 6501 + - port: Forward + uid: 6502 + - port: Forward + uid: 6503 + Right: + - port: Reverse + uid: 6498 + - port: Reverse + uid: 6497 + - port: Reverse + uid: 6496 + - port: Reverse + uid: 6495 + - port: Reverse + uid: 6494 + - port: Reverse + uid: 6499 + - port: Reverse + uid: 6500 + - port: Reverse + uid: 6501 + - port: Reverse + uid: 6502 + - port: Reverse + uid: 6503 + Middle: + - port: Off + uid: 6498 + - port: Off + uid: 6497 + - port: Off + uid: 6496 + - port: Off + uid: 6495 + - port: Off + uid: 6494 + - port: Off + uid: 6499 + - port: Off + uid: 6500 + - port: Off + uid: 6501 + - port: Off + uid: 6502 + - port: Off + uid: 6503 + type: SignalTransmitter + - uid: 13053 + components: + - pos: -52.5,-32.5 + parent: 6 + type: Transform + - outputs: + Left: + - port: Forward + uid: 5439 + - port: Forward + uid: 5438 + - port: Forward + uid: 5437 + - port: Forward + uid: 5436 + - port: Forward + uid: 5435 + - port: Forward + uid: 5434 + - port: Forward + uid: 5433 + - port: Forward + uid: 5440 + - port: Reverse + uid: 5427 + Right: + - port: Reverse + uid: 5439 + - port: Reverse + uid: 5438 + - port: Reverse + uid: 5437 + - port: Reverse + uid: 5436 + - port: Reverse + uid: 5435 + - port: Reverse + uid: 5434 + - port: Reverse + uid: 5433 + - port: Reverse + uid: 5440 + - port: Forward + uid: 5427 + Middle: + - port: Off + uid: 5439 + - port: Off + uid: 5438 + - port: Off + uid: 5437 + - port: Off + uid: 5436 + - port: Off + uid: 5435 + - port: Off + uid: 5434 + - port: Off + uid: 5433 + - port: Off + uid: 5440 + - port: Off + uid: 5427 + type: SignalTransmitter +- proto: UniformPrinter + entities: + - uid: 4402 + components: + - pos: -0.5,-5.5 + parent: 6 + type: Transform +- proto: UniformScrubsColorPurple + entities: + - uid: 6194 + components: + - pos: -32.70097,-14.485509 + parent: 6 + type: Transform +- proto: UprightPianoInstrument + entities: + - uid: 7601 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-53.5 + parent: 6 + type: Transform +- proto: Vaccinator + entities: + - uid: 859 + components: + - pos: -21.5,-33.5 + parent: 6 + type: Transform +- proto: VehicleJanicartDestroyed + entities: + - uid: 3725 + components: + - pos: -53.5,-31.5 + parent: 6 + type: Transform + - bodyType: Static + type: Physics +- proto: VehicleKeyATV + entities: + - uid: 3287 + components: + - pos: -22.22619,24.315828 + parent: 6 + type: Transform +- proto: VehicleKeyJanicart + entities: + - uid: 5112 + components: + - pos: 27.12483,3.775862 + parent: 6 + type: Transform +- proto: VehicleKeySyndicateSegway + entities: + - uid: 4324 + components: + - pos: 22.49579,-15.521695 + parent: 6 + type: Transform +- proto: VendingBarDrobe + entities: + - uid: 8451 + components: + - flags: SessionSpecific + type: MetaData + - pos: -3.5,-14.5 + parent: 6 + type: Transform +- proto: VendingMachineAtmosDrobe + entities: + - uid: 2139 + components: + - flags: SessionSpecific + type: MetaData + - pos: -36.5,-8.5 + parent: 6 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 88 + components: + - flags: SessionSpecific + type: MetaData + - pos: -5.5,-0.5 + parent: 6 + type: Transform + - uid: 4617 + components: + - flags: SessionSpecific + type: MetaData + - pos: -0.5,-14.5 + parent: 6 + type: Transform + - uid: 6039 + components: + - flags: SessionSpecific + type: MetaData + - pos: 11.5,-44.5 + parent: 6 + type: Transform +- proto: VendingMachineCargoDrobe + entities: + - uid: 5588 + components: + - flags: SessionSpecific + type: MetaData + - pos: 14.5,-41.5 + parent: 6 + type: Transform +- proto: VendingMachineCart + entities: + - uid: 3028 + components: + - flags: SessionSpecific + type: MetaData + - pos: -3.5,-6.5 + parent: 6 + type: Transform +- proto: VendingMachineChang + entities: + - uid: 2042 + components: + - flags: SessionSpecific + type: MetaData + - pos: -42.5,-13.5 + parent: 6 + type: Transform +- proto: VendingMachineChapel + entities: + - uid: 5883 + components: + - flags: SessionSpecific + type: MetaData + - pos: -26.5,-47.5 + parent: 6 + type: Transform +- proto: VendingMachineChefDrobe + entities: + - uid: 4348 + components: + - flags: SessionSpecific + type: MetaData + - pos: -11.5,-26.5 + parent: 6 + type: Transform +- proto: VendingMachineChefvend + entities: + - uid: 4346 + components: + - flags: SessionSpecific + type: MetaData + - pos: -10.5,-26.5 + parent: 6 + type: Transform +- proto: VendingMachineChemDrobe + entities: + - uid: 6185 + components: + - flags: SessionSpecific + type: MetaData + - pos: -25.5,-14.5 + parent: 6 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 454 + components: + - flags: SessionSpecific + type: MetaData + - pos: 10.5,-18.5 + parent: 6 + type: Transform + - uid: 3898 + components: + - flags: SessionSpecific + type: MetaData + - pos: 0.5,-46.5 + parent: 6 + type: Transform + - uid: 5135 + components: + - flags: SessionSpecific + type: MetaData + - pos: -12.5,-9.5 + parent: 6 + type: Transform + - uid: 5168 + components: + - flags: SessionSpecific + type: MetaData + - pos: -3.5,-3.5 + parent: 6 + type: Transform + - uid: 6010 + components: + - flags: SessionSpecific + type: MetaData + - pos: 0.5,-26.5 + parent: 6 + type: Transform + - uid: 13819 + components: + - flags: SessionSpecific + type: MetaData + - pos: -66.5,-13.5 + parent: 6 + type: Transform +- proto: VendingMachineClothing + entities: + - uid: 4460 + components: + - flags: SessionSpecific + type: MetaData + - pos: -49.5,-14.5 + parent: 6 + type: Transform +- proto: VendingMachineCoffee + entities: + - uid: 3652 + components: + - flags: SessionSpecific + type: MetaData + - pos: -6.5,-54.5 + parent: 6 + type: Transform + - uid: 4462 + components: + - flags: SessionSpecific + type: MetaData + - pos: -38.5,-15.5 + parent: 6 + type: Transform + - uid: 5556 + components: + - flags: SessionSpecific + type: MetaData + - pos: 0.5,-3.5 + parent: 6 + type: Transform + - uid: 7830 + components: + - flags: SessionSpecific + type: MetaData + - pos: -19.5,-46.5 + parent: 6 + type: Transform +- proto: VendingMachineCola + entities: + - uid: 4818 + components: + - flags: SessionSpecific + type: MetaData + - pos: -3.5,-46.5 + parent: 6 + type: Transform + - uid: 5137 + components: + - flags: SessionSpecific + type: MetaData + - pos: 3.5,-9.5 + parent: 6 + type: Transform + - uid: 6011 + components: + - flags: SessionSpecific + type: MetaData + - pos: -0.5,-26.5 + parent: 6 + type: Transform + - uid: 6539 + components: + - flags: SessionSpecific + type: MetaData + - pos: -62.5,-12.5 + parent: 6 + type: Transform +- proto: VendingMachineCondiments + entities: + - uid: 9696 + components: + - flags: SessionSpecific + type: MetaData + - pos: -3.5,-24.5 + parent: 6 + type: Transform +- proto: VendingMachineDetDrobe + entities: + - uid: 3595 + components: + - flags: SessionSpecific + type: MetaData + - pos: -48.5,-51.5 + parent: 6 + type: Transform +- proto: VendingMachineDinnerware + entities: + - uid: 4347 + components: + - flags: SessionSpecific + type: MetaData + - pos: -6.5,-26.5 + parent: 6 + type: Transform +- proto: VendingMachineDiscount + entities: + - uid: 5136 + components: + - flags: SessionSpecific + type: MetaData + - pos: -8.5,-9.5 + parent: 6 + type: Transform +- proto: VendingMachineDonut + entities: + - uid: 4466 + components: + - flags: SessionSpecific + type: MetaData + - pos: -39.5,-15.5 + parent: 6 + type: Transform + - uid: 5152 + components: + - flags: SessionSpecific + type: MetaData + - pos: 0.5,1.5 + parent: 6 + type: Transform + - uid: 7831 + components: + - flags: SessionSpecific + type: MetaData + - pos: -20.5,-46.5 + parent: 6 + type: Transform + - uid: 13820 + components: + - flags: SessionSpecific + type: MetaData + - pos: -67.5,-13.5 + parent: 6 + type: Transform +- proto: VendingMachineEngiDrobe + entities: + - uid: 2140 + components: + - flags: SessionSpecific + type: MetaData + - pos: -36.5,-5.5 + parent: 6 + type: Transform +- proto: VendingMachineEngivend + entities: + - uid: 4879 + components: + - flags: SessionSpecific + type: MetaData + - pos: -32.5,-6.5 + parent: 6 + type: Transform +- proto: VendingMachineGames + entities: + - uid: 5278 + components: + - flags: SessionSpecific + type: MetaData + - pos: 2.5,-38.5 + parent: 6 + type: Transform + - uid: 13545 + components: + - flags: SessionSpecific + type: MetaData + - pos: -25.5,-37.5 + parent: 6 + type: Transform + - uid: 13581 + components: + - flags: SessionSpecific + type: MetaData + - pos: -49.5,-15.5 + parent: 6 + type: Transform +- proto: VendingMachineHappyHonk + entities: + - uid: 6031 + components: + - flags: SessionSpecific + type: MetaData + - pos: -6.5,-17.5 + parent: 6 + type: Transform +- proto: VendingMachineHydrobe + entities: + - uid: 4350 + components: + - flags: SessionSpecific + type: MetaData + - pos: -8.5,-17.5 + parent: 6 + type: Transform +- proto: VendingMachineJaniDrobe + entities: + - uid: 4406 + components: + - flags: SessionSpecific + type: MetaData + - pos: 26.5,5.5 + parent: 6 + type: Transform +- proto: VendingMachineLawDrobe + entities: + - uid: 4492 + components: + - flags: SessionSpecific + type: MetaData + - pos: 10.5,-14.5 + parent: 6 + type: Transform +- proto: VendingMachineMedical + entities: + - uid: 1612 + components: + - flags: SessionSpecific + type: MetaData + - pos: -26.5,-24.5 + parent: 6 + type: Transform +- proto: VendingMachineMediDrobe + entities: + - uid: 6186 + components: + - flags: SessionSpecific + type: MetaData + - pos: -20.5,-27.5 + parent: 6 + type: Transform +- proto: VendingMachineNutri + entities: + - uid: 4351 + components: + - flags: SessionSpecific + type: MetaData + - pos: -8.5,-16.5 + parent: 6 + type: Transform +- proto: VendingMachineRoboDrobe + entities: + - uid: 5395 + components: + - flags: SessionSpecific + type: MetaData + - pos: -14.5,-50.5 + parent: 6 + type: Transform +- proto: VendingMachineSalvage + entities: + - uid: 4531 + components: + - flags: SessionSpecific + type: MetaData + - pos: 2.5,-51.5 + parent: 6 + type: Transform +- proto: VendingMachineSec + entities: + - uid: 3419 + components: + - flags: SessionSpecific + type: MetaData + - pos: 19.5,-6.5 + parent: 6 + type: Transform +- proto: VendingMachineSecDrobe + entities: + - uid: 3420 + components: + - flags: SessionSpecific + type: MetaData + - pos: 18.5,-6.5 + parent: 6 + type: Transform +- proto: VendingMachineSeeds + entities: + - uid: 4352 + components: + - flags: SessionSpecific + type: MetaData + - pos: -8.5,-15.5 + parent: 6 + type: Transform +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 5991 + components: + - flags: SessionSpecific + type: MetaData + - pos: 18.5,21.5 + parent: 6 + type: Transform +- proto: VendingMachineSmartFridge + entities: + - uid: 846 + components: + - flags: SessionSpecific + type: MetaData + - pos: -9.5,-23.5 + parent: 6 + type: Transform +- proto: VendingMachineSnack + entities: + - uid: 6540 + components: + - flags: SessionSpecific + type: MetaData + - pos: -58.5,-12.5 + parent: 6 + type: Transform +- proto: VendingMachineSovietSoda + entities: + - uid: 5493 + components: + - flags: SessionSpecific + type: MetaData + - pos: -31.5,-34.5 + parent: 6 + type: Transform + - uid: 10941 + components: + - flags: SessionSpecific + type: MetaData + - pos: -26.5,-58.5 + parent: 6 + type: Transform +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 3407 + components: + - flags: SessionSpecific + type: MetaData + - pos: 19.5,6.5 + parent: 6 + type: Transform + - uid: 4435 + components: + - flags: SessionSpecific + type: MetaData + - pos: -47.5,-17.5 + parent: 6 + type: Transform + - uid: 4847 + components: + - flags: SessionSpecific + type: MetaData + - pos: -25.5,-7.5 + parent: 6 + type: Transform +- proto: VendingMachineTheater + entities: + - uid: 4373 + components: + - flags: SessionSpecific + type: MetaData + - pos: -15.5,8.5 + parent: 6 + type: Transform + - uid: 4461 + components: + - flags: SessionSpecific + type: MetaData + - pos: -54.5,-14.5 + parent: 6 + type: Transform + - uid: 5636 + components: + - flags: SessionSpecific + type: MetaData + - pos: 14.5,-27.5 + parent: 6 + type: Transform +- proto: VendingMachineVendomat + entities: + - uid: 4374 + components: + - flags: SessionSpecific + type: MetaData + - pos: -14.5,8.5 + parent: 6 + type: Transform +- proto: VendingMachineViroDrobe + entities: + - uid: 3605 + components: + - flags: SessionSpecific + type: MetaData + - pos: -32.5,-18.5 + parent: 6 + type: Transform +- proto: VendingMachineWallMedical + entities: + - uid: 6778 + components: + - flags: SessionSpecific + type: MetaData + - rot: 3.141592653589793 rad + pos: -23.5,-23.5 + parent: 6 + type: Transform +- proto: VendingMachineYouTool + entities: + - uid: 4372 + components: + - flags: SessionSpecific + type: MetaData + - pos: -16.5,8.5 + parent: 6 + type: Transform + - uid: 4878 + components: + - flags: SessionSpecific + type: MetaData + - pos: -34.5,-6.5 + parent: 6 + type: Transform +- proto: WallCult + entities: + - uid: 5864 + components: + - pos: -26.5,-53.5 + parent: 6 + type: Transform + - uid: 5967 + components: + - pos: -25.5,-53.5 + parent: 6 + type: Transform +- proto: WallmountTelescreen + entities: + - uid: 3593 + components: + - pos: -51.5,-48.5 + parent: 6 + type: Transform +- proto: WallReinforced + entities: + - uid: 1 + components: + - rot: 3.141592653589793 rad + pos: -16.5,5.5 + parent: 6 + type: Transform + - uid: 2 + components: + - rot: 3.141592653589793 rad + pos: -18.5,5.5 + parent: 6 + type: Transform + - uid: 3 + components: + - rot: 3.141592653589793 rad + pos: -16.5,4.5 + parent: 6 + type: Transform + - uid: 4 + components: + - rot: 3.141592653589793 rad + pos: -17.5,5.5 + parent: 6 + type: Transform + - uid: 7 + components: + - pos: 4.5,-8.5 + parent: 6 + type: Transform + - uid: 8 + components: + - pos: 4.5,-3.5 + parent: 6 + type: Transform + - uid: 9 + components: + - pos: 4.5,-4.5 + parent: 6 + type: Transform + - uid: 11 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 6 + type: Transform + - uid: 15 + components: + - pos: 4.5,-6.5 + parent: 6 + type: Transform + - uid: 16 + components: + - pos: 4.5,-5.5 + parent: 6 + type: Transform + - uid: 21 + components: + - pos: -12.5,5.5 + parent: 6 + type: Transform + - uid: 23 + components: + - pos: 4.5,1.5 + parent: 6 + type: Transform + - uid: 24 + components: + - pos: 4.5,-7.5 + parent: 6 + type: Transform + - uid: 28 + components: + - pos: 4.5,2.5 + parent: 6 + type: Transform + - uid: 30 + components: + - pos: 1.5,2.5 + parent: 6 + type: Transform + - uid: 34 + components: + - pos: -4.5,-4.5 + parent: 6 + type: Transform + - uid: 35 + components: + - pos: -4.5,-0.5 + parent: 6 + type: Transform + - uid: 36 + components: + - pos: -11.5,5.5 + parent: 6 + type: Transform + - uid: 37 + components: + - pos: -4.5,-3.5 + parent: 6 + type: Transform + - uid: 42 + components: + - rot: 3.141592653589793 rad + pos: -16.5,3.5 + parent: 6 + type: Transform + - uid: 44 + components: + - rot: 3.141592653589793 rad + pos: -23.5,5.5 + parent: 6 + type: Transform + - uid: 50 + components: + - rot: 3.141592653589793 rad + pos: -23.5,4.5 + parent: 6 + type: Transform + - uid: 51 + components: + - pos: 0.5,-8.5 + parent: 6 + type: Transform + - uid: 54 + components: + - rot: 3.141592653589793 rad + pos: -16.5,2.5 + parent: 6 + type: Transform + - uid: 55 + components: + - pos: 1.5,-8.5 + parent: 6 + type: Transform + - uid: 60 + components: + - pos: 3.5,-8.5 + parent: 6 + type: Transform + - uid: 61 + components: + - pos: 2.5,-8.5 + parent: 6 + type: Transform + - uid: 67 + components: + - pos: -4.5,-8.5 + parent: 6 + type: Transform + - uid: 68 + components: + - pos: -4.5,-6.5 + parent: 6 + type: Transform + - uid: 69 + components: + - pos: -4.5,-7.5 + parent: 6 + type: Transform + - uid: 80 + components: + - pos: -8.5,-5.5 + parent: 6 + type: Transform + - uid: 81 + components: + - pos: -7.5,-5.5 + parent: 6 + type: Transform + - uid: 82 + components: + - pos: -7.5,-4.5 + parent: 6 + type: Transform + - uid: 83 + components: + - pos: -6.5,-1.5 + parent: 6 + type: Transform + - uid: 84 + components: + - pos: -6.5,-2.5 + parent: 6 + type: Transform + - uid: 85 + components: + - pos: -6.5,-3.5 + parent: 6 + type: Transform + - uid: 86 + components: + - pos: -6.5,-4.5 + parent: 6 + type: Transform + - uid: 87 + components: + - pos: -6.5,-0.5 + parent: 6 + type: Transform + - uid: 94 + components: + - pos: -9.5,-5.5 + parent: 6 + type: Transform + - uid: 95 + components: + - pos: -10.5,-5.5 + parent: 6 + type: Transform + - uid: 96 + components: + - pos: -10.5,-4.5 + parent: 6 + type: Transform + - uid: 102 + components: + - pos: -12.5,2.5 + parent: 6 + type: Transform + - uid: 103 + components: + - pos: -11.5,2.5 + parent: 6 + type: Transform + - uid: 104 + components: + - pos: -13.5,2.5 + parent: 6 + type: Transform + - uid: 108 + components: + - pos: -13.5,5.5 + parent: 6 + type: Transform + - uid: 113 + components: + - pos: -10.5,5.5 + parent: 6 + type: Transform + - uid: 118 + components: + - pos: -9.5,-1.5 + parent: 6 + type: Transform + - uid: 119 + components: + - pos: -9.5,-0.5 + parent: 6 + type: Transform + - uid: 120 + components: + - pos: -9.5,0.5 + parent: 6 + type: Transform + - uid: 121 + components: + - pos: -9.5,1.5 + parent: 6 + type: Transform + - uid: 122 + components: + - pos: -9.5,2.5 + parent: 6 + type: Transform + - uid: 123 + components: + - pos: -10.5,2.5 + parent: 6 + type: Transform + - uid: 124 + components: + - pos: -9.5,-2.5 + parent: 6 + type: Transform + - uid: 126 + components: + - pos: -10.5,-3.5 + parent: 6 + type: Transform + - uid: 127 + components: + - pos: -10.5,-2.5 + parent: 6 + type: Transform + - uid: 134 + components: + - pos: -11.5,8.5 + parent: 6 + type: Transform + - uid: 135 + components: + - pos: -11.5,7.5 + parent: 6 + type: Transform + - uid: 136 + components: + - pos: -11.5,6.5 + parent: 6 + type: Transform + - uid: 138 + components: + - pos: -2.5,5.5 + parent: 6 + type: Transform + - uid: 139 + components: + - pos: -6.5,5.5 + parent: 6 + type: Transform + - uid: 141 + components: + - pos: 1.5,5.5 + parent: 6 + type: Transform + - uid: 142 + components: + - pos: 4.5,5.5 + parent: 6 + type: Transform + - uid: 143 + components: + - pos: 2.5,5.5 + parent: 6 + type: Transform + - uid: 144 + components: + - pos: 3.5,5.5 + parent: 6 + type: Transform + - uid: 145 + components: + - pos: 2.5,9.5 + parent: 6 + type: Transform + - uid: 146 + components: + - pos: 2.5,8.5 + parent: 6 + type: Transform + - uid: 147 + components: + - pos: 2.5,7.5 + parent: 6 + type: Transform + - uid: 148 + components: + - pos: -12.5,9.5 + parent: 6 + type: Transform + - uid: 149 + components: + - pos: 2.5,6.5 + parent: 6 + type: Transform + - uid: 154 + components: + - pos: -9.5,11.5 + parent: 6 + type: Transform + - uid: 155 + components: + - pos: 0.5,11.5 + parent: 6 + type: Transform + - uid: 164 + components: + - pos: -4.5,11.5 + parent: 6 + type: Transform + - uid: 184 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-2.5 + parent: 6 + type: Transform + - uid: 185 + components: + - rot: 3.141592653589793 rad + pos: -17.5,0.5 + parent: 6 + type: Transform + - uid: 186 + components: + - rot: 3.141592653589793 rad + pos: -23.5,0.5 + parent: 6 + type: Transform + - uid: 187 + components: + - rot: 3.141592653589793 rad + pos: -23.5,1.5 + parent: 6 + type: Transform + - uid: 188 + components: + - rot: 3.141592653589793 rad + pos: -23.5,2.5 + parent: 6 + type: Transform + - uid: 189 + components: + - rot: 3.141592653589793 rad + pos: -23.5,3.5 + parent: 6 + type: Transform + - uid: 196 + components: + - pos: 13.5,-9.5 + parent: 6 + type: Transform + - uid: 197 + components: + - pos: 10.5,-5.5 + parent: 6 + type: Transform + - uid: 198 + components: + - pos: 11.5,-5.5 + parent: 6 + type: Transform + - uid: 199 + components: + - pos: 13.5,-5.5 + parent: 6 + type: Transform + - uid: 200 + components: + - pos: 12.5,-5.5 + parent: 6 + type: Transform + - uid: 201 + components: + - pos: 7.5,-2.5 + parent: 6 + type: Transform + - uid: 202 + components: + - pos: 7.5,-3.5 + parent: 6 + type: Transform + - uid: 204 + components: + - pos: 7.5,1.5 + parent: 6 + type: Transform + - uid: 205 + components: + - pos: 16.5,-9.5 + parent: 6 + type: Transform + - uid: 211 + components: + - pos: 10.5,5.5 + parent: 6 + type: Transform + - uid: 212 + components: + - pos: 9.5,5.5 + parent: 6 + type: Transform + - uid: 213 + components: + - pos: 8.5,5.5 + parent: 6 + type: Transform + - uid: 214 + components: + - pos: 7.5,5.5 + parent: 6 + type: Transform + - uid: 215 + components: + - pos: 7.5,10.5 + parent: 6 + type: Transform + - uid: 216 + components: + - rot: 3.141592653589793 rad + pos: -16.5,1.5 + parent: 6 + type: Transform + - uid: 217 + components: + - rot: 3.141592653589793 rad + pos: -16.5,0.5 + parent: 6 + type: Transform + - uid: 221 + components: + - pos: -19.5,8.5 + parent: 6 + type: Transform + - uid: 222 + components: + - pos: -18.5,9.5 + parent: 6 + type: Transform + - uid: 223 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,9.5 + parent: 6 + type: Transform + - uid: 224 + components: + - pos: 3.5,9.5 + parent: 6 + type: Transform + - uid: 225 + components: + - pos: -11.5,9.5 + parent: 6 + type: Transform + - uid: 226 + components: + - pos: -19.5,9.5 + parent: 6 + type: Transform + - uid: 235 + components: + - pos: 7.5,13.5 + parent: 6 + type: Transform + - uid: 236 + components: + - pos: 7.5,11.5 + parent: 6 + type: Transform + - uid: 245 + components: + - pos: 7.5,-34.5 + parent: 6 + type: Transform + - uid: 246 + components: + - pos: 7.5,-33.5 + parent: 6 + type: Transform + - uid: 254 + components: + - pos: 18.5,2.5 + parent: 6 + type: Transform + - uid: 270 + components: + - pos: 7.5,-4.5 + parent: 6 + type: Transform + - uid: 271 + components: + - pos: 7.5,-5.5 + parent: 6 + type: Transform + - uid: 292 + components: + - pos: 11.5,-9.5 + parent: 6 + type: Transform + - uid: 294 + components: + - pos: 18.5,0.5 + parent: 6 + type: Transform + - uid: 295 + components: + - pos: 18.5,-0.5 + parent: 6 + type: Transform + - uid: 298 + components: + - pos: 19.5,-5.5 + parent: 6 + type: Transform + - uid: 299 + components: + - pos: 18.5,-5.5 + parent: 6 + type: Transform + - uid: 300 + components: + - pos: 20.5,-9.5 + parent: 6 + type: Transform + - uid: 301 + components: + - pos: 15.5,-2.5 + parent: 6 + type: Transform + - uid: 302 + components: + - pos: 16.5,-2.5 + parent: 6 + type: Transform + - uid: 303 + components: + - pos: 18.5,-2.5 + parent: 6 + type: Transform + - uid: 304 + components: + - pos: 18.5,1.5 + parent: 6 + type: Transform + - uid: 305 + components: + - pos: 18.5,-1.5 + parent: 6 + type: Transform + - uid: 307 + components: + - pos: 16.5,2.5 + parent: 6 + type: Transform + - uid: 312 + components: + - pos: 13.5,5.5 + parent: 6 + type: Transform + - uid: 318 + components: + - pos: 15.5,2.5 + parent: 6 + type: Transform + - uid: 319 + components: + - pos: 17.5,2.5 + parent: 6 + type: Transform + - uid: 326 + components: + - pos: 18.5,3.5 + parent: 6 + type: Transform + - uid: 327 + components: + - pos: 17.5,3.5 + parent: 6 + type: Transform + - uid: 328 + components: + - pos: 16.5,3.5 + parent: 6 + type: Transform + - uid: 329 + components: + - pos: 10.5,10.5 + parent: 6 + type: Transform + - uid: 330 + components: + - pos: 13.5,10.5 + parent: 6 + type: Transform + - uid: 331 + components: + - pos: 13.5,6.5 + parent: 6 + type: Transform + - uid: 336 + components: + - pos: 13.5,13.5 + parent: 6 + type: Transform + - uid: 337 + components: + - pos: 16.5,13.5 + parent: 6 + type: Transform + - uid: 338 + components: + - pos: 16.5,10.5 + parent: 6 + type: Transform + - uid: 339 + components: + - pos: 17.5,10.5 + parent: 6 + type: Transform + - uid: 340 + components: + - pos: 18.5,10.5 + parent: 6 + type: Transform + - uid: 341 + components: + - pos: 19.5,10.5 + parent: 6 + type: Transform + - uid: 342 + components: + - pos: 16.5,9.5 + parent: 6 + type: Transform + - uid: 343 + components: + - pos: 17.5,9.5 + parent: 6 + type: Transform + - uid: 344 + components: + - pos: 18.5,9.5 + parent: 6 + type: Transform + - uid: 345 + components: + - pos: 19.5,9.5 + parent: 6 + type: Transform + - uid: 346 + components: + - pos: 19.5,2.5 + parent: 6 + type: Transform + - uid: 347 + components: + - pos: 19.5,3.5 + parent: 6 + type: Transform + - uid: 348 + components: + - pos: 16.5,8.5 + parent: 6 + type: Transform + - uid: 349 + components: + - pos: 16.5,7.5 + parent: 6 + type: Transform + - uid: 350 + components: + - pos: 16.5,4.5 + parent: 6 + type: Transform + - uid: 351 + components: + - pos: 16.5,5.5 + parent: 6 + type: Transform + - uid: 352 + components: + - pos: 20.5,10.5 + parent: 6 + type: Transform + - uid: 353 + components: + - pos: 20.5,9.5 + parent: 6 + type: Transform + - uid: 354 + components: + - pos: 21.5,10.5 + parent: 6 + type: Transform + - uid: 355 + components: + - pos: 21.5,9.5 + parent: 6 + type: Transform + - uid: 356 + components: + - pos: 20.5,8.5 + parent: 6 + type: Transform + - uid: 357 + components: + - pos: 20.5,7.5 + parent: 6 + type: Transform + - uid: 358 + components: + - pos: 21.5,8.5 + parent: 6 + type: Transform + - uid: 359 + components: + - pos: 21.5,7.5 + parent: 6 + type: Transform + - uid: 360 + components: + - pos: 21.5,6.5 + parent: 6 + type: Transform + - uid: 361 + components: + - pos: 21.5,5.5 + parent: 6 + type: Transform + - uid: 362 + components: + - pos: 21.5,4.5 + parent: 6 + type: Transform + - uid: 363 + components: + - pos: 21.5,3.5 + parent: 6 + type: Transform + - uid: 364 + components: + - pos: 21.5,2.5 + parent: 6 + type: Transform + - uid: 365 + components: + - pos: 20.5,6.5 + parent: 6 + type: Transform + - uid: 366 + components: + - pos: 20.5,5.5 + parent: 6 + type: Transform + - uid: 367 + components: + - pos: 20.5,4.5 + parent: 6 + type: Transform + - uid: 369 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-17.5 + parent: 6 + type: Transform + - uid: 370 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 6 + type: Transform + - uid: 371 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-13.5 + parent: 6 + type: Transform + - uid: 372 + components: + - pos: 20.5,3.5 + parent: 6 + type: Transform + - uid: 373 + components: + - pos: 20.5,2.5 + parent: 6 + type: Transform + - uid: 376 + components: + - pos: 20.5,-7.5 + parent: 6 + type: Transform + - uid: 392 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-15.5 + parent: 6 + type: Transform + - uid: 393 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-16.5 + parent: 6 + type: Transform + - uid: 394 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-18.5 + parent: 6 + type: Transform + - uid: 395 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-19.5 + parent: 6 + type: Transform + - uid: 398 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-19.5 + parent: 6 + type: Transform + - uid: 400 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-13.5 + parent: 6 + type: Transform + - uid: 401 + components: + - pos: 30.5,-13.5 + parent: 6 + type: Transform + - uid: 402 + components: + - pos: 34.5,-13.5 + parent: 6 + type: Transform + - uid: 403 + components: + - pos: 38.5,-13.5 + parent: 6 + type: Transform + - uid: 404 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-13.5 + parent: 6 + type: Transform + - uid: 405 + components: + - pos: 42.5,-13.5 + parent: 6 + type: Transform + - uid: 406 + components: + - pos: 44.5,-13.5 + parent: 6 + type: Transform + - uid: 407 + components: + - pos: 43.5,-13.5 + parent: 6 + type: Transform + - uid: 410 + components: + - pos: 44.5,-9.5 + parent: 6 + type: Transform + - uid: 411 + components: + - pos: 44.5,-10.5 + parent: 6 + type: Transform + - uid: 436 + components: + - pos: 20.5,-8.5 + parent: 6 + type: Transform + - uid: 438 + components: + - pos: 20.5,-6.5 + parent: 6 + type: Transform + - uid: 445 + components: + - pos: 20.5,-5.5 + parent: 6 + type: Transform + - uid: 487 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 6 + type: Transform + - uid: 488 + components: + - pos: 38.5,-9.5 + parent: 6 + type: Transform + - uid: 494 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-9.5 + parent: 6 + type: Transform + - uid: 519 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-8.5 + parent: 6 + type: Transform + - uid: 521 + components: + - pos: 42.5,10.5 + parent: 6 + type: Transform + - uid: 546 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,10.5 + parent: 6 + type: Transform + - uid: 547 + components: + - pos: 42.5,-8.5 + parent: 6 + type: Transform + - uid: 548 + components: + - pos: 42.5,-9.5 + parent: 6 + type: Transform + - uid: 555 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,10.5 + parent: 6 + type: Transform + - uid: 557 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,7.5 + parent: 6 + type: Transform + - uid: 558 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,6.5 + parent: 6 + type: Transform + - uid: 559 + components: + - pos: 44.5,-8.5 + parent: 6 + type: Transform + - uid: 560 + components: + - pos: 44.5,-3.5 + parent: 6 + type: Transform + - uid: 561 + components: + - pos: 44.5,0.5 + parent: 6 + type: Transform + - uid: 562 + components: + - pos: 44.5,5.5 + parent: 6 + type: Transform + - uid: 573 + components: + - pos: 45.5,-3.5 + parent: 6 + type: Transform + - uid: 585 + components: + - pos: 48.5,-3.5 + parent: 6 + type: Transform + - uid: 586 + components: + - pos: 48.5,-8.5 + parent: 6 + type: Transform + - uid: 587 + components: + - pos: 48.5,0.5 + parent: 6 + type: Transform + - uid: 588 + components: + - pos: 48.5,5.5 + parent: 6 + type: Transform + - uid: 601 + components: + - pos: 45.5,0.5 + parent: 6 + type: Transform + - uid: 618 + components: + - pos: 24.5,12.5 + parent: 6 + type: Transform + - uid: 621 + components: + - pos: 24.5,13.5 + parent: 6 + type: Transform + - uid: 632 + components: + - pos: 24.5,10.5 + parent: 6 + type: Transform + - uid: 633 + components: + - pos: 24.5,11.5 + parent: 6 + type: Transform + - uid: 634 + components: + - pos: 17.5,13.5 + parent: 6 + type: Transform + - uid: 635 + components: + - rot: 3.141592653589793 rad + pos: 28.5,10.5 + parent: 6 + type: Transform + - uid: 638 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,10.5 + parent: 6 + type: Transform + - uid: 642 + components: + - pos: 42.5,6.5 + parent: 6 + type: Transform + - uid: 646 + components: + - pos: 23.5,13.5 + parent: 6 + type: Transform + - uid: 647 + components: + - pos: 12.5,10.5 + parent: 6 + type: Transform + - uid: 648 + components: + - pos: 11.5,10.5 + parent: 6 + type: Transform + - uid: 660 + components: + - pos: 42.5,3.5 + parent: 6 + type: Transform + - uid: 665 + components: + - pos: 32.5,-6.5 + parent: 6 + type: Transform + - uid: 666 + components: + - pos: 32.5,-5.5 + parent: 6 + type: Transform + - uid: 667 + components: + - pos: 42.5,-7.5 + parent: 6 + type: Transform + - uid: 668 + components: + - pos: 42.5,-6.5 + parent: 6 + type: Transform + - uid: 669 + components: + - pos: 42.5,-5.5 + parent: 6 + type: Transform + - uid: 672 + components: + - pos: 32.5,-7.5 + parent: 6 + type: Transform + - uid: 684 + components: + - pos: 32.5,3.5 + parent: 6 + type: Transform + - uid: 685 + components: + - pos: 42.5,-3.5 + parent: 6 + type: Transform + - uid: 686 + components: + - pos: 42.5,1.5 + parent: 6 + type: Transform + - uid: 687 + components: + - pos: 42.5,5.5 + parent: 6 + type: Transform + - uid: 688 + components: + - pos: 32.5,-3.5 + parent: 6 + type: Transform + - uid: 689 + components: + - pos: 32.5,6.5 + parent: 6 + type: Transform + - uid: 690 + components: + - pos: 32.5,5.5 + parent: 6 + type: Transform + - uid: 691 + components: + - pos: 32.5,1.5 + parent: 6 + type: Transform + - uid: 704 + components: + - rot: 3.141592653589793 rad + pos: -19.5,5.5 + parent: 6 + type: Transform + - uid: 706 + components: + - pos: 7.5,12.5 + parent: 6 + type: Transform + - uid: 750 + components: + - pos: 7.5,9.5 + parent: 6 + type: Transform + - uid: 756 + components: + - pos: 22.5,13.5 + parent: 6 + type: Transform + - uid: 757 + components: + - pos: 18.5,13.5 + parent: 6 + type: Transform + - uid: 762 + components: + - pos: 9.5,23.5 + parent: 6 + type: Transform + - uid: 804 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-19.5 + parent: 6 + type: Transform + - uid: 805 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-19.5 + parent: 6 + type: Transform + - uid: 806 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-19.5 + parent: 6 + type: Transform + - uid: 807 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-20.5 + parent: 6 + type: Transform + - uid: 808 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-23.5 + parent: 6 + type: Transform + - uid: 809 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-22.5 + parent: 6 + type: Transform + - uid: 810 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-23.5 + parent: 6 + type: Transform + - uid: 811 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-23.5 + parent: 6 + type: Transform + - uid: 812 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 6 + type: Transform + - uid: 813 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-23.5 + parent: 6 + type: Transform + - uid: 814 + components: + - pos: 9.5,21.5 + parent: 6 + type: Transform + - uid: 815 + components: + - pos: 11.5,-32.5 + parent: 6 + type: Transform + - uid: 816 + components: + - pos: -27.5,-13.5 + parent: 6 + type: Transform + - uid: 818 + components: + - pos: -16.5,-28.5 + parent: 6 + type: Transform + - uid: 822 + components: + - pos: 13.5,17.5 + parent: 6 + type: Transform + - uid: 823 + components: + - pos: 16.5,17.5 + parent: 6 + type: Transform + - uid: 824 + components: + - pos: 9.5,17.5 + parent: 6 + type: Transform + - uid: 826 + components: + - pos: 9.5,22.5 + parent: 6 + type: Transform + - uid: 840 + components: + - pos: 20.5,17.5 + parent: 6 + type: Transform + - uid: 850 + components: + - pos: -74.5,-44.5 + parent: 6 + type: Transform + - uid: 851 + components: + - pos: -74.5,-46.5 + parent: 6 + type: Transform + - uid: 852 + components: + - pos: -79.5,-44.5 + parent: 6 + type: Transform + - uid: 853 + components: + - pos: -79.5,-43.5 + parent: 6 + type: Transform + - uid: 855 + components: + - pos: 1.5,-52.5 + parent: 6 + type: Transform + - uid: 888 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-27.5 + parent: 6 + type: Transform + - uid: 889 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-27.5 + parent: 6 + type: Transform + - uid: 903 + components: + - pos: 20.5,-23.5 + parent: 6 + type: Transform + - uid: 904 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-27.5 + parent: 6 + type: Transform + - uid: 905 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-27.5 + parent: 6 + type: Transform + - uid: 909 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-27.5 + parent: 6 + type: Transform + - uid: 910 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-27.5 + parent: 6 + type: Transform + - uid: 911 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-27.5 + parent: 6 + type: Transform + - uid: 912 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-27.5 + parent: 6 + type: Transform + - uid: 913 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-27.5 + parent: 6 + type: Transform + - uid: 926 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-27.5 + parent: 6 + type: Transform + - uid: 928 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-27.5 + parent: 6 + type: Transform + - uid: 974 + components: + - pos: -10.5,-29.5 + parent: 6 + type: Transform + - uid: 975 + components: + - pos: -10.5,-30.5 + parent: 6 + type: Transform + - uid: 976 + components: + - pos: -9.5,-29.5 + parent: 6 + type: Transform + - uid: 977 + components: + - pos: -0.5,-29.5 + parent: 6 + type: Transform + - uid: 978 + components: + - pos: 0.5,-29.5 + parent: 6 + type: Transform + - uid: 979 + components: + - pos: 0.5,-30.5 + parent: 6 + type: Transform + - uid: 980 + components: + - pos: 0.5,-40.5 + parent: 6 + type: Transform + - uid: 981 + components: + - pos: 0.5,-39.5 + parent: 6 + type: Transform + - uid: 982 + components: + - pos: -0.5,-40.5 + parent: 6 + type: Transform + - uid: 983 + components: + - pos: -10.5,-40.5 + parent: 6 + type: Transform + - uid: 984 + components: + - pos: -10.5,-39.5 + parent: 6 + type: Transform + - uid: 985 + components: + - pos: -9.5,-40.5 + parent: 6 + type: Transform + - uid: 988 + components: + - pos: 3.5,-28.5 + parent: 6 + type: Transform + - uid: 989 + components: + - pos: 3.5,-29.5 + parent: 6 + type: Transform + - uid: 990 + components: + - pos: 3.5,-30.5 + parent: 6 + type: Transform + - uid: 1015 + components: + - pos: 2.5,-30.5 + parent: 6 + type: Transform + - uid: 1016 + components: + - pos: 1.5,-30.5 + parent: 6 + type: Transform + - uid: 1022 + components: + - pos: 1.5,-39.5 + parent: 6 + type: Transform + - uid: 1023 + components: + - pos: 2.5,-39.5 + parent: 6 + type: Transform + - uid: 1031 + components: + - pos: -11.5,-33.5 + parent: 6 + type: Transform + - uid: 1032 + components: + - pos: -11.5,-36.5 + parent: 6 + type: Transform + - uid: 1033 + components: + - pos: -12.5,-30.5 + parent: 6 + type: Transform + - uid: 1034 + components: + - pos: -12.5,-29.5 + parent: 6 + type: Transform + - uid: 1035 + components: + - pos: -12.5,-28.5 + parent: 6 + type: Transform + - uid: 1036 + components: + - pos: -12.5,-39.5 + parent: 6 + type: Transform + - uid: 1037 + components: + - pos: -12.5,-40.5 + parent: 6 + type: Transform + - uid: 1038 + components: + - pos: -12.5,-41.5 + parent: 6 + type: Transform + - uid: 1039 + components: + - pos: -12.5,-42.5 + parent: 6 + type: Transform + - uid: 1040 + components: + - pos: -11.5,-42.5 + parent: 6 + type: Transform + - uid: 1041 + components: + - pos: -10.5,-42.5 + parent: 6 + type: Transform + - uid: 1042 + components: + - pos: -9.5,-42.5 + parent: 6 + type: Transform + - uid: 1043 + components: + - pos: -5.5,-42.5 + parent: 6 + type: Transform + - uid: 1044 + components: + - pos: -4.5,-42.5 + parent: 6 + type: Transform + - uid: 1045 + components: + - pos: -5.5,-40.5 + parent: 6 + type: Transform + - uid: 1046 + components: + - pos: -4.5,-40.5 + parent: 6 + type: Transform + - uid: 1047 + components: + - pos: -5.5,-29.5 + parent: 6 + type: Transform + - uid: 1048 + components: + - pos: -4.5,-29.5 + parent: 6 + type: Transform + - uid: 1049 + components: + - pos: -0.5,-42.5 + parent: 6 + type: Transform + - uid: 1050 + components: + - pos: 0.5,-42.5 + parent: 6 + type: Transform + - uid: 1051 + components: + - pos: 1.5,-42.5 + parent: 6 + type: Transform + - uid: 1052 + components: + - pos: 2.5,-42.5 + parent: 6 + type: Transform + - uid: 1053 + components: + - pos: 3.5,-42.5 + parent: 6 + type: Transform + - uid: 1054 + components: + - pos: 3.5,-41.5 + parent: 6 + type: Transform + - uid: 1055 + components: + - pos: 3.5,-40.5 + parent: 6 + type: Transform + - uid: 1056 + components: + - pos: 3.5,-39.5 + parent: 6 + type: Transform + - uid: 1057 + components: + - pos: 20.5,-24.5 + parent: 6 + type: Transform + - uid: 1058 + components: + - pos: 20.5,-25.5 + parent: 6 + type: Transform + - uid: 1059 + components: + - pos: 20.5,-26.5 + parent: 6 + type: Transform + - uid: 1060 + components: + - pos: 20.5,-30.5 + parent: 6 + type: Transform + - uid: 1061 + components: + - pos: 20.5,-31.5 + parent: 6 + type: Transform + - uid: 1062 + components: + - pos: 20.5,-32.5 + parent: 6 + type: Transform + - uid: 1063 + components: + - pos: 20.5,-33.5 + parent: 6 + type: Transform + - uid: 1106 + components: + - pos: 7.5,-32.5 + parent: 6 + type: Transform + - uid: 1107 + components: + - pos: 7.5,-30.5 + parent: 6 + type: Transform + - uid: 1108 + components: + - pos: 8.5,-30.5 + parent: 6 + type: Transform + - uid: 1109 + components: + - pos: 9.5,-30.5 + parent: 6 + type: Transform + - uid: 1110 + components: + - pos: 10.5,-30.5 + parent: 6 + type: Transform + - uid: 1111 + components: + - pos: 11.5,-30.5 + parent: 6 + type: Transform + - uid: 1113 + components: + - pos: 11.5,-31.5 + parent: 6 + type: Transform + - uid: 1114 + components: + - pos: 10.5,-34.5 + parent: 6 + type: Transform + - uid: 1115 + components: + - pos: 11.5,-34.5 + parent: 6 + type: Transform + - uid: 1133 + components: + - pos: 7.5,-31.5 + parent: 6 + type: Transform + - uid: 1156 + components: + - pos: 20.5,-39.5 + parent: 6 + type: Transform + - uid: 1165 + components: + - pos: 23.5,-33.5 + parent: 6 + type: Transform + - uid: 1166 + components: + - pos: 23.5,-39.5 + parent: 6 + type: Transform + - uid: 1167 + components: + - pos: 23.5,-36.5 + parent: 6 + type: Transform + - uid: 1170 + components: + - pos: 20.5,-36.5 + parent: 6 + type: Transform + - uid: 1181 + components: + - pos: 20.5,-40.5 + parent: 6 + type: Transform + - uid: 1182 + components: + - pos: 20.5,-41.5 + parent: 6 + type: Transform + - uid: 1183 + components: + - pos: 20.5,-42.5 + parent: 6 + type: Transform + - uid: 1184 + components: + - pos: 20.5,-43.5 + parent: 6 + type: Transform + - uid: 1185 + components: + - pos: 20.5,-44.5 + parent: 6 + type: Transform + - uid: 1186 + components: + - pos: 20.5,-45.5 + parent: 6 + type: Transform + - uid: 1187 + components: + - pos: 20.5,-46.5 + parent: 6 + type: Transform + - uid: 1188 + components: + - pos: 20.5,-47.5 + parent: 6 + type: Transform + - uid: 1189 + components: + - pos: 11.5,-48.5 + parent: 6 + type: Transform + - uid: 1190 + components: + - pos: 12.5,-48.5 + parent: 6 + type: Transform + - uid: 1191 + components: + - pos: 13.5,-48.5 + parent: 6 + type: Transform + - uid: 1196 + components: + - pos: 18.5,-48.5 + parent: 6 + type: Transform + - uid: 1197 + components: + - pos: 19.5,-48.5 + parent: 6 + type: Transform + - uid: 1214 + components: + - pos: 1.5,-60.5 + parent: 6 + type: Transform + - uid: 1234 + components: + - pos: -0.5,-49.5 + parent: 6 + type: Transform + - uid: 1239 + components: + - pos: 7.5,-52.5 + parent: 6 + type: Transform + - uid: 1240 + components: + - pos: 7.5,-49.5 + parent: 6 + type: Transform + - uid: 1241 + components: + - pos: 8.5,-49.5 + parent: 6 + type: Transform + - uid: 1242 + components: + - pos: 9.5,-49.5 + parent: 6 + type: Transform + - uid: 1243 + components: + - pos: 10.5,-49.5 + parent: 6 + type: Transform + - uid: 1244 + components: + - pos: 11.5,-49.5 + parent: 6 + type: Transform + - uid: 1245 + components: + - pos: 7.5,-55.5 + parent: 6 + type: Transform + - uid: 1248 + components: + - pos: 20.5,-48.5 + parent: 6 + type: Transform + - uid: 1250 + components: + - pos: 4.5,-55.5 + parent: 6 + type: Transform + - uid: 1251 + components: + - pos: 1.5,-55.5 + parent: 6 + type: Transform + - uid: 1252 + components: + - pos: 1.5,-54.5 + parent: 6 + type: Transform + - uid: 1253 + components: + - pos: 1.5,-53.5 + parent: 6 + type: Transform + - uid: 1254 + components: + - pos: -0.5,-50.5 + parent: 6 + type: Transform + - uid: 1255 + components: + - pos: -0.5,-51.5 + parent: 6 + type: Transform + - uid: 1256 + components: + - pos: -0.5,-52.5 + parent: 6 + type: Transform + - uid: 1257 + components: + - pos: -0.5,-53.5 + parent: 6 + type: Transform + - uid: 1258 + components: + - pos: -1.5,-49.5 + parent: 6 + type: Transform + - uid: 1259 + components: + - pos: -3.5,-49.5 + parent: 6 + type: Transform + - uid: 1260 + components: + - pos: -2.5,-49.5 + parent: 6 + type: Transform + - uid: 1272 + components: + - pos: 1.5,-56.5 + parent: 6 + type: Transform + - uid: 1273 + components: + - pos: 1.5,-57.5 + parent: 6 + type: Transform + - uid: 1274 + components: + - pos: 1.5,-58.5 + parent: 6 + type: Transform + - uid: 1275 + components: + - pos: 1.5,-59.5 + parent: 6 + type: Transform + - uid: 1282 + components: + - pos: 0.5,-60.5 + parent: 6 + type: Transform + - uid: 1283 + components: + - pos: -0.5,-60.5 + parent: 6 + type: Transform + - uid: 1284 + components: + - pos: -1.5,-60.5 + parent: 6 + type: Transform + - uid: 1285 + components: + - pos: -2.5,-60.5 + parent: 6 + type: Transform + - uid: 1286 + components: + - pos: -3.5,-60.5 + parent: 6 + type: Transform + - uid: 1287 + components: + - pos: -4.5,-60.5 + parent: 6 + type: Transform + - uid: 1290 + components: + - pos: -7.5,-60.5 + parent: 6 + type: Transform + - uid: 1291 + components: + - pos: -8.5,-60.5 + parent: 6 + type: Transform + - uid: 1292 + components: + - pos: -9.5,-60.5 + parent: 6 + type: Transform + - uid: 1293 + components: + - pos: -10.5,-60.5 + parent: 6 + type: Transform + - uid: 1297 + components: + - pos: -14.5,-60.5 + parent: 6 + type: Transform + - uid: 1298 + components: + - pos: -15.5,-60.5 + parent: 6 + type: Transform + - uid: 1348 + components: + - pos: -3.5,-50.5 + parent: 6 + type: Transform + - uid: 1349 + components: + - pos: -3.5,-51.5 + parent: 6 + type: Transform + - uid: 1350 + components: + - pos: -3.5,-52.5 + parent: 6 + type: Transform + - uid: 1351 + components: + - pos: -3.5,-53.5 + parent: 6 + type: Transform + - uid: 1352 + components: + - pos: -2.5,-53.5 + parent: 6 + type: Transform + - uid: 1361 + components: + - pos: -8.5,-64.5 + parent: 6 + type: Transform + - uid: 1362 + components: + - pos: -7.5,-64.5 + parent: 6 + type: Transform + - uid: 1363 + components: + - pos: -3.5,-64.5 + parent: 6 + type: Transform + - uid: 1364 + components: + - pos: -4.5,-64.5 + parent: 6 + type: Transform + - uid: 1365 + components: + - pos: -7.5,-68.5 + parent: 6 + type: Transform + - uid: 1366 + components: + - pos: -8.5,-68.5 + parent: 6 + type: Transform + - uid: 1367 + components: + - pos: -4.5,-68.5 + parent: 6 + type: Transform + - uid: 1368 + components: + - pos: -3.5,-68.5 + parent: 6 + type: Transform + - uid: 1371 + components: + - pos: -8.5,-71.5 + parent: 6 + type: Transform + - uid: 1372 + components: + - pos: -7.5,-71.5 + parent: 6 + type: Transform + - uid: 1373 + components: + - pos: -4.5,-71.5 + parent: 6 + type: Transform + - uid: 1374 + components: + - pos: -3.5,-71.5 + parent: 6 + type: Transform + - uid: 1375 + components: + - pos: -3.5,-70.5 + parent: 6 + type: Transform + - uid: 1376 + components: + - pos: -3.5,-69.5 + parent: 6 + type: Transform + - uid: 1377 + components: + - pos: -8.5,-72.5 + parent: 6 + type: Transform + - uid: 1380 + components: + - pos: 0.5,-74.5 + parent: 6 + type: Transform + - uid: 1391 + components: + - pos: 2.5,-74.5 + parent: 6 + type: Transform + - uid: 1394 + components: + - pos: 1.5,-74.5 + parent: 6 + type: Transform + - uid: 1395 + components: + - pos: -0.5,-68.5 + parent: 6 + type: Transform + - uid: 1396 + components: + - pos: -0.5,-74.5 + parent: 6 + type: Transform + - uid: 1397 + components: + - pos: 2.5,-68.5 + parent: 6 + type: Transform + - uid: 1398 + components: + - pos: 2.5,-71.5 + parent: 6 + type: Transform + - uid: 1399 + components: + - pos: -0.5,-71.5 + parent: 6 + type: Transform + - uid: 1414 + components: + - pos: -4.5,-79.5 + parent: 6 + type: Transform + - uid: 1417 + components: + - pos: -4.5,-82.5 + parent: 6 + type: Transform + - uid: 1418 + components: + - pos: -8.5,-82.5 + parent: 6 + type: Transform + - uid: 1419 + components: + - pos: -0.5,-82.5 + parent: 6 + type: Transform + - uid: 1420 + components: + - pos: -0.5,-79.5 + parent: 6 + type: Transform + - uid: 1421 + components: + - pos: -8.5,-79.5 + parent: 6 + type: Transform + - uid: 1422 + components: + - pos: -8.5,-78.5 + parent: 6 + type: Transform + - uid: 1446 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-77.5 + parent: 6 + type: Transform + - uid: 1448 + components: + - pos: -0.5,-78.5 + parent: 6 + type: Transform + - uid: 1449 + components: + - pos: 2.5,-78.5 + parent: 6 + type: Transform + - uid: 1450 + components: + - pos: 2.5,-79.5 + parent: 6 + type: Transform + - uid: 1451 + components: + - pos: 2.5,-82.5 + parent: 6 + type: Transform + - uid: 1466 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-76.5 + parent: 6 + type: Transform + - uid: 1468 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-77.5 + parent: 6 + type: Transform + - uid: 1469 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-76.5 + parent: 6 + type: Transform + - uid: 1472 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-73.5 + parent: 6 + type: Transform + - uid: 1473 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-72.5 + parent: 6 + type: Transform + - uid: 1486 + components: + - pos: -8.5,-73.5 + parent: 6 + type: Transform + - uid: 1489 + components: + - pos: -16.5,-60.5 + parent: 6 + type: Transform + - uid: 1490 + components: + - pos: -17.5,-60.5 + parent: 6 + type: Transform + - uid: 1491 + components: + - pos: -18.5,-60.5 + parent: 6 + type: Transform + - uid: 1514 + components: + - pos: -20.5,-17.5 + parent: 6 + type: Transform + - uid: 1527 + components: + - pos: -25.5,-13.5 + parent: 6 + type: Transform + - uid: 1529 + components: + - pos: -23.5,-13.5 + parent: 6 + type: Transform + - uid: 1531 + components: + - pos: -21.5,-13.5 + parent: 6 + type: Transform + - uid: 1533 + components: + - pos: -20.5,-13.5 + parent: 6 + type: Transform + - uid: 1545 + components: + - pos: -16.5,-31.5 + parent: 6 + type: Transform + - uid: 1552 + components: + - pos: 12.5,13.5 + parent: 6 + type: Transform + - uid: 1553 + components: + - pos: 11.5,13.5 + parent: 6 + type: Transform + - uid: 1555 + components: + - pos: -16.5,-33.5 + parent: 6 + type: Transform + - uid: 1573 + components: + - pos: -35.5,-18.5 + parent: 6 + type: Transform + - uid: 1574 + components: + - pos: -35.5,-19.5 + parent: 6 + type: Transform + - uid: 1575 + components: + - pos: -20.5,-33.5 + parent: 6 + type: Transform + - uid: 1576 + components: + - pos: -17.5,-33.5 + parent: 6 + type: Transform + - uid: 1577 + components: + - pos: -18.5,-33.5 + parent: 6 + type: Transform + - uid: 1584 + components: + - pos: -19.5,-33.5 + parent: 6 + type: Transform + - uid: 1686 + components: + - pos: -39.5,-19.5 + parent: 6 + type: Transform + - uid: 1687 + components: + - pos: -31.5,-13.5 + parent: 6 + type: Transform + - uid: 1688 + components: + - pos: -29.5,-13.5 + parent: 6 + type: Transform + - uid: 1724 + components: + - pos: -19.5,-60.5 + parent: 6 + type: Transform + - uid: 1748 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-4.5 + parent: 6 + type: Transform + - uid: 1749 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-5.5 + parent: 6 + type: Transform + - uid: 1750 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-7.5 + parent: 6 + type: Transform + - uid: 1751 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-9.5 + parent: 6 + type: Transform + - uid: 1752 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-6.5 + parent: 6 + type: Transform + - uid: 1755 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-2.5 + parent: 6 + type: Transform + - uid: 1756 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-3.5 + parent: 6 + type: Transform + - uid: 1758 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-9.5 + parent: 6 + type: Transform + - uid: 1759 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-9.5 + parent: 6 + type: Transform + - uid: 1760 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-9.5 + parent: 6 + type: Transform + - uid: 1761 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-8.5 + parent: 6 + type: Transform + - uid: 1762 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-8.5 + parent: 6 + type: Transform + - uid: 1763 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-8.5 + parent: 6 + type: Transform + - uid: 1775 + components: + - pos: -39.5,-16.5 + parent: 6 + type: Transform + - uid: 1776 + components: + - pos: -36.5,-16.5 + parent: 6 + type: Transform + - uid: 1777 + components: + - pos: -38.5,-16.5 + parent: 6 + type: Transform + - uid: 1778 + components: + - pos: -37.5,-16.5 + parent: 6 + type: Transform + - uid: 1779 + components: + - pos: -35.5,-14.5 + parent: 6 + type: Transform + - uid: 1783 + components: + - pos: -35.5,-13.5 + parent: 6 + type: Transform + - uid: 1784 + components: + - pos: -35.5,-16.5 + parent: 6 + type: Transform + - uid: 1785 + components: + - pos: -35.5,-15.5 + parent: 6 + type: Transform + - uid: 1786 + components: + - pos: -33.5,-13.5 + parent: 6 + type: Transform + - uid: 1789 + components: + - pos: -40.5,-16.5 + parent: 6 + type: Transform + - uid: 1790 + components: + - pos: -20.5,-60.5 + parent: 6 + type: Transform + - uid: 1791 + components: + - pos: -21.5,-60.5 + parent: 6 + type: Transform + - uid: 1792 + components: + - pos: -22.5,-60.5 + parent: 6 + type: Transform + - uid: 1794 + components: + - pos: -24.5,-60.5 + parent: 6 + type: Transform + - uid: 1795 + components: + - pos: -25.5,-60.5 + parent: 6 + type: Transform + - uid: 1796 + components: + - pos: -29.5,-62.5 + parent: 6 + type: Transform + - uid: 1843 + components: + - pos: -35.5,-60.5 + parent: 6 + type: Transform + - uid: 1847 + components: + - pos: -39.5,-60.5 + parent: 6 + type: Transform + - uid: 1848 + components: + - pos: -40.5,-60.5 + parent: 6 + type: Transform + - uid: 1849 + components: + - pos: -40.5,-59.5 + parent: 6 + type: Transform + - uid: 1850 + components: + - pos: -40.5,-58.5 + parent: 6 + type: Transform + - uid: 1851 + components: + - pos: -42.5,-58.5 + parent: 6 + type: Transform + - uid: 1852 + components: + - pos: -41.5,-58.5 + parent: 6 + type: Transform + - uid: 1859 + components: + - pos: -40.5,-55.5 + parent: 6 + type: Transform + - uid: 1860 + components: + - pos: -40.5,-54.5 + parent: 6 + type: Transform + - uid: 1861 + components: + - pos: -40.5,-53.5 + parent: 6 + type: Transform + - uid: 1862 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-55.5 + parent: 6 + type: Transform + - uid: 1865 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-46.5 + parent: 6 + type: Transform + - uid: 1924 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-22.5 + parent: 6 + type: Transform + - uid: 1927 + components: + - pos: -43.5,-14.5 + parent: 6 + type: Transform + - uid: 1929 + components: + - pos: -44.5,-18.5 + parent: 6 + type: Transform + - uid: 1930 + components: + - pos: -43.5,-18.5 + parent: 6 + type: Transform + - uid: 1939 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-55.5 + parent: 6 + type: Transform + - uid: 1940 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-53.5 + parent: 6 + type: Transform + - uid: 1941 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-54.5 + parent: 6 + type: Transform + - uid: 1942 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-55.5 + parent: 6 + type: Transform + - uid: 1943 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-55.5 + parent: 6 + type: Transform + - uid: 1944 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-52.5 + parent: 6 + type: Transform + - uid: 1945 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-47.5 + parent: 6 + type: Transform + - uid: 1946 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-48.5 + parent: 6 + type: Transform + - uid: 1947 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-49.5 + parent: 6 + type: Transform + - uid: 1948 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-51.5 + parent: 6 + type: Transform + - uid: 1949 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-50.5 + parent: 6 + type: Transform + - uid: 1953 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-55.5 + parent: 6 + type: Transform + - uid: 1955 + components: + - pos: -52.5,-52.5 + parent: 6 + type: Transform + - uid: 1967 + components: + - pos: -74.5,-42.5 + parent: 6 + type: Transform + - uid: 1992 + components: + - rot: 3.141592653589793 rad + pos: -20.5,5.5 + parent: 6 + type: Transform + - uid: 1993 + components: + - rot: 3.141592653589793 rad + pos: -17.5,4.5 + parent: 6 + type: Transform + - uid: 1994 + components: + - rot: 3.141592653589793 rad + pos: -17.5,3.5 + parent: 6 + type: Transform + - uid: 1995 + components: + - rot: 3.141592653589793 rad + pos: -17.5,2.5 + parent: 6 + type: Transform + - uid: 1996 + components: + - rot: 3.141592653589793 rad + pos: -17.5,1.5 + parent: 6 + type: Transform + - uid: 1997 + components: + - rot: 3.141592653589793 rad + pos: -22.5,5.5 + parent: 6 + type: Transform + - uid: 1998 + components: + - rot: 3.141592653589793 rad + pos: -21.5,5.5 + parent: 6 + type: Transform + - uid: 1999 + components: + - rot: 3.141592653589793 rad + pos: -22.5,0.5 + parent: 6 + type: Transform + - uid: 2000 + components: + - rot: 3.141592653589793 rad + pos: -21.5,0.5 + parent: 6 + type: Transform + - uid: 2001 + components: + - rot: 3.141592653589793 rad + pos: -18.5,0.5 + parent: 6 + type: Transform + - uid: 2002 + components: + - rot: 3.141592653589793 rad + pos: -19.5,0.5 + parent: 6 + type: Transform + - uid: 2003 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-2.5 + parent: 6 + type: Transform + - uid: 2004 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-2.5 + parent: 6 + type: Transform + - uid: 2005 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-2.5 + parent: 6 + type: Transform + - uid: 2006 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-2.5 + parent: 6 + type: Transform + - uid: 2007 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-2.5 + parent: 6 + type: Transform + - uid: 2008 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-2.5 + parent: 6 + type: Transform + - uid: 2009 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-3.5 + parent: 6 + type: Transform + - uid: 2010 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-4.5 + parent: 6 + type: Transform + - uid: 2012 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-6.5 + parent: 6 + type: Transform + - uid: 2013 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-7.5 + parent: 6 + type: Transform + - uid: 2014 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-8.5 + parent: 6 + type: Transform + - uid: 2016 + components: + - pos: -24.5,0.5 + parent: 6 + type: Transform + - uid: 2017 + components: + - pos: -25.5,0.5 + parent: 6 + type: Transform + - uid: 2018 + components: + - pos: -74.5,-40.5 + parent: 6 + type: Transform + - uid: 2019 + components: + - pos: -28.5,0.5 + parent: 6 + type: Transform + - uid: 2020 + components: + - pos: -29.5,0.5 + parent: 6 + type: Transform + - uid: 2021 + components: + - pos: -29.5,1.5 + parent: 6 + type: Transform + - uid: 2022 + components: + - pos: -29.5,2.5 + parent: 6 + type: Transform + - uid: 2023 + components: + - pos: -29.5,3.5 + parent: 6 + type: Transform + - uid: 2024 + components: + - pos: -29.5,4.5 + parent: 6 + type: Transform + - uid: 2025 + components: + - pos: -29.5,5.5 + parent: 6 + type: Transform + - uid: 2026 + components: + - pos: -28.5,5.5 + parent: 6 + type: Transform + - uid: 2027 + components: + - pos: -27.5,5.5 + parent: 6 + type: Transform + - uid: 2028 + components: + - pos: -26.5,5.5 + parent: 6 + type: Transform + - uid: 2029 + components: + - pos: -25.5,5.5 + parent: 6 + type: Transform + - uid: 2030 + components: + - pos: -24.5,5.5 + parent: 6 + type: Transform + - uid: 2033 + components: + - pos: -28.5,-2.5 + parent: 6 + type: Transform + - uid: 2034 + components: + - pos: -28.5,-3.5 + parent: 6 + type: Transform + - uid: 2035 + components: + - pos: -28.5,-4.5 + parent: 6 + type: Transform + - uid: 2036 + components: + - pos: -27.5,-4.5 + parent: 6 + type: Transform + - uid: 2037 + components: + - pos: -26.5,-4.5 + parent: 6 + type: Transform + - uid: 2038 + components: + - pos: -25.5,-4.5 + parent: 6 + type: Transform + - uid: 2039 + components: + - pos: -24.5,-4.5 + parent: 6 + type: Transform + - uid: 2040 + components: + - pos: -20.5,-2.5 + parent: 6 + type: Transform + - uid: 2041 + components: + - pos: -45.5,-18.5 + parent: 6 + type: Transform + - uid: 2043 + components: + - pos: -43.5,-13.5 + parent: 6 + type: Transform + - uid: 2044 + components: + - pos: -44.5,-13.5 + parent: 6 + type: Transform + - uid: 2075 + components: + - pos: -74.5,-37.5 + parent: 6 + type: Transform + - uid: 2093 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-8.5 + parent: 6 + type: Transform + - uid: 2094 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-8.5 + parent: 6 + type: Transform + - uid: 2095 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-8.5 + parent: 6 + type: Transform + - uid: 2100 + components: + - pos: -39.5,-0.5 + parent: 6 + type: Transform + - uid: 2101 + components: + - pos: -39.5,0.5 + parent: 6 + type: Transform + - uid: 2102 + components: + - pos: -39.5,1.5 + parent: 6 + type: Transform + - uid: 2103 + components: + - pos: -39.5,2.5 + parent: 6 + type: Transform + - uid: 2104 + components: + - pos: -39.5,3.5 + parent: 6 + type: Transform + - uid: 2110 + components: + - pos: -39.5,4.5 + parent: 6 + type: Transform + - uid: 2111 + components: + - pos: -39.5,5.5 + parent: 6 + type: Transform + - uid: 2113 + components: + - pos: -35.5,5.5 + parent: 6 + type: Transform + - uid: 2114 + components: + - pos: -34.5,5.5 + parent: 6 + type: Transform + - uid: 2115 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,7.5 + parent: 6 + type: Transform + - uid: 2116 + components: + - pos: -36.5,5.5 + parent: 6 + type: Transform + - uid: 2118 + components: + - pos: -33.5,5.5 + parent: 6 + type: Transform + - uid: 2122 + components: + - pos: -33.5,1.5 + parent: 6 + type: Transform + - uid: 2123 + components: + - pos: -33.5,0.5 + parent: 6 + type: Transform + - uid: 2124 + components: + - pos: -33.5,-0.5 + parent: 6 + type: Transform + - uid: 2143 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-7.5 + parent: 6 + type: Transform + - uid: 2144 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-7.5 + parent: 6 + type: Transform + - uid: 2145 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-7.5 + parent: 6 + type: Transform + - uid: 2148 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,5.5 + parent: 6 + type: Transform + - uid: 2149 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,5.5 + parent: 6 + type: Transform + - uid: 2150 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,7.5 + parent: 6 + type: Transform + - uid: 2151 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,8.5 + parent: 6 + type: Transform + - uid: 2152 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,8.5 + parent: 6 + type: Transform + - uid: 2153 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,8.5 + parent: 6 + type: Transform + - uid: 2154 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,8.5 + parent: 6 + type: Transform + - uid: 2155 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,7.5 + parent: 6 + type: Transform + - uid: 2157 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,9.5 + parent: 6 + type: Transform + - uid: 2158 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,10.5 + parent: 6 + type: Transform + - uid: 2162 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,14.5 + parent: 6 + type: Transform + - uid: 2163 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,15.5 + parent: 6 + type: Transform + - uid: 2164 + components: + - pos: -38.5,7.5 + parent: 6 + type: Transform + - uid: 2257 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,8.5 + parent: 6 + type: Transform + - uid: 2258 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,8.5 + parent: 6 + type: Transform + - uid: 2259 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,8.5 + parent: 6 + type: Transform + - uid: 2260 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,8.5 + parent: 6 + type: Transform + - uid: 2261 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,15.5 + parent: 6 + type: Transform + - uid: 2262 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,10.5 + parent: 6 + type: Transform + - uid: 2263 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,16.5 + parent: 6 + type: Transform + - uid: 2264 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,12.5 + parent: 6 + type: Transform + - uid: 2265 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,17.5 + parent: 6 + type: Transform + - uid: 2266 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,14.5 + parent: 6 + type: Transform + - uid: 2267 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,18.5 + parent: 6 + type: Transform + - uid: 2268 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,16.5 + parent: 6 + type: Transform + - uid: 2269 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,19.5 + parent: 6 + type: Transform + - uid: 2270 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,18.5 + parent: 6 + type: Transform + - uid: 2271 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,20.5 + parent: 6 + type: Transform + - uid: 2272 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,20.5 + parent: 6 + type: Transform + - uid: 2273 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,10.5 + parent: 6 + type: Transform + - uid: 2274 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,10.5 + parent: 6 + type: Transform + - uid: 2275 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,10.5 + parent: 6 + type: Transform + - uid: 2276 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,12.5 + parent: 6 + type: Transform + - uid: 2277 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,12.5 + parent: 6 + type: Transform + - uid: 2278 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,12.5 + parent: 6 + type: Transform + - uid: 2279 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,14.5 + parent: 6 + type: Transform + - uid: 2280 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,14.5 + parent: 6 + type: Transform + - uid: 2281 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,14.5 + parent: 6 + type: Transform + - uid: 2282 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,16.5 + parent: 6 + type: Transform + - uid: 2283 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,16.5 + parent: 6 + type: Transform + - uid: 2284 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,16.5 + parent: 6 + type: Transform + - uid: 2285 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,18.5 + parent: 6 + type: Transform + - uid: 2286 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,18.5 + parent: 6 + type: Transform + - uid: 2287 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,18.5 + parent: 6 + type: Transform + - uid: 2288 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,20.5 + parent: 6 + type: Transform + - uid: 2289 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,20.5 + parent: 6 + type: Transform + - uid: 2290 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,20.5 + parent: 6 + type: Transform + - uid: 2345 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,14.5 + parent: 6 + type: Transform + - uid: 2346 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,13.5 + parent: 6 + type: Transform + - uid: 2347 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,12.5 + parent: 6 + type: Transform + - uid: 2348 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,11.5 + parent: 6 + type: Transform + - uid: 2349 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,10.5 + parent: 6 + type: Transform + - uid: 2350 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,9.5 + parent: 6 + type: Transform + - uid: 2351 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,8.5 + parent: 6 + type: Transform + - uid: 2372 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,23.5 + parent: 6 + type: Transform + - uid: 2380 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,23.5 + parent: 6 + type: Transform + - uid: 2387 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,20.5 + parent: 6 + type: Transform + - uid: 2392 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,19.5 + parent: 6 + type: Transform + - uid: 2393 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,20.5 + parent: 6 + type: Transform + - uid: 2394 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,21.5 + parent: 6 + type: Transform + - uid: 2395 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,22.5 + parent: 6 + type: Transform + - uid: 2396 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,23.5 + parent: 6 + type: Transform + - uid: 2398 + components: + - pos: -31.5,21.5 + parent: 6 + type: Transform + - uid: 2399 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,25.5 + parent: 6 + type: Transform + - uid: 2400 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,25.5 + parent: 6 + type: Transform + - uid: 2401 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,27.5 + parent: 6 + type: Transform + - uid: 2402 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,27.5 + parent: 6 + type: Transform + - uid: 2451 + components: + - pos: -47.5,-13.5 + parent: 6 + type: Transform + - uid: 2452 + components: + - pos: -48.5,-14.5 + parent: 6 + type: Transform + - uid: 2453 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-22.5 + parent: 6 + type: Transform + - uid: 2454 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-46.5 + parent: 6 + type: Transform + - uid: 2455 + components: + - pos: -43.5,-15.5 + parent: 6 + type: Transform + - uid: 2456 + components: + - pos: -43.5,-16.5 + parent: 6 + type: Transform + - uid: 2457 + components: + - pos: -43.5,-17.5 + parent: 6 + type: Transform + - uid: 2458 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-42.5 + parent: 6 + type: Transform + - uid: 2459 + components: + - pos: -47.5,-18.5 + parent: 6 + type: Transform + - uid: 2460 + components: + - pos: -46.5,-18.5 + parent: 6 + type: Transform + - uid: 2461 + components: + - pos: -48.5,-15.5 + parent: 6 + type: Transform + - uid: 2462 + components: + - pos: -48.5,-16.5 + parent: 6 + type: Transform + - uid: 2463 + components: + - pos: -48.5,-17.5 + parent: 6 + type: Transform + - uid: 2464 + components: + - pos: -48.5,-18.5 + parent: 6 + type: Transform + - uid: 2474 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-36.5 + parent: 6 + type: Transform + - uid: 2479 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-22.5 + parent: 6 + type: Transform + - uid: 2481 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-26.5 + parent: 6 + type: Transform + - uid: 2482 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-25.5 + parent: 6 + type: Transform + - uid: 2483 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-23.5 + parent: 6 + type: Transform + - uid: 2484 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-24.5 + parent: 6 + type: Transform + - uid: 2485 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-26.5 + parent: 6 + type: Transform + - uid: 2486 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-26.5 + parent: 6 + type: Transform + - uid: 2487 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-26.5 + parent: 6 + type: Transform + - uid: 2488 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-26.5 + parent: 6 + type: Transform + - uid: 2491 + components: + - pos: -42.5,-1.5 + parent: 6 + type: Transform + - uid: 2492 + components: + - pos: -47.5,-9.5 + parent: 6 + type: Transform + - uid: 2493 + components: + - pos: -46.5,-9.5 + parent: 6 + type: Transform + - uid: 2494 + components: + - pos: -45.5,-9.5 + parent: 6 + type: Transform + - uid: 2495 + components: + - pos: -44.5,-9.5 + parent: 6 + type: Transform + - uid: 2496 + components: + - pos: -43.5,-9.5 + parent: 6 + type: Transform + - uid: 2497 + components: + - pos: -42.5,-9.5 + parent: 6 + type: Transform + - uid: 2498 + components: + - pos: -42.5,-8.5 + parent: 6 + type: Transform + - uid: 2499 + components: + - pos: -42.5,-6.5 + parent: 6 + type: Transform + - uid: 2505 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-42.5 + parent: 6 + type: Transform + - uid: 2506 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-40.5 + parent: 6 + type: Transform + - uid: 2507 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-41.5 + parent: 6 + type: Transform + - uid: 2508 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-47.5 + parent: 6 + type: Transform + - uid: 2509 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-48.5 + parent: 6 + type: Transform + - uid: 2510 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-48.5 + parent: 6 + type: Transform + - uid: 2514 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-46.5 + parent: 6 + type: Transform + - uid: 2515 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-42.5 + parent: 6 + type: Transform + - uid: 2519 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-40.5 + parent: 6 + type: Transform + - uid: 2526 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-46.5 + parent: 6 + type: Transform + - uid: 2527 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-44.5 + parent: 6 + type: Transform + - uid: 2534 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-22.5 + parent: 6 + type: Transform + - uid: 2535 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-22.5 + parent: 6 + type: Transform + - uid: 2536 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-23.5 + parent: 6 + type: Transform + - uid: 2537 + components: + - pos: -48.5,-13.5 + parent: 6 + type: Transform + - uid: 2560 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-9.5 + parent: 6 + type: Transform + - uid: 2561 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,-9.5 + parent: 6 + type: Transform + - uid: 2562 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,-6.5 + parent: 6 + type: Transform + - uid: 2563 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,-6.5 + parent: 6 + type: Transform + - uid: 2564 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,-9.5 + parent: 6 + type: Transform + - uid: 2565 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-6.5 + parent: 6 + type: Transform + - uid: 2566 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-9.5 + parent: 6 + type: Transform + - uid: 2567 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-6.5 + parent: 6 + type: Transform + - uid: 2568 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-9.5 + parent: 6 + type: Transform + - uid: 2569 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-9.5 + parent: 6 + type: Transform + - uid: 2570 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-6.5 + parent: 6 + type: Transform + - uid: 2571 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,-6.5 + parent: 6 + type: Transform + - uid: 2572 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,-9.5 + parent: 6 + type: Transform + - uid: 2573 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-8.5 + parent: 6 + type: Transform + - uid: 2574 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,-8.5 + parent: 6 + type: Transform + - uid: 2577 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,-9.5 + parent: 6 + type: Transform + - uid: 2578 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,-9.5 + parent: 6 + type: Transform + - uid: 2579 + components: + - rot: 1.5707963267948966 rad + pos: -71.5,-14.5 + parent: 6 + type: Transform + - uid: 2580 + components: + - rot: 1.5707963267948966 rad + pos: -68.5,-14.5 + parent: 6 + type: Transform + - uid: 2582 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,-14.5 + parent: 6 + type: Transform + - uid: 2583 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,-15.5 + parent: 6 + type: Transform + - uid: 2597 + components: + - rot: 1.5707963267948966 rad + pos: -62.5,-17.5 + parent: 6 + type: Transform + - uid: 2610 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-24.5 + parent: 6 + type: Transform + - uid: 2611 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-25.5 + parent: 6 + type: Transform + - uid: 2618 + components: + - pos: -75.5,-37.5 + parent: 6 + type: Transform + - uid: 2626 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-55.5 + parent: 6 + type: Transform + - uid: 2627 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-55.5 + parent: 6 + type: Transform + - uid: 2628 + components: + - pos: -42.5,-7.5 + parent: 6 + type: Transform + - uid: 2629 + components: + - pos: -42.5,0.5 + parent: 6 + type: Transform + - uid: 2630 + components: + - pos: -42.5,-0.5 + parent: 6 + type: Transform + - uid: 2631 + components: + - pos: -42.5,4.5 + parent: 6 + type: Transform + - uid: 2632 + components: + - pos: -42.5,5.5 + parent: 6 + type: Transform + - uid: 2633 + components: + - pos: -42.5,6.5 + parent: 6 + type: Transform + - uid: 2758 + components: + - pos: -76.5,-37.5 + parent: 6 + type: Transform + - uid: 2821 + components: + - pos: -77.5,-37.5 + parent: 6 + type: Transform + - uid: 2824 + components: + - pos: -77.5,-36.5 + parent: 6 + type: Transform + - uid: 2827 + components: + - pos: -78.5,-36.5 + parent: 6 + type: Transform + - uid: 2859 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,-16.5 + parent: 6 + type: Transform + - uid: 2860 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,-17.5 + parent: 6 + type: Transform + - uid: 2861 + components: + - rot: 1.5707963267948966 rad + pos: -67.5,-18.5 + parent: 6 + type: Transform + - uid: 2862 + components: + - rot: 1.5707963267948966 rad + pos: -66.5,-18.5 + parent: 6 + type: Transform + - uid: 2863 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,-18.5 + parent: 6 + type: Transform + - uid: 2864 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,-18.5 + parent: 6 + type: Transform + - uid: 2865 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,-18.5 + parent: 6 + type: Transform + - uid: 2866 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,-17.5 + parent: 6 + type: Transform + - uid: 2867 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,-20.5 + parent: 6 + type: Transform + - uid: 2868 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,-19.5 + parent: 6 + type: Transform + - uid: 2869 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-17.5 + parent: 6 + type: Transform + - uid: 2870 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-17.5 + parent: 6 + type: Transform + - uid: 2871 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-18.5 + parent: 6 + type: Transform + - uid: 2872 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-19.5 + parent: 6 + type: Transform + - uid: 2873 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-20.5 + parent: 6 + type: Transform + - uid: 2874 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-21.5 + parent: 6 + type: Transform + - uid: 2875 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-22.5 + parent: 6 + type: Transform + - uid: 2876 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-23.5 + parent: 6 + type: Transform + - uid: 2877 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,-21.5 + parent: 6 + type: Transform + - uid: 2878 + components: + - rot: 1.5707963267948966 rad + pos: -62.5,-21.5 + parent: 6 + type: Transform + - uid: 2879 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-21.5 + parent: 6 + type: Transform + - uid: 2884 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-7.5 + parent: 6 + type: Transform + - uid: 2885 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,-7.5 + parent: 6 + type: Transform + - uid: 2916 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-23.5 + parent: 6 + type: Transform + - uid: 2919 + components: + - rot: 3.141592653589793 rad + pos: -54.5,-23.5 + parent: 6 + type: Transform + - uid: 2920 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-23.5 + parent: 6 + type: Transform + - uid: 2921 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-23.5 + parent: 6 + type: Transform + - uid: 2922 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-29.5 + parent: 6 + type: Transform + - uid: 2923 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-29.5 + parent: 6 + type: Transform + - uid: 2924 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-29.5 + parent: 6 + type: Transform + - uid: 2925 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-28.5 + parent: 6 + type: Transform + - uid: 2929 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-24.5 + parent: 6 + type: Transform + - uid: 2953 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-36.5 + parent: 6 + type: Transform + - uid: 2954 + components: + - rot: 3.141592653589793 rad + pos: -54.5,-36.5 + parent: 6 + type: Transform + - uid: 2955 + components: + - rot: 3.141592653589793 rad + pos: -55.5,-36.5 + parent: 6 + type: Transform + - uid: 2956 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-30.5 + parent: 6 + type: Transform + - uid: 2957 + components: + - rot: 3.141592653589793 rad + pos: -54.5,-30.5 + parent: 6 + type: Transform + - uid: 2958 + components: + - rot: 3.141592653589793 rad + pos: -55.5,-30.5 + parent: 6 + type: Transform + - uid: 2997 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 6 + type: Transform + - uid: 3015 + components: + - pos: 1.5,-3.5 + parent: 6 + type: Transform + - uid: 3027 + components: + - pos: 1.5,1.5 + parent: 6 + type: Transform + - uid: 3067 + components: + - pos: -48.5,-52.5 + parent: 6 + type: Transform + - uid: 3068 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-46.5 + parent: 6 + type: Transform + - uid: 3144 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,8.5 + parent: 6 + type: Transform + - uid: 3146 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,9.5 + parent: 6 + type: Transform + - uid: 3147 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,7.5 + parent: 6 + type: Transform + - uid: 3151 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,8.5 + parent: 6 + type: Transform + - uid: 3156 + components: + - pos: -26.5,15.5 + parent: 6 + type: Transform + - uid: 3157 + components: + - pos: -27.5,15.5 + parent: 6 + type: Transform + - uid: 3161 + components: + - pos: -27.5,19.5 + parent: 6 + type: Transform + - uid: 3162 + components: + - pos: -26.5,19.5 + parent: 6 + type: Transform + - uid: 3163 + components: + - pos: -24.5,19.5 + parent: 6 + type: Transform + - uid: 3164 + components: + - pos: -23.5,19.5 + parent: 6 + type: Transform + - uid: 3165 + components: + - pos: -23.5,18.5 + parent: 6 + type: Transform + - uid: 3166 + components: + - pos: -23.5,17.5 + parent: 6 + type: Transform + - uid: 3167 + components: + - pos: -23.5,16.5 + parent: 6 + type: Transform + - uid: 3168 + components: + - pos: -23.5,15.5 + parent: 6 + type: Transform + - uid: 3169 + components: + - pos: -24.5,15.5 + parent: 6 + type: Transform + - uid: 3397 + components: + - pos: -35.5,-17.5 + parent: 6 + type: Transform + - uid: 3404 + components: + - pos: 18.5,-3.5 + parent: 6 + type: Transform + - uid: 3405 + components: + - pos: 16.5,-5.5 + parent: 6 + type: Transform + - uid: 3406 + components: + - pos: 17.5,-5.5 + parent: 6 + type: Transform + - uid: 3414 + components: + - pos: 10.5,24.5 + parent: 6 + type: Transform + - uid: 3415 + components: + - pos: 10.5,23.5 + parent: 6 + type: Transform + - uid: 3426 + components: + - pos: 15.5,-1.5 + parent: 6 + type: Transform + - uid: 3639 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-71.5 + parent: 6 + type: Transform + - uid: 3755 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-62.5 + parent: 6 + type: Transform + - uid: 3756 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-63.5 + parent: 6 + type: Transform + - uid: 3757 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-61.5 + parent: 6 + type: Transform + - uid: 3759 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-61.5 + parent: 6 + type: Transform + - uid: 3761 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-62.5 + parent: 6 + type: Transform + - uid: 3764 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-63.5 + parent: 6 + type: Transform + - uid: 3766 + components: + - pos: -35.5,-61.5 + parent: 6 + type: Transform + - uid: 3767 + components: + - pos: -35.5,-62.5 + parent: 6 + type: Transform + - uid: 3768 + components: + - pos: -35.5,-63.5 + parent: 6 + type: Transform + - uid: 3769 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-64.5 + parent: 6 + type: Transform + - uid: 3770 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-64.5 + parent: 6 + type: Transform + - uid: 3772 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-64.5 + parent: 6 + type: Transform + - uid: 3773 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-64.5 + parent: 6 + type: Transform + - uid: 3775 + components: + - pos: -34.5,-63.5 + parent: 6 + type: Transform + - uid: 3782 + components: + - pos: -30.5,-62.5 + parent: 6 + type: Transform + - uid: 3784 + components: + - pos: -30.5,-63.5 + parent: 6 + type: Transform + - uid: 3824 + components: + - pos: -43.5,-58.5 + parent: 6 + type: Transform + - uid: 3825 + components: + - pos: -43.5,-57.5 + parent: 6 + type: Transform + - uid: 3826 + components: + - pos: -43.5,-56.5 + parent: 6 + type: Transform + - uid: 3849 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-47.5 + parent: 6 + type: Transform + - uid: 3853 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-48.5 + parent: 6 + type: Transform + - uid: 3854 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-48.5 + parent: 6 + type: Transform + - uid: 3870 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-40.5 + parent: 6 + type: Transform + - uid: 3873 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-40.5 + parent: 6 + type: Transform + - uid: 3874 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-41.5 + parent: 6 + type: Transform + - uid: 4181 + components: + - pos: 11.5,24.5 + parent: 6 + type: Transform + - uid: 4182 + components: + - pos: 12.5,24.5 + parent: 6 + type: Transform + - uid: 4183 + components: + - pos: 13.5,24.5 + parent: 6 + type: Transform + - uid: 4184 + components: + - pos: 14.5,24.5 + parent: 6 + type: Transform + - uid: 4185 + components: + - pos: 14.5,23.5 + parent: 6 + type: Transform + - uid: 4186 + components: + - pos: 15.5,22.5 + parent: 6 + type: Transform + - uid: 4187 + components: + - pos: 14.5,22.5 + parent: 6 + type: Transform + - uid: 4188 + components: + - pos: 19.5,22.5 + parent: 6 + type: Transform + - uid: 4189 + components: + - pos: 20.5,22.5 + parent: 6 + type: Transform + - uid: 4190 + components: + - pos: 20.5,21.5 + parent: 6 + type: Transform + - uid: 4667 + components: + - pos: 9.5,8.5 + parent: 6 + type: Transform + - uid: 4668 + components: + - pos: 9.5,7.5 + parent: 6 + type: Transform + - uid: 4669 + components: + - pos: 9.5,6.5 + parent: 6 + type: Transform + - uid: 4670 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,10.5 + parent: 6 + type: Transform + - uid: 4731 + components: + - pos: -79.5,-45.5 + parent: 6 + type: Transform + - uid: 4732 + components: + - pos: -79.5,-46.5 + parent: 6 + type: Transform + - uid: 4733 + components: + - pos: -79.5,-42.5 + parent: 6 + type: Transform + - uid: 4734 + components: + - pos: -77.5,-51.5 + parent: 6 + type: Transform + - uid: 4737 + components: + - pos: -77.5,-48.5 + parent: 6 + type: Transform + - uid: 4740 + components: + - pos: -79.5,-41.5 + parent: 6 + type: Transform + - uid: 4741 + components: + - pos: -78.5,-41.5 + parent: 6 + type: Transform + - uid: 4742 + components: + - pos: -77.5,-41.5 + parent: 6 + type: Transform + - uid: 4743 + components: + - pos: -77.5,-40.5 + parent: 6 + type: Transform + - uid: 4744 + components: + - pos: -77.5,-47.5 + parent: 6 + type: Transform + - uid: 4745 + components: + - pos: -78.5,-47.5 + parent: 6 + type: Transform + - uid: 4746 + components: + - pos: -79.5,-47.5 + parent: 6 + type: Transform + - uid: 4747 + components: + - pos: -76.5,-51.5 + parent: 6 + type: Transform + - uid: 4748 + components: + - pos: -75.5,-51.5 + parent: 6 + type: Transform + - uid: 4749 + components: + - pos: -74.5,-51.5 + parent: 6 + type: Transform + - uid: 4752 + components: + - pos: -74.5,-48.5 + parent: 6 + type: Transform + - uid: 4754 + components: + - pos: -77.5,-52.5 + parent: 6 + type: Transform + - uid: 4755 + components: + - pos: -78.5,-52.5 + parent: 6 + type: Transform + - uid: 4756 + components: + - pos: -78.5,-53.5 + parent: 6 + type: Transform + - uid: 4757 + components: + - pos: -80.5,-53.5 + parent: 6 + type: Transform + - uid: 4758 + components: + - pos: -80.5,-52.5 + parent: 6 + type: Transform + - uid: 4759 + components: + - pos: -81.5,-52.5 + parent: 6 + type: Transform + - uid: 4760 + components: + - pos: -81.5,-51.5 + parent: 6 + type: Transform + - uid: 4761 + components: + - pos: -82.5,-51.5 + parent: 6 + type: Transform + - uid: 4762 + components: + - pos: -83.5,-51.5 + parent: 6 + type: Transform + - uid: 4763 + components: + - pos: -84.5,-51.5 + parent: 6 + type: Transform + - uid: 4764 + components: + - pos: -80.5,-47.5 + parent: 6 + type: Transform + - uid: 4765 + components: + - pos: -81.5,-47.5 + parent: 6 + type: Transform + - uid: 4767 + components: + - pos: -81.5,-48.5 + parent: 6 + type: Transform + - uid: 4772 + components: + - pos: -85.5,-42.5 + parent: 6 + type: Transform + - uid: 4773 + components: + - pos: -84.5,-50.5 + parent: 6 + type: Transform + - uid: 4774 + components: + - pos: -85.5,-49.5 + parent: 6 + type: Transform + - uid: 4775 + components: + - pos: -85.5,-48.5 + parent: 6 + type: Transform + - uid: 4776 + components: + - pos: -85.5,-47.5 + parent: 6 + type: Transform + - uid: 4777 + components: + - pos: -80.5,-41.5 + parent: 6 + type: Transform + - uid: 4780 + components: + - pos: -80.5,-42.5 + parent: 6 + type: Transform + - uid: 4781 + components: + - pos: -80.5,-43.5 + parent: 6 + type: Transform + - uid: 4783 + components: + - pos: -80.5,-45.5 + parent: 6 + type: Transform + - uid: 4784 + components: + - pos: -80.5,-46.5 + parent: 6 + type: Transform + - uid: 4785 + components: + - pos: -81.5,-43.5 + parent: 6 + type: Transform + - uid: 4787 + components: + - pos: -81.5,-45.5 + parent: 6 + type: Transform + - uid: 4788 + components: + - pos: -84.5,-49.5 + parent: 6 + type: Transform + - uid: 4789 + components: + - pos: -85.5,-46.5 + parent: 6 + type: Transform + - uid: 4790 + components: + - pos: -85.5,-44.5 + parent: 6 + type: Transform + - uid: 4913 + components: + - pos: -37.5,5.5 + parent: 6 + type: Transform + - uid: 4918 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,7.5 + parent: 6 + type: Transform + - uid: 4919 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,7.5 + parent: 6 + type: Transform + - uid: 4923 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,8.5 + parent: 6 + type: Transform + - uid: 4924 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,8.5 + parent: 6 + type: Transform + - uid: 4925 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,9.5 + parent: 6 + type: Transform + - uid: 4927 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,7.5 + parent: 6 + type: Transform + - uid: 4929 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,7.5 + parent: 6 + type: Transform + - uid: 4933 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,9.5 + parent: 6 + type: Transform + - uid: 4949 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 6 + type: Transform + - uid: 5041 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,7.5 + parent: 6 + type: Transform + - uid: 5118 + components: + - pos: -4.5,-1.5 + parent: 6 + type: Transform + - uid: 5169 + components: + - pos: -5.5,-1.5 + parent: 6 + type: Transform + - uid: 5905 + components: + - pos: 17.5,12.5 + parent: 6 + type: Transform + - uid: 5906 + components: + - pos: 12.5,12.5 + parent: 6 + type: Transform + - uid: 5935 + components: + - pos: 37.5,-9.5 + parent: 6 + type: Transform + - uid: 5943 + components: + - pos: 29.5,-13.5 + parent: 6 + type: Transform + - uid: 6177 + components: + - pos: -40.5,-19.5 + parent: 6 + type: Transform + - uid: 6178 + components: + - pos: -40.5,-18.5 + parent: 6 + type: Transform + - uid: 6179 + components: + - pos: -40.5,-17.5 + parent: 6 + type: Transform + - uid: 6202 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-3.5 + parent: 6 + type: Transform + - uid: 6203 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-6.5 + parent: 6 + type: Transform + - uid: 6357 + components: + - pos: -38.5,5.5 + parent: 6 + type: Transform + - uid: 6370 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,7.5 + parent: 6 + type: Transform + - uid: 6390 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-26.5 + parent: 6 + type: Transform + - uid: 6451 + components: + - pos: -26.5,-62.5 + parent: 6 + type: Transform + - uid: 8323 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,6.5 + parent: 6 + type: Transform + - uid: 8347 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,6.5 + parent: 6 + type: Transform + - uid: 8369 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,6.5 + parent: 6 + type: Transform + - uid: 8370 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,6.5 + parent: 6 + type: Transform + - uid: 8371 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,6.5 + parent: 6 + type: Transform +- proto: WallShuttle + entities: + - uid: 13652 + components: + - pos: 3.5,0.5 + parent: 13645 + type: Transform + - uid: 13653 + components: + - pos: 0.5,0.5 + parent: 13645 + type: Transform + - uid: 13654 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 13645 + type: Transform + - uid: 13655 + components: + - pos: 6.5,0.5 + parent: 13645 + type: Transform + - uid: 13657 + components: + - pos: 4.5,0.5 + parent: 13645 + type: Transform + - uid: 13661 + components: + - pos: 2.5,0.5 + parent: 13645 + type: Transform + - uid: 13672 + components: + - rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 13645 + type: Transform +- proto: WallShuttleDiagonal + entities: + - uid: 13646 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 13645 + type: Transform + - uid: 13647 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 13645 + type: Transform + - uid: 13648 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 13645 + type: Transform + - uid: 13649 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 13645 + type: Transform +- proto: WallSolid + entities: + - uid: 13 + components: + - pos: 0.5,-4.5 + parent: 6 + type: Transform + - uid: 14 + components: + - pos: -0.5,-4.5 + parent: 6 + type: Transform + - uid: 18 + components: + - pos: -4.5,2.5 + parent: 6 + type: Transform + - uid: 25 + components: + - pos: -3.5,2.5 + parent: 6 + type: Transform + - uid: 26 + components: + - pos: -2.5,2.5 + parent: 6 + type: Transform + - uid: 31 + components: + - pos: -2.5,-4.5 + parent: 6 + type: Transform + - uid: 32 + components: + - pos: -3.5,-4.5 + parent: 6 + type: Transform + - uid: 62 + components: + - pos: 0.5,-7.5 + parent: 6 + type: Transform + - uid: 70 + components: + - pos: 0.5,-5.5 + parent: 6 + type: Transform + - uid: 76 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 6 + type: Transform + - uid: 77 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 6 + type: Transform + - uid: 78 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 6 + type: Transform + - uid: 79 + components: + - pos: -8.5,-8.5 + parent: 6 + type: Transform + - uid: 89 + components: + - pos: -9.5,-8.5 + parent: 6 + type: Transform + - uid: 90 + components: + - pos: -10.5,-8.5 + parent: 6 + type: Transform + - uid: 91 + components: + - pos: -11.5,-8.5 + parent: 6 + type: Transform + - uid: 92 + components: + - pos: -12.5,-8.5 + parent: 6 + type: Transform + - uid: 93 + components: + - pos: -13.5,-8.5 + parent: 6 + type: Transform + - uid: 97 + components: + - pos: -13.5,-7.5 + parent: 6 + type: Transform + - uid: 99 + components: + - pos: -13.5,-6.5 + parent: 6 + type: Transform + - uid: 100 + components: + - pos: -13.5,-5.5 + parent: 6 + type: Transform + - uid: 101 + components: + - pos: -13.5,-4.5 + parent: 6 + type: Transform + - uid: 105 + components: + - pos: -11.5,-1.5 + parent: 6 + type: Transform + - uid: 106 + components: + - pos: -13.5,-0.5 + parent: 6 + type: Transform + - uid: 107 + components: + - pos: -13.5,0.5 + parent: 6 + type: Transform + - uid: 109 + components: + - pos: -11.5,-2.5 + parent: 6 + type: Transform + - uid: 110 + components: + - pos: -13.5,-3.5 + parent: 6 + type: Transform + - uid: 111 + components: + - pos: -13.5,-2.5 + parent: 6 + type: Transform + - uid: 112 + components: + - pos: -13.5,-1.5 + parent: 6 + type: Transform + - uid: 114 + components: + - pos: -5.5,2.5 + parent: 6 + type: Transform + - uid: 115 + components: + - pos: -6.5,2.5 + parent: 6 + type: Transform + - uid: 116 + components: + - pos: -7.5,2.5 + parent: 6 + type: Transform + - uid: 117 + components: + - pos: -8.5,2.5 + parent: 6 + type: Transform + - uid: 125 + components: + - pos: -8.5,-2.5 + parent: 6 + type: Transform + - uid: 128 + components: + - pos: -11.5,-0.5 + parent: 6 + type: Transform + - uid: 129 + components: + - pos: -11.5,0.5 + parent: 6 + type: Transform + - uid: 181 + components: + - pos: 0.5,2.5 + parent: 6 + type: Transform + - uid: 190 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-9.5 + parent: 6 + type: Transform + - uid: 191 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 6 + type: Transform + - uid: 192 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-9.5 + parent: 6 + type: Transform + - uid: 193 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-9.5 + parent: 6 + type: Transform + - uid: 237 + components: + - pos: -7.5,-9.5 + parent: 6 + type: Transform + - uid: 238 + components: + - pos: -5.5,-9.5 + parent: 6 + type: Transform + - uid: 239 + components: + - pos: 0.5,-9.5 + parent: 6 + type: Transform + - uid: 240 + components: + - pos: 4.5,-9.5 + parent: 6 + type: Transform + - uid: 241 + components: + - pos: 7.5,-9.5 + parent: 6 + type: Transform + - uid: 242 + components: + - pos: -13.5,-9.5 + parent: 6 + type: Transform + - uid: 243 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-9.5 + parent: 6 + type: Transform + - uid: 244 + components: + - pos: -16.5,-13.5 + parent: 6 + type: Transform + - uid: 247 + components: + - pos: -13.5,-17.5 + parent: 6 + type: Transform + - uid: 248 + components: + - pos: -12.5,-13.5 + parent: 6 + type: Transform + - uid: 252 + components: + - pos: -8.5,-13.5 + parent: 6 + type: Transform + - uid: 253 + components: + - pos: -7.5,-13.5 + parent: 6 + type: Transform + - uid: 256 + components: + - pos: -4.5,-13.5 + parent: 6 + type: Transform + - uid: 257 + components: + - pos: -3.5,-13.5 + parent: 6 + type: Transform + - uid: 258 + components: + - pos: -2.5,-13.5 + parent: 6 + type: Transform + - uid: 259 + components: + - pos: -1.5,-13.5 + parent: 6 + type: Transform + - uid: 260 + components: + - pos: -0.5,-13.5 + parent: 6 + type: Transform + - uid: 265 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-17.5 + parent: 6 + type: Transform + - uid: 266 + components: + - pos: 3.5,-13.5 + parent: 6 + type: Transform + - uid: 268 + components: + - pos: 7.5,-13.5 + parent: 6 + type: Transform + - uid: 276 + components: + - pos: 8.5,-2.5 + parent: 6 + type: Transform + - uid: 277 + components: + - pos: 9.5,-2.5 + parent: 6 + type: Transform + - uid: 278 + components: + - pos: 10.5,-2.5 + parent: 6 + type: Transform + - uid: 279 + components: + - pos: 11.5,-2.5 + parent: 6 + type: Transform + - uid: 280 + components: + - pos: 11.5,-4.5 + parent: 6 + type: Transform + - uid: 285 + components: + - pos: 10.5,1.5 + parent: 6 + type: Transform + - uid: 286 + components: + - pos: 9.5,1.5 + parent: 6 + type: Transform + - uid: 287 + components: + - pos: 8.5,1.5 + parent: 6 + type: Transform + - uid: 297 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-15.5 + parent: 6 + type: Transform + - uid: 317 + components: + - pos: 14.5,2.5 + parent: 6 + type: Transform + - uid: 322 + components: + - pos: -12.5,-26.5 + parent: 6 + type: Transform + - uid: 368 + components: + - pos: 20.5,-14.5 + parent: 6 + type: Transform + - uid: 377 + components: + - pos: 7.5,-17.5 + parent: 6 + type: Transform + - uid: 378 + components: + - pos: 8.5,-17.5 + parent: 6 + type: Transform + - uid: 379 + components: + - pos: 9.5,-17.5 + parent: 6 + type: Transform + - uid: 380 + components: + - pos: 10.5,-17.5 + parent: 6 + type: Transform + - uid: 381 + components: + - pos: 11.5,-17.5 + parent: 6 + type: Transform + - uid: 382 + components: + - pos: 8.5,-13.5 + parent: 6 + type: Transform + - uid: 383 + components: + - pos: 10.5,-13.5 + parent: 6 + type: Transform + - uid: 384 + components: + - pos: 11.5,-13.5 + parent: 6 + type: Transform + - uid: 385 + components: + - pos: 11.5,-14.5 + parent: 6 + type: Transform + - uid: 386 + components: + - pos: 11.5,-15.5 + parent: 6 + type: Transform + - uid: 387 + components: + - pos: 18.5,-13.5 + parent: 6 + type: Transform + - uid: 388 + components: + - pos: 18.5,-14.5 + parent: 6 + type: Transform + - uid: 389 + components: + - pos: 18.5,-15.5 + parent: 6 + type: Transform + - uid: 390 + components: + - pos: 18.5,-16.5 + parent: 6 + type: Transform + - uid: 391 + components: + - pos: 18.5,-17.5 + parent: 6 + type: Transform + - uid: 396 + components: + - pos: 20.5,-19.5 + parent: 6 + type: Transform + - uid: 397 + components: + - pos: 21.5,-20.5 + parent: 6 + type: Transform + - uid: 399 + components: + - pos: 21.5,-22.5 + parent: 6 + type: Transform + - uid: 427 + components: + - pos: 11.5,-18.5 + parent: 6 + type: Transform + - uid: 428 + components: + - pos: 11.5,-19.5 + parent: 6 + type: Transform + - uid: 429 + components: + - pos: 11.5,-20.5 + parent: 6 + type: Transform + - uid: 430 + components: + - pos: 12.5,-20.5 + parent: 6 + type: Transform + - uid: 431 + components: + - pos: 13.5,-20.5 + parent: 6 + type: Transform + - uid: 432 + components: + - pos: 14.5,-20.5 + parent: 6 + type: Transform + - uid: 433 + components: + - pos: 15.5,-20.5 + parent: 6 + type: Transform + - uid: 434 + components: + - pos: 16.5,-20.5 + parent: 6 + type: Transform + - uid: 435 + components: + - pos: 17.5,-20.5 + parent: 6 + type: Transform + - uid: 437 + components: + - pos: 18.5,-18.5 + parent: 6 + type: Transform + - uid: 439 + components: + - pos: 18.5,-20.5 + parent: 6 + type: Transform + - uid: 442 + components: + - pos: 17.5,-13.5 + parent: 6 + type: Transform + - uid: 443 + components: + - pos: 12.5,-13.5 + parent: 6 + type: Transform + - uid: 444 + components: + - pos: 21.5,-6.5 + parent: 6 + type: Transform + - uid: 448 + components: + - pos: 20.5,-4.5 + parent: 6 + type: Transform + - uid: 449 + components: + - pos: 20.5,-3.5 + parent: 6 + type: Transform + - uid: 451 + components: + - pos: 20.5,-1.5 + parent: 6 + type: Transform + - uid: 452 + components: + - pos: 20.5,-0.5 + parent: 6 + type: Transform + - uid: 453 + components: + - pos: 20.5,0.5 + parent: 6 + type: Transform + - uid: 455 + components: + - pos: 22.5,0.5 + parent: 6 + type: Transform + - uid: 457 + components: + - pos: 24.5,0.5 + parent: 6 + type: Transform + - uid: 458 + components: + - pos: 24.5,1.5 + parent: 6 + type: Transform + - uid: 459 + components: + - pos: 24.5,2.5 + parent: 6 + type: Transform + - uid: 460 + components: + - pos: 24.5,3.5 + parent: 6 + type: Transform + - uid: 461 + components: + - pos: 24.5,4.5 + parent: 6 + type: Transform + - uid: 462 + components: + - pos: 24.5,5.5 + parent: 6 + type: Transform + - uid: 463 + components: + - pos: 24.5,6.5 + parent: 6 + type: Transform + - uid: 464 + components: + - pos: 23.5,6.5 + parent: 6 + type: Transform + - uid: 471 + components: + - pos: 25.5,-9.5 + parent: 6 + type: Transform + - uid: 475 + components: + - pos: 29.5,-9.5 + parent: 6 + type: Transform + - uid: 477 + components: + - pos: 29.5,-7.5 + parent: 6 + type: Transform + - uid: 479 + components: + - pos: 29.5,-5.5 + parent: 6 + type: Transform + - uid: 481 + components: + - pos: 29.5,-3.5 + parent: 6 + type: Transform + - uid: 482 + components: + - pos: 29.5,-2.5 + parent: 6 + type: Transform + - uid: 483 + components: + - pos: 29.5,-1.5 + parent: 6 + type: Transform + - uid: 484 + components: + - pos: 29.5,-0.5 + parent: 6 + type: Transform + - uid: 485 + components: + - pos: 29.5,0.5 + parent: 6 + type: Transform + - uid: 486 + components: + - pos: 29.5,1.5 + parent: 6 + type: Transform + - uid: 495 + components: + - pos: 22.5,-6.5 + parent: 6 + type: Transform + - uid: 498 + components: + - pos: 23.5,-6.5 + parent: 6 + type: Transform + - uid: 499 + components: + - pos: 23.5,-5.5 + parent: 6 + type: Transform + - uid: 500 + components: + - pos: 23.5,-4.5 + parent: 6 + type: Transform + - uid: 501 + components: + - pos: 23.5,-3.5 + parent: 6 + type: Transform + - uid: 502 + components: + - pos: 22.5,-3.5 + parent: 6 + type: Transform + - uid: 503 + components: + - pos: 25.5,-1.5 + parent: 6 + type: Transform + - uid: 504 + components: + - pos: 25.5,-2.5 + parent: 6 + type: Transform + - uid: 505 + components: + - pos: 25.5,-3.5 + parent: 6 + type: Transform + - uid: 506 + components: + - pos: 25.5,-4.5 + parent: 6 + type: Transform + - uid: 507 + components: + - pos: 25.5,-5.5 + parent: 6 + type: Transform + - uid: 508 + components: + - pos: 25.5,-6.5 + parent: 6 + type: Transform + - uid: 509 + components: + - pos: 25.5,-8.5 + parent: 6 + type: Transform + - uid: 510 + components: + - pos: 26.5,-3.5 + parent: 6 + type: Transform + - uid: 511 + components: + - pos: 27.5,-3.5 + parent: 6 + type: Transform + - uid: 512 + components: + - pos: 28.5,-3.5 + parent: 6 + type: Transform + - uid: 518 + components: + - pos: 24.5,-1.5 + parent: 6 + type: Transform + - uid: 538 + components: + - pos: 29.5,2.5 + parent: 6 + type: Transform + - uid: 540 + components: + - pos: 29.5,4.5 + parent: 6 + type: Transform + - uid: 542 + components: + - pos: 29.5,6.5 + parent: 6 + type: Transform + - uid: 543 + components: + - rot: 3.141592653589793 rad + pos: 28.5,7.5 + parent: 6 + type: Transform + - uid: 544 + components: + - rot: 3.141592653589793 rad + pos: 28.5,9.5 + parent: 6 + type: Transform + - uid: 622 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,6.5 + parent: 6 + type: Transform + - uid: 623 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,6.5 + parent: 6 + type: Transform + - uid: 624 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,6.5 + parent: 6 + type: Transform + - uid: 625 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,6.5 + parent: 6 + type: Transform + - uid: 626 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,7.5 + parent: 6 + type: Transform + - uid: 627 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,8.5 + parent: 6 + type: Transform + - uid: 630 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,8.5 + parent: 6 + type: Transform + - uid: 703 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,0.5 + parent: 6 + type: Transform + - uid: 715 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 6 + type: Transform + - uid: 747 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,2.5 + parent: 6 + type: Transform + - uid: 748 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,2.5 + parent: 6 + type: Transform + - uid: 749 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,2.5 + parent: 6 + type: Transform + - uid: 819 + components: + - pos: -16.5,-27.5 + parent: 6 + type: Transform + - uid: 820 + components: + - pos: -16.5,-17.5 + parent: 6 + type: Transform + - uid: 821 + components: + - pos: -16.5,-19.5 + parent: 6 + type: Transform + - uid: 827 + components: + - pos: -12.5,-23.5 + parent: 6 + type: Transform + - uid: 849 + components: + - pos: -4.5,-46.5 + parent: 6 + type: Transform + - uid: 876 + components: + - pos: 3.5,-18.5 + parent: 6 + type: Transform + - uid: 877 + components: + - pos: -7.5,-14.5 + parent: 6 + type: Transform + - uid: 878 + components: + - pos: -7.5,-15.5 + parent: 6 + type: Transform + - uid: 879 + components: + - pos: -7.5,-16.5 + parent: 6 + type: Transform + - uid: 880 + components: + - pos: -7.5,-17.5 + parent: 6 + type: Transform + - uid: 881 + components: + - pos: -4.5,-16.5 + parent: 6 + type: Transform + - uid: 883 + components: + - pos: -4.5,-17.5 + parent: 6 + type: Transform + - uid: 884 + components: + - pos: -1.5,-14.5 + parent: 6 + type: Transform + - uid: 885 + components: + - pos: -2.5,-18.5 + parent: 6 + type: Transform + - uid: 886 + components: + - pos: -4.5,-22.5 + parent: 6 + type: Transform + - uid: 891 + components: + - pos: -4.5,-20.5 + parent: 6 + type: Transform + - uid: 892 + components: + - pos: -4.5,-19.5 + parent: 6 + type: Transform + - uid: 894 + components: + - pos: -3.5,-18.5 + parent: 6 + type: Transform + - uid: 895 + components: + - pos: -4.5,-18.5 + parent: 6 + type: Transform + - uid: 896 + components: + - pos: 17.5,-23.5 + parent: 6 + type: Transform + - uid: 897 + components: + - pos: -1.5,-16.5 + parent: 6 + type: Transform + - uid: 898 + components: + - pos: -1.5,-17.5 + parent: 6 + type: Transform + - uid: 899 + components: + - pos: -1.5,-18.5 + parent: 6 + type: Transform + - uid: 900 + components: + - pos: 19.5,-23.5 + parent: 6 + type: Transform + - uid: 901 + components: + - pos: 13.5,-25.5 + parent: 6 + type: Transform + - uid: 902 + components: + - pos: 13.5,-27.5 + parent: 6 + type: Transform + - uid: 906 + components: + - pos: -4.5,-24.5 + parent: 6 + type: Transform + - uid: 914 + components: + - pos: -5.5,-22.5 + parent: 6 + type: Transform + - uid: 915 + components: + - pos: 18.5,-23.5 + parent: 6 + type: Transform + - uid: 916 + components: + - pos: -8.5,-23.5 + parent: 6 + type: Transform + - uid: 917 + components: + - pos: -7.5,-19.5 + parent: 6 + type: Transform + - uid: 918 + components: + - pos: -7.5,-18.5 + parent: 6 + type: Transform + - uid: 925 + components: + - pos: 3.5,-23.5 + parent: 6 + type: Transform + - uid: 936 + components: + - pos: -12.5,-24.5 + parent: 6 + type: Transform + - uid: 937 + components: + - pos: -8.5,-20.5 + parent: 6 + type: Transform + - uid: 938 + components: + - pos: -8.5,-21.5 + parent: 6 + type: Transform + - uid: 939 + components: + - pos: -8.5,-22.5 + parent: 6 + type: Transform + - uid: 940 + components: + - pos: -6.5,-22.5 + parent: 6 + type: Transform + - uid: 942 + components: + - pos: 4.5,-13.5 + parent: 6 + type: Transform + - uid: 943 + components: + - pos: 4.5,-18.5 + parent: 6 + type: Transform + - uid: 944 + components: + - pos: -8.5,-19.5 + parent: 6 + type: Transform + - uid: 950 + components: + - pos: -6.5,-19.5 + parent: 6 + type: Transform + - uid: 951 + components: + - pos: 13.5,-21.5 + parent: 6 + type: Transform + - uid: 952 + components: + - pos: 13.5,-23.5 + parent: 6 + type: Transform + - uid: 953 + components: + - pos: 13.5,-24.5 + parent: 6 + type: Transform + - uid: 954 + components: + - pos: 14.5,-25.5 + parent: 6 + type: Transform + - uid: 955 + components: + - pos: 15.5,-25.5 + parent: 6 + type: Transform + - uid: 956 + components: + - pos: 8.5,-27.5 + parent: 6 + type: Transform + - uid: 957 + components: + - pos: 18.5,-30.5 + parent: 6 + type: Transform + - uid: 958 + components: + - pos: 18.5,-29.5 + parent: 6 + type: Transform + - uid: 959 + components: + - pos: 18.5,-28.5 + parent: 6 + type: Transform + - uid: 960 + components: + - pos: 13.5,-28.5 + parent: 6 + type: Transform + - uid: 961 + components: + - pos: 13.5,-29.5 + parent: 6 + type: Transform + - uid: 962 + components: + - pos: 13.5,-30.5 + parent: 6 + type: Transform + - uid: 963 + components: + - pos: 14.5,-30.5 + parent: 6 + type: Transform + - uid: 964 + components: + - pos: 15.5,-30.5 + parent: 6 + type: Transform + - uid: 965 + components: + - pos: 16.5,-30.5 + parent: 6 + type: Transform + - uid: 966 + components: + - pos: 17.5,-30.5 + parent: 6 + type: Transform + - uid: 967 + components: + - pos: 18.5,-27.5 + parent: 6 + type: Transform + - uid: 968 + components: + - pos: 18.5,-26.5 + parent: 6 + type: Transform + - uid: 969 + components: + - pos: 7.5,-27.5 + parent: 6 + type: Transform + - uid: 970 + components: + - pos: 12.5,-27.5 + parent: 6 + type: Transform + - uid: 971 + components: + - pos: 11.5,-27.5 + parent: 6 + type: Transform + - uid: 972 + components: + - pos: 10.5,-27.5 + parent: 6 + type: Transform + - uid: 973 + components: + - pos: 9.5,-27.5 + parent: 6 + type: Transform + - uid: 986 + components: + - pos: 18.5,-25.5 + parent: 6 + type: Transform + - uid: 987 + components: + - pos: 17.5,-25.5 + parent: 6 + type: Transform + - uid: 1017 + components: + - pos: 3.5,-31.5 + parent: 6 + type: Transform + - uid: 1018 + components: + - pos: 3.5,-32.5 + parent: 6 + type: Transform + - uid: 1019 + components: + - pos: 3.5,-33.5 + parent: 6 + type: Transform + - uid: 1020 + components: + - pos: 3.5,-36.5 + parent: 6 + type: Transform + - uid: 1021 + components: + - pos: 3.5,-37.5 + parent: 6 + type: Transform + - uid: 1024 + components: + - pos: 3.5,-38.5 + parent: 6 + type: Transform + - uid: 1064 + components: + - pos: 19.5,-33.5 + parent: 6 + type: Transform + - uid: 1065 + components: + - pos: 18.5,-33.5 + parent: 6 + type: Transform + - uid: 1066 + components: + - pos: 17.5,-33.5 + parent: 6 + type: Transform + - uid: 1067 + components: + - pos: 15.5,-33.5 + parent: 6 + type: Transform + - uid: 1068 + components: + - pos: 14.5,-33.5 + parent: 6 + type: Transform + - uid: 1069 + components: + - pos: 14.5,-32.5 + parent: 6 + type: Transform + - uid: 1112 + components: + - pos: 8.5,-28.5 + parent: 6 + type: Transform + - uid: 1127 + components: + - pos: -13.5,-13.5 + parent: 6 + type: Transform + - uid: 1134 + components: + - pos: 12.5,-32.5 + parent: 6 + type: Transform + - uid: 1135 + components: + - pos: 13.5,-32.5 + parent: 6 + type: Transform + - uid: 1137 + components: + - pos: 10.5,-38.5 + parent: 6 + type: Transform + - uid: 1138 + components: + - pos: 11.5,-38.5 + parent: 6 + type: Transform + - uid: 1139 + components: + - pos: 10.5,-41.5 + parent: 6 + type: Transform + - uid: 1140 + components: + - pos: 9.5,-41.5 + parent: 6 + type: Transform + - uid: 1141 + components: + - pos: 8.5,-41.5 + parent: 6 + type: Transform + - uid: 1142 + components: + - pos: 7.5,-41.5 + parent: 6 + type: Transform + - uid: 1149 + components: + - pos: 12.5,-38.5 + parent: 6 + type: Transform + - uid: 1150 + components: + - pos: 10.5,-42.5 + parent: 6 + type: Transform + - uid: 1151 + components: + - pos: 10.5,-43.5 + parent: 6 + type: Transform + - uid: 1152 + components: + - pos: 11.5,-43.5 + parent: 6 + type: Transform + - uid: 1153 + components: + - pos: 12.5,-43.5 + parent: 6 + type: Transform + - uid: 1154 + components: + - pos: 13.5,-43.5 + parent: 6 + type: Transform + - uid: 1155 + components: + - pos: 14.5,-43.5 + parent: 6 + type: Transform + - uid: 1173 + components: + - pos: 15.5,-43.5 + parent: 6 + type: Transform + - uid: 1174 + components: + - pos: 15.5,-42.5 + parent: 6 + type: Transform + - uid: 1175 + components: + - pos: 15.5,-41.5 + parent: 6 + type: Transform + - uid: 1176 + components: + - pos: 15.5,-40.5 + parent: 6 + type: Transform + - uid: 1177 + components: + - pos: 15.5,-39.5 + parent: 6 + type: Transform + - uid: 1178 + components: + - pos: 15.5,-38.5 + parent: 6 + type: Transform + - uid: 1179 + components: + - pos: 19.5,-39.5 + parent: 6 + type: Transform + - uid: 1180 + components: + - pos: 16.5,-39.5 + parent: 6 + type: Transform + - uid: 1201 + components: + - pos: 15.5,-44.5 + parent: 6 + type: Transform + - uid: 1202 + components: + - pos: 16.5,-44.5 + parent: 6 + type: Transform + - uid: 1203 + components: + - pos: 8.5,-43.5 + parent: 6 + type: Transform + - uid: 1204 + components: + - pos: 19.5,-44.5 + parent: 6 + type: Transform + - uid: 1206 + components: + - pos: -36.5,-58.5 + parent: 6 + type: Transform + - uid: 1207 + components: + - pos: 1.5,-46.5 + parent: 6 + type: Transform + - uid: 1209 + components: + - pos: -30.5,-56.5 + parent: 6 + type: Transform + - uid: 1215 + components: + - pos: -6.5,-46.5 + parent: 6 + type: Transform + - uid: 1216 + components: + - pos: -13.5,-47.5 + parent: 6 + type: Transform + - uid: 1217 + components: + - pos: -13.5,-46.5 + parent: 6 + type: Transform + - uid: 1224 + components: + - pos: 6.5,-46.5 + parent: 6 + type: Transform + - uid: 1225 + components: + - pos: 7.5,-46.5 + parent: 6 + type: Transform + - uid: 1226 + components: + - pos: 8.5,-46.5 + parent: 6 + type: Transform + - uid: 1227 + components: + - pos: 7.5,-42.5 + parent: 6 + type: Transform + - uid: 1228 + components: + - pos: 7.5,-43.5 + parent: 6 + type: Transform + - uid: 1229 + components: + - pos: 7.5,-45.5 + parent: 6 + type: Transform + - uid: 1230 + components: + - pos: 1.5,-47.5 + parent: 6 + type: Transform + - uid: 1232 + components: + - pos: 1.5,-49.5 + parent: 6 + type: Transform + - uid: 1233 + components: + - pos: 1.5,-50.5 + parent: 6 + type: Transform + - uid: 1236 + components: + - pos: -41.5,-31.5 + parent: 6 + type: Transform + - uid: 1261 + components: + - pos: -0.5,-54.5 + parent: 6 + type: Transform + - uid: 1263 + components: + - pos: -0.5,-56.5 + parent: 6 + type: Transform + - uid: 1276 + components: + - pos: -0.5,-57.5 + parent: 6 + type: Transform + - uid: 1277 + components: + - pos: -1.5,-57.5 + parent: 6 + type: Transform + - uid: 1278 + components: + - pos: -5.5,-49.5 + parent: 6 + type: Transform + - uid: 1279 + components: + - pos: -6.5,-49.5 + parent: 6 + type: Transform + - uid: 1280 + components: + - pos: -6.5,-48.5 + parent: 6 + type: Transform + - uid: 1281 + components: + - pos: -6.5,-47.5 + parent: 6 + type: Transform + - uid: 1299 + components: + - pos: -13.5,-48.5 + parent: 6 + type: Transform + - uid: 1300 + components: + - pos: -13.5,-49.5 + parent: 6 + type: Transform + - uid: 1306 + components: + - pos: -8.5,-49.5 + parent: 6 + type: Transform + - uid: 1307 + components: + - pos: -8.5,-50.5 + parent: 6 + type: Transform + - uid: 1308 + components: + - pos: -5.5,-50.5 + parent: 6 + type: Transform + - uid: 1309 + components: + - pos: -5.5,-51.5 + parent: 6 + type: Transform + - uid: 1310 + components: + - pos: -5.5,-52.5 + parent: 6 + type: Transform + - uid: 1311 + components: + - pos: -5.5,-53.5 + parent: 6 + type: Transform + - uid: 1312 + components: + - pos: -6.5,-53.5 + parent: 6 + type: Transform + - uid: 1313 + components: + - pos: -8.5,-51.5 + parent: 6 + type: Transform + - uid: 1314 + components: + - pos: -8.5,-52.5 + parent: 6 + type: Transform + - uid: 1315 + components: + - pos: -8.5,-53.5 + parent: 6 + type: Transform + - uid: 1316 + components: + - pos: -13.5,-50.5 + parent: 6 + type: Transform + - uid: 1317 + components: + - pos: -13.5,-51.5 + parent: 6 + type: Transform + - uid: 1318 + components: + - pos: -15.5,-54.5 + parent: 6 + type: Transform + - uid: 1319 + components: + - pos: -14.5,-54.5 + parent: 6 + type: Transform + - uid: 1320 + components: + - pos: -13.5,-54.5 + parent: 6 + type: Transform + - uid: 1321 + components: + - pos: -13.5,-56.5 + parent: 6 + type: Transform + - uid: 1322 + components: + - pos: -13.5,-55.5 + parent: 6 + type: Transform + - uid: 1323 + components: + - pos: -13.5,-57.5 + parent: 6 + type: Transform + - uid: 1324 + components: + - pos: -12.5,-57.5 + parent: 6 + type: Transform + - uid: 1325 + components: + - pos: -11.5,-57.5 + parent: 6 + type: Transform + - uid: 1326 + components: + - pos: -10.5,-57.5 + parent: 6 + type: Transform + - uid: 1327 + components: + - pos: -9.5,-57.5 + parent: 6 + type: Transform + - uid: 1328 + components: + - pos: -8.5,-54.5 + parent: 6 + type: Transform + - uid: 1329 + components: + - pos: -8.5,-57.5 + parent: 6 + type: Transform + - uid: 1330 + components: + - pos: -16.5,-54.5 + parent: 6 + type: Transform + - uid: 1331 + components: + - pos: -17.5,-54.5 + parent: 6 + type: Transform + - uid: 1332 + components: + - pos: -18.5,-54.5 + parent: 6 + type: Transform + - uid: 1333 + components: + - pos: -15.5,-58.5 + parent: 6 + type: Transform + - uid: 1334 + components: + - pos: -15.5,-57.5 + parent: 6 + type: Transform + - uid: 1335 + components: + - pos: -17.5,-57.5 + parent: 6 + type: Transform + - uid: 1336 + components: + - pos: -18.5,-57.5 + parent: 6 + type: Transform + - uid: 1337 + components: + - pos: -18.5,-52.5 + parent: 6 + type: Transform + - uid: 1338 + components: + - pos: -18.5,-51.5 + parent: 6 + type: Transform + - uid: 1340 + components: + - pos: -18.5,-49.5 + parent: 6 + type: Transform + - uid: 1341 + components: + - pos: -18.5,-48.5 + parent: 6 + type: Transform + - uid: 1342 + components: + - pos: -18.5,-47.5 + parent: 6 + type: Transform + - uid: 1343 + components: + - pos: -18.5,-46.5 + parent: 6 + type: Transform + - uid: 1344 + components: + - pos: -14.5,-46.5 + parent: 6 + type: Transform + - uid: 1347 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-46.5 + parent: 6 + type: Transform + - uid: 1353 + components: + - pos: -7.5,-57.5 + parent: 6 + type: Transform + - uid: 1355 + components: + - pos: -4.5,-57.5 + parent: 6 + type: Transform + - uid: 1356 + components: + - pos: -2.5,-57.5 + parent: 6 + type: Transform + - uid: 1357 + components: + - pos: -3.5,-57.5 + parent: 6 + type: Transform + - uid: 1436 + components: + - pos: -16.5,-24.5 + parent: 6 + type: Transform + - uid: 1437 + components: + - pos: -16.5,-21.5 + parent: 6 + type: Transform + - uid: 1487 + components: + - pos: -18.5,-58.5 + parent: 6 + type: Transform + - uid: 1488 + components: + - pos: -18.5,-59.5 + parent: 6 + type: Transform + - uid: 1498 + components: + - pos: -19.5,-28.5 + parent: 6 + type: Transform + - uid: 1499 + components: + - pos: -18.5,-28.5 + parent: 6 + type: Transform + - uid: 1501 + components: + - pos: -26.5,-23.5 + parent: 6 + type: Transform + - uid: 1507 + components: + - pos: -21.5,-28.5 + parent: 6 + type: Transform + - uid: 1508 + components: + - pos: -17.5,-28.5 + parent: 6 + type: Transform + - uid: 1509 + components: + - pos: -22.5,-23.5 + parent: 6 + type: Transform + - uid: 1510 + components: + - pos: -23.5,-23.5 + parent: 6 + type: Transform + - uid: 1517 + components: + - pos: -18.5,-24.5 + parent: 6 + type: Transform + - uid: 1520 + components: + - pos: -22.5,-26.5 + parent: 6 + type: Transform + - uid: 1521 + components: + - pos: -22.5,-25.5 + parent: 6 + type: Transform + - uid: 1522 + components: + - pos: -22.5,-24.5 + parent: 6 + type: Transform + - uid: 1523 + components: + - pos: -22.5,-28.5 + parent: 6 + type: Transform + - uid: 1524 + components: + - pos: -19.5,-24.5 + parent: 6 + type: Transform + - uid: 1525 + components: + - pos: -20.5,-28.5 + parent: 6 + type: Transform + - uid: 1526 + components: + - pos: -20.5,-18.5 + parent: 6 + type: Transform + - uid: 1534 + components: + - pos: -27.5,-14.5 + parent: 6 + type: Transform + - uid: 1535 + components: + - pos: -27.5,-15.5 + parent: 6 + type: Transform + - uid: 1536 + components: + - pos: -27.5,-16.5 + parent: 6 + type: Transform + - uid: 1537 + components: + - pos: -27.5,-17.5 + parent: 6 + type: Transform + - uid: 1538 + components: + - pos: -27.5,-18.5 + parent: 6 + type: Transform + - uid: 1539 + components: + - pos: -27.5,-19.5 + parent: 6 + type: Transform + - uid: 1541 + components: + - pos: -26.5,-19.5 + parent: 6 + type: Transform + - uid: 1542 + components: + - pos: -25.5,-19.5 + parent: 6 + type: Transform + - uid: 1543 + components: + - pos: -24.5,-19.5 + parent: 6 + type: Transform + - uid: 1544 + components: + - pos: -24.5,-18.5 + parent: 6 + type: Transform + - uid: 1546 + components: + - pos: -27.5,-24.5 + parent: 6 + type: Transform + - uid: 1547 + components: + - pos: -27.5,-29.5 + parent: 6 + type: Transform + - uid: 1548 + components: + - pos: -27.5,-30.5 + parent: 6 + type: Transform + - uid: 1549 + components: + - pos: -27.5,-31.5 + parent: 6 + type: Transform + - uid: 1554 + components: + - pos: -4.5,-21.5 + parent: 6 + type: Transform + - uid: 1556 + components: + - pos: -31.5,-19.5 + parent: 6 + type: Transform + - uid: 1557 + components: + - pos: -31.5,-18.5 + parent: 6 + type: Transform + - uid: 1558 + components: + - pos: -31.5,-17.5 + parent: 6 + type: Transform + - uid: 1559 + components: + - pos: -31.5,-15.5 + parent: 6 + type: Transform + - uid: 1560 + components: + - pos: -28.5,-28.5 + parent: 6 + type: Transform + - uid: 1561 + components: + - pos: -27.5,-28.5 + parent: 6 + type: Transform + - uid: 1562 + components: + - pos: -30.5,-28.5 + parent: 6 + type: Transform + - uid: 1563 + components: + - pos: -31.5,-28.5 + parent: 6 + type: Transform + - uid: 1564 + components: + - pos: -31.5,-27.5 + parent: 6 + type: Transform + - uid: 1565 + components: + - pos: -31.5,-26.5 + parent: 6 + type: Transform + - uid: 1566 + components: + - pos: -31.5,-25.5 + parent: 6 + type: Transform + - uid: 1567 + components: + - pos: -31.5,-24.5 + parent: 6 + type: Transform + - uid: 1568 + components: + - pos: -31.5,-23.5 + parent: 6 + type: Transform + - uid: 1570 + components: + - pos: -27.5,-23.5 + parent: 6 + type: Transform + - uid: 1571 + components: + - pos: -15.5,-59.5 + parent: 6 + type: Transform + - uid: 1572 + components: + - pos: -31.5,-14.5 + parent: 6 + type: Transform + - uid: 1578 + components: + - pos: -27.5,-25.5 + parent: 6 + type: Transform + - uid: 1579 + components: + - pos: -27.5,-26.5 + parent: 6 + type: Transform + - uid: 1580 + components: + - pos: -20.5,-31.5 + parent: 6 + type: Transform + - uid: 1581 + components: + - pos: -21.5,-31.5 + parent: 6 + type: Transform + - uid: 1585 + components: + - pos: -27.5,-27.5 + parent: 6 + type: Transform + - uid: 1587 + components: + - pos: -27.5,-32.5 + parent: 6 + type: Transform + - uid: 1588 + components: + - pos: -27.5,-33.5 + parent: 6 + type: Transform + - uid: 1589 + components: + - pos: -27.5,-34.5 + parent: 6 + type: Transform + - uid: 1590 + components: + - pos: -26.5,-34.5 + parent: 6 + type: Transform + - uid: 1591 + components: + - pos: -25.5,-34.5 + parent: 6 + type: Transform + - uid: 1592 + components: + - pos: -24.5,-34.5 + parent: 6 + type: Transform + - uid: 1593 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-34.5 + parent: 6 + type: Transform + - uid: 1595 + components: + - pos: -21.5,-34.5 + parent: 6 + type: Transform + - uid: 1596 + components: + - pos: -20.5,-34.5 + parent: 6 + type: Transform + - uid: 1620 + components: + - pos: -16.5,-34.5 + parent: 6 + type: Transform + - uid: 1621 + components: + - pos: -16.5,-36.5 + parent: 6 + type: Transform + - uid: 1622 + components: + - pos: -17.5,-36.5 + parent: 6 + type: Transform + - uid: 1623 + components: + - pos: -18.5,-36.5 + parent: 6 + type: Transform + - uid: 1624 + components: + - pos: -19.5,-36.5 + parent: 6 + type: Transform + - uid: 1625 + components: + - pos: -20.5,-36.5 + parent: 6 + type: Transform + - uid: 1627 + components: + - pos: -22.5,-36.5 + parent: 6 + type: Transform + - uid: 1628 + components: + - pos: -23.5,-36.5 + parent: 6 + type: Transform + - uid: 1629 + components: + - pos: -24.5,-36.5 + parent: 6 + type: Transform + - uid: 1630 + components: + - pos: -25.5,-36.5 + parent: 6 + type: Transform + - uid: 1631 + components: + - pos: -26.5,-36.5 + parent: 6 + type: Transform + - uid: 1632 + components: + - pos: -27.5,-36.5 + parent: 6 + type: Transform + - uid: 1633 + components: + - pos: -28.5,-36.5 + parent: 6 + type: Transform + - uid: 1634 + components: + - pos: -29.5,-36.5 + parent: 6 + type: Transform + - uid: 1635 + components: + - pos: -30.5,-36.5 + parent: 6 + type: Transform + - uid: 1636 + components: + - pos: -30.5,-35.5 + parent: 6 + type: Transform + - uid: 1637 + components: + - pos: -30.5,-34.5 + parent: 6 + type: Transform + - uid: 1638 + components: + - pos: -30.5,-33.5 + parent: 6 + type: Transform + - uid: 1639 + components: + - pos: -30.5,-32.5 + parent: 6 + type: Transform + - uid: 1640 + components: + - pos: -30.5,-31.5 + parent: 6 + type: Transform + - uid: 1641 + components: + - pos: -33.5,-31.5 + parent: 6 + type: Transform + - uid: 1642 + components: + - pos: -33.5,-32.5 + parent: 6 + type: Transform + - uid: 1643 + components: + - pos: -33.5,-33.5 + parent: 6 + type: Transform + - uid: 1644 + components: + - pos: -32.5,-33.5 + parent: 6 + type: Transform + - uid: 1645 + components: + - pos: -31.5,-33.5 + parent: 6 + type: Transform + - uid: 1646 + components: + - pos: -33.5,-30.5 + parent: 6 + type: Transform + - uid: 1647 + components: + - pos: -32.5,-30.5 + parent: 6 + type: Transform + - uid: 1648 + components: + - pos: -30.5,-30.5 + parent: 6 + type: Transform + - uid: 1649 + components: + - pos: -34.5,-30.5 + parent: 6 + type: Transform + - uid: 1651 + components: + - pos: -34.5,-28.5 + parent: 6 + type: Transform + - uid: 1654 + components: + - pos: -34.5,-25.5 + parent: 6 + type: Transform + - uid: 1655 + components: + - pos: -16.5,-37.5 + parent: 6 + type: Transform + - uid: 1656 + components: + - pos: -16.5,-41.5 + parent: 6 + type: Transform + - uid: 1657 + components: + - pos: -16.5,-42.5 + parent: 6 + type: Transform + - uid: 1658 + components: + - pos: -17.5,-42.5 + parent: 6 + type: Transform + - uid: 1659 + components: + - pos: -18.5,-42.5 + parent: 6 + type: Transform + - uid: 1660 + components: + - pos: -20.5,-42.5 + parent: 6 + type: Transform + - uid: 1661 + components: + - pos: -21.5,-42.5 + parent: 6 + type: Transform + - uid: 1662 + components: + - pos: -22.5,-42.5 + parent: 6 + type: Transform + - uid: 1663 + components: + - pos: -22.5,-41.5 + parent: 6 + type: Transform + - uid: 1664 + components: + - pos: -22.5,-40.5 + parent: 6 + type: Transform + - uid: 1665 + components: + - pos: -23.5,-40.5 + parent: 6 + type: Transform + - uid: 1666 + components: + - pos: -24.5,-40.5 + parent: 6 + type: Transform + - uid: 1667 + components: + - pos: -25.5,-40.5 + parent: 6 + type: Transform + - uid: 1668 + components: + - pos: -26.5,-40.5 + parent: 6 + type: Transform + - uid: 1669 + components: + - pos: -26.5,-39.5 + parent: 6 + type: Transform + - uid: 1670 + components: + - pos: -26.5,-38.5 + parent: 6 + type: Transform + - uid: 1671 + components: + - pos: -26.5,-37.5 + parent: 6 + type: Transform + - uid: 1672 + components: + - pos: -23.5,-39.5 + parent: 6 + type: Transform + - uid: 1673 + components: + - pos: -23.5,-38.5 + parent: 6 + type: Transform + - uid: 1701 + components: + - pos: -23.5,-47.5 + parent: 6 + type: Transform + - uid: 1702 + components: + - pos: -22.5,-47.5 + parent: 6 + type: Transform + - uid: 1703 + components: + - pos: -19.5,-47.5 + parent: 6 + type: Transform + - uid: 1704 + components: + - pos: -20.5,-47.5 + parent: 6 + type: Transform + - uid: 1705 + components: + - pos: -21.5,-47.5 + parent: 6 + type: Transform + - uid: 1706 + components: + - pos: -23.5,-42.5 + parent: 6 + type: Transform + - uid: 1707 + components: + - pos: -25.5,-46.5 + parent: 6 + type: Transform + - uid: 1708 + components: + - pos: -25.5,-47.5 + parent: 6 + type: Transform + - uid: 1709 + components: + - pos: -25.5,-48.5 + parent: 6 + type: Transform + - uid: 1710 + components: + - pos: -25.5,-49.5 + parent: 6 + type: Transform + - uid: 1711 + components: + - pos: -24.5,-49.5 + parent: 6 + type: Transform + - uid: 1712 + components: + - pos: -23.5,-49.5 + parent: 6 + type: Transform + - uid: 1713 + components: + - pos: -22.5,-49.5 + parent: 6 + type: Transform + - uid: 1714 + components: + - pos: -21.5,-49.5 + parent: 6 + type: Transform + - uid: 1715 + components: + - pos: -20.5,-49.5 + parent: 6 + type: Transform + - uid: 1716 + components: + - pos: -20.5,-50.5 + parent: 6 + type: Transform + - uid: 1717 + components: + - pos: -20.5,-51.5 + parent: 6 + type: Transform + - uid: 1718 + components: + - pos: -20.5,-52.5 + parent: 6 + type: Transform + - uid: 1722 + components: + - pos: -20.5,-56.5 + parent: 6 + type: Transform + - uid: 1723 + components: + - pos: -20.5,-57.5 + parent: 6 + type: Transform + - uid: 1726 + components: + - pos: -22.5,-57.5 + parent: 6 + type: Transform + - uid: 1728 + components: + - pos: -24.5,-57.5 + parent: 6 + type: Transform + - uid: 1730 + components: + - pos: -26.5,-57.5 + parent: 6 + type: Transform + - uid: 1731 + components: + - pos: -27.5,-57.5 + parent: 6 + type: Transform + - uid: 1732 + components: + - pos: -27.5,-56.5 + parent: 6 + type: Transform + - uid: 1733 + components: + - pos: -27.5,-55.5 + parent: 6 + type: Transform + - uid: 1734 + components: + - pos: -27.5,-54.5 + parent: 6 + type: Transform + - uid: 1735 + components: + - pos: -27.5,-53.5 + parent: 6 + type: Transform + - uid: 1736 + components: + - pos: -27.5,-52.5 + parent: 6 + type: Transform + - uid: 1737 + components: + - pos: -27.5,-51.5 + parent: 6 + type: Transform + - uid: 1738 + components: + - pos: -27.5,-50.5 + parent: 6 + type: Transform + - uid: 1739 + components: + - pos: -27.5,-49.5 + parent: 6 + type: Transform + - uid: 1740 + components: + - pos: -26.5,-49.5 + parent: 6 + type: Transform + - uid: 1745 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-9.5 + parent: 6 + type: Transform + - uid: 1746 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-9.5 + parent: 6 + type: Transform + - uid: 1747 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-9.5 + parent: 6 + type: Transform + - uid: 1765 + components: + - pos: -32.5,-23.5 + parent: 6 + type: Transform + - uid: 1766 + components: + - pos: -34.5,-23.5 + parent: 6 + type: Transform + - uid: 1767 + components: + - pos: -35.5,-23.5 + parent: 6 + type: Transform + - uid: 1768 + components: + - pos: -36.5,-23.5 + parent: 6 + type: Transform + - uid: 1769 + components: + - pos: -37.5,-23.5 + parent: 6 + type: Transform + - uid: 1770 + components: + - pos: -38.5,-23.5 + parent: 6 + type: Transform + - uid: 1771 + components: + - pos: -39.5,-23.5 + parent: 6 + type: Transform + - uid: 1772 + components: + - pos: -40.5,-23.5 + parent: 6 + type: Transform + - uid: 1774 + components: + - pos: -40.5,-21.5 + parent: 6 + type: Transform + - uid: 1780 + components: + - pos: -40.5,-15.5 + parent: 6 + type: Transform + - uid: 1781 + components: + - pos: -40.5,-14.5 + parent: 6 + type: Transform + - uid: 1782 + components: + - pos: -40.5,-13.5 + parent: 6 + type: Transform + - uid: 1793 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-42.5 + parent: 6 + type: Transform + - uid: 1797 + components: + - pos: -26.5,-60.5 + parent: 6 + type: Transform + - uid: 1798 + components: + - pos: -27.5,-60.5 + parent: 6 + type: Transform + - uid: 1799 + components: + - pos: -28.5,-60.5 + parent: 6 + type: Transform + - uid: 1800 + components: + - pos: -22.5,-58.5 + parent: 6 + type: Transform + - uid: 1801 + components: + - pos: -27.5,-58.5 + parent: 6 + type: Transform + - uid: 1802 + components: + - pos: -26.5,-46.5 + parent: 6 + type: Transform + - uid: 1803 + components: + - pos: -27.5,-46.5 + parent: 6 + type: Transform + - uid: 1804 + components: + - pos: -28.5,-46.5 + parent: 6 + type: Transform + - uid: 1805 + components: + - pos: -29.5,-46.5 + parent: 6 + type: Transform + - uid: 1806 + components: + - pos: -30.5,-46.5 + parent: 6 + type: Transform + - uid: 1808 + components: + - pos: -29.5,-49.5 + parent: 6 + type: Transform + - uid: 1809 + components: + - pos: -30.5,-49.5 + parent: 6 + type: Transform + - uid: 1810 + components: + - pos: -30.5,-48.5 + parent: 6 + type: Transform + - uid: 1811 + components: + - pos: -29.5,-51.5 + parent: 6 + type: Transform + - uid: 1812 + components: + - pos: -28.5,-53.5 + parent: 6 + type: Transform + - uid: 1813 + components: + - pos: -29.5,-53.5 + parent: 6 + type: Transform + - uid: 1814 + components: + - pos: -28.5,-57.5 + parent: 6 + type: Transform + - uid: 1815 + components: + - pos: -29.5,-57.5 + parent: 6 + type: Transform + - uid: 1816 + components: + - pos: -30.5,-57.5 + parent: 6 + type: Transform + - uid: 1817 + components: + - pos: -36.5,-56.5 + parent: 6 + type: Transform + - uid: 1818 + components: + - pos: -32.5,-57.5 + parent: 6 + type: Transform + - uid: 1819 + components: + - pos: -33.5,-57.5 + parent: 6 + type: Transform + - uid: 1822 + components: + - pos: -36.5,-55.5 + parent: 6 + type: Transform + - uid: 1823 + components: + - pos: -36.5,-54.5 + parent: 6 + type: Transform + - uid: 1824 + components: + - pos: -36.5,-53.5 + parent: 6 + type: Transform + - uid: 1825 + components: + - pos: -36.5,-52.5 + parent: 6 + type: Transform + - uid: 1826 + components: + - pos: -36.5,-51.5 + parent: 6 + type: Transform + - uid: 1827 + components: + - pos: -36.5,-50.5 + parent: 6 + type: Transform + - uid: 1828 + components: + - pos: -36.5,-49.5 + parent: 6 + type: Transform + - uid: 1829 + components: + - pos: -36.5,-48.5 + parent: 6 + type: Transform + - uid: 1830 + components: + - pos: -36.5,-47.5 + parent: 6 + type: Transform + - uid: 1831 + components: + - pos: -36.5,-46.5 + parent: 6 + type: Transform + - uid: 1834 + components: + - pos: -34.5,-57.5 + parent: 6 + type: Transform + - uid: 1835 + components: + - pos: -35.5,-57.5 + parent: 6 + type: Transform + - uid: 1836 + components: + - pos: -36.5,-57.5 + parent: 6 + type: Transform + - uid: 1837 + components: + - pos: -30.5,-53.5 + parent: 6 + type: Transform + - uid: 1838 + components: + - pos: -30.5,-54.5 + parent: 6 + type: Transform + - uid: 1842 + components: + - pos: -31.5,-60.5 + parent: 6 + type: Transform + - uid: 1853 + components: + - pos: -37.5,-57.5 + parent: 6 + type: Transform + - uid: 1854 + components: + - pos: -38.5,-57.5 + parent: 6 + type: Transform + - uid: 1855 + components: + - pos: -38.5,-56.5 + parent: 6 + type: Transform + - uid: 1856 + components: + - pos: -38.5,-55.5 + parent: 6 + type: Transform + - uid: 1857 + components: + - pos: -39.5,-52.5 + parent: 6 + type: Transform + - uid: 1858 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-49.5 + parent: 6 + type: Transform + - uid: 1863 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-50.5 + parent: 6 + type: Transform + - uid: 1864 + components: + - pos: -31.5,-6.5 + parent: 6 + type: Transform + - uid: 1867 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-48.5 + parent: 6 + type: Transform + - uid: 1868 + components: + - pos: -25.5,-42.5 + parent: 6 + type: Transform + - uid: 1869 + components: + - pos: -26.5,-42.5 + parent: 6 + type: Transform + - uid: 1870 + components: + - pos: -27.5,-42.5 + parent: 6 + type: Transform + - uid: 1871 + components: + - pos: -28.5,-42.5 + parent: 6 + type: Transform + - uid: 1872 + components: + - pos: -29.5,-42.5 + parent: 6 + type: Transform + - uid: 1873 + components: + - pos: -29.5,-41.5 + parent: 6 + type: Transform + - uid: 1874 + components: + - pos: -29.5,-40.5 + parent: 6 + type: Transform + - uid: 1875 + components: + - pos: -29.5,-39.5 + parent: 6 + type: Transform + - uid: 1876 + components: + - pos: -29.5,-38.5 + parent: 6 + type: Transform + - uid: 1877 + components: + - pos: -30.5,-38.5 + parent: 6 + type: Transform + - uid: 1878 + components: + - pos: -31.5,-38.5 + parent: 6 + type: Transform + - uid: 1879 + components: + - pos: -32.5,-38.5 + parent: 6 + type: Transform + - uid: 1880 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-28.5 + parent: 6 + type: Transform + - uid: 1881 + components: + - pos: -34.5,-38.5 + parent: 6 + type: Transform + - uid: 1882 + components: + - pos: -35.5,-38.5 + parent: 6 + type: Transform + - uid: 1883 + components: + - pos: -36.5,-38.5 + parent: 6 + type: Transform + - uid: 1884 + components: + - pos: -37.5,-38.5 + parent: 6 + type: Transform + - uid: 1885 + components: + - pos: -37.5,-37.5 + parent: 6 + type: Transform + - uid: 1886 + components: + - pos: -37.5,-36.5 + parent: 6 + type: Transform + - uid: 1887 + components: + - pos: -37.5,-35.5 + parent: 6 + type: Transform + - uid: 1888 + components: + - pos: -37.5,-34.5 + parent: 6 + type: Transform + - uid: 1889 + components: + - pos: -37.5,-33.5 + parent: 6 + type: Transform + - uid: 1890 + components: + - pos: -37.5,-32.5 + parent: 6 + type: Transform + - uid: 1891 + components: + - pos: -37.5,-31.5 + parent: 6 + type: Transform + - uid: 1892 + components: + - pos: -37.5,-30.5 + parent: 6 + type: Transform + - uid: 1893 + components: + - pos: -37.5,-29.5 + parent: 6 + type: Transform + - uid: 1894 + components: + - pos: -37.5,-28.5 + parent: 6 + type: Transform + - uid: 1896 + components: + - pos: -35.5,-28.5 + parent: 6 + type: Transform + - uid: 1900 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-28.5 + parent: 6 + type: Transform + - uid: 1904 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-39.5 + parent: 6 + type: Transform + - uid: 1905 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-40.5 + parent: 6 + type: Transform + - uid: 1906 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-41.5 + parent: 6 + type: Transform + - uid: 1907 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-42.5 + parent: 6 + type: Transform + - uid: 1908 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-42.5 + parent: 6 + type: Transform + - uid: 1909 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-42.5 + parent: 6 + type: Transform + - uid: 1910 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-42.5 + parent: 6 + type: Transform + - uid: 1911 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-42.5 + parent: 6 + type: Transform + - uid: 1912 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-42.5 + parent: 6 + type: Transform + - uid: 1913 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-42.5 + parent: 6 + type: Transform + - uid: 1914 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-28.5 + parent: 6 + type: Transform + - uid: 1915 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-28.5 + parent: 6 + type: Transform + - uid: 1916 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-28.5 + parent: 6 + type: Transform + - uid: 1917 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-27.5 + parent: 6 + type: Transform + - uid: 1918 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-26.5 + parent: 6 + type: Transform + - uid: 1919 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-25.5 + parent: 6 + type: Transform + - uid: 1920 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-24.5 + parent: 6 + type: Transform + - uid: 1922 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-22.5 + parent: 6 + type: Transform + - uid: 1923 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-21.5 + parent: 6 + type: Transform + - uid: 1925 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-19.5 + parent: 6 + type: Transform + - uid: 1926 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-18.5 + parent: 6 + type: Transform + - uid: 1928 + components: + - pos: -44.5,-28.5 + parent: 6 + type: Transform + - uid: 1931 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-25.5 + parent: 6 + type: Transform + - uid: 1932 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-25.5 + parent: 6 + type: Transform + - uid: 1933 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-25.5 + parent: 6 + type: Transform + - uid: 1934 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-25.5 + parent: 6 + type: Transform + - uid: 1935 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-26.5 + parent: 6 + type: Transform + - uid: 1936 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-27.5 + parent: 6 + type: Transform + - uid: 1937 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-25.5 + parent: 6 + type: Transform + - uid: 1938 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-52.5 + parent: 6 + type: Transform + - uid: 1950 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-48.5 + parent: 6 + type: Transform + - uid: 1951 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-48.5 + parent: 6 + type: Transform + - uid: 1952 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-48.5 + parent: 6 + type: Transform + - uid: 1954 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-46.5 + parent: 6 + type: Transform + - uid: 1956 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-46.5 + parent: 6 + type: Transform + - uid: 1957 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-46.5 + parent: 6 + type: Transform + - uid: 1958 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-46.5 + parent: 6 + type: Transform + - uid: 1959 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-46.5 + parent: 6 + type: Transform + - uid: 1962 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-32.5 + parent: 6 + type: Transform + - uid: 1963 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-32.5 + parent: 6 + type: Transform + - uid: 1964 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-32.5 + parent: 6 + type: Transform + - uid: 1965 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-32.5 + parent: 6 + type: Transform + - uid: 1966 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-33.5 + parent: 6 + type: Transform + - uid: 1968 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-36.5 + parent: 6 + type: Transform + - uid: 1969 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-37.5 + parent: 6 + type: Transform + - uid: 1970 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-37.5 + parent: 6 + type: Transform + - uid: 1971 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-37.5 + parent: 6 + type: Transform + - uid: 1972 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-36.5 + parent: 6 + type: Transform + - uid: 1973 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-36.5 + parent: 6 + type: Transform + - uid: 1974 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-38.5 + parent: 6 + type: Transform + - uid: 1976 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-41.5 + parent: 6 + type: Transform + - uid: 1977 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-42.5 + parent: 6 + type: Transform + - uid: 1978 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-42.5 + parent: 6 + type: Transform + - uid: 1979 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-42.5 + parent: 6 + type: Transform + - uid: 1980 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-42.5 + parent: 6 + type: Transform + - uid: 1981 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-42.5 + parent: 6 + type: Transform + - uid: 1982 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-46.5 + parent: 6 + type: Transform + - uid: 1983 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-46.5 + parent: 6 + type: Transform + - uid: 1984 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-46.5 + parent: 6 + type: Transform + - uid: 1985 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-46.5 + parent: 6 + type: Transform + - uid: 2011 + components: + - pos: -38.5,-13.5 + parent: 6 + type: Transform + - uid: 2046 + components: + - pos: -45.5,-28.5 + parent: 6 + type: Transform + - uid: 2047 + components: + - pos: -44.5,-29.5 + parent: 6 + type: Transform + - uid: 2049 + components: + - pos: -44.5,-32.5 + parent: 6 + type: Transform + - uid: 2050 + components: + - pos: -45.5,-32.5 + parent: 6 + type: Transform + - uid: 2051 + components: + - pos: -46.5,-32.5 + parent: 6 + type: Transform + - uid: 2052 + components: + - pos: -47.5,-32.5 + parent: 6 + type: Transform + - uid: 2053 + components: + - pos: -48.5,-32.5 + parent: 6 + type: Transform + - uid: 2054 + components: + - pos: -48.5,-31.5 + parent: 6 + type: Transform + - uid: 2055 + components: + - pos: -48.5,-30.5 + parent: 6 + type: Transform + - uid: 2056 + components: + - pos: -48.5,-29.5 + parent: 6 + type: Transform + - uid: 2057 + components: + - pos: -48.5,-28.5 + parent: 6 + type: Transform + - uid: 2058 + components: + - pos: -47.5,-28.5 + parent: 6 + type: Transform + - uid: 2059 + components: + - pos: -46.5,-28.5 + parent: 6 + type: Transform + - uid: 2060 + components: + - pos: -44.5,-33.5 + parent: 6 + type: Transform + - uid: 2062 + components: + - pos: -44.5,-36.5 + parent: 6 + type: Transform + - uid: 2063 + components: + - pos: -44.5,-37.5 + parent: 6 + type: Transform + - uid: 2064 + components: + - pos: -45.5,-37.5 + parent: 6 + type: Transform + - uid: 2065 + components: + - pos: -46.5,-37.5 + parent: 6 + type: Transform + - uid: 2066 + components: + - pos: -48.5,-33.5 + parent: 6 + type: Transform + - uid: 2067 + components: + - pos: -48.5,-34.5 + parent: 6 + type: Transform + - uid: 2068 + components: + - pos: -48.5,-35.5 + parent: 6 + type: Transform + - uid: 2069 + components: + - pos: -48.5,-36.5 + parent: 6 + type: Transform + - uid: 2070 + components: + - pos: -48.5,-37.5 + parent: 6 + type: Transform + - uid: 2071 + components: + - pos: -48.5,-38.5 + parent: 6 + type: Transform + - uid: 2072 + components: + - pos: -46.5,-38.5 + parent: 6 + type: Transform + - uid: 2073 + components: + - pos: -47.5,-38.5 + parent: 6 + type: Transform + - uid: 2074 + components: + - pos: -44.5,-38.5 + parent: 6 + type: Transform + - uid: 2076 + components: + - pos: -44.5,-41.5 + parent: 6 + type: Transform + - uid: 2077 + components: + - pos: -44.5,-42.5 + parent: 6 + type: Transform + - uid: 2078 + components: + - pos: -45.5,-42.5 + parent: 6 + type: Transform + - uid: 2079 + components: + - pos: -46.5,-42.5 + parent: 6 + type: Transform + - uid: 2080 + components: + - pos: -47.5,-42.5 + parent: 6 + type: Transform + - uid: 2081 + components: + - pos: -48.5,-42.5 + parent: 6 + type: Transform + - uid: 2082 + components: + - pos: -48.5,-41.5 + parent: 6 + type: Transform + - uid: 2083 + components: + - pos: -48.5,-40.5 + parent: 6 + type: Transform + - uid: 2084 + components: + - pos: -48.5,-39.5 + parent: 6 + type: Transform + - uid: 2085 + components: + - pos: -31.5,-5.5 + parent: 6 + type: Transform + - uid: 2086 + components: + - pos: -31.5,-4.5 + parent: 6 + type: Transform + - uid: 2087 + components: + - pos: -32.5,-5.5 + parent: 6 + type: Transform + - uid: 2088 + components: + - pos: -33.5,-5.5 + parent: 6 + type: Transform + - uid: 2089 + components: + - pos: -34.5,-5.5 + parent: 6 + type: Transform + - uid: 2090 + components: + - pos: -35.5,-5.5 + parent: 6 + type: Transform + - uid: 2091 + components: + - pos: -35.5,-6.5 + parent: 6 + type: Transform + - uid: 2092 + components: + - pos: -35.5,-8.5 + parent: 6 + type: Transform + - uid: 2465 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-40.5 + parent: 6 + type: Transform + - uid: 2466 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-39.5 + parent: 6 + type: Transform + - uid: 2467 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-38.5 + parent: 6 + type: Transform + - uid: 2468 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-37.5 + parent: 6 + type: Transform + - uid: 2469 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-36.5 + parent: 6 + type: Transform + - uid: 2470 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-36.5 + parent: 6 + type: Transform + - uid: 2473 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-33.5 + parent: 6 + type: Transform + - uid: 2477 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-29.5 + parent: 6 + type: Transform + - uid: 2478 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-28.5 + parent: 6 + type: Transform + - uid: 2489 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-22.5 + parent: 6 + type: Transform + - uid: 2490 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-22.5 + parent: 6 + type: Transform + - uid: 2538 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,-13.5 + parent: 6 + type: Transform + - uid: 2586 + components: + - rot: 1.5707963267948966 rad + pos: -66.5,-14.5 + parent: 6 + type: Transform + - uid: 2587 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,-14.5 + parent: 6 + type: Transform + - uid: 2596 + components: + - rot: 1.5707963267948966 rad + pos: -65.5,-15.5 + parent: 6 + type: Transform + - uid: 2598 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,-15.5 + parent: 6 + type: Transform + - uid: 2599 + components: + - rot: 1.5707963267948966 rad + pos: -62.5,-15.5 + parent: 6 + type: Transform + - uid: 2600 + components: + - rot: 1.5707963267948966 rad + pos: -61.5,-15.5 + parent: 6 + type: Transform + - uid: 2601 + components: + - rot: 1.5707963267948966 rad + pos: -60.5,-15.5 + parent: 6 + type: Transform + - uid: 2602 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-15.5 + parent: 6 + type: Transform + - uid: 2603 + components: + - rot: 1.5707963267948966 rad + pos: -58.5,-15.5 + parent: 6 + type: Transform + - uid: 2604 + components: + - rot: 1.5707963267948966 rad + pos: -57.5,-15.5 + parent: 6 + type: Transform + - uid: 2605 + components: + - rot: 1.5707963267948966 rad + pos: -56.5,-15.5 + parent: 6 + type: Transform + - uid: 2606 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-15.5 + parent: 6 + type: Transform + - uid: 2607 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-14.5 + parent: 6 + type: Transform + - uid: 2608 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-13.5 + parent: 6 + type: Transform + - uid: 2609 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-13.5 + parent: 6 + type: Transform + - uid: 2612 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-19.5 + parent: 6 + type: Transform + - uid: 2613 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-20.5 + parent: 6 + type: Transform + - uid: 2614 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,-20.5 + parent: 6 + type: Transform + - uid: 2615 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-20.5 + parent: 6 + type: Transform + - uid: 2616 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-20.5 + parent: 6 + type: Transform + - uid: 2617 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-20.5 + parent: 6 + type: Transform + - uid: 2619 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-20.5 + parent: 6 + type: Transform + - uid: 2620 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-20.5 + parent: 6 + type: Transform + - uid: 2621 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-19.5 + parent: 6 + type: Transform + - uid: 2622 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-18.5 + parent: 6 + type: Transform + - uid: 2623 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-17.5 + parent: 6 + type: Transform + - uid: 2624 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-16.5 + parent: 6 + type: Transform + - uid: 3010 + components: + - pos: 3.5,-24.5 + parent: 6 + type: Transform + - uid: 3373 + components: + - pos: -40.5,-20.5 + parent: 6 + type: Transform + - uid: 3791 + components: + - pos: -34.5,-60.5 + parent: 6 + type: Transform + - uid: 3819 + components: + - pos: -29.5,-60.5 + parent: 6 + type: Transform + - uid: 4191 + components: + - pos: 14.5,21.5 + parent: 6 + type: Transform + - uid: 4192 + components: + - pos: 13.5,21.5 + parent: 6 + type: Transform + - uid: 4193 + components: + - pos: 12.5,21.5 + parent: 6 + type: Transform + - uid: 4194 + components: + - pos: 11.5,21.5 + parent: 6 + type: Transform + - uid: 4530 + components: + - pos: 1.5,-51.5 + parent: 6 + type: Transform + - uid: 4589 + components: + - pos: -31.5,-16.5 + parent: 6 + type: Transform + - uid: 4725 + components: + - pos: -4.5,-47.5 + parent: 6 + type: Transform + - uid: 4726 + components: + - pos: -3.5,-47.5 + parent: 6 + type: Transform + - uid: 4727 + components: + - pos: -2.5,-47.5 + parent: 6 + type: Transform + - uid: 4728 + components: + - pos: -1.5,-47.5 + parent: 6 + type: Transform + - uid: 4729 + components: + - pos: -0.5,-47.5 + parent: 6 + type: Transform + - uid: 4730 + components: + - pos: 0.5,-47.5 + parent: 6 + type: Transform + - uid: 4905 + components: + - pos: -28.5,7.5 + parent: 6 + type: Transform + - uid: 4943 + components: + - pos: -33.5,-23.5 + parent: 6 + type: Transform + - uid: 5117 + components: + - pos: -4.5,1.5 + parent: 6 + type: Transform + - uid: 5155 + components: + - pos: 26.5,1.5 + parent: 6 + type: Transform + - uid: 5250 + components: + - pos: -4.5,-14.5 + parent: 6 + type: Transform + - uid: 5549 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-25.5 + parent: 6 + type: Transform + - uid: 5555 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-26.5 + parent: 6 + type: Transform + - uid: 5865 + components: + - pos: -22.5,-52.5 + parent: 6 + type: Transform + - uid: 5866 + components: + - pos: -24.5,-51.5 + parent: 6 + type: Transform + - uid: 5868 + components: + - pos: -23.5,-53.5 + parent: 6 + type: Transform + - uid: 5869 + components: + - pos: -24.5,-53.5 + parent: 6 + type: Transform + - uid: 5872 + components: + - pos: -24.5,-56.5 + parent: 6 + type: Transform + - uid: 5922 + components: + - pos: -29.5,-50.5 + parent: 6 + type: Transform + - uid: 5974 + components: + - pos: -22.5,-51.5 + parent: 6 + type: Transform + - uid: 6771 + components: + - pos: -43.5,-48.5 + parent: 6 + type: Transform + - uid: 7390 + components: + - pos: -3.5,-59.5 + parent: 6 + type: Transform + - uid: 7391 + components: + - pos: -8.5,-59.5 + parent: 6 + type: Transform + - uid: 7464 + components: + - pos: -5.5,-14.5 + parent: 6 + type: Transform + - uid: 7537 + components: + - pos: -40.5,-8.5 + parent: 6 + type: Transform + - uid: 7815 + components: + - pos: 22.5,-8.5 + parent: 6 + type: Transform + - uid: 7816 + components: + - pos: 23.5,-8.5 + parent: 6 + type: Transform + - uid: 7817 + components: + - pos: 24.5,-8.5 + parent: 6 + type: Transform + - uid: 7844 + components: + - pos: -42.5,-14.5 + parent: 6 + type: Transform + - uid: 8053 + components: + - pos: -26.5,7.5 + parent: 6 + type: Transform + - uid: 8054 + components: + - pos: -40.5,-3.5 + parent: 6 + type: Transform + - uid: 8055 + components: + - pos: -40.5,5.5 + parent: 6 + type: Transform + - uid: 8289 + components: + - pos: -38.5,-54.5 + parent: 6 + type: Transform + - uid: 11016 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,-22.5 + parent: 6 + type: Transform + - uid: 13051 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-50.5 + parent: 6 + type: Transform +- proto: WallSolidRust + entities: + - uid: 2142 + components: + - pos: -20.5,-8.5 + parent: 6 + type: Transform + - uid: 3783 + components: + - pos: -32.5,-60.5 + parent: 6 + type: Transform + - uid: 3790 + components: + - pos: -33.5,-60.5 + parent: 6 + type: Transform + - uid: 4906 + components: + - pos: -27.5,7.5 + parent: 6 + type: Transform + - uid: 5867 + components: + - pos: -24.5,-55.5 + parent: 6 + type: Transform + - uid: 5870 + components: + - pos: -24.5,-52.5 + parent: 6 + type: Transform + - uid: 5871 + components: + - pos: -24.5,-54.5 + parent: 6 + type: Transform + - uid: 5923 + components: + - pos: -34.5,-26.5 + parent: 6 + type: Transform + - uid: 5928 + components: + - pos: -25.5,-57.5 + parent: 6 + type: Transform + - uid: 5929 + components: + - pos: -23.5,-57.5 + parent: 6 + type: Transform + - uid: 5930 + components: + - pos: -20.5,-53.5 + parent: 6 + type: Transform + - uid: 5931 + components: + - pos: -20.5,-54.5 + parent: 6 + type: Transform + - uid: 5932 + components: + - pos: -21.5,-57.5 + parent: 6 + type: Transform + - uid: 5933 + components: + - pos: -36.5,-28.5 + parent: 6 + type: Transform + - uid: 5934 + components: + - pos: -34.5,-27.5 + parent: 6 + type: Transform + - uid: 5936 + components: + - pos: 24.5,8.5 + parent: 6 + type: Transform + - uid: 5942 + components: + - pos: 21.5,0.5 + parent: 6 + type: Transform + - uid: 5979 + components: + - pos: 25.5,8.5 + parent: 6 + type: Transform + - uid: 5980 + components: + - pos: 23.5,0.5 + parent: 6 + type: Transform +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 13826 + components: + - pos: -68.5,-9.5 + parent: 6 + type: Transform +- proto: WallWood + entities: + - uid: 10805 + components: + - pos: 4.5,-9.5 + parent: 10465 + type: Transform + - uid: 10806 + components: + - pos: 5.5,-9.5 + parent: 10465 + type: Transform + - uid: 10808 + components: + - pos: 7.5,-9.5 + parent: 10465 + type: Transform + - uid: 10810 + components: + - pos: 9.5,-9.5 + parent: 10465 + type: Transform + - uid: 11174 + components: + - pos: 9.5,-8.5 + parent: 10465 + type: Transform + - uid: 11175 + components: + - pos: 9.5,-7.5 + parent: 10465 + type: Transform + - uid: 13065 + components: + - pos: 5.5,-4.5 + parent: 10465 + type: Transform + - uid: 13092 + components: + - pos: 6.5,-4.5 + parent: 10465 + type: Transform + - uid: 13251 + components: + - pos: 7.5,-4.5 + parent: 10465 + type: Transform + - uid: 13316 + components: + - pos: 8.5,-6.5 + parent: 10465 + type: Transform + - uid: 13345 + components: + - pos: 7.5,-6.5 + parent: 10465 + type: Transform + - uid: 13346 + components: + - pos: 9.5,-6.5 + parent: 10465 + type: Transform + - uid: 13599 + components: + - pos: 4.5,-4.5 + parent: 10465 + type: Transform + - uid: 13614 + components: + - pos: 4.5,-6.5 + parent: 10465 + type: Transform + - uid: 13615 + components: + - pos: 4.5,-7.5 + parent: 10465 + type: Transform + - uid: 13616 + components: + - pos: 4.5,-8.5 + parent: 10465 + type: Transform + - uid: 13617 + components: + - pos: 4.5,-5.5 + parent: 10465 + type: Transform + - uid: 13626 + components: + - pos: 6.5,-6.5 + parent: 10465 + type: Transform +- proto: WardrobeBlackFilled + entities: + - uid: 6209 + components: + - pos: -40.5,-33.5 + parent: 6 + 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: WardrobeBlueFilled + entities: + - uid: 4459 + components: + - pos: -49.5,-19.5 + parent: 6 + type: Transform + + - open: True + removedMasks: 20 + type: EntityStorage +- proto: WardrobeGreenFilled + entities: + - uid: 4661 + components: + - pos: -49.5,-18.5 + parent: 6 + 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: 5425 + components: + - pos: -45.5,-38.5 + parent: 6 + 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: WardrobeMixedFilled + entities: + - uid: 4660 + components: + - pos: -49.5,-17.5 + parent: 6 + 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: WardrobePinkFilled + entities: + - uid: 4642 + components: + - pos: -54.5,-17.5 + parent: 6 + 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: WardrobePrisonFilled + entities: + - uid: 1699 + components: + - pos: 9.5,-1.5 + parent: 6 + 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: 1700 + components: + - pos: 9.5,4.5 + parent: 6 + 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: WardrobeWhiteFilled + entities: + - uid: 4641 + components: + - pos: -54.5,-18.5 + parent: 6 + 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: WardrobeYellowFilled + entities: + - uid: 4454 + components: + - pos: -54.5,-19.5 + parent: 6 + 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: WarningCO2 + entities: + - uid: 13173 + components: + - pos: -41.5,14.5 + parent: 6 + type: Transform +- proto: WarningN2 + entities: + - uid: 13174 + components: + - pos: -41.5,10.5 + parent: 6 + type: Transform +- proto: WarningN2O + entities: + - uid: 13175 + components: + - pos: -41.5,16.5 + parent: 6 + type: Transform +- proto: WarningO2 + entities: + - uid: 13176 + components: + - pos: -41.5,12.5 + parent: 6 + type: Transform +- proto: WarningPlasma + entities: + - uid: 13183 + components: + - pos: -41.5,18.5 + parent: 6 + type: Transform +- proto: WarningWaste + entities: + - uid: 13177 + components: + - pos: -41.5,20.5 + parent: 6 + type: Transform +- proto: WarpPoint + entities: + - uid: 13526 + components: + - rot: 3.141592653589793 rad + pos: -60.5,-12.5 + parent: 6 + type: Transform + - location: Evac + type: WarpPoint + - uid: 13527 + components: + - rot: 3.141592653589793 rad + pos: -32.5,1.5 + parent: 6 + type: Transform + - location: Engineering + type: WarpPoint + - uid: 13528 + components: + - rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 6 + type: Transform + - location: Bridge + type: WarpPoint + - uid: 13529 + components: + - rot: 3.141592653589793 rad + pos: 12.5,1.5 + parent: 6 + type: Transform + - location: Security + type: WarpPoint + - uid: 13530 + components: + - rot: 3.141592653589793 rad + pos: 14.5,20.5 + parent: 6 + type: Transform + - uid: 13532 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-22.5 + parent: 6 + type: Transform + - location: Cafeteria + type: WarpPoint + - uid: 13533 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-37.5 + parent: 6 + type: Transform + - location: Cargo + type: WarpPoint + - uid: 13535 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-53.5 + parent: 6 + type: Transform + - location: Science + type: WarpPoint + - uid: 13536 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-75.5 + parent: 6 + type: Transform + - location: XenoArch + type: WarpPoint + - uid: 13537 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-44.5 + parent: 6 + type: Transform + - location: Dorms + type: WarpPoint + - uid: 13538 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-20.5 + parent: 6 + type: Transform + - location: Medbay + type: WarpPoint + - uid: 13539 + components: + - rot: 3.141592653589793 rad + pos: -82.5,-44.5 + parent: 6 + type: Transform + - location: Destroyed AI Core + type: WarpPoint +- proto: WaterCooler + entities: + - uid: 2657 + components: + - pos: -5.5,-54.5 + parent: 6 + type: Transform + - uid: 3374 + components: + - pos: -34.5,-20.5 + parent: 6 + type: Transform + - uid: 5172 + components: + - pos: -2.5,-3.5 + parent: 6 + type: Transform + - uid: 6025 + components: + - pos: 15.5,21.5 + parent: 6 + type: Transform + - uid: 8452 + components: + - pos: -38.5,-2.5 + parent: 6 + type: Transform +- proto: WaterTank + entities: + - uid: 11035 + components: + - pos: -40.5,1.5 + parent: 6 + type: Transform +- proto: WaterTankFull + entities: + - uid: 3797 + components: + - pos: -31.5,-62.5 + parent: 6 + type: Transform + - uid: 5311 + components: + - pos: 19.5,-47.5 + parent: 6 + type: Transform + - uid: 10891 + components: + - pos: 23.5,4.5 + parent: 6 + type: Transform + - uid: 10911 + components: + - pos: 17.5,-21.5 + parent: 6 + type: Transform + - uid: 10931 + components: + - pos: -9.5,-59.5 + parent: 6 + type: Transform + - uid: 10978 + components: + - pos: -27.5,-39.5 + parent: 6 + type: Transform + - uid: 11002 + components: + - pos: -52.5,-25.5 + parent: 6 + type: Transform + - uid: 11049 + components: + - pos: -11.5,-4.5 + parent: 6 + type: Transform +- proto: WaterTankHighCapacity + entities: + - uid: 5222 + components: + - pos: -9.5,-18.5 + parent: 6 + type: Transform +- proto: WaterVaporCanister + entities: + - uid: 4861 + components: + - pos: -30.5,13.5 + parent: 6 + type: Transform + - uid: 6096 + components: + - pos: -3.5,-75.5 + parent: 6 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 5838 + components: + - pos: -9.5,8.5 + parent: 6 + type: Transform + - uid: 5839 + components: + - pos: 10.5,8.5 + parent: 6 + type: Transform + - uid: 5840 + components: + - pos: 14.5,-2.5 + parent: 6 + type: Transform + - uid: 5841 + components: + - pos: -20.5,-29.5 + parent: 6 + type: Transform +- proto: WeaponDisabler + entities: + - uid: 3422 + components: + - pos: 17.400164,-6.338389 + parent: 6 + type: Transform + - uid: 3423 + components: + - pos: 17.6085,-6.525889 + parent: 6 + type: Transform + - uid: 3472 + components: + - pos: 16.416548,1.6528546 + parent: 6 + type: Transform +- proto: WeaponDisablerPractice + entities: + - uid: 13544 + components: + - pos: 14.422362,-2.081512 + parent: 6 + type: Transform +- proto: WeaponLaserCarbine + entities: + - uid: 4717 + components: + - pos: 19.388641,8.763136 + parent: 6 + type: Transform + - uid: 4718 + components: + - pos: 19.672617,8.479313 + parent: 6 + type: Transform +- proto: WeaponPistolMk58 + entities: + - uid: 3473 + components: + - pos: 16.68738,1.4445212 + parent: 6 + type: Transform + - uid: 4713 + components: + - pos: 17.392387,8.703319 + parent: 6 + type: Transform + - uid: 4714 + components: + - pos: 17.562773,8.47626 + parent: 6 + type: Transform +- proto: WeaponRifleLecter + entities: + - uid: 4721 + components: + - pos: 19.451618,4.56048 + parent: 6 + type: Transform +- proto: WeaponShotgunKammerer + entities: + - uid: 4719 + components: + - pos: 18.596813,4.6059422 + parent: 6 + type: Transform + - uid: 4720 + components: + - pos: 18.696205,4.3505025 + parent: 6 + type: Transform +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 6477 + components: + - pos: 11.262755,8.721378 + parent: 6 + type: Transform +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 6689 + components: + - pos: -83.5,-39.5 + parent: 6 + type: Transform + - uid: 6690 + components: + - pos: -83.5,-49.5 + parent: 6 + type: Transform +- proto: Welder + entities: + - uid: 7423 + components: + - pos: -17.525263,-51.629738 + parent: 6 + type: Transform +- proto: WelderIndustrialAdvanced + entities: + - uid: 6377 + components: + - pos: -37.47009,22.519089 + parent: 6 + type: Transform +- proto: WelderMini + entities: + - uid: 5201 + components: + - pos: -12.333718,8.362022 + parent: 6 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 4895 + components: + - pos: -35.5,-4.5 + parent: 6 + type: Transform + - uid: 4914 + components: + - pos: -35.5,22.5 + parent: 6 + type: Transform + - uid: 10890 + components: + - pos: 23.5,5.5 + parent: 6 + type: Transform + - uid: 10912 + components: + - pos: 16.5,-21.5 + parent: 6 + type: Transform + - uid: 10932 + components: + - pos: -10.5,-59.5 + parent: 6 + type: Transform + - uid: 10977 + components: + - pos: -27.5,-38.5 + parent: 6 + type: Transform + - uid: 11001 + components: + - pos: -52.5,-24.5 + parent: 6 + type: Transform + - uid: 11034 + components: + - pos: -40.5,2.5 + parent: 6 + type: Transform + - uid: 11048 + components: + - pos: -11.5,-3.5 + parent: 6 + type: Transform +- proto: WetFloorSign + entities: + - uid: 7637 + components: + - pos: 27.873884,5.368929 + parent: 6 + type: Transform + - uid: 7638 + components: + - pos: 30.477365,5.5147624 + parent: 6 + type: Transform +- proto: Windoor + entities: + - uid: 5416 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-39.5 + parent: 6 + type: Transform + - uid: 7744 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-40.5 + parent: 6 + type: Transform +- proto: WindoorArmoryLocked + entities: + - uid: 272 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 6 + type: Transform + - uid: 273 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 6 + type: Transform + - uid: 4698 + components: + - pos: 17.5,8.5 + parent: 6 + type: Transform + - uid: 4699 + components: + - pos: 18.5,8.5 + parent: 6 + type: Transform + - uid: 4700 + components: + - pos: 19.5,8.5 + parent: 6 + type: Transform + - uid: 4701 + components: + - rot: 3.141592653589793 rad + pos: 17.5,4.5 + parent: 6 + type: Transform + - uid: 4702 + components: + - rot: 3.141592653589793 rad + pos: 18.5,4.5 + parent: 6 + type: Transform + - uid: 4703 + components: + - rot: 3.141592653589793 rad + pos: 19.5,4.5 + parent: 6 + type: Transform + - uid: 4889 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 6 + type: Transform +- proto: WindoorBarLocked + entities: + - uid: 828 + components: + - pos: -0.5,-18.5 + parent: 6 + type: Transform +- proto: WindoorBrigLocked + entities: + - uid: 7796 + components: + - pos: 12.5,-18.5 + parent: 6 + type: Transform +- proto: WindoorChemistryLocked + entities: + - uid: 4817 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-18.5 + parent: 6 + type: Transform + - uid: 4819 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-15.5 + parent: 6 + type: Transform +- proto: WindoorCommandLocked + entities: + - uid: 3866 + components: + - pos: -54.5,-45.5 + parent: 6 + type: Transform + - uid: 13264 + components: + - rot: 3.141592653589793 rad + pos: -54.5,-43.5 + parent: 6 + type: Transform +- proto: WindoorEngineeringLocked + entities: + - uid: 4899 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-8.5 + parent: 6 + type: Transform + - uid: 4900 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-8.5 + parent: 6 + type: Transform + - uid: 4901 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-8.5 + parent: 6 + type: Transform + - uid: 5053 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-5.5 + parent: 6 + type: Transform +- proto: WindoorHeadOfPersonnelLocked + entities: + - uid: 707 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 6 + type: Transform +- proto: WindoorHydroponicsLocked + entities: + - uid: 5219 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-16.5 + parent: 6 + type: Transform + - uid: 5220 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-15.5 + parent: 6 + type: Transform + - uid: 5221 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-14.5 + parent: 6 + type: Transform +- proto: WindoorJanitorLocked + entities: + - uid: 4405 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,3.5 + parent: 6 + type: Transform +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 8550 + components: + - pos: -10.5,-23.5 + parent: 6 + type: Transform +- proto: WindoorMedicalLocked + entities: + - uid: 4836 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-23.5 + parent: 6 + type: Transform +- proto: WindoorScienceLocked + entities: + - uid: 7592 + components: + - pos: -11.5,-49.5 + parent: 6 + type: Transform +- proto: WindoorSecure + entities: + - uid: 5101 + components: + - pos: -0.5,-8.5 + parent: 6 + type: Transform +- proto: WindoorSecureCargoLocked + entities: + - uid: 5608 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-36.5 + parent: 6 + type: Transform + - uid: 5609 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-35.5 + parent: 6 + type: Transform +- proto: WindoorSecureSalvageLocked + entities: + - uid: 5285 + components: + - pos: 4.5,-46.5 + parent: 6 + type: Transform +- proto: WindoorSecurityLocked + entities: + - uid: 5251 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-30.5 + parent: 6 + type: Transform + - uid: 5252 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-29.5 + parent: 6 + type: Transform +- proto: Window + entities: + - uid: 249 + components: + - pos: -11.5,-13.5 + parent: 6 + type: Transform + - uid: 250 + components: + - pos: -10.5,-13.5 + parent: 6 + type: Transform + - uid: 251 + components: + - pos: -9.5,-13.5 + parent: 6 + type: Transform + - uid: 261 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 6 + type: Transform + - uid: 262 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-13.5 + parent: 6 + type: Transform + - uid: 263 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-13.5 + parent: 6 + type: Transform + - uid: 313 + components: + - pos: -12.5,-18.5 + parent: 6 + type: Transform + - uid: 314 + components: + - pos: -12.5,-19.5 + parent: 6 + type: Transform + - uid: 473 + components: + - pos: 26.5,-9.5 + parent: 6 + type: Transform + - uid: 513 + components: + - pos: 28.5,-9.5 + parent: 6 + type: Transform + - uid: 589 + components: + - pos: 44.5,-4.5 + parent: 6 + type: Transform + - uid: 590 + components: + - pos: 44.5,-7.5 + parent: 6 + type: Transform + - uid: 591 + components: + - pos: 44.5,4.5 + parent: 6 + type: Transform + - uid: 592 + components: + - pos: 44.5,1.5 + parent: 6 + type: Transform + - uid: 764 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-13.5 + parent: 6 + type: Transform + - uid: 765 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-13.5 + parent: 6 + type: Transform + - uid: 829 + components: + - pos: 3.5,-19.5 + parent: 6 + type: Transform + - uid: 836 + components: + - pos: -12.5,-22.5 + parent: 6 + type: Transform + - uid: 843 + components: + - pos: -12.5,-21.5 + parent: 6 + type: Transform + - uid: 847 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-46.5 + parent: 6 + type: Transform + - uid: 854 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-46.5 + parent: 6 + type: Transform + - uid: 872 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-19.5 + parent: 6 + type: Transform + - uid: 873 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-19.5 + parent: 6 + type: Transform + - uid: 920 + components: + - pos: -16.5,-26.5 + parent: 6 + type: Transform + - uid: 921 + components: + - pos: -16.5,-25.5 + parent: 6 + type: Transform + - uid: 922 + components: + - pos: -32.5,-19.5 + parent: 6 + type: Transform + - uid: 941 + components: + - pos: -34.5,-19.5 + parent: 6 + type: Transform + - uid: 1145 + components: + - pos: 7.5,-37.5 + parent: 6 + type: Transform + - uid: 1146 + components: + - pos: 7.5,-38.5 + parent: 6 + type: Transform + - uid: 1147 + components: + - pos: 10.5,-37.5 + parent: 6 + type: Transform + - uid: 1218 + components: + - pos: -10.5,-46.5 + parent: 6 + type: Transform + - uid: 1219 + components: + - pos: -9.5,-46.5 + parent: 6 + type: Transform + - uid: 1302 + components: + - pos: -9.5,-49.5 + parent: 6 + type: Transform + - uid: 1303 + components: + - pos: -10.5,-49.5 + parent: 6 + type: Transform + - uid: 1435 + components: + - pos: -17.5,-17.5 + parent: 6 + type: Transform + - uid: 1550 + components: + - pos: -20.5,-24.5 + parent: 6 + type: Transform + - uid: 1551 + components: + - pos: -21.5,-24.5 + parent: 6 + type: Transform + - uid: 1626 + components: + - pos: -16.5,-38.5 + parent: 6 + type: Transform + - uid: 1674 + components: + - pos: -16.5,-39.5 + parent: 6 + type: Transform + - uid: 1675 + components: + - pos: -16.5,-40.5 + parent: 6 + type: Transform + - uid: 2471 + components: + - pos: -50.5,-35.5 + parent: 6 + type: Transform + - uid: 2472 + components: + - pos: -50.5,-34.5 + parent: 6 + type: Transform + - uid: 2475 + components: + - pos: -50.5,-30.5 + parent: 6 + type: Transform + - uid: 2476 + components: + - pos: -50.5,-31.5 + parent: 6 + type: Transform + - uid: 2540 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-13.5 + parent: 6 + type: Transform + - uid: 2541 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-13.5 + parent: 6 + type: Transform + - uid: 3645 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-49.5 + parent: 6 + type: Transform + - uid: 3662 + components: + - pos: -16.5,-18.5 + parent: 6 + type: Transform + - uid: 4303 + components: + - pos: -16.5,-23.5 + parent: 6 + type: Transform + - uid: 4309 + components: + - pos: -16.5,-20.5 + parent: 6 + type: Transform + - uid: 4312 + components: + - pos: -16.5,-22.5 + parent: 6 + type: Transform + - uid: 5537 + components: + - pos: -27.5,-21.5 + parent: 6 + type: Transform + - uid: 5560 + components: + - pos: 3.5,-22.5 + parent: 6 + type: Transform + - uid: 5924 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-46.5 + parent: 6 + type: Transform + - uid: 5925 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-46.5 + parent: 6 + type: Transform + - uid: 5926 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-46.5 + parent: 6 + type: Transform + - uid: 5939 + components: + - pos: 29.5,-4.5 + parent: 6 + type: Transform + - uid: 5940 + components: + - pos: 29.5,-6.5 + parent: 6 + type: Transform + - uid: 5941 + components: + - pos: 29.5,-8.5 + parent: 6 + type: Transform + - uid: 5944 + components: + - pos: 7.5,-14.5 + parent: 6 + type: Transform + - uid: 5945 + components: + - pos: 7.5,-16.5 + parent: 6 + type: Transform + - uid: 8526 + components: + - pos: -11.5,-23.5 + parent: 6 + type: Transform + - uid: 10807 + components: + - pos: 6.5,-9.5 + parent: 10465 + type: Transform + - uid: 10809 + components: + - pos: 8.5,-9.5 + parent: 10465 + type: Transform +- proto: WindowDirectional + entities: + - uid: 3654 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 6 + type: Transform + - uid: 4834 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-21.5 + parent: 6 + type: Transform + - uid: 4835 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-22.5 + parent: 6 + type: Transform + - uid: 6525 + components: + - rot: 3.141592653589793 rad + pos: -61.5,-12.5 + parent: 6 + type: Transform + - uid: 6526 + components: + - rot: 3.141592653589793 rad + pos: -59.5,-12.5 + parent: 6 + type: Transform + - uid: 6527 + components: + - rot: 3.141592653589793 rad + pos: -60.5,-12.5 + parent: 6 + type: Transform + - uid: 6528 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-12.5 + parent: 6 + type: Transform + - uid: 6529 + components: + - pos: -59.5,-12.5 + parent: 6 + type: Transform + - uid: 6530 + components: + - pos: -60.5,-12.5 + parent: 6 + type: Transform + - uid: 6531 + components: + - pos: -61.5,-12.5 + parent: 6 + type: Transform + - uid: 6532 + components: + - rot: -1.5707963267948966 rad + pos: -61.5,-12.5 + parent: 6 + type: Transform + - uid: 7743 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-40.5 + parent: 6 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 63 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 6 + type: Transform + - uid: 64 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 6 + type: Transform + - uid: 65 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 6 + type: Transform + - uid: 2136 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-5.5 + parent: 6 + type: Transform + - uid: 2137 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-5.5 + parent: 6 + type: Transform + - uid: 2517 + components: + - rot: 3.141592653589793 rad + pos: -53.5,-43.5 + parent: 6 + type: Transform + - uid: 3860 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-47.5 + parent: 6 + type: Transform + - uid: 3863 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-41.5 + parent: 6 + type: Transform + - uid: 4709 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,4.5 + parent: 6 + type: Transform + - uid: 4710 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,4.5 + parent: 6 + type: Transform + - uid: 4711 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,8.5 + parent: 6 + type: Transform + - uid: 4712 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,8.5 + parent: 6 + type: Transform + - uid: 5442 + components: + - pos: -53.5,-45.5 + parent: 6 + type: Transform + - uid: 5444 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-46.5 + parent: 6 + type: Transform + - uid: 5445 + components: + - rot: 3.141592653589793 rad + pos: -55.5,-43.5 + parent: 6 + type: Transform + - uid: 5456 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,-42.5 + parent: 6 + type: Transform + - uid: 5457 + components: + - pos: -55.5,-45.5 + parent: 6 + type: Transform + - uid: 7797 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-19.5 + parent: 6 + type: Transform + - uid: 8385 + components: + - pos: -8.5,12.5 + parent: 6 + type: Transform + - uid: 8386 + components: + - pos: -7.5,12.5 + parent: 6 + type: Transform + - uid: 8387 + components: + - pos: -6.5,12.5 + parent: 6 + type: Transform + - uid: 8388 + components: + - pos: -5.5,12.5 + parent: 6 + type: Transform + - uid: 8389 + components: + - pos: -3.5,12.5 + parent: 6 + type: Transform + - uid: 8390 + components: + - pos: -2.5,12.5 + parent: 6 + type: Transform + - uid: 8391 + components: + - pos: -1.5,12.5 + parent: 6 + type: Transform + - uid: 8392 + components: + - pos: -0.5,12.5 + parent: 6 + type: Transform +- proto: WindowTintedDirectional + entities: + - uid: 1601 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-32.5 + parent: 6 + type: Transform + - uid: 1602 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-30.5 + parent: 6 + type: Transform + - uid: 1603 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-28.5 + parent: 6 + type: Transform + - uid: 1650 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-41.5 + parent: 6 + type: Transform + - uid: 1897 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-40.5 + parent: 6 + type: Transform + - uid: 1898 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-41.5 + parent: 6 + type: Transform + - uid: 1899 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-40.5 + parent: 6 + type: Transform + - uid: 1901 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-40.5 + parent: 6 + type: Transform + - uid: 1902 + components: + - pos: -35.5,-40.5 + parent: 6 + type: Transform + - uid: 1903 + components: + - pos: -36.5,-40.5 + parent: 6 + type: Transform + - uid: 5159 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 6 + type: Transform + - uid: 5999 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,23.5 + parent: 6 + type: Transform +- proto: Wirecutter + entities: + - uid: 5380 + components: + - pos: -2.846246,-56.288673 + parent: 6 + type: Transform +- proto: WoodDoor + entities: + - uid: 4421 + components: + - pos: -29.5,-52.5 + parent: 6 + type: Transform + - SecondsUntilStateChange: -241557.64 + state: Opening + type: Door + - uid: 13315 + components: + - pos: 7.5,-5.5 + parent: 10465 + type: Transform + - uid: 13627 + components: + - pos: 5.5,-6.5 + parent: 10465 + type: Transform +- proto: Wrench + entities: + - uid: 5378 + components: + - pos: -3.4851913,-56.444775 + parent: 6 + type: Transform + - uid: 7387 + components: + - pos: -7.495751,-72.485725 + parent: 6 + type: Transform +... diff --git a/Resources/Maps/nukieplanet.yml b/Resources/Maps/nukieplanet.yml index 1092edcdc5..8856d44c3d 100644 --- a/Resources/Maps/nukieplanet.yml +++ b/Resources/Maps/nukieplanet.yml @@ -111,8 +111,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -1594,499 +1593,79 @@ entities: - pos: -21.5,1.5 parent: 104 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 428 components: - pos: -17.5,1.5 parent: 104 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 433 components: - pos: -13.5,1.5 parent: 104 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 816 components: - rot: 3.141592653589793 rad pos: -17.5,-20.5 parent: 104 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 835 components: - rot: 3.141592653589793 rad pos: -25.5,-20.5 parent: 104 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 854 components: - pos: -33.5,1.5 parent: 104 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 860 components: - pos: -29.5,1.5 parent: 104 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 862 components: - rot: 3.141592653589793 rad pos: -29.5,-20.5 parent: 104 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 863 components: - pos: -25.5,1.5 parent: 104 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 908 components: - rot: 3.141592653589793 rad pos: -33.5,-20.5 parent: 104 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 914 components: - rot: 3.141592653589793 rad pos: -21.5,-20.5 parent: 104 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 935 components: - rot: 3.141592653589793 rad pos: -13.5,-20.5 parent: 104 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockMedicalGlass entities: - uid: 1119 @@ -6250,15 +5829,13 @@ entities: - pos: -4.5,-2.5 parent: 104 type: Transform - - fixtures: [] - type: Fixtures + - uid: 2438 components: - pos: 10.5,-3.5 parent: 104 type: Transform - - fixtures: [] - type: Fixtures + - proto: FloraRockSolid01 entities: - uid: 1707 @@ -11728,24 +11305,6 @@ entities: - pos: -15.435635,22.055351 parent: 104 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.90000004,-0.90000004 - - 0.90000004,0.90000004 - - -0.90000004,0.90000004 - - -0.90000004,-0.90000004 - mask: - - Impassable - - HighImpassable - layer: [] - density: 1 - hard: True - restitution: 0.3 - friction: 0.2 - id: null - type: Fixtures - uid: 2315 components: - pos: -1.5,-16.5 diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 966c4fb5aa..516cb085dc 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -187,8 +187,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -5060,84 +5059,14 @@ entities: pos: -7.5,-50.5 parent: 4812 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3762 components: - rot: 1.5707963267948966 rad pos: -7.5,-43.5 parent: 4812 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleLocked entities: - uid: 3190 @@ -5146,418 +5075,68 @@ entities: pos: 23.5,27.5 parent: 4812 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 3191 components: - rot: 1.5707963267948966 rad pos: 23.5,25.5 parent: 4812 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 4134 components: - rot: 1.5707963267948966 rad pos: 34.5,-5.5 parent: 4812 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 4135 components: - rot: 1.5707963267948966 rad pos: 34.5,-7.5 parent: 4812 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 4136 components: - rot: 1.5707963267948966 rad pos: 34.5,0.5 parent: 4812 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 4137 components: - rot: 1.5707963267948966 rad pos: 34.5,2.5 parent: 4812 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 4736 components: - rot: -1.5707963267948966 rad pos: -14.5,-43.5 parent: 4812 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 4737 components: - rot: -1.5707963267948966 rad pos: -14.5,-50.5 parent: 4812 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 9656 components: - pos: -10.5,-59.5 parent: 4812 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 12107 components: - pos: -11.5,-59.5 parent: 4812 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalLocked entities: - uid: 2737 @@ -39088,58 +38667,50 @@ entities: pos: -15.5,29.5 parent: 4812 type: Transform - - fixtures: [] - type: Fixtures + - uid: 2491 components: - rot: -1.5707963267948966 rad pos: 10.5,30.5 parent: 4812 type: Transform - - fixtures: [] - type: Fixtures + - uid: 3383 components: - pos: -21.5,-8.5 parent: 4812 type: Transform - - fixtures: [] - type: Fixtures + - uid: 3465 components: - pos: 5.5,-6.5 parent: 4812 type: Transform - - fixtures: [] - type: Fixtures + - uid: 4458 components: - pos: 16.5,6.5 parent: 4812 type: Transform - - fixtures: [] - type: Fixtures + - uid: 7029 components: - pos: -26.5,-31.5 parent: 4812 type: Transform - - fixtures: [] - type: Fixtures + - uid: 7383 components: - pos: -10.5,-16.5 parent: 4812 type: Transform - - fixtures: [] - type: Fixtures + - uid: 8245 components: - pos: -19.5,29.5 parent: 4812 type: Transform - - fixtures: [] - type: Fixtures + - proto: FloorTileItemGold entities: - uid: 10471 @@ -63158,27 +62729,7 @@ entities: type: Transform - locked: False type: Lock - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.25,-0.48 - - 0.25,0.48 - - -0.25,0.48 - - -0.25,-0.48 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - type: Fixtures + - open: True removedMasks: 20 type: EntityStorage @@ -65276,8 +64827,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 2668 components: - pos: 1.5,34.5 @@ -65285,8 +64835,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 3880 components: - pos: 9.5,56.5 @@ -65294,8 +64843,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 6194 components: - pos: 7.5,-18.5 @@ -65303,8 +64851,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 6229 components: - pos: 11.5,-28.5 @@ -65312,8 +64859,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 8579 components: - pos: -20.5,7.5 @@ -65321,8 +64867,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 10713 components: - pos: -30.5,-7.5 @@ -65330,8 +64875,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 10849 components: - pos: -27.5,-3.5 @@ -65339,8 +64883,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - proto: PowerDrill entities: - uid: 6309 @@ -68273,62 +67816,7 @@ entities: pos: 10.5,-38.5 parent: 4812 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.55,-0.55 - - 0.55,-0.55 - - 0.55,0.55 - - -0.55,0.55 - mask: [] - layer: - - Impassable - - MidImpassable - - LowImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: conveyor - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.15,-0.15 - - 0.15,0.15 - - -0.15,0.15 - - -0.15,-0.15 - mask: [] - layer: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: brrt - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - layer: - - BulletImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: collision - type: Fixtures + - inputs: Reverse: - port: Right @@ -85813,8 +85301,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 2608 components: - pos: -10.5,25.5 @@ -85822,8 +85309,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 4572 components: - pos: 27.5,3.5 @@ -85831,8 +85317,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 6306 components: - pos: 28.5,-19.5 @@ -85840,8 +85325,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 6483 components: - pos: -1.5,-27.5 @@ -85849,8 +85333,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 8266 components: - pos: -20.5,22.5 @@ -85858,8 +85341,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 8345 components: - pos: -31.5,12.5 @@ -85867,8 +85349,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - uid: 8346 components: - pos: -31.5,14.5 @@ -85876,8 +85357,7 @@ entities: type: Transform - canCollide: False type: Physics - - fixtures: [] - type: Fixtures + - proto: WeaponDisabler entities: - uid: 3738 diff --git a/Resources/Maps/origin.yml b/Resources/Maps/origin.yml index 755a7ef858..8e165eb5cb 100644 --- a/Resources/Maps/origin.yml +++ b/Resources/Maps/origin.yml @@ -407,8 +407,7 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - - fixtures: [] - type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -12294,168 +12293,28 @@ entities: pos: 44.5,-82.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 320 components: - rot: -1.5707963267948966 rad pos: 44.5,-89.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 321 components: - rot: 1.5707963267948966 rad pos: 34.5,-89.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 322 components: - rot: 1.5707963267948966 rad pos: 34.5,-82.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - uid: 323 @@ -12464,168 +12323,28 @@ entities: pos: 69.5,-3.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 324 components: - rot: 1.5707963267948966 rad pos: 69.5,-13.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 325 components: - rot: 1.5707963267948966 rad pos: 69.5,-11.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 326 components: - rot: 1.5707963267948966 rad pos: 69.5,-5.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleEscape entities: - uid: 327 @@ -12634,124 +12353,19 @@ entities: pos: -17.5,70.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 328 components: - pos: 48.5,-95.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 329 components: - pos: 30.5,-95.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockExternalGlassShuttleLocked entities: - uid: 330 @@ -12760,587 +12374,95 @@ entities: pos: -59.5,-71.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 331 components: - rot: -1.5707963267948966 rad pos: -59.5,-73.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 332 components: - rot: -1.5707963267948966 rad pos: -59.5,-79.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 333 components: - rot: -1.5707963267948966 rad pos: -59.5,-81.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 334 components: - pos: -54.5,-90.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 335 components: - rot: 3.141592653589793 rad pos: -54.5,-84.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 336 components: - rot: -1.5707963267948966 rad pos: -53.5,20.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 337 components: - rot: -1.5707963267948966 rad pos: -53.5,22.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 338 components: - rot: 3.141592653589793 rad pos: -13.5,75.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 339 components: - rot: 3.141592653589793 rad pos: -12.5,75.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 340 components: - rot: 3.141592653589793 rad pos: -21.5,75.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 341 components: - rot: 3.141592653589793 rad pos: -22.5,75.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 342 components: - rot: -1.5707963267948966 rad pos: -53.5,42.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.49,-0.49 - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures - uid: 343 components: - rot: -1.5707963267948966 rad pos: -53.5,43.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.49,-0.49 - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 344 @@ -14248,168 +13370,28 @@ entities: pos: 79.5,-37.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 505 components: - rot: 1.5707963267948966 rad pos: 79.5,-34.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 506 components: - rot: 1.5707963267948966 rad pos: 79.5,-36.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - uid: 507 components: - rot: 1.5707963267948966 rad pos: 79.5,-33.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures + - proto: AirlockHeadOfPersonnelLocked entities: - uid: 508 @@ -81981,27 +80963,7 @@ entities: - pos: -22.5,-31.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.25,-0.48 - - 0.25,0.48 - - -0.25,0.48 - - -0.25,-0.48 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - type: Fixtures + - open: True removedMasks: 20 type: EntityStorage @@ -101310,143 +100272,123 @@ entities: - pos: 3.5,-48.5 parent: 2 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14889 components: - pos: -1.5,-66.5 parent: 2 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14890 components: - pos: 3.5,8.5 parent: 2 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14891 components: - pos: -15.5,-78.5 parent: 2 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14892 components: - pos: -1.5,-64.5 parent: 2 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14893 components: - pos: -7.5,-65.5 parent: 2 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14894 components: - pos: -9.5,-22.5 parent: 2 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14895 components: - pos: -15.5,-75.5 parent: 2 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14896 components: - pos: -20.5,-89.5 parent: 2 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14897 components: - pos: -25.5,-89.5 parent: 2 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14898 components: - pos: 53.5,17.5 parent: 2 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14899 components: - pos: 57.5,5.5 parent: 2 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14900 components: - pos: 62.5,12.5 parent: 2 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14901 components: - pos: 62.5,22.5 parent: 2 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14902 components: - rot: 3.141592653589793 rad pos: 71.5,-49.5 parent: 2 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14903 components: - pos: -9.5,-69.5 parent: 2 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14904 components: - pos: 1.5,-6.5 parent: 2 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14905 components: - pos: 3.5,-46.5 parent: 2 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14906 components: - pos: 1.5,12.5 parent: 2 type: Transform - - fixtures: [] - type: Fixtures + - uid: 14907 components: - rot: 3.141592653589793 rad pos: 45.5,6.5 parent: 2 type: Transform - - fixtures: [] - type: Fixtures + - proto: FloorTileItemFreezer entities: - uid: 14908 @@ -167029,62 +165971,7 @@ entities: pos: 17.5,-55.5 parent: 2 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.55,-0.55 - - 0.55,-0.55 - - 0.55,0.55 - - -0.55,0.55 - mask: [] - layer: - - Impassable - - MidImpassable - - LowImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: conveyor - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.15,-0.15 - - 0.15,0.15 - - -0.15,0.15 - - -0.15,-0.15 - mask: [] - layer: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: brrt - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - layer: - - BulletImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: collision - type: Fixtures + - inputs: Reverse: - port: Right diff --git a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml index beea18f540..bd2b1781b3 100644 --- a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml +++ b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml @@ -56,14 +56,15 @@ - type: Physics - type: Fixtures fixtures: - - hard: false - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.4,0.4,0.4" - mask: - - ItemMask - layer: - - SlipLayer + fix1: + hard: false + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.4,0.4,0.4" + mask: + - ItemMask + layer: + - SlipLayer - type: Smoke - type: NodeContainer nodes: @@ -139,12 +140,13 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb {} - layer: - - WallLayer - mask: - - WallLayer + fix1: + shape: + !type:PhysShapeAabb {} + layer: + - WallLayer + mask: + - WallLayer - type: Occluder - type: Transform anchored: true diff --git a/Resources/Prototypes/Entities/Effects/portal.yml b/Resources/Prototypes/Entities/Effects/portal.yml index af21e6bd96..3f533ee8bb 100644 --- a/Resources/Prototypes/Entities/Effects/portal.yml +++ b/Resources/Prototypes/Entities/Effects/portal.yml @@ -12,15 +12,15 @@ sprite: /Textures/Effects/portal.rsi - type: Fixtures fixtures: - - id: portalFixture - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.48,0.25,0.48" - mask: - - FullTileMask - layer: - - WallLayer - hard: false + portalFixture: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.48,0.25,0.48" + mask: + - FullTileMask + layer: + - WallLayer + hard: false - type: Portal - type: entity diff --git a/Resources/Prototypes/Entities/Effects/puddle.yml b/Resources/Prototypes/Entities/Effects/puddle.yml index 2f65069b2a..a638cc580f 100644 --- a/Resources/Prototypes/Entities/Effects/puddle.yml +++ b/Resources/Prototypes/Entities/Effects/puddle.yml @@ -92,7 +92,7 @@ bodyType: Static - type: Fixtures fixtures: - - id: slipFixture + slipFixture: shape: !type:PhysShapeAabb bounds: "-0.4,-0.4,0.4,0.4" diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 96aad87a52..c28fa10ec8 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -18,14 +18,15 @@ speechSounds: Squeak - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.25 - density: 10 - mask: - - FlyingMobMask - layer: - - FlyingMobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.25 + density: 10 + mask: + - FlyingMobMask + layer: + - FlyingMobLayer - type: DamageStateVisuals states: Alive: @@ -82,14 +83,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.1 - density: 30 - mask: - - FlyingMobMask - layer: - - FlyingMobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.1 + density: 30 + mask: + - FlyingMobMask + layer: + - FlyingMobLayer - type: MobState - type: MobThresholds thresholds: @@ -159,14 +161,15 @@ sprite: Mobs/Animals/chicken.rsi - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 8 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 8 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: DamageStateVisuals states: @@ -215,14 +218,15 @@ sprite: Mobs/Animals/duck.rsi - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 5 #They actually are pretty light, I looked it up - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 5 #They actually are pretty light, I looked it up + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: DamageStateVisuals states: @@ -318,14 +322,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.2 - density: 7.5 - mask: - - FlyingMobMask - layer: - - FlyingMobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.2 + density: 7.5 + mask: + - FlyingMobMask + layer: + - FlyingMobLayer - type: MobState - type: MobThresholds thresholds: @@ -368,14 +373,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.40 - density: 1400 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.40 + density: 1400 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: DamageStateVisuals states: @@ -436,14 +442,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 5 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 5 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: DamageStateVisuals states: @@ -478,14 +485,15 @@ sprite: Mobs/Animals/goat.rsi - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 150 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 150 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: DamageStateVisuals states: @@ -544,14 +552,15 @@ - type: Appearance - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 25 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 25 + mask: + - MobMask + layer: + - MobLayer - type: DamageStateVisuals states: Alive: @@ -592,14 +601,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.48 - density: 200 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.48 + density: 200 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: DamageStateVisuals states: @@ -634,14 +644,15 @@ sprite: Mobs/Animals/kangaroo.rsi - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 130 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 130 + mask: + - MobMask + layer: + - MobLayer - type: Physics - type: Appearance - type: Inventory @@ -727,14 +738,15 @@ - type: InventorySlots - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 80 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 80 + mask: + - MobMask + layer: + - MobLayer - type: Strippable - type: UserInterface interfaces: @@ -819,14 +831,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.2 - density: 100 - mask: - - SmallMobMask - layer: - - SmallMobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.2 + density: 100 + mask: + - SmallMobMask + layer: + - SmallMobLayer - type: MobState - type: MobThresholds thresholds: @@ -973,14 +986,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.2 - density: 50 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.2 + density: 50 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: DamageStateVisuals states: @@ -1027,14 +1041,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.2 - density: 5 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.2 + density: 5 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: DamageStateVisuals states: @@ -1073,14 +1088,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.2 - density: 5 - mask: - - SmallMobMask - layer: - - SmallMobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.2 + density: 5 + mask: + - SmallMobMask + layer: + - SmallMobLayer - type: Appearance - type: DamageStateVisuals states: @@ -1124,14 +1140,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.25 - density: 10 - mask: - - FlyingMobMask - layer: - - FlyingMobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.25 + density: 10 + mask: + - FlyingMobMask + layer: + - FlyingMobLayer - type: Appearance - type: DamageStateVisuals states: @@ -1170,14 +1187,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.25 - density: 100 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.25 + density: 100 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: DamageStateVisuals states: @@ -1226,14 +1244,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.25 - density: 25 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.25 + density: 25 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: DamageStateVisuals states: @@ -1293,14 +1312,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.25 - density: 10 - mask: - - SmallMobMask - layer: - - SmallMobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.25 + density: 10 + mask: + - SmallMobMask + layer: + - SmallMobLayer - type: DamageStateVisuals states: Alive: @@ -1342,14 +1362,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 130 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 130 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: DamageStateVisuals states: @@ -1426,14 +1447,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 50 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 50 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: Inventory speciesId: possum @@ -1481,14 +1503,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 50 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 50 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: Inventory speciesId: possum #close enough @@ -1536,14 +1559,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 50 #They actually are pretty light, I looked it up - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 50 #They actually are pretty light, I looked it up + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: Inventory speciesId: fox @@ -1593,14 +1617,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 50 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 50 + mask: + - MobMask + layer: + - MobLayer - type: Inventory speciesId: dog templateId: pet @@ -1745,14 +1770,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 15 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 15 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: Inventory speciesId: cat @@ -1888,14 +1914,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 15 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 15 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: Inventory speciesId: sloth @@ -1943,14 +1970,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 5 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 5 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: Inventory speciesId: fox #close enough @@ -2010,14 +2038,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.2 - density: 120 - mask: - - SmallMobMask - layer: - - SmallMobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.2 + density: 120 + mask: + - SmallMobMask + layer: + - SmallMobLayer - type: MobState - type: MobThresholds thresholds: @@ -2116,14 +2145,15 @@ sprite: Mobs/Animals/pig.rsi - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 250 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 250 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: Inventory speciesId: pig diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml index 768688bec9..fe63f8a648 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml @@ -23,7 +23,8 @@ - type: Physics - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeCircle radius: 0.40 density: 80 @@ -113,7 +114,8 @@ - type: Physics - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeCircle radius: 0.40 density: 10 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml b/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml index 78fa211aa0..e763ecac9f 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml @@ -24,14 +24,15 @@ bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.35,-0.35,0.35,0.35" - density: 1000 - mask: - - MobMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.35,-0.35,0.35,0.35" + density: 1000 + mask: + - MobMask + layer: + - MachineLayer - type: AnimationPlayer - type: MeleeWeapon hidden: true diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml index 825067a688..0278b61525 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml @@ -143,14 +143,15 @@ components: - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 40 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 40 + mask: + - MobMask + layer: + - MobLayer - type: Grammar attributes: gender: male @@ -186,14 +187,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 12 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 12 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: Inventory speciesId: cat @@ -244,14 +246,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 20 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 20 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: Inventory speciesId: puppy @@ -342,14 +345,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 50 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 50 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: Inventory speciesId: dog @@ -502,14 +506,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 130 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 130 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: DamageStateVisuals states: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml index 1d0d50d60d..afc890a15b 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml @@ -29,14 +29,15 @@ bodyType: KinematicController - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.3 - density: 230 - mask: - - SmallMobMask - layer: - - SmallMobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.3 + density: 230 + mask: + - SmallMobMask + layer: + - SmallMobLayer - type: MobState - type: MobThresholds thresholds: @@ -166,14 +167,15 @@ Blunt: 66 #oof ouch owie my bones - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 400 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 400 + mask: + - MobMask + layer: + - MobLayer - type: SlowOnDamage speedModifierThresholds: 200: 0.7 @@ -210,14 +212,15 @@ bodyType: KinematicController - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.2 - density: 30 #Bulky by mouse standards... - mask: - - SmallMobMask - layer: - - SmallMobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.2 + density: 30 #Bulky by mouse standards... + mask: + - SmallMobMask + layer: + - SmallMobLayer - type: MobState - type: MobThresholds thresholds: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml index 46b3086566..3523170296 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml @@ -28,12 +28,13 @@ bodyType: KinematicController - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.40 - density: 80 - mask: - - GhostImpassable + fix1: + shape: + !type:PhysShapeCircle + radius: 0.40 + density: 80 + mask: + - GhostImpassable - type: HeatResistance - type: MovementIgnoreGravity - type: Damageable diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index 0540b60cc5..2e7794997f 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -23,14 +23,15 @@ - type: InteractionOutline - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 50 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 50 + mask: + - MobMask + layer: + - MobLayer - type: MovementSpeedModifier baseWalkSpeed : 3 baseSprintSpeed : 4 @@ -121,19 +122,20 @@ bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - id: "slips" - hard: false - layer: - - SlipLayer - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 20 - mask: - - MobMask + slips: + shape: + !type:PhysShapeCircle + radius: 0.35 + hard: false + layer: + - SlipLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 20 + mask: + - MobMask - type: Construction graph: HonkBot node: bot diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml index 71ed356e28..7b386c5a33 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml @@ -49,15 +49,16 @@ bodyType: KinematicController # Same for all inheritors - type: Fixtures fixtures: - - shape: - # Circles, cuz rotation of rectangles looks very bad - !type:PhysShapeCircle - radius: 0.35 - density: 50 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + # Circles, cuz rotation of rectangles looks very bad + !type:PhysShapeCircle + radius: 0.35 + density: 50 + mask: + - MobMask + layer: + - MobLayer - type: SolutionContainerManager - type: Bloodstream bloodlossDamage: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml index 03a71c67d7..cee3826563 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml @@ -19,14 +19,15 @@ state: blue_adult_slime - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.30 - density: 80 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.30 + density: 80 + mask: + - MobMask + layer: + - MobLayer - type: MobThresholds thresholds: 0: Alive diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml index f5c264ebab..956147b7e8 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml @@ -22,14 +22,15 @@ shader: unshaded - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.40 - density: 100 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.40 + density: 100 + mask: + - MobMask + layer: + - MobLayer - type: MobThresholds thresholds: 0: Alive @@ -249,14 +250,15 @@ bloodReagent: Cryoxadone - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 120 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 120 + mask: + - MobMask + layer: + - MobLayer - type: MeleeWeapon hidden: true soundHit: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/spacetick.yml b/Resources/Prototypes/Entities/Mobs/NPCs/spacetick.yml index a4d5ab7257..7cb206326a 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/spacetick.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/spacetick.yml @@ -24,14 +24,15 @@ baseSprintSpeed : 6 - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.20 - density: 20 - mask: - - SmallMobMask - layer: - - SmallMobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.20 + density: 20 + mask: + - SmallMobMask + layer: + - SmallMobLayer - type: MobState allowedStates: - Alive diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml index 9203155c6c..005f2a9d0a 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml @@ -44,14 +44,15 @@ bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.25 - density: 1000 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.25 + density: 1000 + mask: + - MobMask + layer: + - MobLayer - type: MobState allowedStates: - Alive @@ -139,14 +140,15 @@ 250: 0.7 - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.45 - density: 400 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.45 + density: 400 + mask: + - MobMask + layer: + - MobLayer - type: entity name: Drone @@ -179,14 +181,15 @@ baseSprintSpeed : 5.5 - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.45 - density: 450 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.45 + density: 450 + mask: + - MobMask + layer: + - MobLayer - type: entity name: Queen @@ -223,14 +226,15 @@ 1000: 0.7 - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.45 - density: 15500 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.45 + density: 15500 + mask: + - MobMask + layer: + - MobLayer - type: entity name: Ravager @@ -267,14 +271,15 @@ 450: 0.7 - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.45 - density: 1350 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.45 + density: 1350 + mask: + - MobMask + layer: + - MobLayer - type: entity name: Runner @@ -308,14 +313,15 @@ Brute: 3 - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 235 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 235 + mask: + - MobMask + layer: + - MobLayer - type: entity name: Rouny @@ -354,14 +360,15 @@ 250: 0.4 - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.45 - density: 235 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.45 + density: 235 + mask: + - MobMask + layer: + - MobLayer - type: entity name: space adder @@ -412,14 +419,15 @@ solution: melee - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 25 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 25 + mask: + - MobMask + layer: + - MobLayer - type: entity name: space adder diff --git a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml index fc96a5f66f..5dc6acd7db 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml @@ -54,7 +54,8 @@ bodyType: KinematicController - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeCircle radius: 0.40 density: 100 diff --git a/Resources/Prototypes/Entities/Mobs/Player/guardian.yml b/Resources/Prototypes/Entities/Mobs/Player/guardian.yml index 7d2da5ba66..0d5da60cf2 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/guardian.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/guardian.yml @@ -59,7 +59,8 @@ bodyType: KinematicController - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeCircle radius: 0.35 density: 25 diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index 85da073757..4c2072f18a 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -15,12 +15,13 @@ fixedRotation: true - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 15 - mask: - - GhostImpassable + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 15 + mask: + - GhostImpassable - type: InputMover - type: Appearance - type: Eye diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 971b72e013..a415057596 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -30,15 +30,16 @@ - type: InteractionOutline - type: Fixtures fixtures: - - shape: - # Circles, cuz rotation of rectangles looks very bad - !type:PhysShapeCircle - radius: 0.35 - density: 50 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + # Circles, cuz rotation of rectangles looks very bad + !type:PhysShapeCircle + radius: 0.35 + density: 50 + mask: + - MobMask + layer: + - MobLayer - type: MovementSpeedModifier baseWalkSpeed : 4 baseSprintSpeed : 3 @@ -132,14 +133,15 @@ - type: MovementIgnoreGravity - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 50 - mask: - - SmallMobMask - layer: - - SmallMobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 50 + mask: + - SmallMobMask + layer: + - SmallMobLayer - type: Appearance visuals: - type: GenericEnumVisualizer @@ -219,14 +221,15 @@ - type: MovementIgnoreGravity - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 1 - density: 160 - mask: - - LargeMobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 1 + density: 160 + mask: + - LargeMobMask + layer: + - MobLayer - type: Appearance rotate: true states: diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index 7ed1493642..34a7f0a382 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -152,7 +152,8 @@ bodyType: KinematicController - type: Fixtures fixtures: # TODO: This needs a second fixture just for mob collisions. - - shape: + fix1: + shape: !type:PhysShapeCircle radius: 0.35 density: 185 @@ -370,15 +371,16 @@ bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.35,-0.35,0.35,0.35" - density: 185 - restitution: 0.0 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.35,-0.35,0.35,0.35" + density: 185 + restitution: 0.0 + mask: + - MobMask + layer: + - MobLayer - type: HumanoidAppearance species: Human - type: Body diff --git a/Resources/Prototypes/Entities/Mobs/Species/diona.yml b/Resources/Prototypes/Entities/Mobs/Species/diona.yml index b9615302eb..b36236d79e 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/diona.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/diona.yml @@ -28,7 +28,8 @@ bloodReagent: Water - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeCircle radius: 0.35 density: 300 #weighs more than humans because wood diff --git a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml index ebad8ad91c..02cd708aba 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml @@ -27,16 +27,17 @@ requiredLegs: 2 - type: Fixtures fixtures: # TODO: This needs a second fixture just for mob collisions. - - shape: - !type:PhysShapeCircle - radius: 0.35 - # they r smaller - density: 120 - restitution: 0.0 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + # they r smaller + density: 120 + restitution: 0.0 + mask: + - MobMask + layer: + - MobLayer - type: Vocal sounds: Male: UnisexDwarf diff --git a/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml b/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml index 12847f6d42..35fc9fa4b6 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml @@ -57,7 +57,8 @@ - type: SkeletonAccent - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeCircle radius: 0.35 density: 130 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index 745c0226c0..820b36f4bd 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -188,19 +188,20 @@ bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.2,-0.2,0.2,0.2" - id: "slips" - hard: false - layer: - - SlipLayer - - shape: - !type:PhysShapeAabb - bounds: "-0.2,-0.2,0.2,0.2" - density: 30 - mask: - - ItemMask + slips: + shape: + !type:PhysShapeAabb + bounds: "-0.2,-0.2,0.2,0.2" + hard: false + layer: + - SlipLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.2,-0.2,0.2,0.2" + density: 30 + mask: + - ItemMask - type: Tag tags: - Recyclable diff --git a/Resources/Prototypes/Entities/Objects/Decoration/flora.yml b/Resources/Prototypes/Entities/Objects/Decoration/flora.yml index 21f2255146..c392726d15 100644 --- a/Resources/Prototypes/Entities/Objects/Decoration/flora.yml +++ b/Resources/Prototypes/Entities/Objects/Decoration/flora.yml @@ -11,13 +11,14 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.4 - density: 1000 - layer: - - HalfWallLayer - - Opaque + fix1: + shape: + !type:PhysShapeCircle + radius: 0.4 + density: 1000 + layer: + - HalfWallLayer + - Opaque - type: Climbable - type: Damageable damageContainer: Inorganic @@ -49,12 +50,13 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.35,-0.4,0.35,0.4" - density: 1000 - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.35,-0.4,0.35,0.4" + density: 1000 + layer: + - WallLayer - type: Damageable damageContainer: Inorganic damageModifierSet: Wood @@ -100,12 +102,13 @@ offset: 0,0.7 - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.1,-0.3,0.1,0.3" - density: 4000 - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.1,-0.3,0.1,0.3" + density: 4000 + layer: + - WallLayer - type: entity parent: BaseTree @@ -117,12 +120,13 @@ offset: 0,1.55 - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.18,-0.35,0.18,0.35" - density: 2000 - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.18,-0.35,0.18,0.35" + density: 2000 + layer: + - WallLayer - type: entity parent: BaseTree @@ -134,12 +138,13 @@ offset: 0,1.15 - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.1,-0.35,0.1,0.35" - density: 3500 - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.1,-0.35,0.1,0.35" + density: 3500 + layer: + - WallLayer - type: entity parent: BaseRock @@ -359,12 +364,13 @@ state: treechristmas02 - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.8,-1.5,0.8,-0.8" - density: 4500 - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.8,-1.5,0.8,-0.8" + density: 4500 + layer: + - WallLayer - type: LimitedItemGiver spawnEntries: - id: PresentRandom diff --git a/Resources/Prototypes/Entities/Objects/Devices/mousetrap.yml b/Resources/Prototypes/Entities/Objects/Devices/mousetrap.yml index b3a32fdd0e..74f8462802 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/mousetrap.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/mousetrap.yml @@ -40,14 +40,15 @@ enabled: false - type: Fixtures fixtures: - - shape: + slips: + shape: !type:PhysShapeAabb bounds: "-0.2,-0.2,0.2,0.2" - id: "slips" hard: false layer: - LowImpassable - - shape: + fix1: + shape: !type:PhysShapeAabb bounds: "-0.2,-0.2,0.2,0.2" density: 30 diff --git a/Resources/Prototypes/Entities/Objects/Devices/nuke.yml b/Resources/Prototypes/Entities/Objects/Devices/nuke.yml index d1016451c8..47d1f45875 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/nuke.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/nuke.yml @@ -15,14 +15,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.45 - density: 80 #It has wheels and bluespace tech to make it lighter. - mask: - - MachineMask - layer: - - HalfWallLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.45 + density: 80 #It has wheels and bluespace tech to make it lighter. + mask: + - MachineMask + layer: + - HalfWallLayer - type: NukeLabel - type: Nuke explosionType: Default @@ -80,14 +81,15 @@ bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.45 - density: 80 - mask: - - TabletopMachineMask - layer: - - TabletopMachineLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.45 + density: 80 + mask: + - TabletopMachineMask + layer: + - TabletopMachineLayer - type: SolutionContainerManager solutions: tank: diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 3bb9672910..49a0a50910 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -239,19 +239,20 @@ bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.3,0.4,0.3" - id: "slips" - hard: false - layer: - - SlipLayer - - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.3,0.4,0.3" - density: 5 - mask: - - ItemMask + 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: 5 + mask: + - ItemMask - type: entity parent: BasePDA diff --git a/Resources/Prototypes/Entities/Objects/Fun/Instruments/base_instruments.yml b/Resources/Prototypes/Entities/Objects/Fun/Instruments/base_instruments.yml index 99b5f8ee51..526655556d 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Instruments/base_instruments.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Instruments/base_instruments.yml @@ -56,19 +56,20 @@ type: InstrumentBoundUserInterface - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.45 - density: 80 - mask: - - Impassable - - HighImpassable - - MidImpassable - layer: - - Opaque - - HighImpassable - - MidImpassable - - BulletImpassable + fix1: + shape: + !type:PhysShapeCircle + radius: 0.45 + density: 80 + mask: + - Impassable + - HighImpassable + - MidImpassable + layer: + - Opaque + - HighImpassable + - MidImpassable + - BulletImpassable - type: StaticPrice price: 300 diff --git a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml index 5820ef8b18..15581cbd8d 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_misc.yml @@ -151,19 +151,20 @@ enabled: false - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.3,0.4,0.3" - id: "slips" - hard: false - layer: - - SlipLayer - - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.3,0.4,0.3" - density: 5 - mask: - - ItemMask + 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: 5 + mask: + - ItemMask - type: Prayable sentMessage: prayer-popup-notify-honkmother-sent notifiactionPrefix: prayer-chat-notify-honkmother diff --git a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_structures.yml b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_structures.yml index 284124bb3d..3f36b0cc18 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_structures.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_structures.yml @@ -110,19 +110,20 @@ state: contrabass - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.30 - density: 180 - mask: - - Impassable - - HighImpassable - - MidImpassable - layer: - - Opaque - - HighImpassable - - MidImpassable - - BulletImpassable + fix1: + shape: + !type:PhysShapeCircle + radius: 0.30 + density: 180 + mask: + - Impassable + - HighImpassable + - MidImpassable + layer: + - Opaque + - HighImpassable + - MidImpassable + - BulletImpassable - type: entity name: minimoog diff --git a/Resources/Prototypes/Entities/Objects/Fun/dice.yml b/Resources/Prototypes/Entities/Objects/Fun/dice.yml index af1bc8847b..969c0c1e9a 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/dice.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/dice.yml @@ -105,19 +105,20 @@ enabled: false - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.2,-0.2,0.2,0.2" - id: "slips" - hard: false - layer: - - LowImpassable - - shape: - !type:PhysShapeAabb - bounds: "-0.2,-0.2,0.2,0.2" - density: 30 - mask: - - ItemMask + slips: + shape: + !type:PhysShapeAabb + bounds: "-0.2,-0.2,0.2,0.2" + hard: false + layer: + - LowImpassable + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.2,-0.2,0.2,0.2" + density: 30 + mask: + - ItemMask - type: StepTrigger intersectRatio: 0.2 requiredTriggeredSpeed: 0 diff --git a/Resources/Prototypes/Entities/Objects/Fun/error.yml b/Resources/Prototypes/Entities/Objects/Fun/error.yml index 65f5a44843..13e2e1254e 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/error.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/error.yml @@ -25,16 +25,17 @@ bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.2,-0.2,0.2,0.2" - id: "slips" - hard: false - layer: - - SlipLayer - - shape: - !type:PhysShapeAabb - bounds: "-0.2,-0.2,0.2,0.2" - density: 30 - mask: - - ItemMask + slips: + shape: + !type:PhysShapeAabb + bounds: "-0.2,-0.2,0.2,0.2" + hard: false + layer: + - SlipLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.2,-0.2,0.2,0.2" + density: 30 + mask: + - ItemMask diff --git a/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml b/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml index 2b03ccb2dd..d956f5cdee 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml @@ -24,14 +24,15 @@ energy: 2.0 - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.5 - density: 1 - hard: false - layer: - - Impassable - - Opaque + fix1: + shape: + !type:PhysShapeCircle + radius: 0.5 + density: 1 + hard: false + layer: + - Impassable + - Opaque - type: entity id: ImmovableRodSlow diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index d6de39b922..a79048620e 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -178,16 +178,17 @@ solution: plushie - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeAabb bounds: "-0.3,-0.3,0.3,0.3" density: 15 mask: - ItemMask - - shape: + rehydrate: + shape: !type:PhysShapeAabb bounds: "-0.3,-0.3,0.3,0.3" - id: "rehydrate" hard: false layer: - LowImpassable diff --git a/Resources/Prototypes/Entities/Objects/Materials/ore.yml b/Resources/Prototypes/Entities/Objects/Materials/ore.yml index 18e7e7faa5..3690cf7963 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/ore.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/ore.yml @@ -15,7 +15,8 @@ - Ore - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeCircle radius: 0.2 density: 20 diff --git a/Resources/Prototypes/Entities/Objects/Materials/shards.yml b/Resources/Prototypes/Entities/Objects/Materials/shards.yml index 1b5db53a03..e0ea00bd70 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/shards.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/shards.yml @@ -31,19 +31,20 @@ enabled: false - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.2,-0.2,0.2,0.2" - id: "slips" - hard: false - layer: - - LowImpassable - - shape: - !type:PhysShapeAabb - bounds: "-0.2,-0.2,0.2,0.2" - density: 30 - mask: - - ItemMask + slips: + shape: + !type:PhysShapeAabb + bounds: "-0.2,-0.2,0.2,0.2" + hard: false + layer: + - LowImpassable + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.2,-0.2,0.2,0.2" + density: 30 + mask: + - ItemMask - type: DamageOtherOnHit damage: types: diff --git a/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml b/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml index 43d334bea9..1532d5787f 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml @@ -123,14 +123,15 @@ canCollide: true - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.2, -0.5, 0.2, 0.5" - density: 50 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.2, -0.5, 0.2, 0.5" + density: 50 + mask: + - MachineMask + layer: + - MachineLayer - type: PointLight enabled: false radius: 8 @@ -194,11 +195,12 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.2, -0.5, 0.2, 0.5" - density: 50 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.2, -0.5, 0.2, 0.5" + density: 50 + mask: + - MachineMask + layer: + - MachineLayer diff --git a/Resources/Prototypes/Entities/Objects/Misc/inflatable_wall.yml b/Resources/Prototypes/Entities/Objects/Misc/inflatable_wall.yml index 9321d4d6e9..bad28e743f 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/inflatable_wall.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/inflatable_wall.yml @@ -13,12 +13,13 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" - density: 15 - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + density: 15 + layer: + - WallLayer - type: Damageable damageContainer: Inorganic damageModifierSet: Inflatable @@ -54,12 +55,13 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" - density: 15 - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + density: 15 + layer: + - WallLayer - type: Door occludes: false openSound: diff --git a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml index 40fdcab8f8..d2e6ab9429 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml @@ -25,13 +25,14 @@ - type: Physics - type: Fixtures fixtures: - - hard: false - density: 7 - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" - layer: - - MidImpassable + fix1: + hard: false + density: 7 + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + layer: + - MidImpassable - type: Damageable damageModifierSet: Wood - type: Destructible @@ -130,13 +131,14 @@ - type: Physics - type: Fixtures fixtures: - - hard: false - density: 7 - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" - layer: - - MidImpassable + fix1: + hard: false + density: 7 + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + layer: + - MidImpassable - type: Damageable - type: Destructible thresholds: diff --git a/Resources/Prototypes/Entities/Objects/Misc/land_mine.yml b/Resources/Prototypes/Entities/Objects/Misc/land_mine.yml index 0a7608a5a6..10dd229606 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/land_mine.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/land_mine.yml @@ -12,13 +12,13 @@ fixedRotation: true - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.2,-0.2,0.2,0.2" - id: "slips" - hard: false - layer: - - LowImpassable + slips: + shape: + !type:PhysShapeAabb + bounds: "-0.2,-0.2,0.2,0.2" + hard: false + layer: + - LowImpassable - type: Sprite drawdepth: Items sprite: Objects/Misc/uglymine.rsi diff --git a/Resources/Prototypes/Entities/Objects/Misc/space_cash.yml b/Resources/Prototypes/Entities/Objects/Misc/space_cash.yml index d179ef77c4..b034a69236 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/space_cash.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/space_cash.yml @@ -21,12 +21,13 @@ bodyType: Dynamic - type: Fixtures fixtures: - - density: 30 - shape: - !type:PhysShapeAabb - bounds: "-0.35,-0.2,0.25,0.1" - mask: - - ItemMask + fix1: + density: 30 + shape: + !type:PhysShapeAabb + bounds: "-0.35,-0.2,0.25,0.1" + mask: + - ItemMask - type: Appearance visuals: - type: StackVisualizer diff --git a/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml b/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml index 63d89fc479..759e746c2c 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml @@ -32,13 +32,14 @@ - type: Physics - type: Fixtures fixtures: - - hard: false - density: 7 - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" - layer: - - MidImpassable + fix1: + hard: false + density: 7 + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + layer: + - MidImpassable - type: Damageable damageModifierSet: Wood - type: Destructible diff --git a/Resources/Prototypes/Entities/Objects/Power/powersink.yml b/Resources/Prototypes/Entities/Objects/Power/powersink.yml index cf656afbfa..9e3ad3c391 100644 --- a/Resources/Prototypes/Entities/Objects/Power/powersink.yml +++ b/Resources/Prototypes/Entities/Objects/Power/powersink.yml @@ -17,14 +17,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.40,-0.40,0.40,0.40" - density: 90 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.40,-0.40,0.40,0.40" + density: 90 + mask: + - MachineMask + layer: + - MachineLayer - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml index 7b6485bfba..0fe1fe40ea 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml @@ -114,14 +114,15 @@ noRot: true - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.40,0.25,0.25" - density: 60 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.40,0.25,0.25" + density: 60 + mask: + - MobMask + layer: + - MobLayer - type: Pullable - type: Drink isOpen: true @@ -215,14 +216,15 @@ priority: 3 # Higher than drinking priority - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.3 - density: 250 - layer: - - MobLayer - mask: - - MobMask + fix1: + shape: + !type:PhysShapeCircle + radius: 0.3 + density: 250 + layer: + - MobLayer + mask: + - MobMask - type: Spillable spillDelay: 3.0 - type: SolutionContainerManager diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml index 58f484a1a0..280bca3aba 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml @@ -23,19 +23,20 @@ bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.3,0.4,0.3" - id: "slips" - hard: false - layer: - - SlipLayer - - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.3,0.4,0.3" - density: 10 - mask: - - ItemMask + 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: 10 + mask: + - ItemMask - type: entity name: soap diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml index f0c7562533..67a23d7b82 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml @@ -114,13 +114,14 @@ bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.25,0.25,0.25" - hard: false - mask: - - FullTileMask - - Opaque + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.25,0.25,0.25" + hard: false + mask: + - FullTileMask + - Opaque - type: Appearance - type: VaporVisuals @@ -139,10 +140,11 @@ map: ["enum.VaporVisualLayers.Base"] - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.6,-0.6,0.6,0.6" - hard: false - mask: - - FullTileMask - - Opaque + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.6,-0.6,0.6,0.6" + hard: false + mask: + - FullTileMask + - Opaque diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mech_construction.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mech_construction.yml index aad2c52dce..efe131fd68 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mech_construction.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mech_construction.yml @@ -12,14 +12,15 @@ fixedRotation: false - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.25,0.25,0.25" - density: 100 - mask: - - ItemMask - restitution: 0.3 # fite me - friction: 0.2 + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.25,0.25,0.25" + density: 100 + mask: + - ItemMask + restitution: 0.3 # fite me + friction: 0.2 - type: Pullable # Ripley APLU diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml index 446ad650dc..9d394586f3 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml @@ -41,14 +41,15 @@ LayoutId: Mech - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.45 - density: 1000 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.45 + density: 1000 + mask: + - MobMask + layer: + - MobLayer - type: Appearance - type: ContainerContainer containers: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml index d202b77d50..a4b6ea9929 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml @@ -35,12 +35,13 @@ noRot: true - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.4,0.25,0.1" - density: 20 - mask: - - Impassable + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.4,0.25,0.1" + density: 20 + mask: + - Impassable - type: EntityStorage capacity: 1 isCollidableWhenOpen: true diff --git a/Resources/Prototypes/Entities/Objects/Specific/Security/barrier.yml b/Resources/Prototypes/Entities/Objects/Specific/Security/barrier.yml index f687a10429..a76cae6af6 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Security/barrier.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Security/barrier.yml @@ -25,14 +25,15 @@ canCollide: false - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.45 - density: 75 - mask: - - MachineMask - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.45 + density: 75 + mask: + - MachineMask + layer: + - WallLayer - type: AccessReader access: [["Security"]] - type: Lock diff --git a/Resources/Prototypes/Entities/Objects/Specific/Security/target.yml b/Resources/Prototypes/Entities/Objects/Specific/Security/target.yml index 6413c5b482..4f56c63644 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Security/target.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Security/target.yml @@ -13,14 +13,15 @@ damagePopupType: Combined - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 200 - mask: - - FullTileMask - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 200 + mask: + - FullTileMask + layer: + - WallLayer - type: InteractionOutline - type: Physics - type: Damageable diff --git a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml index 9e6fc80f72..9b2c041537 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml @@ -25,7 +25,8 @@ - type: Physics - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeCircle radius: 0.45 density: 75 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml index e7834214cd..fa9901cdb2 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml @@ -22,16 +22,17 @@ - type: InteractionOutline - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.25,0.25,0.25" - density: 20 - mask: - - ItemMask - layer: - - Opaque - restitution: 0.3 # fite me - friction: 0.2 + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.25,0.25,0.25" + density: 20 + mask: + - ItemMask + layer: + - Opaque + restitution: 0.3 # fite me + friction: 0.2 - type: Artifact - type: RandomArtifactSprite maxSprite: 11 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/structure_artifacts.yml b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/structure_artifacts.yml index 1ddd7ec1d7..d0c34776b1 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/structure_artifacts.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/structure_artifacts.yml @@ -29,15 +29,16 @@ type: InstrumentBoundUserInterface - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.45 - density: 75 - layer: # doesn't collide with artifact storage - - Opaque - - BulletImpassable - mask: - - MachineMask + fix1: + shape: + !type:PhysShapeCircle + radius: 0.45 + density: 75 + layer: # doesn't collide with artifact storage + - Opaque + - BulletImpassable + mask: + - MachineMask - type: InteractionOutline - type: Artifact - type: RandomArtifactSprite diff --git a/Resources/Prototypes/Entities/Objects/Specific/rehydrateable.yml b/Resources/Prototypes/Entities/Objects/Specific/rehydrateable.yml index 15d4911367..ab4665c060 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/rehydrateable.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/rehydrateable.yml @@ -31,19 +31,20 @@ enabled: false - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.3,-0.3,0.3,0.3" - density: 5 - mask: - - ItemMask - - shape: - !type:PhysShapeAabb - bounds: "-0.3,-0.3,0.3,0.3" - id: "rehydrate" - hard: false - layer: - - LowImpassable + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.3,-0.3,0.3,0.3" + density: 5 + mask: + - ItemMask + rehydrate: + shape: + !type:PhysShapeAabb + bounds: "-0.3,-0.3,0.3,0.3" + hard: false + layer: + - LowImpassable - type: entity parent: PlushieCarp @@ -75,19 +76,20 @@ bodyType: KinematicController - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.3,-0.3,0.3,0.3" - density: 15 - mask: - - ItemMask - - shape: - !type:PhysShapeAabb - bounds: "-0.3,-0.3,0.3,0.3" - id: "rehydrate" - hard: false - layer: - - LowImpassable + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.3,-0.3,0.3,0.3" + density: 15 + mask: + - ItemMask + rehydrate: + shape: + !type:PhysShapeAabb + bounds: "-0.3,-0.3,0.3,0.3" + hard: false + layer: + - LowImpassable # pet fish before rehydrating and he will be nice to you - type: FactionException - type: PettableFriend diff --git a/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml b/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml index 5cb739b1be..220bba8c4d 100644 --- a/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml +++ b/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml @@ -29,15 +29,16 @@ - type: Clickable - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.4 - density: 360 - restitution: 0.0 - mask: - - MobMask - layer: - - TableLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.4 + density: 360 + restitution: 0.0 + mask: + - MobMask + layer: + - TableLayer - type: Appearance - type: Repairable fuelcost: 20 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 c893cdbc11..9dde100821 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml @@ -117,7 +117,8 @@ fixedRotation: false - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeAabb bounds: "-0.25,-0.25,0.25,0.25" density: 20 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/meteors.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/meteors.yml index 44854877d5..8e354f53fe 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/meteors.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/meteors.yml @@ -27,15 +27,15 @@ bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.8 - density: 100 - hard: true - id: projectile - # Didn't use MapGridComponent for now as the bounds are stuffed. - layer: - - LargeMobLayer - mask: - - Impassable - - BulletImpassable + projectile: + shape: + !type:PhysShapeCircle + radius: 0.8 + density: 100 + hard: true + # Didn't use MapGridComponent for now as the bounds are stuffed. + layer: + - LargeMobLayer + mask: + - Impassable + - BulletImpassable diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index 4f107fb36e..82b9c0f9b3 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -40,24 +40,23 @@ angularDamping: 0 - type: Fixtures fixtures: - - id: projectile - shape: - !type:PhysShapeAabb - bounds: "-0.1,-0.1,0.1,0.1" - hard: false - mask: - - Impassable - - BulletImpassable - - &flybyfixture - id: fly-by - shape: !type:PhysShapeCircle - radius: 1.5 - layer: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - hard: False + projectile: + shape: + !type:PhysShapeAabb + bounds: "-0.1,-0.1,0.1,0.1" + hard: false + mask: + - Impassable + - BulletImpassable + fly-by: &flybyfixture + shape: !type:PhysShapeCircle + radius: 1.5 + layer: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + hard: False - type: Projectile impactEffect: BulletImpactEffect damage: @@ -81,15 +80,15 @@ Blunt: 7 # more damage than a punch. - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.15,-0.45,0.15,0.15" - hard: false - id: projectile - mask: - - Impassable - - BulletImpassable - - *flybyfixture + projectile: + shape: + !type:PhysShapeAabb + bounds: "-0.15,-0.45,0.15,0.15" + hard: false + mask: + - Impassable + - BulletImpassable + fly-by: *flybyfixture - type: entity id: BaseBulletHighVelocity @@ -150,14 +149,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.2,-0.2,0.2,0.2" - hard: false - id: projectile - mask: - - Impassable - - BulletImpassable + projectile: + shape: + !type:PhysShapeAabb + bounds: "-0.15,-0.45,0.15,0.15" + hard: false + mask: + - Impassable + - BulletImpassable + fly-by: *flybyfixture - type: Ammo - type: Projectile damage: @@ -189,15 +189,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.15,-0.3,0.15,0.3" - hard: false - id: projectile - mask: - - Impassable - - BulletImpassable - - *flybyfixture + projectile: + shape: + !type:PhysShapeAabb + bounds: "-0.15,-0.3,0.15,0.3" + hard: false + mask: + - Impassable + - BulletImpassable + fly-by: *flybyfixture - type: Ammo - type: StaminaDamageOnCollide damage: 30 @@ -229,15 +229,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.15,-0.3,0.15,0.3" - hard: false - id: projectile - mask: - - Impassable - - BulletImpassable - - *flybyfixture + projectile: + shape: + !type:PhysShapeAabb + bounds: "-0.15,-0.3,0.15,0.3" + hard: false + mask: + - Impassable + - BulletImpassable + fly-by: *flybyfixture - type: Ammo - type: StaminaDamageOnCollide damage: 5 @@ -267,14 +267,14 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.2,-0.2,0.2,0.2" - hard: false - id: projectile - mask: - - Opaque - - *flybyfixture + projectile: + shape: + !type:PhysShapeAabb + bounds: "-0.2,-0.2,0.2,0.2" + hard: false + mask: + - Opaque + fly-by: *flybyfixture - type: Projectile # soundHit: Waiting on serv3 damage: @@ -327,14 +327,14 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.2,-0.2,0.2,0.2" - hard: false - id: projectile - mask: - - Opaque - - *flybyfixture + projectile: + shape: + !type:PhysShapeAabb + bounds: "-0.2,-0.2,0.2,0.2" + hard: false + mask: + - Opaque + fly-by: *flybyfixture - type: Projectile damage: types: @@ -595,13 +595,14 @@ maxVol: 50 - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.25,0.25,0.25" - hard: false - mask: - - FullTileMask - - Opaque + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.25,0.25,0.25" + hard: false + mask: + - FullTileMask + - Opaque - type: Vapor active: true - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml index 4da1b4be77..b00177d481 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml @@ -24,7 +24,8 @@ - type: Actions - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeAabb bounds: "-0.45,-0.45,0.45,0.45" density: 60 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/security.yml b/Resources/Prototypes/Entities/Objects/Weapons/security.yml index f56fcbef36..201a16aa39 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/security.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/security.yml @@ -115,14 +115,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.15,-0.3,0.15,0.3" - mask: - - MachineMask - layer: - - MachineLayer - density: 380 + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.15,-0.3,0.15,0.3" + mask: + - MachineMask + layer: + - MachineLayer + density: 380 - type: Appearance - type: AnimationPlayer - type: PointLight diff --git a/Resources/Prototypes/Entities/Objects/base_item.yml b/Resources/Prototypes/Entities/Objects/base_item.yml index 4a677c46af..abb1876012 100644 --- a/Resources/Prototypes/Entities/Objects/base_item.yml +++ b/Resources/Prototypes/Entities/Objects/base_item.yml @@ -32,14 +32,15 @@ fixedRotation: false - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.25,0.25,0.25" - density: 20 - mask: - - ItemMask - restitution: 0.3 # fite me - friction: 0.2 + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.25,0.25,0.25" + density: 20 + mask: + - ItemMask + restitution: 0.3 # fite me + friction: 0.2 - type: Sprite drawdepth: Items noRot: false diff --git a/Resources/Prototypes/Entities/Structures/Decoration/banners.yml b/Resources/Prototypes/Entities/Structures/Decoration/banners.yml index ee2834d51f..9a321f93ef 100644 --- a/Resources/Prototypes/Entities/Structures/Decoration/banners.yml +++ b/Resources/Prototypes/Entities/Structures/Decoration/banners.yml @@ -14,17 +14,18 @@ noRot: true - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.2 - density: 190 - mask: - - MachineMask - layer: - - Opaque - - MidImpassable - - HighImpassable - - BulletImpassable + fix1: + shape: + !type:PhysShapeCircle + radius: 0.2 + density: 190 + mask: + - MachineMask + layer: + - Opaque + - MidImpassable + - HighImpassable + - BulletImpassable - type: InteractionOutline - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Decoration/curtains.yml b/Resources/Prototypes/Entities/Structures/Decoration/curtains.yml index 53f5b371c1..d47c895597 100644 --- a/Resources/Prototypes/Entities/Structures/Decoration/curtains.yml +++ b/Resources/Prototypes/Entities/Structures/Decoration/curtains.yml @@ -15,14 +15,15 @@ - type: AnimationPlayer - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.49,0.49,0.49" - density: 100 - mask: - - FullTileMask - layer: - - Opaque + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,0.49" + density: 100 + mask: + - FullTileMask + layer: + - Opaque - type: Door canCrush: false performCollisionCheck: false diff --git a/Resources/Prototypes/Entities/Structures/Decoration/flesh_blockers.yml b/Resources/Prototypes/Entities/Structures/Decoration/flesh_blockers.yml index e883177707..9e4f25dca7 100644 --- a/Resources/Prototypes/Entities/Structures/Decoration/flesh_blockers.yml +++ b/Resources/Prototypes/Entities/Structures/Decoration/flesh_blockers.yml @@ -13,14 +13,15 @@ map: [ "enum.DamageStateVisualLayers.Base" ] - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.3 - density: 190 - mask: - - MachineMask - layer: - - Impassable + fix1: + shape: + !type:PhysShapeCircle + radius: 0.3 + density: 190 + mask: + - MachineMask + layer: + - Impassable - type: RandomSprite available: - enum.DamageStateVisualLayers.Base: diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml b/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml index c68f0b2a9d..58eff7518e 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml @@ -14,14 +14,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.3,0.4,0.3" - density: 190 - mask: - - TabletopMachineMask - layer: - - TabletopMachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.3,0.4,0.3" + density: 190 + mask: + - TabletopMachineMask + layer: + - TabletopMachineLayer - type: ApcPowerReceiver - type: ExtensionCableReceiver - type: ActivatableUI diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml index c6e329987b..cdd0ac6a90 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml @@ -107,14 +107,15 @@ - type: AnimationPlayer - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.49,0.49,0.49" # don't want this colliding with walls or they won't close - density: 100 - mask: - - FullTileMask - layer: #removed opaque from the layer, allowing lasers to pass through glass airlocks - - GlassAirlockLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,0.49" # don't want this colliding with walls or they won't close + density: 100 + mask: + - FullTileMask + layer: #removed opaque from the layer, allowing lasers to pass through glass airlocks + - GlassAirlockLayer - type: LayerChangeOnWeld unWeldedLayer: GlassAirlockLayer weldedLayer: GlassLayer diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/assembly.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/assembly.yml index 3faee4b4be..819d49312f 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/assembly.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/assembly.yml @@ -12,14 +12,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - density: 110 - mask: - - FullTileMask - layer: - - HumanoidBlockLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 110 + mask: + - FullTileMask + layer: + - HumanoidBlockLayer - type: Anchorable delay: 2 - type: Pullable diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml index 8b39bf2a47..833a5fa6da 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml @@ -34,14 +34,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.49,0.49,0.49" # don't want this colliding with walls or they won't close - density: 100 - mask: - - FullTileMask - layer: - - AirlockLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,0.49" # don't want this colliding with walls or they won't close + density: 100 + mask: + - FullTileMask + layer: + - AirlockLayer - type: LayerChangeOnWeld unWeldedLayer: AirlockLayer weldedLayer: WallLayer diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml index 06e702011c..d8b5c6ce74 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml @@ -28,14 +28,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.49,0.49,0.49" # don't want this colliding with walls or they won't close - density: 100 - mask: - - FullTileMask - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,0.49" # don't want this colliding with walls or they won't close + density: 100 + mask: + - FullTileMask + layer: + - WallLayer - type: ContainerFill containers: board: [ DoorElectronics ] diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml index a06578fc46..2830a44d26 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml @@ -6,6 +6,23 @@ description: Necessary for connecting two space craft together. components: - type: Docking + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,0.49" # don't want this colliding with walls or they won't close + density: 100 + mask: + - FullTileMask + layer: + - AirlockLayer + docking: + shape: + !type:PhysShapeCircle + radius: 0.2 + position: "0,-0.5" + hard: false - type: Sprite netsync: false sprite: Structures/Doors/Airlocks/Standard/shuttle.rsi diff --git a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml index 7f11b5e8ae..ca852ff539 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml @@ -49,14 +49,15 @@ - type: AnimationPlayer - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.49,0.49,0.49" # don't want this colliding with walls or they won't close - density: 100 - mask: - - FullTileMask - layer: - - AirlockLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,0.49" # don't want this colliding with walls or they won't close + density: 100 + mask: + - FullTileMask + layer: + - AirlockLayer - type: Door openDrawDepth: WallTops closeTimeOne: 0.1 @@ -132,14 +133,15 @@ enabled: false - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.49,0.49,0.49" # don't want this colliding with walls or they won't close - mask: - - Impassable - - HighImpassable - layer: - - GlassAirlockLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,0.49" # don't want this colliding with walls or they won't close + mask: + - Impassable + - HighImpassable + layer: + - GlassAirlockLayer - type: Door occludes: false - type: Construction @@ -161,14 +163,15 @@ - South - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.49,0.49,-0.2" # don't want this colliding with walls or they won't close - mask: - - Impassable - - HighImpassable - layer: - - GlassAirlockLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,-0.2" # don't want this colliding with walls or they won't close + mask: + - Impassable + - HighImpassable + layer: + - GlassAirlockLayer - type: Occluder enabled: false - type: Door diff --git a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/frame.yml b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/frame.yml index 516fbb4ade..dbc32614a8 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/frame.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/frame.yml @@ -37,15 +37,16 @@ bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - density: 55 - mask: - - Impassable - - HighImpassable - layer: - - HighImpassable - - MidImpassable + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 55 + mask: + - Impassable + - HighImpassable + layer: + - HighImpassable + - MidImpassable - type: Transform noRot: true diff --git a/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml b/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml index e6062f1479..8165e55c94 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml @@ -16,14 +16,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.49,0.49,0.49" - density: 100 - mask: - - FullTileMask - layer: - - AirlockLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,0.49" + density: 100 + mask: + - FullTileMask + layer: + - AirlockLayer - type: Door bumpOpen: false clickOpen: true diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml index f16719975e..dabe75a2eb 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml @@ -18,14 +18,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.49,0.49,0.49" # don't want this colliding with walls or they won't close - density: 100 - mask: - - FullTileMask - layer: - - AirlockLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,0.49" # don't want this colliding with walls or they won't close + density: 100 + mask: + - FullTileMask + layer: + - AirlockLayer - type: ContainerFill containers: board: [ DoorElectronics ] @@ -212,14 +213,15 @@ bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - density: 55 - mask: - - Impassable - - HighImpassable - layer: - - HighImpassable + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 55 + mask: + - Impassable + - HighImpassable + layer: + - HighImpassable - type: Transform noRot: true diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/assembly.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/assembly.yml index 340e62716a..8192edd8bd 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/assembly.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/assembly.yml @@ -13,13 +13,14 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.49,0.49,-0.2" - density: 40 - mask: - - Impassable - - HighImpassable + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,-0.2" + density: 40 + mask: + - Impassable + - HighImpassable - type: Anchorable - type: Pullable - type: Rotatable diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml index 58f79eec96..b6fb8f1295 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml @@ -14,14 +14,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.39,0.49,-0.36" - density: 1500 - mask: - - TabletopMachineMask - layer: - - GlassAirlockLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.39,0.49,-0.36" + density: 1500 + mask: + - TabletopMachineMask + layer: + - GlassAirlockLayer - type: Sprite netsync: false sprite: Structures/Doors/Windoors/windoor.rsi diff --git a/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml b/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml index 004e085989..cb6060f707 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml @@ -11,14 +11,15 @@ - type: PlaceableSurface - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - density: 55 - mask: # tables should collide with other tables - - TableMask - layer: - - TableLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 55 + mask: # tables should collide with other tables + - TableMask + layer: + - TableLayer - type: SpriteFade - type: Sprite netsync: false @@ -44,11 +45,12 @@ components: - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - density: 55 - mask: - - TableMask - layer: - - TableLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 55 + mask: + - TableMask + layer: + - TableLayer diff --git a/Resources/Prototypes/Entities/Structures/Furniture/Tables/operating_table.yml b/Resources/Prototypes/Entities/Structures/Furniture/Tables/operating_table.yml index ff9fa6a508..4dec38f261 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/Tables/operating_table.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/Tables/operating_table.yml @@ -15,14 +15,15 @@ - type: PlaceableSurface - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - density: 55 - mask: - - TableMask - layer: - - TableLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 55 + mask: + - TableMask + layer: + - TableLayer - type: Climbable - type: Sprite sprite: Structures/Furniture/Tables/optable.rsi diff --git a/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml b/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml index cb6ba9bc0e..2bb3e62a1c 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml @@ -12,14 +12,15 @@ state: full - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.40,-0.30,0.40,0.45" - density: 80 - mask: - - TableMask - layer: - - TableLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.40,-0.30,0.40,0.45" + density: 80 + mask: + - TableMask + layer: + - TableLayer - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic @@ -67,14 +68,15 @@ state: full - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - density: 55 - mask: - - TableMask - layer: - - TableLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 55 + mask: + - TableMask + layer: + - TableLayer - type: Damageable damageContainer: Inorganic damageModifierSet: Wood diff --git a/Resources/Prototypes/Entities/Structures/Furniture/altar.yml b/Resources/Prototypes/Entities/Structures/Furniture/altar.yml index 1b5d6dbf7d..e652d0fd1c 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/altar.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/altar.yml @@ -15,14 +15,15 @@ - type: PlaceableSurface - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - density: 55 - mask: #mouse can pass under, but I think this is can understandable by logic - - TableMask - layer: - - TableLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 55 + mask: #mouse can pass under, but I think this is can understandable by logic + - TableMask + layer: + - TableLayer - type: Sprite netsync: false snapCardinals: true diff --git a/Resources/Prototypes/Entities/Structures/Furniture/beds.yml b/Resources/Prototypes/Entities/Structures/Furniture/beds.yml index 5b83ddba89..89d773e75c 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/beds.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/beds.yml @@ -15,12 +15,13 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.05" - density: 190 - mask: - - TableMask + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.05" + density: 190 + mask: + - TableMask - type: Sprite sprite: Structures/Furniture/furniture.rsi state: bed diff --git a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml index 4ebdfa246c..bf9cc0b018 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml @@ -12,12 +12,13 @@ bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.2 - density: 100 - mask: - - TableMask + fix1: + shape: + !type:PhysShapeCircle + radius: 0.2 + density: 100 + mask: + - TableMask - type: Sprite sprite: Structures/Furniture/chairs.rsi noRot: true diff --git a/Resources/Prototypes/Entities/Structures/Furniture/memorial.yml b/Resources/Prototypes/Entities/Structures/Furniture/memorial.yml index 8b8cec3017..beabf53c97 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/memorial.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/memorial.yml @@ -11,14 +11,15 @@ noRot: true - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.20" - density: 85 - mask: - - FullTileMask - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.20" + density: 85 + mask: + - FullTileMask + layer: + - WallLayer - type: InteractionOutline # At 7:30 AM on March 8th, 2017, ArcLumin, a SS13 contributor, died in a fatal car crash on impact. diff --git a/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml b/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml index 96dfdb2fb4..98f5a001da 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml @@ -12,12 +12,13 @@ bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.1 - density: 190 - mask: - - Impassable + fix1: + shape: + !type:PhysShapeCircle + radius: 0.1 + density: 190 + mask: + - Impassable - type: Sprite drawdepth: Overdoors offset: "0.0,0.3" diff --git a/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml b/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml index 7c09357237..014e804bf7 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml @@ -28,12 +28,13 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 80 - mask: - - MobMask + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 80 + mask: + - MobMask - type: Damageable - type: Destructible thresholds: diff --git a/Resources/Prototypes/Entities/Structures/Holographic/projections.yml b/Resources/Prototypes/Entities/Structures/Holographic/projections.yml index 2d07cac1b6..ee3bfb309d 100644 --- a/Resources/Prototypes/Entities/Structures/Holographic/projections.yml +++ b/Resources/Prototypes/Entities/Structures/Holographic/projections.yml @@ -29,9 +29,10 @@ netsync: false - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" - type: TimedDespawn lifetime: 180 - type: Airtight @@ -52,7 +53,8 @@ netsync: false - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeAabb bounds: "-0.3,-0.3,0.3,0.3" mask: diff --git a/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml index f7f0dba2d9..eed05b2cc4 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml @@ -6,15 +6,16 @@ - type: InteractionOutline - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "0.17,0.25,-0.17,-0.30" - density: 190 - mask: - - MachineMask - layer: - - MidImpassable - - LowImpassable + fix1: + shape: + !type:PhysShapeAabb + bounds: "0.17,0.25,-0.17,-0.30" + density: 190 + mask: + - MachineMask + layer: + - MidImpassable + - LowImpassable - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/frame.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/frame.yml index 729e06880b..70a4d7e3da 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/frame.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/frame.yml @@ -7,14 +7,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.35,0.25,0.35" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.35,0.25,0.35" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: InteractionOutline - type: Rotatable - type: Anchorable diff --git a/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml b/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml index 9248b4c8d9..b3123ec012 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml @@ -28,7 +28,8 @@ noRot: true - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeAabb bounds: "-0.5,-0.5,0.5,0.90" density: 200 diff --git a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml index 950b41eee8..5b588f11eb 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml @@ -124,14 +124,15 @@ noRot: false - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 50 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 50 + mask: + - MachineMask + layer: + - MachineLayer - type: Rotatable rotateWhileAnchored: true - type: Machine @@ -231,14 +232,15 @@ - Plasma - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-1.5,-0.5,1.5,0.6" - density: 50 - mask: - - LargeMobMask - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-1.5,-0.5,1.5,0.6" + density: 50 + mask: + - LargeMobMask + layer: + - WallLayer - type: Repairable fuelCost: 10 doAfterDelay: 5 diff --git a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml index 5b8e9211b9..a51f7a3f49 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml @@ -19,13 +19,14 @@ canCollide: true - type: AmbientSound enabled: false - sound: + sound: path: /Audio/Machines/scan_loop.ogg range: 5 volume: -8 - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeAabb bounds: "-0.35,-0.35,0.35,0.35" density: 190 @@ -90,7 +91,8 @@ canCollide: true - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeAabb bounds: "-0.35,-0.35,0.35,0.35" density: 190 diff --git a/Resources/Prototypes/Entities/Structures/Machines/base_structuremachines.yml b/Resources/Prototypes/Entities/Structures/Machines/base_structuremachines.yml index ca633cb3aa..3198310269 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/base_structuremachines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/base_structuremachines.yml @@ -12,14 +12,15 @@ noRot: true - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Entities/Structures/Machines/chem_master.yml b/Resources/Prototypes/Entities/Structures/Machines/chem_master.yml index ec5c56e3ed..87cbdce80d 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/chem_master.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/chem_master.yml @@ -24,14 +24,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.4,0.25,0.4" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.4,0.25,0.4" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml b/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml index e9f847476b..0cdd0f477c 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml @@ -18,14 +18,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.5,0.25,0.5" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.5,0.25,0.5" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: Construction graph: Machine node: machine diff --git a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml index 06ccfa868f..14496fcb52 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml @@ -19,14 +19,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.25,0.25,0.25" - density: 25 - mask: - - TabletopMachineMask - layer: - - TabletopMachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.25,0.25,0.25" + density: 25 + mask: + - TabletopMachineMask + layer: + - TabletopMachineLayer - type: ActivatableUI key: enum.FaxUiKey.Key - type: ActivatableUIRequiresPower diff --git a/Resources/Prototypes/Entities/Structures/Machines/frame.yml b/Resources/Prototypes/Entities/Structures/Machines/frame.yml index 743c0eef5d..b26882c306 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/frame.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/frame.yml @@ -13,14 +13,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.5,0.25,0.5" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.5,0.25,0.5" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: Clickable - type: InteractionOutline - type: Anchorable @@ -64,14 +65,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.5,0.25,0.5" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.5,0.25,0.5" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: Clickable - type: InteractionOutline - type: Anchorable @@ -108,7 +110,7 @@ mapLayers: box_2: minCount: 1 - whitelist: + whitelist: components: - MachineBoard diff --git a/Resources/Prototypes/Entities/Structures/Machines/gravity_generator.yml b/Resources/Prototypes/Entities/Structures/Machines/gravity_generator.yml index 5c8db0638f..58118a956d 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/gravity_generator.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/gravity_generator.yml @@ -32,14 +32,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-1.5,-1.5,1.5,1.5" - density: 50 - mask: - - LargeMobMask - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-1.5,-1.5,1.5,1.5" + density: 50 + mask: + - LargeMobMask + layer: + - WallLayer - type: Repairable fuelCost: 10 doAfterDelay: 5 @@ -96,14 +97,15 @@ offset: "0,0.2" - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.4,0.4,0.4" - density: 3125 - mask: - - LargeMobMask - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.4,0.4,0.4" + density: 3125 + mask: + - LargeMobMask + layer: + - WallLayer - type: ApcPowerReceiver powerLoad: 500 - type: GravityGenerator diff --git a/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml b/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml index 837f8cfaf1..15c1e69af7 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml @@ -8,13 +8,14 @@ anchored: true - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.08,-0.35,0.15,0.25" - mask: - - TabletopMachineMask - layer: - - TabletopMachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.08,-0.35,0.15,0.25" + mask: + - TabletopMachineMask + layer: + - TabletopMachineLayer - type: Sprite netsync: false sprite: Structures/Machines/hotplate.rsi diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index cf15354b94..8831c7f592 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -24,14 +24,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.4,0.4,0.4" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.4,0.4,0.4" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: Destructible thresholds: - trigger: @@ -109,14 +110,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.4,0.4,0.4" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.4,0.4,0.4" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: ResearchClient - type: Destructible thresholds: diff --git a/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml b/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml index 027e4363f2..6edb724ca8 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml @@ -38,14 +38,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.5,0.25,0.5" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.5,0.25,0.5" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: Construction graph: Machine node: machine diff --git a/Resources/Prototypes/Entities/Structures/Machines/microwave.yml b/Resources/Prototypes/Entities/Structures/Machines/microwave.yml index bdef9b808b..0c57018f04 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/microwave.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/microwave.yml @@ -30,14 +30,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.3,-0.16,0.3,0.16" - density: 190 - mask: - - TabletopMachineMask - layer: - - TabletopMachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.3,-0.16,0.3,0.16" + density: 190 + mask: + - TabletopMachineMask + layer: + - TabletopMachineLayer - type: Sprite netsync: false sprite: Structures/Machines/microwave.rsi diff --git a/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml b/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml index 3a516b02d6..75264e6400 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml @@ -24,13 +24,14 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.08,-0.35,0.15,0.25" - mask: - - TabletopMachineMask - layer: - - TabletopMachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.08,-0.35,0.15,0.25" + mask: + - TabletopMachineMask + layer: + - TabletopMachineLayer - type: Sprite netsync: false sprite: Structures/Machines/juicer.rsi diff --git a/Resources/Prototypes/Entities/Structures/Machines/recycler.yml b/Resources/Prototypes/Entities/Structures/Machines/recycler.yml index 49b6e563dd..fc4374cb4e 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/recycler.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/recycler.yml @@ -13,35 +13,35 @@ path: /Audio/Ambience/Objects/circular_saw.ogg - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.15,-0.15,0.15,0.15" - id: brrt - hard: false - layer: - - FullTileLayer - - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.49,0.49,0.49" - id: collision - hard: true - mask: - - Impassable - layer: - - Opaque - - BulletImpassable - - shape: !type:PolygonShape - vertices: - - -0.55,-0.55 - - 0.55,-0.55 - - 0.55,0.55 - - -0.55,0.55 - id: conveyor - layer: - - Impassable - - MidImpassable - - LowImpassable - hard: False + brrt: + shape: + !type:PhysShapeAabb + bounds: "-0.15,-0.15,0.15,0.15" + hard: false + layer: + - FullTileLayer + collision: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,0.49" + hard: true + mask: + - Impassable + layer: + - Opaque + - BulletImpassable + conveyor: + shape: !type:PolygonShape + vertices: + - -0.55,-0.55 + - 0.55,-0.55 + - 0.55,0.55 + - -0.55,0.55 + layer: + - Impassable + - MidImpassable + - LowImpassable + hard: False - type: SignalReceiver inputs: Reverse: [] @@ -49,7 +49,7 @@ Off: [] - type: Transform anchored: true - noRot: false + noRot: false - type: Sprite netsync: false drawdepth: Doors @@ -111,4 +111,4 @@ maxVol: 0 #exists only for the overflow stuff on material reclaimer - type: MaterialStorage - type: Conveyor - - type: Rotatable \ No newline at end of file + - type: Rotatable diff --git a/Resources/Prototypes/Entities/Structures/Machines/seed_extractor.yml b/Resources/Prototypes/Entities/Structures/Machines/seed_extractor.yml index a8fb9d4bd5..f971a4a6f0 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/seed_extractor.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/seed_extractor.yml @@ -17,14 +17,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.4,0.25,0.4" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.4,0.25,0.4" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: Appearance - type: GenericVisualizer visuals: diff --git a/Resources/Prototypes/Entities/Structures/Machines/stasisbed.yml b/Resources/Prototypes/Entities/Structures/Machines/stasisbed.yml index 4773b1cd3c..6be7f5a962 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/stasisbed.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/stasisbed.yml @@ -45,10 +45,10 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.05" - density: 190 - mask: - - LowImpassable - + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.05" + density: 190 + mask: + - LowImpassable diff --git a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml index 84b793e906..a1a3d12659 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml @@ -27,14 +27,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.4,0.4,0.4" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.4,0.4,0.4" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index 2fb7f3c064..29f7848b8a 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -22,14 +22,15 @@ noRot: true - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.45,0.25,0.45" - mask: - - MachineMask - layer: - - MachineLayer - density: 200 + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.45,0.25,0.45" + mask: + - MachineMask + layer: + - MachineLayer + density: 200 - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Machines/wireless_surveillance_camera.yml b/Resources/Prototypes/Entities/Structures/Machines/wireless_surveillance_camera.yml index 10ef4a3c37..d69eb96f62 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/wireless_surveillance_camera.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/wireless_surveillance_camera.yml @@ -16,7 +16,8 @@ rotateWhileAnchored: true - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeCircle radius: 0.45 density: 80 diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/portable.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/portable.yml index c51f8f474f..5c3fb081a6 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/portable.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/portable.yml @@ -12,14 +12,15 @@ canCollide: false - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.4 - density: 100 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.4 + density: 100 + mask: + - MachineMask + layer: + - MachineLayer - type: Sprite netsync: false sprite: Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml index ceae3eed4b..69b8adb92d 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml @@ -16,9 +16,10 @@ netsync: false - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" - type: Airtight noAirWhenFullyAirBlocked: false - type: Clickable diff --git a/Resources/Prototypes/Entities/Structures/Piping/Disposal/high_pressure_machine_frame.yml b/Resources/Prototypes/Entities/Structures/Piping/Disposal/high_pressure_machine_frame.yml index f5a94e5cb0..e3b35ef25d 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Disposal/high_pressure_machine_frame.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Disposal/high_pressure_machine_frame.yml @@ -12,14 +12,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.4,0.25,0.4" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.4,0.25,0.4" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: Clickable - type: InteractionOutline - type: Anchorable diff --git a/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml index e80a01be01..e82f3f17fa 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml @@ -20,11 +20,12 @@ canCollide: false - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.5,0.25,0.5" - mask: - - SubfloorMask + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.5,0.25,0.5" + mask: + - SubfloorMask - type: Transform anchored: true - type: Anchorable @@ -172,11 +173,12 @@ Anchored: { state: pipe-t } - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.5,0.25,0.4" - mask: - - SubfloorMask + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.5,0.25,0.4" + mask: + - SubfloorMask - type: Construction graph: DisposalPipe node: trunk @@ -219,11 +221,12 @@ type: DisposalRouterBoundUserInterface - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.25,0.5" - mask: - - SubfloorMask + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.25,0.5" + mask: + - SubfloorMask - type: Construction graph: DisposalPipe node: router @@ -260,11 +263,12 @@ mirrorEntity: DisposalRouter - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.5,0.5,0.5" - mask: - - SubfloorMask + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.5,0.5,0.5" + mask: + - SubfloorMask - type: entity id: DisposalJunction @@ -299,11 +303,12 @@ mirrorEntity: DisposalJunctionFlipped - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.25,0.5" - mask: - - SubfloorMask + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.25,0.5" + mask: + - SubfloorMask - type: Construction graph: DisposalPipe node: junction @@ -340,11 +345,12 @@ mirrorEntity: DisposalJunction - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.5,0.5,0.5" - mask: - - SubfloorMask + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.5,0.5,0.5" + mask: + - SubfloorMask - type: entity id: DisposalYJunction @@ -376,11 +382,12 @@ Anchored: { state: pipe-y } - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.25" - mask: - - SubfloorMask + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.25" + mask: + - SubfloorMask - type: Construction graph: DisposalPipe node: yJunction @@ -411,11 +418,12 @@ Anchored: { state: pipe-c } - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.25,0.25" - mask: - - SubfloorMask + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.25,0.25" + mask: + - SubfloorMask - type: Construction graph: DisposalPipe node: bend diff --git a/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml b/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml index 85fd3fb1f5..49955400df 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml @@ -33,14 +33,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.4,0.25,0.4" - density: 75 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.4,0.25,0.4" + density: 75 + mask: + - MachineMask + layer: + - MachineLayer - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/base_particleaccelerator.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/base_particleaccelerator.yml index aa668fdbbc..a2a3687f9c 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/base_particleaccelerator.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/base_particleaccelerator.yml @@ -11,14 +11,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: Transform anchored: true noRot: false diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml index 5aaa2fd9b3..1ec9992ee3 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml @@ -20,15 +20,16 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.48,-0.48,0.48,0.48" - hard: false - layer: [None] - mask: - # Has to hit mobs, singularity, and singularity generator - - Opaque - - FullTileMask + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.48,-0.48,0.48,0.48" + hard: false + layer: [None] + mask: + # Has to hit mobs, singularity, and singularity generator + - Opaque + - FullTileMask - type: ParticleProjectile - type: SinguloFood # Energy is setup by the PA particle fire function. @@ -42,4 +43,4 @@ Level2: {state: particle2} Level3: {state: particle3} - type: GuideHelp - guides: [ Singularity, Power ] \ No newline at end of file + guides: [ Singularity, Power ] diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml index bbe608e4e0..301d524973 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml @@ -11,14 +11,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: Transform anchored: true noRot: true diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/containment.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/containment.yml index 88e327d7e5..63856085ba 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/containment.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/containment.yml @@ -6,14 +6,15 @@ components: - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - density: 190 - mask: - - FullTileMask - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 190 + mask: + - FullTileMask + layer: + - WallLayer - type: InteractionOutline - type: Anchorable - type: Sprite @@ -81,13 +82,14 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" - mask: - - FullTileMask - layer: - - GlassLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + mask: + - FullTileMask + layer: + - GlassLayer - type: Sprite sprite: Structures/Power/Generation/Singularity/containment_field.rsi state: field diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/emitter.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/emitter.yml index 7f2bdf0e6c..2a6b5f5449 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/emitter.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/emitter.yml @@ -12,14 +12,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.25,0.25,0.25" - density: 400 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.25,0.25,0.25" + density: 400 + mask: + - MachineMask + layer: + - MachineLayer - type: Transform anchored: true - type: Sprite diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/generator.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/generator.yml index dab62b9d6e..36538b66e7 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/generator.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/generator.yml @@ -16,16 +16,17 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - # Using a circle here makes it a lot easier to pull it all the way from Cargo - !type:PhysShapeCircle - radius: 0.45 - density: 190 - # Keep an eye on ParticlesProjectile when adjusting these - mask: - - MachineMask - layer: - - Opaque + fix1: + shape: + # Using a circle here makes it a lot easier to pull it all the way from Cargo + !type:PhysShapeCircle + radius: 0.45 + density: 190 + # Keep an eye on ParticlesProjectile when adjusting these + mask: + - MachineMask + layer: + - Opaque - type: Transform anchored: true noRot: true @@ -33,4 +34,4 @@ - type: Pullable - type: GuideHelp guides: [ Singularity, Power ] - + diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml index 18e5d98b9b..b17c3ab29a 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml @@ -18,16 +18,16 @@ - type: GravityWell # To make the singularity attract things. - type: Fixtures fixtures: - - id: EventHorizon - shape: - !type:PhysShapeCircle - radius: 0.35 - restitution: 0.8 - density: 99999 - mask: - - AllMask - layer: - - AllMask + EventHorizon: + shape: + !type:PhysShapeCircle + radius: 0.35 + restitution: 0.8 + density: 99999 + mask: + - AllMask + layer: + - AllMask - type: Singularity energy: 180 level: 1 diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml index c8c0268538..44c175de70 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml @@ -15,14 +15,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - density: 190 - mask: - - FullTileMask - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 190 + mask: + - FullTileMask + layer: + - WallLayer - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic @@ -104,14 +105,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" - density: 190 - mask: - - FullTileMask - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + density: 190 + mask: + - FullTileMask + layer: + - WallLayer - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml index f8f10cbcad..c22ffc1c4a 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml @@ -18,14 +18,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.5,0.4,0.3" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.5,0.4,0.3" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: Transform anchored: true noRot: true diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml index cf943c9550..efe6191b7e 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml @@ -18,14 +18,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.1,0.45,0.1" - density: 550 - mask: - - MachineMask - layer: - - MidImpassable, LowImpassable, BulletImpassable + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.1,0.45,0.1" + density: 550 + mask: + - MachineMask + layer: + - MidImpassable, LowImpassable, BulletImpassable - type: Sprite sprite: Structures/Power/Generation/solar_panel.rsi state: normal @@ -114,14 +115,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.25 - density: 375 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.25 + density: 375 + mask: + - MachineMask + layer: + - MachineLayer - type: Sprite sprite: Structures/Power/Generation/solar_panel.rsi state: solar_assembly @@ -158,13 +160,14 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb {} - density: 100 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb {} + density: 100 + mask: + - MachineMask + layer: + - MachineLayer - type: Sprite sprite: Structures/Power/Generation/solar_panel.rsi state: solar_tracker diff --git a/Resources/Prototypes/Entities/Structures/Power/chargers.yml b/Resources/Prototypes/Entities/Structures/Power/chargers.yml index 2147bba095..3120d6860a 100644 --- a/Resources/Prototypes/Entities/Structures/Power/chargers.yml +++ b/Resources/Prototypes/Entities/Structures/Power/chargers.yml @@ -52,12 +52,13 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.10,-0.10,0.10,0.10" - density: 500 - mask: - - TabletopMachineMask + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.10,-0.10,0.10,0.10" + density: 500 + mask: + - TabletopMachineMask - type: ItemSlots slots: charger_slot: diff --git a/Resources/Prototypes/Entities/Structures/Power/debug_power.yml b/Resources/Prototypes/Entities/Structures/Power/debug_power.yml index 0dd5233c71..edd72e92fc 100644 --- a/Resources/Prototypes/Entities/Structures/Power/debug_power.yml +++ b/Resources/Prototypes/Entities/Structures/Power/debug_power.yml @@ -22,10 +22,11 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" - layer: [MobMask, Opaque] + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + layer: [MobMask, Opaque] - type: Transform anchored: true - type: Sprite @@ -66,10 +67,11 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" - layer: [MobMask, Opaque] + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + layer: [MobMask, Opaque] - type: Transform anchored: true - type: Sprite @@ -99,10 +101,11 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" - layer: [MobMask, Opaque] + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + layer: [MobMask, Opaque] - type: Transform anchored: true - type: Sprite @@ -159,10 +162,11 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" - layer: [MobMask, Opaque] + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + layer: [MobMask, Opaque] - type: Transform anchored: true - type: Sprite diff --git a/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml b/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml index 7e3d19eced..fcb26ff4c8 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml @@ -22,7 +22,8 @@ canCollide: false - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeAabb bounds: "-0.25,-0.25,0.25,0.25" density: 20 diff --git a/Resources/Prototypes/Entities/Structures/Specific/anomalies.yml b/Resources/Prototypes/Entities/Structures/Specific/anomalies.yml index 4e613ddc4a..557b07ddce 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/anomalies.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/anomalies.yml @@ -23,14 +23,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 50 - mask: - - MobMask - layer: - - MobLayer + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 50 + mask: + - MobMask + layer: + - MobLayer - type: Sprite netsync: false noRot: true @@ -163,23 +164,24 @@ - type: Portal - type: Fixtures fixtures: - - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 50 - mask: - - MobMask - layer: - - MobLayer - - id: portalFixture - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.48,0.25,0.48" - mask: - - FullTileMask - layer: - - WallLayer - hard: false + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 50 + mask: + - MobMask + layer: + - MobLayer + portalFixture: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.48,0.25,0.48" + mask: + - FullTileMask + layer: + - WallLayer + hard: false - type: Anomaly pulseSound: collection: RadiationPulse diff --git a/Resources/Prototypes/Entities/Structures/Specific/xeno.yml b/Resources/Prototypes/Entities/Structures/Specific/xeno.yml index d6f624a898..a7dbe7bba7 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/xeno.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/xeno.yml @@ -31,7 +31,8 @@ bodyType: Static - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeAabb bounds: "-0.5,-0.5,0.5,0.5" mask: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml index 2e89c2f622..418829170c 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml @@ -67,14 +67,15 @@ bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.25,0.25,0.25" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.25,0.25,0.25" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: AtmosDevice requireAnchored: false joinSystem: true @@ -600,14 +601,15 @@ bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.3,0.4,0.3" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.3,0.4,0.3" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: PhysicalComposition materialComposition: Steel: 500 diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml index 8ea94f0da4..6c33daa069 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml @@ -29,14 +29,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.48,0.25,0.48" - density: 145 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.48,0.25,0.48" + density: 145 + mask: + - MachineMask + layer: + - MachineLayer - type: EntityStorage - type: ContainerContainer containers: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/big_boxes.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/big_boxes.yml index d3e8247403..9ecc6f99ab 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/big_boxes.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/big_boxes.yml @@ -10,7 +10,8 @@ bodyType: KinematicController - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeAabb bounds: "-0.4,-0.4,0.4,0.4" density: 100 @@ -96,7 +97,8 @@ components: - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeAabb bounds: "-0.4,-0.4,0.4,0.4" mask: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml index a38cbe66b8..1f253fe6f1 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml @@ -25,14 +25,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.4,0.4,0.29" - density: 190 - mask: - - SmallMobMask #this is so they can go under plastic flaps - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.4,0.4,0.29" + density: 190 + mask: + - SmallMobMask #this is so they can go under plastic flaps + layer: + - MachineLayer - type: EntityStorage capacity: 500 - type: PlaceableSurface diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml index a97010a402..671ca28ee3 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml @@ -284,14 +284,15 @@ bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.4,0.4,0.29" - density: 135 - mask: - - LargeMobMask - layer: - - LargeMobLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.4,0.4,0.29" + density: 135 + mask: + - LargeMobMask + layer: + - LargeMobLayer - type: Construction graph: CrateLivestock node: cratelivestock @@ -336,14 +337,15 @@ airtight: false - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.4,0.4,0.29" - density: 80 - mask: - - LargeMobMask - layer: - - LargeMobLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.4,0.4,0.29" + density: 80 + mask: + - LargeMobMask + layer: + - LargeMobLayer - type: StaticPrice price: 60 diff --git a/Resources/Prototypes/Entities/Structures/Storage/Tanks/base_structuretanks.yml b/Resources/Prototypes/Entities/Structures/Storage/Tanks/base_structuretanks.yml index d8a4840df8..8eb10ce590 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Tanks/base_structuretanks.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Tanks/base_structuretanks.yml @@ -12,14 +12,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.4,0.4,0.4" - density: 155 - mask: - - MachineMask - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.4,0.4,0.4" + density: 155 + mask: + - MachineMask + layer: + - WallLayer - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml b/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml index 4cc908154e..5b52f5c81a 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml @@ -29,14 +29,15 @@ noRot: true - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.18,-0.48,0.18,0.48" - density: 200 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.18,-0.48,0.18,0.48" + density: 200 + mask: + - MachineMask + layer: + - MachineLayer - type: InteractionOutline - type: ContainerContainer containers: @@ -87,14 +88,15 @@ noRot: true - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.22,-0.42,0.22,0.34" - density: 210 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.22,-0.42,0.22,0.34" + density: 210 + mask: + - MachineMask + layer: + - MachineLayer - type: InteractionOutline - type: ContainerContainer containers: diff --git a/Resources/Prototypes/Entities/Structures/Storage/morgue.yml b/Resources/Prototypes/Entities/Structures/Storage/morgue.yml index e35e632362..f082615106 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/morgue.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/morgue.yml @@ -25,14 +25,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" - density: 190 - mask: - - MachineMask - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + density: 190 + mask: + - MachineMask + layer: + - WallLayer - type: EntityStorage isCollidableWhenOpen: true showContents: false @@ -102,14 +103,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: EntityStorage isCollidableWhenOpen: true showContents: false diff --git a/Resources/Prototypes/Entities/Structures/Storage/paper_bin.yml b/Resources/Prototypes/Entities/Structures/Storage/paper_bin.yml index 0482d1dd5d..7b2bbf9350 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/paper_bin.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/paper_bin.yml @@ -22,12 +22,13 @@ - Write - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.10,-0.10,0.10,0.10" - density: 500 - mask: - - TabletopMachineMask + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.10,-0.10,0.10,0.10" + density: 500 + mask: + - TabletopMachineMask - type: InteractionOutline - type: Bin whitelist: @@ -75,4 +76,4 @@ whitelist: tags: - Document - - Write \ No newline at end of file + - Write diff --git a/Resources/Prototypes/Entities/Structures/Storage/storage.yml b/Resources/Prototypes/Entities/Structures/Storage/storage.yml index 4e1fe447e5..b70c734d35 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/storage.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/storage.yml @@ -22,14 +22,15 @@ snapCardinals: true - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.3,-0.3,0.3,0.3" - density: 140 - mask: - - MachineMask - layer: - - MachineLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.3,-0.3,0.3,0.3" + density: 140 + mask: + - MachineMask + layer: + - MachineLayer - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/atmos_plaque.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/atmos_plaque.yml index 009f7dc520..1be9f202f0 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/atmos_plaque.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/atmos_plaque.yml @@ -7,11 +7,12 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.3,-0.3,0.3,0.3" - layer: - - MidImpassable + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.3,-0.3,0.3,0.3" + layer: + - MidImpassable - type: Sprite layers: - state: atmosplaque diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/base_structuresigns.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/base_structuresigns.yml index 61823c866f..fa0a6fe4ee 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/base_structuresigns.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/base_structuresigns.yml @@ -15,8 +15,9 @@ canCollide: false - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb {} + fix1: + shape: + !type:PhysShapeAabb {} - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/monitors_televisions.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/monitors_televisions.yml index a953371a5f..dc05549883 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/monitors_televisions.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/monitors_televisions.yml @@ -18,7 +18,8 @@ color: "#b89f25" - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeAabb bounds: "-0.25,-0.25,0.25,0.25" density: 200 @@ -47,7 +48,8 @@ state: telescreen - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeAabb bounds: "-0.20,-0.10,0.25,0.35" density: 250 @@ -120,7 +122,8 @@ components: - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeAabb bounds: "-0.75,-0.10,0.75,0.35" density: 75 diff --git a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml index 1e6832351a..759643f5d6 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml @@ -28,14 +28,15 @@ - type: Airtight - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" - density: 100 - mask: - - FullTileMask - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + density: 100 + mask: + - FullTileMask + layer: + - WallLayer - type: IconSmooth key: walls base: rock_ @@ -83,7 +84,8 @@ - type: Airtight - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeAabb bounds: "-0.5,-0.5,0.5,0.5" density: 100 diff --git a/Resources/Prototypes/Entities/Structures/Walls/barricades.yml b/Resources/Prototypes/Entities/Structures/Walls/barricades.yml index e77f8e9bef..666a237e5b 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/barricades.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/barricades.yml @@ -13,12 +13,13 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb {} - mask: - - FullTileMask - layer: - - WallLayer + fix1: + shape: + !type:PhysShapeAabb {} + mask: + - FullTileMask + layer: + - WallLayer - type: Tag tags: - Wooden diff --git a/Resources/Prototypes/Entities/Structures/Walls/girders.yml b/Resources/Prototypes/Entities/Structures/Walls/girders.yml index 33d0beefef..04b2aa1af0 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/girders.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/girders.yml @@ -11,14 +11,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - density: 60 - mask: - - MachineMask - layer: - - GlassAirlockLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 60 + mask: + - MachineMask + layer: + - GlassAirlockLayer - type: InteractionOutline - type: Construction graph: Girder diff --git a/Resources/Prototypes/Entities/Structures/Walls/grille.yml b/Resources/Prototypes/Entities/Structures/Walls/grille.yml index 9ebacb7779..d646cd5594 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/grille.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/grille.yml @@ -56,11 +56,12 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" - layer: - - GlassLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + layer: + - GlassLayer - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Walls/railing.yml b/Resources/Prototypes/Entities/Structures/Walls/railing.yml index 5e5791476c..ab0c44e2ad 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/railing.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/railing.yml @@ -16,14 +16,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.49,0.49,-0.25" - density: 1000 - mask: - - TableMask - layer: - - TableLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,-0.25" + density: 1000 + mask: + - TableMask + layer: + - TableLayer - type: InteractionOutline - type: Repairable - type: Damageable @@ -74,22 +75,24 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.49,0.49,-0.25" - density: 1000 - mask: - - TableMask - layer: - - TableLayer - - shape: - !type:PhysShapeAabb - bounds: "0.49,0.49,0.25,-0.49" - density: 1000 - mask: - - TableMask - layer: - - TableLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,-0.25" + density: 1000 + mask: + - TableMask + layer: + - TableLayer + fix2: + shape: + !type:PhysShapeAabb + bounds: "0.49,0.49,0.25,-0.49" + density: 1000 + mask: + - TableMask + layer: + - TableLayer - type: InteractionOutline - type: Repairable - type: Damageable @@ -140,14 +143,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.49,0.49,-0.25,0.25" - density: 1000 - mask: - - TableMask - layer: - - TableLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,0.49,-0.25,0.25" + density: 1000 + mask: + - TableMask + layer: + - TableLayer - type: InteractionOutline - type: Repairable - type: Damageable diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index 61c3a70ff2..0e132ab7eb 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -35,14 +35,15 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" - mask: - - FullTileMask - layer: - - WallLayer - density: 1000 + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + mask: + - FullTileMask + layer: + - WallLayer + density: 1000 - type: Occluder - type: Airtight - type: StaticPrice @@ -625,16 +626,17 @@ - East - type: Fixtures fixtures: - - shape: - !type:PolygonShape - vertices: - - "-0.5,-0.5" - - "0.5,0.5" - - "0.5,-0.5" - mask: - - FullTileMask - layer: - - WallLayer + fix1: + shape: + !type:PolygonShape + vertices: + - "-0.5,-0.5" + - "0.5,0.5" + - "0.5,-0.5" + mask: + - FullTileMask + layer: + - WallLayer - type: Destructible thresholds: - trigger: @@ -909,13 +911,14 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" - mask: - - FullTileMask - layer: - - GlassLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + mask: + - FullTileMask + layer: + - GlassLayer - type: Airtight - type: entity @@ -931,7 +934,8 @@ bodyType: Static - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeAabb bounds: "-0.5,-0.5,0.5,0.5" mask: diff --git a/Resources/Prototypes/Entities/Structures/Windows/window.yml b/Resources/Prototypes/Entities/Structures/Windows/window.yml index e68dbb8f62..7a95d8c3d6 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/window.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/window.yml @@ -31,12 +31,13 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb {} - mask: - - FullTileMask - layer: - - GlassLayer + fix1: + shape: + !type:PhysShapeAabb {} + mask: + - FullTileMask + layer: + - GlassLayer - type: Damageable damageContainer: Inorganic damageModifierSet: Glass @@ -125,14 +126,15 @@ - type: Physics - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.39,0.49,-0.36" - density: 1500 - mask: - - FullTileMask - layer: - - GlassLayer + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.39,0.49,-0.36" + density: 1500 + mask: + - FullTileMask + layer: + - GlassLayer - type: Repairable - type: Damageable damageContainer: Inorganic diff --git a/Resources/Prototypes/Entities/Structures/base_structure.yml b/Resources/Prototypes/Entities/Structures/base_structure.yml index 44fc1156e4..b5356674aa 100644 --- a/Resources/Prototypes/Entities/Structures/base_structure.yml +++ b/Resources/Prototypes/Entities/Structures/base_structure.yml @@ -11,15 +11,16 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - density: 60 - mask: - - MachineMask - layer: - - MidImpassable - - LowImpassable + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 60 + mask: + - MachineMask + layer: + - MidImpassable + - LowImpassable - type: Pullable - type: Tag tags: @@ -43,15 +44,16 @@ bodyType: Dynamic - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - density: 60 - mask: - - MachineMask - layer: - - MidImpassable - - LowImpassable + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 60 + mask: + - MachineMask + layer: + - MidImpassable + - LowImpassable - type: Anchorable - type: Tag diff --git a/Resources/Prototypes/Entities/Structures/cargo_console.yml b/Resources/Prototypes/Entities/Structures/cargo_console.yml index 6182fa060c..f02bd60a1e 100644 --- a/Resources/Prototypes/Entities/Structures/cargo_console.yml +++ b/Resources/Prototypes/Entities/Structures/cargo_console.yml @@ -12,7 +12,8 @@ noRot: true - type: Fixtures fixtures: - - shape: + fix1: + shape: !type:PhysShapeAabb bounds: "-0.45,-0.45,0.45,0.00" density: 190 diff --git a/Resources/Prototypes/Entities/Structures/conveyor.yml b/Resources/Prototypes/Entities/Structures/conveyor.yml index 8a82e0c294..42eb177d61 100644 --- a/Resources/Prototypes/Entities/Structures/conveyor.yml +++ b/Resources/Prototypes/Entities/Structures/conveyor.yml @@ -22,18 +22,18 @@ bodyType: Static - type: Fixtures fixtures: - - id: conveyor - shape: !type:PolygonShape - vertices: - - -0.55,-0.55 - - 0.55,-0.55 - - 0.55,0.55 - - -0.55,0.55 - layer: - - Impassable - - MidImpassable - - LowImpassable - hard: False + conveyor: + shape: !type:PolygonShape + vertices: + - -0.55,-0.55 + - 0.55,-0.55 + - 0.55,0.55 + - -0.55,0.55 + layer: + - Impassable + - MidImpassable + - LowImpassable + hard: False - type: Conveyor - type: SignalReceiver inputs: diff --git a/Resources/Prototypes/Entities/Structures/hydro_tray.yml b/Resources/Prototypes/Entities/Structures/hydro_tray.yml index 86baf8634a..51395eeafc 100644 --- a/Resources/Prototypes/Entities/Structures/hydro_tray.yml +++ b/Resources/Prototypes/Entities/Structures/hydro_tray.yml @@ -6,13 +6,14 @@ components: - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.1" - density: 190 - hard: true - mask: - - MachineMask + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.1" + density: 190 + hard: true + mask: + - MachineMask - type: Anchorable - type: Pullable - type: Sprite diff --git a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml index 0895205f3b..d5d016264d 100644 --- a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml +++ b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml @@ -18,14 +18,15 @@ anchored: true - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.49,0.49,0.49" - density: 100 - mask: - - TabletopMachineMask - layer: - - MidImpassable + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,0.49" + density: 100 + mask: + - TabletopMachineMask + layer: + - MidImpassable - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic @@ -55,15 +56,16 @@ components: - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.49,0.49,0.49" - density: 100 - mask: - - TabletopMachineMask - layer: - - Opaque - - MidImpassable + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,0.49" + density: 100 + mask: + - TabletopMachineMask + layer: + - Opaque + - MidImpassable - type: Occluder - type: entity diff --git a/Resources/Prototypes/Entities/Structures/soil.yml b/Resources/Prototypes/Entities/Structures/soil.yml index bab4c753c8..c123b3087f 100644 --- a/Resources/Prototypes/Entities/Structures/soil.yml +++ b/Resources/Prototypes/Entities/Structures/soil.yml @@ -10,15 +10,16 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.1" - density: 190 - hard: false - mask: - - FullTileMask - layer: - - FullTileMask + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.1" + density: 190 + hard: false + mask: + - FullTileMask + layer: + - FullTileMask - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Entities/Tiles/bananium.yml b/Resources/Prototypes/Entities/Tiles/bananium.yml index b7eaeef16b..b9178b546d 100644 --- a/Resources/Prototypes/Entities/Tiles/bananium.yml +++ b/Resources/Prototypes/Entities/Tiles/bananium.yml @@ -53,16 +53,17 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.3,0.4,0.3" - id: "slips" - hard: false - layer: - - SlipLayer - - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.3,0.4,0.3" - density: 1000 - mask: - - ItemMask + 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 diff --git a/Resources/Prototypes/Entities/Tiles/lava.yml b/Resources/Prototypes/Entities/Tiles/lava.yml index 40eac1a751..fe4ca7e0d1 100644 --- a/Resources/Prototypes/Entities/Tiles/lava.yml +++ b/Resources/Prototypes/Entities/Tiles/lava.yml @@ -34,15 +34,16 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" - layer: - - SlipLayer - mask: - - ItemMask - density: 1000 - hard: false + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + layer: + - SlipLayer + mask: + - ItemMask + density: 1000 + hard: false - type: Tag tags: - HideContextMenu diff --git a/Resources/Prototypes/Entities/Tiles/water.yml b/Resources/Prototypes/Entities/Tiles/water.yml index 64d35f53b3..45cdc667bd 100644 --- a/Resources/Prototypes/Entities/Tiles/water.yml +++ b/Resources/Prototypes/Entities/Tiles/water.yml @@ -26,15 +26,16 @@ bodyType: Static - type: Fixtures fixtures: - - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,0.5" - layer: - - SlipLayer - mask: - - ItemMask - density: 1000 - hard: false + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + layer: + - SlipLayer + mask: + - ItemMask + density: 1000 + hard: false - type: FootstepModifier footstepSoundCollection: collection: FootstepWater diff --git a/Resources/Prototypes/Entities/Virtual/tether.yml b/Resources/Prototypes/Entities/Virtual/tether.yml index bab8124738..4c6bd86864 100644 --- a/Resources/Prototypes/Entities/Virtual/tether.yml +++ b/Resources/Prototypes/Entities/Virtual/tether.yml @@ -6,7 +6,7 @@ bodyType: Dynamic - type: Fixtures fixtures: - - shape: + tether: + shape: !type:PhysShapeCircle radius: 0.35 - id: tether diff --git a/Resources/Prototypes/Magic/Fixtures/runes.yml b/Resources/Prototypes/Magic/Fixtures/runes.yml index b4aaa7753e..4525dcfd82 100644 --- a/Resources/Prototypes/Magic/Fixtures/runes.yml +++ b/Resources/Prototypes/Magic/Fixtures/runes.yml @@ -21,11 +21,11 @@ components: - type: Fixtures fixtures: - - shape: + rune: + shape: !type:PhysShapeAabb bounds: "-0.4,-0.4,0.4,0.4" hard: false - id: rune mask: - ItemMask layer: