diff --git a/Content.Server/DeviceLinking/Systems/DeviceLinkSystem.cs b/Content.Server/DeviceLinking/Systems/DeviceLinkSystem.cs index 9a7da9033c..13c6c1024e 100644 --- a/Content.Server/DeviceLinking/Systems/DeviceLinkSystem.cs +++ b/Content.Server/DeviceLinking/Systems/DeviceLinkSystem.cs @@ -15,7 +15,7 @@ public sealed class DeviceLinkSystem : SharedDeviceLinkSystem public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnTransmitterStartup); + SubscribeLocalEvent(OnTransmitterStartup); SubscribeLocalEvent(OnPacketReceived); } @@ -39,17 +39,18 @@ public sealed class DeviceLinkSystem : SharedDeviceLinkSystem /// /// Moves existing links from machine linking to device linking to ensure linked things still work even when the map wasn't updated yet /// - private void OnTransmitterStartup(EntityUid sourceUid, SignalTransmitterComponent transmitterComponent, MapInitEvent args) + public void OnTransmitterStartup(EntityUid sourceUid, SignalTransmitterComponent transmitterComponent, ComponentStartup args) { - if (!TryComp(sourceUid, out var sourceComponent)) - return; + var sourceComponent = EnsureComp(sourceUid); Dictionary> outputs = new(); foreach (var (transmitterPort, receiverPorts) in transmitterComponent.Outputs) { - foreach (var receiverPort in receiverPorts) { + // Throw error if component is missing. + Comp(receiverPort.Uid); + RemCompDeferred(receiverPort.Uid); outputs.GetOrNew(receiverPort.Uid).Add((transmitterPort, receiverPort.Port)); } } @@ -58,6 +59,8 @@ public sealed class DeviceLinkSystem : SharedDeviceLinkSystem { SaveLinks(null, sourceUid, sinkUid, links, sourceComponent); } + + RemCompDeferred(sourceUid); } #region Sending & Receiving diff --git a/Content.Server/MachineLinking/System/SignalLinkerSystem.cs b/Content.Server/MachineLinking/System/SignalLinkerSystem.cs index 08b2ef9c76..86457d5464 100644 --- a/Content.Server/MachineLinking/System/SignalLinkerSystem.cs +++ b/Content.Server/MachineLinking/System/SignalLinkerSystem.cs @@ -26,7 +26,6 @@ namespace Content.Server.MachineLinking.System { base.Initialize(); - SubscribeLocalEvent(OnTransmitterStartup); SubscribeLocalEvent(OnTransmitterRemoved); SubscribeLocalEvent(OnTransmitterInteractUsing); SubscribeLocalEvent>(OnGetTransmitterVerbs); @@ -159,24 +158,6 @@ namespace Content.Server.MachineLinking.System } } - private void OnTransmitterStartup(EntityUid uid, SignalTransmitterComponent transmitter, ComponentStartup args) - { - // validate links - Dictionary uidCache = new(); - foreach (var tport in transmitter.Outputs) - { - foreach (var rport in tport.Value) - { - if (!uidCache.TryGetValue(rport.Uid, out var receiver)) - uidCache.Add(rport.Uid, receiver = CompOrNull(rport.Uid)); - if (receiver == null || !receiver.Inputs.TryGetValue(rport.Port, out var rpv)) - tport.Value.Remove(rport); - else if (!rpv.Contains(new(uid, tport.Key))) - rpv.Add(new(uid, tport.Key)); - } - } - } - private void OnReceiverStartup(EntityUid uid, SignalReceiverComponent receiver, ComponentStartup args) { // validate links diff --git a/Content.Server/Maps/ResaveCommand.cs b/Content.Server/Maps/ResaveCommand.cs index 6d96d4e5f8..1b2e48294f 100644 --- a/Content.Server/Maps/ResaveCommand.cs +++ b/Content.Server/Maps/ResaveCommand.cs @@ -36,6 +36,9 @@ public sealed class ResaveCommand : LocalizedCommands LoadMap = true, }); + // Process deferred component removals. + _entManager.CullRemovedComponents(); + var mapUid = _mapManager.GetMapEntityId(mapId); var mapXform = _entManager.GetComponent(mapUid); diff --git a/Content.Shared/DeviceLinking/DeviceLinkSourceComponent.cs b/Content.Shared/DeviceLinking/DeviceLinkSourceComponent.cs index 5059ec8448..01417988d9 100644 --- a/Content.Shared/DeviceLinking/DeviceLinkSourceComponent.cs +++ b/Content.Shared/DeviceLinking/DeviceLinkSourceComponent.cs @@ -17,7 +17,7 @@ public sealed class DeviceLinkSourceComponent : Component /// /// A list of sink uids that got linked for each port /// - [DataField("registeredSinks")] + [ViewVariables] public Dictionary> Outputs = new(); /// diff --git a/Content.Shared/DeviceLinking/SharedDeviceLinkSystem.cs b/Content.Shared/DeviceLinking/SharedDeviceLinkSystem.cs index 80b00d635c..1af1be7104 100644 --- a/Content.Shared/DeviceLinking/SharedDeviceLinkSystem.cs +++ b/Content.Shared/DeviceLinking/SharedDeviceLinkSystem.cs @@ -19,6 +19,7 @@ public abstract class SharedDeviceLinkSystem : EntitySystem /// public override void Initialize() { + SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnSourceStartup); SubscribeLocalEvent(OnSinkStartup); SubscribeLocalEvent(OnSourceRemoved); @@ -27,6 +28,19 @@ public abstract class SharedDeviceLinkSystem : EntitySystem } #region Link Validation + + private void OnInit(EntityUid uid, DeviceLinkSourceComponent component, ComponentInit args) + { + // Populate the output dictionary. + foreach (var (sinkUid, links) in component.LinkedPorts) + { + foreach (var link in links) + { + component.Outputs.GetOrNew(link.source).Add(sinkUid); + } + } + } + /// /// Removes invalid links where the saved sink doesn't exist/have a sink component for example /// @@ -84,7 +98,7 @@ public abstract class SharedDeviceLinkSystem : EntitySystem List<(string, string)> invalidLinks = new(); foreach (var link in linkedPorts) { - if (!sinkComponent.Ports.Contains(link.sink) || !(sourceComponent.Outputs.GetValueOrDefault(link.source)?.Contains(sinkUid) ?? false)) + if (!sinkComponent.Ports.Contains(link.sink)) invalidLinks.Add(link); } diff --git a/Resources/Maps/Dungeon/Templates/17x17.yml b/Resources/Maps/Dungeon/Templates/17x17.yml index aa7dad94b3..da713251be 100644 --- a/Resources/Maps/Dungeon/Templates/17x17.yml +++ b/Resources/Maps/Dungeon/Templates/17x17.yml @@ -1,5 +1,5 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space @@ -33,7 +33,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - type: OccluderTree - type: Shuttle - gravityShakeSound: !type:SoundPathSpecifier @@ -116,4 +117,5 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: SpreaderGrid + - type: GridPathfinding ... diff --git a/Resources/Maps/Dungeon/Templates/17x5.yml b/Resources/Maps/Dungeon/Templates/17x5.yml index a04325c4d0..d075b503db 100644 --- a/Resources/Maps/Dungeon/Templates/17x5.yml +++ b/Resources/Maps/Dungeon/Templates/17x5.yml @@ -1,5 +1,5 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space @@ -27,7 +27,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - type: OccluderTree - type: Shuttle - gravityShakeSound: !type:SoundPathSpecifier @@ -110,4 +111,5 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: SpreaderGrid + - type: GridPathfinding ... diff --git a/Resources/Maps/Dungeon/Templates/3x5.yml b/Resources/Maps/Dungeon/Templates/3x5.yml index b5df97b6db..3fad42cc85 100644 --- a/Resources/Maps/Dungeon/Templates/3x5.yml +++ b/Resources/Maps/Dungeon/Templates/3x5.yml @@ -1,5 +1,5 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space @@ -24,7 +24,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - type: OccluderTree - type: Shuttle - gravityShakeSound: !type:SoundPathSpecifier @@ -35,4 +36,5 @@ entities: nodes: [] type: DecalGrid - type: SpreaderGrid + - type: GridPathfinding ... diff --git a/Resources/Maps/Dungeon/Templates/3x7.yml b/Resources/Maps/Dungeon/Templates/3x7.yml index b5df97b6db..3fad42cc85 100644 --- a/Resources/Maps/Dungeon/Templates/3x7.yml +++ b/Resources/Maps/Dungeon/Templates/3x7.yml @@ -1,5 +1,5 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space @@ -24,7 +24,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - type: OccluderTree - type: Shuttle - gravityShakeSound: !type:SoundPathSpecifier @@ -35,4 +36,5 @@ entities: nodes: [] type: DecalGrid - type: SpreaderGrid + - type: GridPathfinding ... diff --git a/Resources/Maps/Dungeon/Templates/5x11.yml b/Resources/Maps/Dungeon/Templates/5x11.yml index efc2c53f6b..d55a6701c0 100644 --- a/Resources/Maps/Dungeon/Templates/5x11.yml +++ b/Resources/Maps/Dungeon/Templates/5x11.yml @@ -1,5 +1,5 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space @@ -33,7 +33,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - type: OccluderTree - type: Shuttle - gravityShakeSound: !type:SoundPathSpecifier @@ -82,4 +83,5 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: SpreaderGrid + - type: GridPathfinding ... diff --git a/Resources/Maps/Dungeon/Templates/5x17.yml b/Resources/Maps/Dungeon/Templates/5x17.yml index 8e70eed026..4b72030447 100644 --- a/Resources/Maps/Dungeon/Templates/5x17.yml +++ b/Resources/Maps/Dungeon/Templates/5x17.yml @@ -1,5 +1,5 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space @@ -27,7 +27,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - type: OccluderTree - type: Shuttle - gravityShakeSound: !type:SoundPathSpecifier @@ -110,4 +111,5 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: SpreaderGrid + - type: GridPathfinding ... diff --git a/Resources/Maps/Dungeon/Templates/5x5.yml b/Resources/Maps/Dungeon/Templates/5x5.yml index fbd8511ecc..0e449261db 100644 --- a/Resources/Maps/Dungeon/Templates/5x5.yml +++ b/Resources/Maps/Dungeon/Templates/5x5.yml @@ -1,5 +1,5 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space @@ -24,7 +24,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - type: OccluderTree - type: Shuttle - gravityShakeSound: !type:SoundPathSpecifier @@ -107,4 +108,5 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: SpreaderGrid + - type: GridPathfinding ... diff --git a/Resources/Maps/Dungeon/Templates/LargeArea2.yml b/Resources/Maps/Dungeon/Templates/LargeArea2.yml index 314b3e6f96..d241fffe3f 100644 --- a/Resources/Maps/Dungeon/Templates/LargeArea2.yml +++ b/Resources/Maps/Dungeon/Templates/LargeArea2.yml @@ -1,10 +1,10 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space 6: FloorAsteroidIronsand1 - 68: FloorSteel + 69: FloorSteel entities: - proto: "" entities: @@ -17,16 +17,16 @@ entities: - chunks: 1,0: ind: 1,0 - tiles: BgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,1: ind: 1,1 tiles: BgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,1: ind: 0,1 - tiles: BgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARAAAAEQAAABEAAAARAAAAEQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARQAAAEUAAABFAAAARQAAAEUAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: BgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAEQAAABEAAAARAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABEAAAARAAAAEQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARAAAAEQAAABEAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAEQAAABEAAAARAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABEAAAARAAAAEQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARAAAAEQAAABEAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAEQAAABEAAAARAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABEAAAARAAAAEQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARAAAAEQAAABEAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAEQAAABEAAAARAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABEAAAARAAAAEQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARAAAAEQAAABEAAAARAAAAEQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAEQAAABEAAAARAAAAEQAAABEAAAABgAAAEQAAABEAAAARAAAAEQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABEAAAARAAAAEQAAABEAAAARAAAAAYAAABEAAAARAAAAEQAAABEAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARAAAAEQAAABEAAAARAAAAEQAAAAGAAAARAAAAEQAAABEAAAARAAAAA== + tiles: BgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAEUAAABFAAAARQAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABFAAAARQAAAEUAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARQAAAEUAAABFAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAEUAAABFAAAARQAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABFAAAARQAAAEUAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARQAAAEUAAABFAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAEUAAABFAAAARQAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABFAAAARQAAAEUAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARQAAAEUAAABFAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAEUAAABFAAAARQAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABFAAAARQAAAEUAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARQAAAEUAAABFAAAARQAAAEUAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAEUAAABFAAAARQAAAEUAAABFAAAABgAAAEUAAABFAAAARQAAAEUAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABFAAAARQAAAEUAAABFAAAARQAAAAYAAABFAAAARQAAAEUAAABFAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARQAAAEUAAABFAAAARQAAAEUAAAAGAAAARQAAAEUAAABFAAAARQAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -34,7 +34,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - type: OccluderTree - type: Shuttle - gravityShakeSound: !type:SoundPathSpecifier @@ -117,4 +118,5 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: SpreaderGrid + - type: GridPathfinding ... diff --git a/Resources/Maps/Dungeon/Templates/LargeArea3.yml b/Resources/Maps/Dungeon/Templates/LargeArea3.yml index f214f02d95..0d52d315b9 100644 --- a/Resources/Maps/Dungeon/Templates/LargeArea3.yml +++ b/Resources/Maps/Dungeon/Templates/LargeArea3.yml @@ -1,10 +1,10 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space 6: FloorAsteroidIronsand1 - 68: FloorSteel + 69: FloorSteel entities: - proto: "" entities: @@ -23,10 +23,10 @@ entities: tiles: BgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,1: ind: 0,1 - tiles: BgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARAAAAEQAAABEAAAARAAAAEQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARQAAAEUAAABFAAAARQAAAEUAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: BgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARAAAAEQAAABEAAAARAAAAEQAAAAGAAAABgAAAAYAAAAGAAAABgAAAEQAAABEAAAARAAAAEQAAABEAAAABgAAAEQAAABEAAAARAAAAEQAAABEAAAABgAAAAYAAAAGAAAABgAAAAYAAABEAAAARAAAAEQAAABEAAAARAAAAAYAAABEAAAARAAAAEQAAABEAAAARAAAAAYAAAAGAAAABgAAAAYAAAAGAAAARAAAAEQAAABEAAAARAAAAEQAAAAGAAAARAAAAEQAAABEAAAARAAAAEQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAEQAAABEAAAARAAAAEQAAABEAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARAAAAEQAAABEAAAABgAAAAYAAABEAAAARAAAAEQAAABEAAAARAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAEQAAABEAAAARAAAAAYAAAAGAAAARAAAAEQAAABEAAAARAAAAEQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABEAAAARAAAAEQAAAAGAAAABgAAAEQAAABEAAAARAAAAEQAAABEAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARAAAAEQAAABEAAAABgAAAAYAAABEAAAARAAAAEQAAABEAAAARAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAEQAAABEAAAARAAAAAYAAAAGAAAARAAAAEQAAABEAAAARAAAAEQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABEAAAARAAAAEQAAAAGAAAABgAAAEQAAABEAAAARAAAAEQAAABEAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARAAAAEQAAABEAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARAAAAEQAAABEAAAARAAAAEQAAAAGAAAABgAAAAYAAAAGAAAABgAAAEQAAABEAAAARAAAAEQAAABEAAAABgAAAEQAAABEAAAARAAAAEQAAABEAAAABgAAAAYAAAAGAAAABgAAAAYAAABEAAAARAAAAEQAAABEAAAARAAAAAYAAABEAAAARAAAAEQAAABEAAAARAAAAAYAAAAGAAAABgAAAAYAAAAGAAAARAAAAEQAAABEAAAARAAAAEQAAAAGAAAARAAAAEQAAABEAAAARAAAAEQAAAAGAAAABgAAAAYAAAAGAAAABgAAAA== + tiles: BgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARQAAAEUAAABFAAAARQAAAEUAAAAGAAAABgAAAAYAAAAGAAAABgAAAEUAAABFAAAARQAAAEUAAABFAAAABgAAAEUAAABFAAAARQAAAEUAAABFAAAABgAAAAYAAAAGAAAABgAAAAYAAABFAAAARQAAAEUAAABFAAAARQAAAAYAAABFAAAARQAAAEUAAABFAAAARQAAAAYAAAAGAAAABgAAAAYAAAAGAAAARQAAAEUAAABFAAAARQAAAEUAAAAGAAAARQAAAEUAAABFAAAARQAAAEUAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAEUAAABFAAAARQAAAEUAAABFAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARQAAAEUAAABFAAAABgAAAAYAAABFAAAARQAAAEUAAABFAAAARQAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAEUAAABFAAAARQAAAAYAAAAGAAAARQAAAEUAAABFAAAARQAAAEUAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABFAAAARQAAAEUAAAAGAAAABgAAAEUAAABFAAAARQAAAEUAAABFAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARQAAAEUAAABFAAAABgAAAAYAAABFAAAARQAAAEUAAABFAAAARQAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAEUAAABFAAAARQAAAAYAAAAGAAAARQAAAEUAAABFAAAARQAAAEUAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABFAAAARQAAAEUAAAAGAAAABgAAAEUAAABFAAAARQAAAEUAAABFAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARQAAAEUAAABFAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARQAAAEUAAABFAAAARQAAAEUAAAAGAAAABgAAAAYAAAAGAAAABgAAAEUAAABFAAAARQAAAEUAAABFAAAABgAAAEUAAABFAAAARQAAAEUAAABFAAAABgAAAAYAAAAGAAAABgAAAAYAAABFAAAARQAAAEUAAABFAAAARQAAAAYAAABFAAAARQAAAEUAAABFAAAARQAAAAYAAAAGAAAABgAAAAYAAAAGAAAARQAAAEUAAABFAAAARQAAAEUAAAAGAAAARQAAAEUAAABFAAAARQAAAEUAAAAGAAAABgAAAAYAAAAGAAAABgAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -34,7 +34,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - type: OccluderTree - type: Shuttle - gravityShakeSound: !type:SoundPathSpecifier @@ -117,4 +118,5 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: SpreaderGrid + - type: GridPathfinding ... diff --git a/Resources/Maps/Dungeon/Templates/LargeArea4.yml b/Resources/Maps/Dungeon/Templates/LargeArea4.yml index b45f3e5725..105c374455 100644 --- a/Resources/Maps/Dungeon/Templates/LargeArea4.yml +++ b/Resources/Maps/Dungeon/Templates/LargeArea4.yml @@ -1,10 +1,10 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space 6: FloorAsteroidIronsand1 - 68: FloorSteel + 69: FloorSteel entities: - proto: "" entities: @@ -17,7 +17,7 @@ entities: - chunks: 1,0: ind: 1,0 - tiles: BgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,1: ind: 1,1 tiles: BgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== @@ -26,7 +26,7 @@ entities: tiles: BgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: BgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABEAAAARAAAAEQAAABEAAAARAAAAAYAAABEAAAARAAAAEQAAABEAAAARAAAAAYAAAAGAAAABgAAAAYAAAAGAAAARAAAAEQAAABEAAAARAAAAEQAAAAGAAAARAAAAEQAAABEAAAARAAAAEQAAAAGAAAABgAAAAYAAAAGAAAABgAAAEQAAABEAAAARAAAAEQAAABEAAAABgAAAEQAAABEAAAARAAAAEQAAABEAAAABgAAAAYAAAAGAAAABgAAAAYAAABEAAAARAAAAEQAAABEAAAARAAAAAYAAABEAAAARAAAAEQAAABEAAAARAAAAAYAAAAGAAAABgAAAAYAAAAGAAAARAAAAEQAAABEAAAARAAAAEQAAAAGAAAARAAAAEQAAABEAAAARAAAAEQAAAAGAAAABgAAAAYAAAAGAAAABgAAAA== + tiles: BgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABFAAAARQAAAEUAAABFAAAARQAAAAYAAABFAAAARQAAAEUAAABFAAAARQAAAAYAAAAGAAAABgAAAAYAAAAGAAAARQAAAEUAAABFAAAARQAAAEUAAAAGAAAARQAAAEUAAABFAAAARQAAAEUAAAAGAAAABgAAAAYAAAAGAAAABgAAAEUAAABFAAAARQAAAEUAAABFAAAABgAAAEUAAABFAAAARQAAAEUAAABFAAAABgAAAAYAAAAGAAAABgAAAAYAAABFAAAARQAAAEUAAABFAAAARQAAAAYAAABFAAAARQAAAEUAAABFAAAARQAAAAYAAAAGAAAABgAAAAYAAAAGAAAARQAAAEUAAABFAAAARQAAAEUAAAAGAAAARQAAAEUAAABFAAAARQAAAEUAAAAGAAAABgAAAAYAAAAGAAAABgAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -34,7 +34,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - type: OccluderTree - type: Shuttle - gravityShakeSound: !type:SoundPathSpecifier @@ -117,4 +118,5 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: SpreaderGrid + - type: GridPathfinding ... diff --git a/Resources/Maps/Dungeon/Templates/MediumArea2.yml b/Resources/Maps/Dungeon/Templates/MediumArea2.yml index 281e8d8fd7..c226f517f0 100644 --- a/Resources/Maps/Dungeon/Templates/MediumArea2.yml +++ b/Resources/Maps/Dungeon/Templates/MediumArea2.yml @@ -1,10 +1,10 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space 6: FloorAsteroidIronsand1 - 68: FloorSteel + 69: FloorSteel entities: - proto: "" entities: @@ -17,10 +17,10 @@ entities: - chunks: 0,1: ind: 0,1 - tiles: RAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: RAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -28,7 +28,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - type: OccluderTree - type: Shuttle - gravityShakeSound: !type:SoundPathSpecifier @@ -111,4 +112,5 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: SpreaderGrid + - type: GridPathfinding ... diff --git a/Resources/Maps/Dungeon/Templates/MediumArea3.yml b/Resources/Maps/Dungeon/Templates/MediumArea3.yml index 213910fd9f..868b81ecfc 100644 --- a/Resources/Maps/Dungeon/Templates/MediumArea3.yml +++ b/Resources/Maps/Dungeon/Templates/MediumArea3.yml @@ -1,10 +1,10 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space 6: FloorAsteroidIronsand1 - 68: FloorSteel + 69: FloorSteel entities: - proto: "" entities: @@ -17,10 +17,10 @@ entities: - chunks: 0,1: ind: 0,1 - tiles: BgAAAEQAAABEAAAARAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BgAAAEUAAABFAAAARQAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: RAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAEQAAABEAAAARAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAABEAAAARAAAAEQAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAARAAAAEQAAABEAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAEQAAABEAAAARAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAEUAAABFAAAARQAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAABFAAAARQAAAEUAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAARQAAAEUAAABFAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAEUAAABFAAAARQAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -28,7 +28,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - type: OccluderTree - type: Shuttle - gravityShakeSound: !type:SoundPathSpecifier @@ -111,4 +112,5 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: SpreaderGrid + - type: GridPathfinding ... diff --git a/Resources/Maps/Dungeon/Templates/MediumArea4.yml b/Resources/Maps/Dungeon/Templates/MediumArea4.yml index e447e156d8..0d4a5cb29a 100644 --- a/Resources/Maps/Dungeon/Templates/MediumArea4.yml +++ b/Resources/Maps/Dungeon/Templates/MediumArea4.yml @@ -1,10 +1,10 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space 6: FloorAsteroidIronsand1 - 68: FloorSteel + 69: FloorSteel entities: - proto: "" entities: @@ -17,10 +17,10 @@ entities: - chunks: 0,1: ind: 0,1 - tiles: BgAAAEQAAABEAAAARAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BgAAAEUAAABFAAAARQAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: BgAAAEQAAABEAAAARAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAABEAAAARAAAAEQAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAARAAAAEQAAABEAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAEQAAABEAAAARAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAABEAAAARAAAAEQAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAEQAAABEAAAARAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAABEAAAARAAAAEQAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAARAAAAEQAAABEAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAEQAAABEAAAARAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BgAAAEUAAABFAAAARQAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAABFAAAARQAAAEUAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAARQAAAEUAAABFAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAEUAAABFAAAARQAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAABFAAAARQAAAEUAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAEUAAABFAAAARQAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAABFAAAARQAAAEUAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAARQAAAEUAAABFAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAEUAAABFAAAARQAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -28,7 +28,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - type: OccluderTree - type: Shuttle - gravityShakeSound: !type:SoundPathSpecifier @@ -111,4 +112,5 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: SpreaderGrid + - type: GridPathfinding ... diff --git a/Resources/Maps/Dungeon/experiment.yml b/Resources/Maps/Dungeon/experiment.yml index 66f9659f38..a1d0e9daf3 100644 --- a/Resources/Maps/Dungeon/experiment.yml +++ b/Resources/Maps/Dungeon/experiment.yml @@ -8979,37 +8979,25 @@ entities: - pos: 10.5,43.5 parent: 1653 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver + - links: + - 583 + type: DeviceLinkSink - uid: 581 components: - pos: 11.5,43.5 parent: 1653 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver + - links: + - 583 + type: DeviceLinkSink - uid: 582 components: - pos: 12.5,43.5 parent: 1653 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver + - links: + - 583 + type: DeviceLinkSink - proto: SignalButton entities: - uid: 583 @@ -9017,15 +9005,14 @@ entities: - pos: 9.5,43.5 parent: 1653 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 580 - - port: Toggle - uid: 581 - - port: Toggle - uid: 582 - type: SignalTransmitter + - linkedPorts: + 580: + - Pressed: Toggle + 581: + - Pressed: Toggle + 582: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignalTrigger entities: - uid: 1597 diff --git a/Resources/Maps/Dungeon/lava_brig.yml b/Resources/Maps/Dungeon/lava_brig.yml index e85c15282f..be388b892f 100644 --- a/Resources/Maps/Dungeon/lava_brig.yml +++ b/Resources/Maps/Dungeon/lava_brig.yml @@ -7545,6 +7545,13 @@ entities: - pos: 10.432637,44.476112 parent: 588 type: Transform +- proto: ClothingHeadBandRed + entities: + - uid: 1295 + components: + - pos: 12.571781,39.694115 + parent: 588 + type: Transform - proto: ClothingHeadHatFedoraBrown entities: - uid: 577 @@ -7635,6 +7642,13 @@ entities: - pos: 12.714905,13.486683 parent: 588 type: Transform +- proto: ClothingOuterArmorBasic + entities: + - uid: 1032 + components: + - pos: 18.616657,24.64315 + parent: 588 + type: Transform - proto: ClothingOuterArmorReflective entities: - uid: 1031 @@ -7668,13 +7682,6 @@ entities: - pos: 27.40101,3.677678 parent: 588 type: Transform -- proto: ClothingOuterVestKevlar - entities: - - uid: 1032 - components: - - pos: 18.616657,24.64315 - parent: 588 - type: Transform - proto: ClothingShoesBootsCombatFilled entities: - uid: 1036 @@ -9167,13 +9174,6 @@ entities: - pos: 22.608034,10.659381 parent: 588 type: Transform -- proto: ClothingHeadBandRed - entities: - - uid: 1295 - components: - - pos: 12.571781,39.694115 - parent: 588 - type: Transform - proto: Hemostat entities: - uid: 1471 @@ -11194,11 +11194,6 @@ entities: - Pressed: Toggle 1237: - Pressed: Toggle - registeredSinks: - Pressed: - - 1238 - - 1239 - - 1237 type: DeviceLinkSource - uid: 1104 components: @@ -12871,35 +12866,6 @@ entities: pos: 25.5,25.5 parent: 588 type: Transform -- proto: WindoorBrigLocked - entities: - - uid: 339 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 588 - type: Transform -- proto: WindoorEngineeringLocked - entities: - - uid: 1569 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,45.5 - parent: 588 - type: Transform - - uid: 1570 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,45.5 - parent: 588 - type: Transform -- proto: WindoorMedicalLocked - entities: - - uid: 1408 - components: - - pos: 11.5,44.5 - parent: 588 - type: Transform - proto: WindoorSecure entities: - uid: 1761 @@ -12914,7 +12880,36 @@ entities: pos: 26.5,47.5 parent: 588 type: Transform -- proto: WindoorSecurityLocked +- proto: WindoorSecureBrigLocked + entities: + - uid: 339 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,2.5 + parent: 588 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 1569 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,45.5 + parent: 588 + type: Transform + - uid: 1570 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,45.5 + parent: 588 + type: Transform +- proto: WindoorSecureMedicalLocked + entities: + - uid: 1408 + components: + - pos: 11.5,44.5 + parent: 588 + type: Transform +- proto: WindoorSecureSecurityLocked entities: - uid: 252 components: diff --git a/Resources/Maps/Dungeon/template.yml b/Resources/Maps/Dungeon/template.yml index 6f7bb6ee45..ce1864e115 100644 --- a/Resources/Maps/Dungeon/template.yml +++ b/Resources/Maps/Dungeon/template.yml @@ -1,10 +1,10 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space - 62: FloorShuttleOrange - 68: FloorSteel + 63: FloorShuttleOrange + 69: FloorSteel entities: - proto: "" entities: @@ -19,46 +19,46 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAA== 0,0: ind: 0,0 - tiles: RAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAPgAAAD4AAAA+AAAAPgAAAD4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAA== + tiles: RQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAPwAAAD8AAAA/AAAAPwAAAD8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAA== 0,1: ind: 0,1 - tiles: RAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABEAAAARAAAAEQAAABEAAAARAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAARAAAAEQAAABEAAAARAAAAEQAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAEQAAABEAAAARAAAAEQAAABEAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABEAAAARAAAAEQAAABEAAAARAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAARAAAAEQAAABEAAAARAAAAEQAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABEAAAARAAAAEQAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAARAAAAEQAAABEAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAEQAAABEAAAARAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABEAAAARAAAAEQAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAARAAAAEQAAABEAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAPgAAAD4AAAA+AAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAD4AAAA+AAAAPgAAAA== + tiles: RQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABFAAAARQAAAEUAAABFAAAARQAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARQAAAEUAAABFAAAARQAAAEUAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAEUAAABFAAAARQAAAEUAAABFAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABFAAAARQAAAEUAAABFAAAARQAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARQAAAEUAAABFAAAARQAAAEUAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABFAAAARQAAAEUAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARQAAAEUAAABFAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAEUAAABFAAAARQAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABFAAAARQAAAEUAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARQAAAEUAAABFAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAPwAAAD8AAAA/AAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAD8AAAA/AAAAPwAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAA== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAA== -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAA== 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,0: ind: 1,0 - tiles: RAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,1: ind: 1,1 - tiles: PgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: PwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,3: ind: -1,3 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,2: ind: 0,2 - tiles: RAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,3: ind: 0,3 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,2: ind: 1,2 - tiles: PgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: PwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,3: ind: 1,3 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== @@ -72,4 +72,7 @@ entities: type: DecalGrid - type: LoadedMap - type: SpreaderGrid + - type: GridTree + - type: MovedGrids + - type: GridPathfinding ... diff --git a/Resources/Maps/Salvage/asteroid-base.yml b/Resources/Maps/Salvage/asteroid-base.yml index 4d9a82984f..eba019ed36 100644 --- a/Resources/Maps/Salvage/asteroid-base.yml +++ b/Resources/Maps/Salvage/asteroid-base.yml @@ -1165,13 +1165,9 @@ entities: - pos: 13.5,-6.5 parent: 407 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 380 - type: SignalReceiver + - links: + - 380 + type: DeviceLinkSink - proto: BookRandom entities: - uid: 335 @@ -2379,11 +2375,10 @@ entities: - pos: 12.5,-9.5 parent: 407 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 136 - type: SignalTransmitter + - linkedPorts: + 136: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignSecureSmall entities: - uid: 382 diff --git a/Resources/Maps/Salvage/cargo-1.yml b/Resources/Maps/Salvage/cargo-1.yml index c27ab256ce..ba03a17fd9 100644 --- a/Resources/Maps/Salvage/cargo-1.yml +++ b/Resources/Maps/Salvage/cargo-1.yml @@ -57,12 +57,12 @@ entities: color: '#A4610696' id: CheckerNWSE decals: - 29: -8,-2 - 30: -8,-3 - 31: -8,-4 - 32: -6,-3 - 35: -8,-1 - 36: -7,-1 + 27: -8,-2 + 28: -8,-3 + 29: -8,-4 + 30: -6,-3 + 31: -8,-1 + 32: -7,-1 - node: color: '#FFFFFFFF' id: Delivery @@ -72,36 +72,36 @@ entities: color: '#FFFFFFFF' id: Dirt decals: - 37: -7,-1 - 38: -5,0 - 39: -2,1 - 40: 1,2 - 41: 2,2 - 42: -6,-3 - 43: -8,-3 + 33: -7,-1 + 34: -5,0 + 35: -2,1 + 36: 1,2 + 37: 2,2 + 38: -6,-3 + 39: -8,-3 - node: color: '#FFFFFFFF' id: DirtHeavy decals: 23: 0,1 - 44: -8,-4 - 45: -8,-1 - 46: -4,0 - 47: -2,2 + 40: -8,-4 + 41: -8,-1 + 42: -4,0 + 43: -2,2 - node: color: '#FFFFFFFF' id: DirtLight decals: - 52: -8,-5 - 53: -8,-1 + 48: -8,-5 + 49: -8,-1 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 48: -8,-3 - 49: -8,-2 - 50: -5,-1 - 51: -7,-4 + 44: -8,-3 + 45: -8,-2 + 46: -5,-1 + 47: -7,-4 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -164,8 +164,8 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 54: -8,-1 - 55: -7,-1 + 50: -8,-1 + 51: -7,-1 type: DecalGrid - version: 2 data: @@ -179,9 +179,9 @@ entities: -1,0: 0: 65535 -2,-1: - 0: 52424 + 0: 65535 -2,-2: - 0: 34816 + 0: 47104 -1,-2: 0: 21504 0,-2: @@ -195,13 +195,19 @@ entities: 1,1: 0: 1 -2,0: - 0: 52428 + 0: 65535 -2,1: - 0: 1228 + 0: 3823 -1,1: - 0: 40447 + 0: 40959 -1,2: 0: 1 + -3,-1: + 0: 34952 + 1,-1: + 0: 4096 + -3,0: + 0: 34952 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -701,6 +707,8 @@ entities: pos: -4.5,1.5 parent: 20 type: Transform + - enabled: False + type: AmbientSound - uid: 18 components: - rot: -1.5707963267948966 rad diff --git a/Resources/Maps/Salvage/medium-1.yml b/Resources/Maps/Salvage/medium-1.yml index f0f520db53..29aac50cdd 100644 --- a/Resources/Maps/Salvage/medium-1.yml +++ b/Resources/Maps/Salvage/medium-1.yml @@ -65,6 +65,7 @@ entities: 0: 30551 1,-1: 0: 30583 + 3: 34952 -2,0: 0: 13309 2: 52224 @@ -80,13 +81,16 @@ entities: 0,0: 0: 51199 2: 12288 + 3: 2048 0,1: 0: 4088 2: 7 1,1: 0: 1911 + 3: 8 1,0: 0: 21623 + 3: 35208 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -133,6 +137,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 type: GridAtmosphere - type: OccluderTree @@ -154,112 +173,112 @@ entities: color: '#D381C996' id: BrickTileWhiteLineN decals: - 49: 6,-2 - 50: 5,-2 + 43: 6,-2 + 44: 5,-2 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 47: 6,0 - 48: 5,0 + 41: 6,0 + 42: 5,0 - node: color: '#FFFFFFFF' id: Delivery decals: - 46: -2,0 - 51: 7,-1 + 40: -2,0 + 45: 7,-1 - node: color: '#FFFFFFFF' id: Dirt decals: - 55: 6,-1 - 56: 5,0 - 57: 3,-1 - 58: 3,0 - 59: 1,1 - 60: 2,-1 - 61: 2,-2 - 62: 1,-2 - 63: 2,-5 - 64: 1,-5 - 65: 3,-5 - 66: 2,-4 - 67: 2,-6 - 68: 1,-7 - 69: 2,-7 - 70: 3,-7 - 71: -3,-5 - 72: -3,-4 - 73: -4,-3 - 74: 1,-2 - 75: 0,-2 - 76: 2,0 - 77: -3,1 - 78: -2,1 - 79: -3,0 - 80: 2,3 - 81: 0,4 - 82: -3,3 - 83: -3,4 - 84: -4,3 - 85: -5,3 - 86: -4,3 - 87: -2,4 + 49: 6,-1 + 50: 5,0 + 51: 3,-1 + 52: 3,0 + 53: 1,1 + 54: 2,-1 + 55: 2,-2 + 56: 1,-2 + 57: 2,-5 + 58: 1,-5 + 59: 3,-5 + 60: 2,-4 + 61: 2,-6 + 62: 1,-7 + 63: 2,-7 + 64: 3,-7 + 65: -3,-5 + 66: -3,-4 + 67: -4,-3 + 68: 1,-2 + 69: 0,-2 + 70: 2,0 + 71: -3,1 + 72: -2,1 + 73: -3,0 + 74: 2,3 + 75: 0,4 + 76: -3,3 + 77: -3,4 + 78: -4,3 + 79: -5,3 + 80: -4,3 + 81: -2,4 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 29: 1,-3 - 30: 2,-3 + 23: 1,-3 + 24: 2,-3 - node: color: '#FFFFFFFF' id: DirtLight decals: - 23: 1,-1 - 24: -1,1 - 25: 1,0 - 26: 3,-2 - 36: -3,3 - 37: -3,4 - 38: -2,3 - 39: -1,3 - 40: 1,4 - 41: 0,4 - 42: -3,4 - 43: -3,-1 - 44: -3,-3 - 45: -2,-4 + 19: 1,-1 + 20: -1,1 + 21: 1,0 + 22: 3,-2 + 30: -3,3 + 31: -3,4 + 32: -2,3 + 33: -1,3 + 34: 1,4 + 35: 0,4 + 36: -3,4 + 37: -3,-1 + 38: -3,-3 + 39: -2,-4 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 31: 1,-1 - 32: 0,1 - 33: -3,0 - 34: -2,0 - 35: -6,3 + 25: 1,-1 + 26: 0,1 + 27: -3,0 + 28: -2,0 + 29: -6,3 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale decals: - 16: -2,1 + 12: -2,1 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 19: 3,-3 + 15: 3,-3 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 17: 1,-3 - 18: 0,-3 + 13: 1,-3 + 14: 0,-3 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 14: 1,1 - 15: 0,1 + 10: 1,1 + 11: 0,1 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 @@ -270,34 +289,34 @@ entities: color: '#FFFFFFFF' id: WarnBox decals: - 54: 4,-1 + 48: 4,-1 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 22: 1,-3 + 18: 1,-3 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 21: 3,-3 + 17: 3,-3 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 52: 6,-1 + 46: 6,-1 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 20: 2,-3 + 16: 2,-3 - node: color: '#FFFFFFFF' id: WarnLineS decals: 6: -3,3 7: -3,4 - 53: 5,-1 + 47: 5,-1 type: DecalGrid - type: RadiationGridResistance - type: GasTileOverlay diff --git a/Resources/Maps/Salvage/medium-crashed-shuttle.yml b/Resources/Maps/Salvage/medium-crashed-shuttle.yml index ef09c62d13..1b8fac7bec 100644 --- a/Resources/Maps/Salvage/medium-crashed-shuttle.yml +++ b/Resources/Maps/Salvage/medium-crashed-shuttle.yml @@ -574,61 +574,41 @@ entities: - pos: -3.5,-3.5 parent: 166 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 153 - type: SignalReceiver + - links: + - 153 + type: DeviceLinkSink - uid: 149 components: - pos: 2.5,-3.5 parent: 166 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 153 - type: SignalReceiver + - links: + - 153 + type: DeviceLinkSink - uid: 150 components: - pos: -1.5,-6.5 parent: 166 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 153 - type: SignalReceiver + - links: + - 153 + type: DeviceLinkSink - uid: 151 components: - pos: -0.5,-6.5 parent: 166 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 153 - type: SignalReceiver + - links: + - 153 + type: DeviceLinkSink - uid: 152 components: - pos: 0.5,-6.5 parent: 166 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 153 - type: SignalReceiver + - links: + - 153 + type: DeviceLinkSink - proto: BriefcaseBrown entities: - uid: 144 @@ -1054,19 +1034,18 @@ entities: - pos: 0.5,1.5 parent: 166 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 149 - - port: Toggle - uid: 152 - - port: Toggle - uid: 151 - - port: Toggle - uid: 150 - - port: Toggle - uid: 148 - type: SignalTransmitter + - linkedPorts: + 149: + - Pressed: Toggle + 152: + - Pressed: Toggle + 151: + - Pressed: Toggle + 150: + - Pressed: Toggle + 148: + - Pressed: Toggle + type: DeviceLinkSource - proto: SpawnMobBearSalvage entities: - uid: 161 diff --git a/Resources/Maps/Salvage/medium-dock.yml b/Resources/Maps/Salvage/medium-dock.yml index 51f7a98bcc..09367d95e7 100644 --- a/Resources/Maps/Salvage/medium-dock.yml +++ b/Resources/Maps/Salvage/medium-dock.yml @@ -739,49 +739,33 @@ entities: - pos: -0.5,-1.5 parent: 50 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 99 - type: SignalReceiver + - links: + - 99 + type: DeviceLinkSink - uid: 96 components: - pos: -4.5,-5.5 parent: 50 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 99 - type: SignalReceiver + - links: + - 99 + type: DeviceLinkSink - uid: 97 components: - pos: -3.5,-5.5 parent: 50 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 99 - type: SignalReceiver + - links: + - 99 + type: DeviceLinkSink - uid: 98 components: - pos: -2.5,-5.5 parent: 50 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 99 - type: SignalReceiver + - links: + - 99 + type: DeviceLinkSink - proto: SignalButton entities: - uid: 99 @@ -789,17 +773,16 @@ entities: - pos: -2.5,-2.5 parent: 50 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 96 - - port: Toggle - uid: 97 - - port: Toggle - uid: 98 - - port: Toggle - uid: 87 - type: SignalTransmitter + - linkedPorts: + 96: + - Pressed: Toggle + 97: + - Pressed: Toggle + 98: + - Pressed: Toggle + 87: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignMinerDock entities: - uid: 106 diff --git a/Resources/Maps/Salvage/medium-pirate.yml b/Resources/Maps/Salvage/medium-pirate.yml index bc4b21a9f2..b33d01bd9b 100644 --- a/Resources/Maps/Salvage/medium-pirate.yml +++ b/Resources/Maps/Salvage/medium-pirate.yml @@ -50,24 +50,24 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 8: 3,-5 - 9: 3,-6 - 10: 3,-4 - 11: 3,-3 - 12: 3,-2 - 13: 3,-1 - 14: 3,0 + 7: 3,-5 + 8: 3,-6 + 9: 3,-4 + 10: 3,-3 + 11: 3,-2 + 12: 3,-1 + 13: 3,0 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 1: -2,-4 - 2: -2,-5 - 3: -2,-6 - 4: -2,-3 - 5: -2,-2 - 6: -2,-1 - 7: -2,0 + 0: -2,-4 + 1: -2,-5 + 2: -2,-6 + 3: -2,-3 + 4: -2,-2 + 5: -2,-1 + 6: -2,0 type: DecalGrid - version: 2 data: diff --git a/Resources/Maps/Salvage/medium-template.yml b/Resources/Maps/Salvage/medium-template.yml index f0e350b8cb..384402ecd2 100644 --- a/Resources/Maps/Salvage/medium-template.yml +++ b/Resources/Maps/Salvage/medium-template.yml @@ -1,10 +1,10 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space - 39: FloorGold - 93: Lattice + 40: FloorGold + 94: Lattice entities: - proto: "" entities: @@ -17,16 +17,16 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAJwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAKAAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: XQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -34,7 +34,8 @@ 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/ruin-cargo-salvage.yml b/Resources/Maps/Salvage/ruin-cargo-salvage.yml index 87170bc369..de9c0a9d75 100644 --- a/Resources/Maps/Salvage/ruin-cargo-salvage.yml +++ b/Resources/Maps/Salvage/ruin-cargo-salvage.yml @@ -1775,39 +1775,27 @@ entities: pos: -2.5,-3.5 parent: 16 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 202 - type: SignalReceiver + - links: + - 202 + type: DeviceLinkSink - uid: 484 components: - rot: -1.5707963267948966 rad pos: -3.5,-3.5 parent: 16 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 202 - type: SignalReceiver + - links: + - 202 + type: DeviceLinkSink - uid: 581 components: - rot: -1.5707963267948966 rad pos: -1.5,-3.5 parent: 16 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 202 - type: SignalReceiver + - links: + - 202 + type: DeviceLinkSink - proto: Bucket entities: - uid: 358 @@ -3591,109 +3579,73 @@ entities: - pos: 4.5,-3.5 parent: 16 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 53 - type: SignalReceiver + - links: + - 53 + type: DeviceLinkSink - uid: 51 components: - pos: 5.5,-3.5 parent: 16 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 53 - type: SignalReceiver + - links: + - 53 + type: DeviceLinkSink - uid: 52 components: - pos: 6.5,-3.5 parent: 16 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 53 - type: SignalReceiver + - links: + - 53 + type: DeviceLinkSink - uid: 118 components: - pos: 2.5,2.5 parent: 16 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 464 - type: SignalReceiver + - links: + - 464 + type: DeviceLinkSink - uid: 179 components: - pos: -1.5,2.5 parent: 16 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 463 - type: SignalReceiver + - links: + - 463 + type: DeviceLinkSink - uid: 180 components: - pos: 0.5,2.5 parent: 16 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 464 - type: SignalReceiver + - links: + - 464 + type: DeviceLinkSink - uid: 181 components: - pos: 1.5,2.5 parent: 16 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 464 - type: SignalReceiver + - links: + - 464 + type: DeviceLinkSink - uid: 458 components: - pos: -3.5,2.5 parent: 16 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 463 - type: SignalReceiver + - links: + - 463 + type: DeviceLinkSink - uid: 459 components: - pos: -2.5,2.5 parent: 16 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 463 - type: SignalReceiver + - links: + - 463 + type: DeviceLinkSink - proto: ShuttersRadiation entities: - uid: 675 @@ -3701,13 +3653,9 @@ entities: - pos: 6.5,7.5 parent: 16 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 584 - type: SignalReceiver + - links: + - 584 + type: DeviceLinkSink - proto: SignalButton entities: - uid: 53 @@ -3715,15 +3663,14 @@ entities: - pos: 3.5,-3.5 parent: 16 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 50 - - port: Toggle - uid: 51 - - port: Toggle - uid: 52 - type: SignalTransmitter + - linkedPorts: + 50: + - Pressed: Toggle + 51: + - Pressed: Toggle + 52: + - Pressed: Toggle + type: DeviceLinkSource - uid: 202 components: - name: Vault Unlock @@ -3731,53 +3678,49 @@ entities: - pos: 1.5,-7.5 parent: 16 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 581 - - port: Toggle - uid: 139 - - port: Toggle - uid: 484 - type: SignalTransmitter + - linkedPorts: + 581: + - Pressed: Toggle + 139: + - Pressed: Toggle + 484: + - Pressed: Toggle + type: DeviceLinkSource - uid: 463 components: - pos: -0.5,2.5 parent: 16 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 179 - - port: Toggle - uid: 459 - - port: Toggle - uid: 458 - type: SignalTransmitter + - linkedPorts: + 179: + - Pressed: Toggle + 459: + - Pressed: Toggle + 458: + - Pressed: Toggle + type: DeviceLinkSource - uid: 464 components: - pos: 3.5,2.5 parent: 16 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 118 - - port: Toggle - uid: 181 - - port: Toggle - uid: 180 - type: SignalTransmitter + - linkedPorts: + 118: + - Pressed: Toggle + 181: + - Pressed: Toggle + 180: + - Pressed: Toggle + type: DeviceLinkSource - uid: 584 components: - pos: 5.5,7.5 parent: 16 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 675 - type: SignalTransmitter + - linkedPorts: + 675: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignCargo entities: - uid: 582 diff --git a/Resources/Maps/Salvage/small-1.yml b/Resources/Maps/Salvage/small-1.yml index f8da01fd53..4bbe37de3f 100644 --- a/Resources/Maps/Salvage/small-1.yml +++ b/Resources/Maps/Salvage/small-1.yml @@ -50,127 +50,151 @@ entities: color: '#FFFFFFFF' id: Dirt decals: - 63: 2,-6 - 64: 3,-6 - 65: 1,-5 - 66: 0,-3 - 67: 1,-1 - 68: 0,0 - 69: -2,-6 - 70: -1,-5 - 71: 1,-7 - 72: 7,-7 - 73: 6,-6 - 74: 8,-5 - 75: 8,-6 - 76: 0,-7 - 77: -5,-7 - 78: -4,-6 - 79: -3,-7 - 80: -1,0 + 23: 2,-6 + 24: 3,-6 + 25: 1,-5 + 26: 0,-3 + 27: 1,-1 + 28: 0,0 + 29: -2,-6 + 30: -1,-5 + 31: 1,-7 + 32: 7,-7 + 33: 6,-6 + 34: 8,-5 + 35: 8,-6 + 36: 0,-7 + 37: -5,-7 + 38: -4,-6 + 39: -3,-7 + 40: -1,0 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 89: 1,-6 - 90: 1,-4 - 91: 1,-1 - 92: 0,-1 - 93: 1,2 - 94: 6,-6 - 95: 6,-6 - 96: 5,-4 - 97: 4,-3 - 98: 3,-1 - 99: 2,0 - 100: 2,-7 + 49: 1,-6 + 50: 1,-4 + 51: 1,-1 + 52: 0,-1 + 53: 1,2 + 54: 6,-6 + 55: 6,-6 + 56: 5,-4 + 57: 4,-3 + 58: 3,-1 + 59: 2,0 + 60: 2,-7 - node: color: '#FFFFFFFF' id: DirtLight decals: - 81: 1,-6 - 82: 3,-5 - 83: 3,-6 - 84: 0,-4 - 85: 1,-2 - 86: 1,1 - 87: 1,-1 - 88: 0,-5 - 118: 0,-6 - 119: -1,-7 + 41: 1,-6 + 42: 3,-5 + 43: 3,-6 + 44: 0,-4 + 45: 1,-2 + 46: 1,1 + 47: 1,-1 + 48: 0,-5 + 78: 0,-6 + 79: -1,-7 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 101: 1,-7 - 102: 2,-6 - 103: 6,-7 - 104: 5,-7 - 105: 5,-6 - 106: 5,-5 - 107: 8,-6 - 108: 4,-6 - 109: 1,-3 - 110: 0,-2 - 111: 0,-1 - 112: 1,0 - 113: 0,1 - 114: -1,-4 - 115: -2,-6 - 116: 10,-6 - 117: 10,-5 + 61: 1,-7 + 62: 2,-6 + 63: 6,-7 + 64: 5,-7 + 65: 5,-6 + 66: 5,-5 + 67: 8,-6 + 68: 4,-6 + 69: 1,-3 + 70: 0,-2 + 71: 0,-1 + 72: 1,0 + 73: 0,1 + 74: -1,-4 + 75: -2,-6 + 76: 10,-6 + 77: 10,-5 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 55: -1,-4 - 56: -1,-3 - 57: -1,-2 - 58: -1,-1 - 59: -1,0 - 60: -2,-5 - 61: -1,-5 + 15: -1,-4 + 16: -1,-3 + 17: -1,-2 + 18: -1,-1 + 19: -1,0 + 20: -2,-5 + 21: -1,-5 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 40: 8,-5 - 41: 7,-5 - 42: 6,-5 - 43: 5,-5 - 44: 4,-5 - 45: 3,-5 + 0: 8,-5 + 1: 7,-5 + 2: 6,-5 + 3: 5,-5 + 4: 4,-5 + 5: 3,-5 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 62: 1,-5 + 22: 1,-5 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 46: 1,-4 - 47: 1,-3 - 48: 1,-2 - 49: 1,-1 - 50: 1,0 - 51: 1,1 - 52: 1,2 - 53: 1,3 - 54: 1,4 + 6: 1,-4 + 7: 1,-3 + 8: 1,-2 + 9: 1,-1 + 10: 1,0 + 11: 1,1 + 12: 1,2 + 13: 1,3 + 14: 1,4 type: DecalGrid - type: RadiationGridResistance - version: 2 data: tiles: -1,-1: - 0: 61166 + 0: 65519 0,-1: - 0: 30579 + 0: 65535 0,0: - 0: 1847 + 0: 65535 -1,0: - 0: 3310 + 0: 61182 + -2,-2: + 0: 52975 + -2,-1: + 0: 49164 + -1,-2: + 0: 65535 + 0,-2: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-2: + 0: 30583 + 2,-1: + 0: 13111 + 0,1: + 0: 15 + 1,0: + 0: 16383 + 2,0: + 0: 4369 + -1,1: + 0: 12 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -190,8 +214,7 @@ entities: chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay - - nextUpdate: 0 - type: SpreaderGrid + - type: SpreaderGrid - type: GridPathfinding - proto: AirlockGlass entities: @@ -336,8 +359,6 @@ entities: - pos: 6.5042076,0.53352356 parent: 55 type: Transform - - nextSound: 1409.1787723 - type: EmitSoundOnCollide - proto: CrateFilledSpawner entities: - uid: 114 @@ -368,8 +389,6 @@ entities: - pos: -1.5445547,-4.4021273 parent: 55 type: Transform - - nextSound: 1733.4105388 - type: EmitSoundOnCollide - proto: Girder entities: - uid: 20 diff --git a/Resources/Maps/Salvage/small-2.yml b/Resources/Maps/Salvage/small-2.yml index b8051762d9..af2c7056e0 100644 --- a/Resources/Maps/Salvage/small-2.yml +++ b/Resources/Maps/Salvage/small-2.yml @@ -54,11 +54,41 @@ entities: -1,-1: 0: 65535 0,-1: - 0: 30583 + 0: 65535 -1,0: - 0: 4095 + 0: 65535 0,0: - 0: 1911 + 0: 65535 + -2,-1: + 0: 52428 + -2,-2: + 0: 32768 + -1,-2: + 0: 61440 + 0,-2: + 0: 61440 + 1,-2: + 0: 4096 + 1,-1: + 0: 65535 + -2,0: + 0: 52428 + -2,1: + 0: 140 + -1,1: + 0: 65535 + -1,2: + 0: 15 + 0,1: + 0: 65535 + 0,2: + 0: 15 + 1,0: + 0: 65535 + 1,1: + 0: 32767 + 1,2: + 0: 2 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -78,8 +108,7 @@ entities: chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay - - nextUpdate: 0 - type: SpreaderGrid + - type: SpreaderGrid - type: GridPathfinding - proto: APCBasic entities: @@ -533,10 +562,6 @@ entities: - pos: 4.5020123,6.4660482 parent: 55 type: Transform - - nextAttack: 127.5495911 - type: MeleeWeapon - - nextSound: 127.7495911 - type: EmitSoundOnCollide - proto: WallWood entities: - uid: 3 diff --git a/Resources/Maps/Salvage/small-3.yml b/Resources/Maps/Salvage/small-3.yml index 90aee2a93b..e786d0997a 100644 --- a/Resources/Maps/Salvage/small-3.yml +++ b/Resources/Maps/Salvage/small-3.yml @@ -49,13 +49,37 @@ entities: data: tiles: -1,-1: - 0: 65528 + 0: 65535 0,-1: - 0: 12561 + 0: 65535 -1,0: - 0: 4095 + 0: 65535 0,0: - 0: 273 + 0: 65535 + -2,-2: + 0: 61152 + -2,-1: + 0: 61166 + -1,-2: + 0: 65520 + 0,-2: + 0: 65520 + 1,-2: + 0: 13104 + 1,-1: + 0: 13107 + -2,0: + 0: 61166 + -2,1: + 0: 238 + -1,1: + 0: 255 + 0,1: + 0: 255 + 1,0: + 0: 13107 + 1,1: + 0: 51 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -75,8 +99,7 @@ entities: chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay - - nextUpdate: 0 - type: SpreaderGrid + - type: SpreaderGrid - type: GridPathfinding - proto: MetalDoor entities: @@ -164,8 +187,6 @@ entities: - pos: 4.4981737,4.558294 parent: 10 type: Transform - - nextSound: 950.8798126 - type: EmitSoundOnCollide - proto: SpaceTickSpawner entities: - uid: 113 @@ -209,8 +230,6 @@ entities: - pos: -1.5018263,-0.4104561 parent: 10 type: Transform - - nextSound: 937.61323 - type: EmitSoundOnCollide - proto: WallCult entities: - uid: 1 diff --git a/Resources/Maps/Salvage/small-4.yml b/Resources/Maps/Salvage/small-4.yml index cca99efb9c..6ee86094b1 100644 --- a/Resources/Maps/Salvage/small-4.yml +++ b/Resources/Maps/Salvage/small-4.yml @@ -48,8 +48,7 @@ entities: - type: Shuttle - type: GridPathfinding - type: RadiationGridResistance - - nextUpdate: 0 - type: SpreaderGrid + - type: SpreaderGrid - proto: AirlockAssembly entities: - uid: 38 @@ -476,8 +475,4 @@ entities: - pos: -1.2840745,-1.890625 parent: 37 type: Transform - - nextFire: 46.8663079 - type: Gun - - nextSound: 47.0663079 - type: EmitSoundOnCollide ... diff --git a/Resources/Maps/Salvage/small-a-1.yml b/Resources/Maps/Salvage/small-a-1.yml index 6bedf9a6a2..ab30eaf479 100644 --- a/Resources/Maps/Salvage/small-a-1.yml +++ b/Resources/Maps/Salvage/small-a-1.yml @@ -39,8 +39,7 @@ entities: - fixtures: {} type: Fixtures - type: OccluderTree - - nextUpdate: 0 - type: SpreaderGrid + - type: SpreaderGrid - type: Shuttle - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier @@ -58,20 +57,42 @@ entities: color: '#0000006C' id: footprint decals: - 3: -0.23038638,-6.8572307 - 4: -0.027261376,-6.4509807 - 5: -0.32413638,-6.1541057 - 6: 0.050863624,-5.7478557 - 7: -0.18351138,-5.2634807 - 8: 0.16023862,-4.6384807 - 9: -0.18351138,-4.4197307 - 10: 0.16023862,-4.0603557 + 1: -0.23038638,-6.8572307 + 2: -0.027261376,-6.4509807 + 3: -0.32413638,-6.1541057 + 4: 0.050863624,-5.7478557 + 5: -0.18351138,-5.2634807 + 6: 0.16023862,-4.6384807 + 7: -0.18351138,-4.4197307 + 8: 0.16023862,-4.0603557 type: DecalGrid - version: 2 data: tiles: 1,-2: - 0: 4096 + 0: 12544 + 0,-2: + 0: 65392 + 0,-1: + 0: 65535 + 1,-1: + 0: 65527 + 0,0: + 0: 65535 + 1,0: + 0: 14335 + -2,-1: + 0: 65535 + -2,-2: + 0: 60416 + -1,-2: + 0: 65520 + -1,-1: + 0: 65535 + -2,0: + 0: 36078 + -1,0: + 0: 65535 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -348,8 +369,6 @@ entities: - pos: 2.6230414,-3.5249228 parent: 1 type: Transform - - nextSound: 278.0330687 - type: EmitSoundOnCollide - proto: Bed entities: - uid: 18 @@ -390,8 +409,6 @@ entities: - pos: 5.3232183,-0.93719935 parent: 1 type: Transform - - nextSound: 477.4480649 - type: EmitSoundOnCollide - proto: ClothingHeadHelmetCosmonaut entities: - uid: 92 @@ -399,8 +416,6 @@ entities: - pos: 3.5415258,-4.5207634 parent: 1 type: Transform - - nextSound: 620.3410615 - type: EmitSoundOnCollide - proto: ClothingNeckCloakMiner entities: - uid: 38 @@ -408,8 +423,6 @@ entities: - pos: -3.4428544,1.5165057 parent: 1 type: Transform - - nextSound: 371.125919 - type: EmitSoundOnCollide - proto: ClothingOuterHardsuitAncientEVA entities: - uid: 88 @@ -417,8 +430,6 @@ entities: - pos: 5.3544683,-1.0153244 parent: 1 type: Transform - - nextSound: 472.2613766 - type: EmitSoundOnCollide - proto: ClothingShoesBootsWork entities: - uid: 27 @@ -426,8 +437,6 @@ entities: - pos: 0.087199986,-1.6184053 parent: 1 type: Transform - - nextSound: 149.0334977 - type: EmitSoundOnCollide - proto: ClothingUniformJumpsuitFlannel entities: - uid: 26 @@ -435,10 +444,6 @@ entities: - pos: 1.5246999,-0.77465534 parent: 1 type: Transform - - nextUpdate: 142.5329308 - type: SuitSensor - - nextSound: 142.7329308 - type: EmitSoundOnCollide - proto: ComfyChair entities: - uid: 21 @@ -501,8 +506,6 @@ entities: - pos: -0.5958574,-0.040280342 parent: 1 type: Transform - - nextSound: 121.0380995 - type: EmitSoundOnCollide - proto: RandomCargoCorpseSpawner entities: - uid: 91 @@ -613,10 +616,6 @@ entities: - pos: -4.82792,-1.5621994 parent: 1 type: Transform - - nextFire: 495.3193206 - type: Gun - - nextSound: 495.5193206 - type: EmitSoundOnCollide - proto: WeaponTurretSyndicateBroken entities: - uid: 87 diff --git a/Resources/Maps/Salvage/small-ai-survey-drone.yml b/Resources/Maps/Salvage/small-ai-survey-drone.yml index 173096fb2a..d381b78f86 100644 --- a/Resources/Maps/Salvage/small-ai-survey-drone.yml +++ b/Resources/Maps/Salvage/small-ai-survey-drone.yml @@ -128,13 +128,41 @@ entities: data: tiles: -1,-1: - 0: 65518 + 0: 65535 0,-1: - 0: 30583 + 0: 65535 -1,0: - 0: 4095 + 0: 61439 0,0: - 0: 1911 + 0: 14207 + -3,-2: + 0: 61166 + -3,-1: + 0: 61166 + -2,-1: + 0: 35023 + -2,-2: + 0: 60416 + -1,-2: + 0: 65534 + 0,-2: + 0: 65395 + 1,-2: + 0: 47496 + 1,-1: + 0: 34975 + 2,-2: + 0: 13107 + 2,-1: + 0: 13107 + -3,0: + 0: 14 + -2,0: + 0: 8 + 1,0: + 0: 8 + 2,0: + 0: 3 uniqueMixes: - volume: 2500 temperature: 293.15 diff --git a/Resources/Maps/Salvage/small-ship-1.yml b/Resources/Maps/Salvage/small-ship-1.yml index 39d62dc62f..06c687365f 100644 --- a/Resources/Maps/Salvage/small-ship-1.yml +++ b/Resources/Maps/Salvage/small-ship-1.yml @@ -51,8 +51,10 @@ entities: 0: 4096 0,0: 0: 3 + 1: 16 -1,0: 0: 8 + 1: 192 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -69,6 +71,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 type: GridAtmosphere - type: OccluderTree diff --git a/Resources/Maps/Salvage/small-template.yml b/Resources/Maps/Salvage/small-template.yml index 077ddcb452..d5998c7e64 100644 --- a/Resources/Maps/Salvage/small-template.yml +++ b/Resources/Maps/Salvage/small-template.yml @@ -1,10 +1,10 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space - 39: FloorGold - 93: Lattice + 40: FloorGold + 94: Lattice entities: - proto: "" entities: @@ -17,16 +17,16 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAJwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAKAAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: XQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -34,7 +34,8 @@ 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 725124144c..ec85fe7160 100644 --- a/Resources/Maps/Salvage/stationstation.yml +++ b/Resources/Maps/Salvage/stationstation.yml @@ -1,12 +1,12 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space - 68: FloorSteel - 78: FloorTechMaint - 81: FloorWhite - 94: Plating + 69: FloorSteel + 79: FloorTechMaint + 82: FloorWhite + 95: Plating entities: - proto: "" entities: @@ -18,37 +18,37 @@ entities: - chunks: -1,0: ind: -1,0 - tiles: RAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABOAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAATgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAE4AAABeAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABOAAAAXgAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAATgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABPAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAF8AAABPAAAAXwAAAF8AAABfAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAATwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAXwAAAE8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABPAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABfAAAATwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAA== 0,1: ind: 0,1 - tiles: AAAAAF4AAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABeAAAARAAAAAAAAABeAAAARAAAAEQAAABeAAAATgAAAF4AAABeAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAXgAAAFEAAAAAAAAAXgAAAEQAAABEAAAAXgAAAE4AAABeAAAAXgAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAF4AAABeAAAAAAAAAF4AAABEAAAARAAAAF4AAABOAAAAXgAAAF4AAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABeAAAAUQAAAAAAAABeAAAARAAAAEQAAABeAAAATgAAAF4AAABOAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAAAAAAAAXgAAAEQAAABEAAAAXgAAAE4AAABeAAAAXgAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAF4AAABRAAAAAAAAAF4AAABEAAAARAAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAAAAAABeAAAARAAAAEQAAABeAAAATgAAAF4AAABOAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAAXgAAAFEAAAAAAAAAXgAAAEQAAABEAAAAXgAAAE4AAABeAAAATgAAAE4AAABOAAAAXgAAAE4AAABOAAAAXgAAAFEAAABRAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAE4AAABOAAAATgAAAF4AAABOAAAATgAAAF4AAABeAAAAUQAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABRAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAF8AAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAARQAAAAAAAABfAAAARQAAAEUAAABfAAAATwAAAF8AAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAFIAAAAAAAAAXwAAAEUAAABFAAAAXwAAAE8AAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABfAAAAAAAAAF8AAABFAAAARQAAAF8AAABPAAAAXwAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAUgAAAAAAAABfAAAARQAAAEUAAABfAAAATwAAAF8AAABPAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAAAAAAAAXwAAAEUAAABFAAAAXwAAAE8AAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABSAAAAAAAAAF8AAABFAAAARQAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAAAAAABfAAAARQAAAEUAAABfAAAATwAAAF8AAABPAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAAXwAAAFIAAAAAAAAAXwAAAEUAAABFAAAAXwAAAE8AAABfAAAATwAAAE8AAABPAAAAXwAAAE8AAABPAAAAXwAAAFIAAABSAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAE8AAABPAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAAUgAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABSAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: RAAAAF4AAABEAAAARAAAAF4AAABOAAAATgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAFEAAABRAAAAUQAAAF4AAABeAAAARAAAAEQAAABeAAAATgAAAE4AAABOAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABRAAAAUQAAAFEAAABEAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAUQAAAFEAAABRAAAARAAAAEQAAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAUQAAAEQAAABEAAAARAAAAEQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAUQAAAFEAAABEAAAARAAAAEQAAABEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFEAAABRAAAARAAAAEQAAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABRAAAAUQAAAEQAAABEAAAARAAAAEQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAUQAAAFEAAABeAAAAXgAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAABRAAAAXgAAAF4AAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAAAUQAAAF4AAABOAAAARAAAAEQAAABOAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABOAAAAUQAAAFEAAABeAAAAXgAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAAAAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAF4AAABEAAAARAAAAF4AAABOAAAAXgAAAF4AAABeAAAAUQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: RQAAAF8AAABFAAAARQAAAF8AAABPAAAATwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAFIAAABSAAAAUgAAAF8AAABfAAAARQAAAEUAAABfAAAATwAAAE8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAF8AAABSAAAAUgAAAFIAAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAUgAAAFIAAABSAAAARQAAAEUAAABFAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAUgAAAEUAAABFAAAARQAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUgAAAFIAAABFAAAARQAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFIAAABSAAAARQAAAEUAAABFAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABSAAAAUgAAAEUAAABFAAAARQAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUgAAAFIAAABfAAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAXwAAAF8AAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAF8AAABPAAAARQAAAEUAAABPAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAF8AAABPAAAAUgAAAFIAAABfAAAAXwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAAAAAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAF8AAABFAAAARQAAAF8AAABPAAAAXwAAAF8AAABfAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE4AAABOAAAATgAAAE4AAABeAAAATgAAAE4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAUQAAAFEAAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFEAAABRAAAARAAAAF4AAABEAAAARAAAAF4AAABOAAAATgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABRAAAAUQAAAEQAAABEAAAARAAAAEQAAABeAAAATgAAAE4AAABOAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAUQAAAFEAAABEAAAARAAAAEQAAABEAAAAXgAAAE4AAABOAAAATgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFEAAABRAAAARAAAAEQAAABEAAAARAAAAF4AAABOAAAATgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAUQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABPAAAATwAAAE8AAABfAAAATwAAAE8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAATwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUgAAAFIAAABfAAAAXwAAAE8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFIAAABSAAAARQAAAF8AAABFAAAARQAAAF8AAABPAAAATwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABSAAAAUgAAAEUAAABFAAAARQAAAEUAAABfAAAATwAAAE8AAABPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUgAAAFIAAABFAAAARQAAAEUAAABFAAAAXwAAAE8AAABPAAAATwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFIAAABSAAAARQAAAEUAAABFAAAARQAAAF8AAABPAAAATwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAUgAAAA== 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABeAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAXgAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABeAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAXgAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAABRAAAAXgAAAF4AAABeAAAAUQAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAAAXwAAAF8AAABfAAAAUgAAAF8AAABfAAAAXwAAAA== -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAA== 1,0: ind: 1,0 - tiles: UQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABeAAAAAAAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAXgAAAAAAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAF4AAAAAAAAAUQAAAF4AAABeAAAAXgAAAFEAAABeAAAAXgAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABeAAAAAAAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAF4AAABeAAAAUQAAAF4AAABRAAAAXgAAAF4AAABeAAAAXgAAAAAAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABeAAAAUQAAAFEAAABRAAAAUQAAAFEAAABeAAAAAAAAAAAAAAAAAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAXgAAAFEAAABRAAAAUQAAAFEAAABRAAAAXgAAAAAAAAAAAAAAAAAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAF4AAABRAAAAUQAAAFEAAABRAAAAUQAAAF4AAAAAAAAAAAAAAAAAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABeAAAAAAAAAAAAAAAAAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAXgAAAFEAAABRAAAAUQAAAFEAAABRAAAAXgAAAAAAAAAAAAAAAAAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAF4AAABRAAAAUQAAAFEAAABRAAAAUQAAAF4AAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAA== + tiles: UgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAAAAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAAAAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAAAAAAAAUgAAAF8AAABfAAAAXwAAAFIAAABfAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAAAAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABfAAAAUgAAAF8AAABSAAAAXwAAAF8AAABfAAAAXwAAAAAAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAFIAAABSAAAAUgAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAFIAAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAABSAAAAUgAAAFIAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAA== 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAABRAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAAAUQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAFEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAABRAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAAAUQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,1: ind: 1,1 - tiles: RAAAAEQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAABRAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAFEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAABRAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAAAUQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAFEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAABRAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAAAUQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAFEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAABRAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAAAUQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAFEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -56,7 +56,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -595,32 +596,24 @@ entities: pos: 12.5,17.5 parent: 179 type: Transform - - bodyType: Static - type: Physics - uid: 580 components: - rot: 1.5707963267948966 rad pos: 14.5,6.5 parent: 179 type: Transform - - bodyType: Static - type: Physics - uid: 581 components: - rot: 1.5707963267948966 rad pos: 14.5,8.5 parent: 179 type: Transform - - bodyType: Static - type: Physics - uid: 582 components: - rot: 1.5707963267948966 rad pos: 14.5,7.5 parent: 179 type: Transform - - bodyType: Static - type: Physics - proto: ChairOfficeDark entities: - uid: 380 diff --git a/Resources/Maps/Salvage/tick-colony.yml b/Resources/Maps/Salvage/tick-colony.yml index 3e1285a024..c75161eb7c 100644 --- a/Resources/Maps/Salvage/tick-colony.yml +++ b/Resources/Maps/Salvage/tick-colony.yml @@ -1,13 +1,13 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space 4: FloorAsteroidCoarseSand0 5: FloorAsteroidCoarseSandDug - 44: FloorGreenCircuit - 58: FloorReinforced - 94: Plating + 45: FloorGreenCircuit + 59: FloorReinforced + 95: Plating entities: - proto: "" entities: @@ -19,16 +19,16 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAACBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAACBAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAQAAAEEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAEFAAAABAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAAABAAAAgQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAFeAAAABAAAAAQAAAAEAAABBAAAAg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAACBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAACBAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAQAAAEEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAEFAAAABAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAAABAAAAgQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAFfAAAABAAAAAQAAAAEAAABBAAAAg== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAgUAAAAEAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAIEAAABOgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAjoAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAAQAAAE6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAQUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAgUAAAAEAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAIEAAABOwAAADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAjsAAAAtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAAQAAAE7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAQUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: BAAAAgQAAAAEAAACBAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAAEAAAABAAAAQQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BAAAAgQAAAAEAAACBAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAAEAAAABAAAAQQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAFeAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQUAAAAEAAACBAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAQQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIEAAACBQAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAFfAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQUAAAAEAAACBAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAQQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIEAAACBQAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -36,7 +36,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -111,46 +112,6 @@ entities: 54: -1.4215076,-5.2462125 55: -1.8590076,-4.8555875 56: -2.5152576,-5.0899625 - - node: - color: '#79150022' - id: splatter - decals: - 8: 0.6093248,1.4100605 - 9: 0.5936998,1.1913105 - 10: 0.4530748,1.3006855 - 11: 0.3436998,1.6756856 - 12: 0.21869981,2.0038106 - 13: 0.21869981,2.0663106 - 14: 0.6249498,1.8475606 - 15: 0.6561998,1.7069356 - 16: 0.6561998,1.6913106 - 17: 0.7655748,1.3944355 - 18: 0.8124498,1.4100605 - 19: 0.6561998,1.5663106 - 20: 0.3905748,1.6131856 - 21: 0.3436998,1.5506856 - 22: 0.4686998,1.5038106 - 23: 0.24994981,1.6444356 - 24: 0.3905748,1.8631856 - 25: 1.2811998,1.2381855 - 26: 1.6561999,0.8788105 - 27: 1.3436998,1.0506855 - 28: 1.5311999,1.0038105 - 29: 1.9218249,0.9413105 - 30: 1.3749498,0.9569355 - 31: 1.0468248,1.3944355 - 32: 1.1249498,0.9100605 - 33: -2.62505,2.9725606 - 34: -2.56255,3.4413106 - 35: -2.2188,3.1131856 - 36: -2.734425,3.2225606 - 37: -2.609425,2.7850606 - 38: -2.484425,2.7694356 - 39: -2.37505,2.3944356 - 40: -2.3438,2.6444356 - 41: -2.421925,2.9569356 - 42: -2.671925,3.0194356 - 43: -2.81255,3.0038106 - node: color: '#79150012' id: splatter @@ -194,6 +155,46 @@ entities: 93: 0.8128674,0.811473 94: 1.6722424,0.780223 95: 2.4378674,0.827098 + - node: + color: '#79150022' + id: splatter + decals: + 8: 0.6093248,1.4100605 + 9: 0.5936998,1.1913105 + 10: 0.4530748,1.3006855 + 11: 0.3436998,1.6756856 + 12: 0.21869981,2.0038106 + 13: 0.21869981,2.0663106 + 14: 0.6249498,1.8475606 + 15: 0.6561998,1.7069356 + 16: 0.6561998,1.6913106 + 17: 0.7655748,1.3944355 + 18: 0.8124498,1.4100605 + 19: 0.6561998,1.5663106 + 20: 0.3905748,1.6131856 + 21: 0.3436998,1.5506856 + 22: 0.4686998,1.5038106 + 23: 0.24994981,1.6444356 + 24: 0.3905748,1.8631856 + 25: 1.2811998,1.2381855 + 26: 1.6561999,0.8788105 + 27: 1.3436998,1.0506855 + 28: 1.5311999,1.0038105 + 29: 1.9218249,0.9413105 + 30: 1.3749498,0.9569355 + 31: 1.0468248,1.3944355 + 32: 1.1249498,0.9100605 + 33: -2.62505,2.9725606 + 34: -2.56255,3.4413106 + 35: -2.2188,3.1131856 + 36: -2.734425,3.2225606 + 37: -2.609425,2.7850606 + 38: -2.484425,2.7694356 + 39: -2.37505,2.3944356 + 40: -2.3438,2.6444356 + 41: -2.421925,2.9569356 + 42: -2.671925,3.0194356 + 43: -2.81255,3.0038106 type: DecalGrid - version: 2 data: @@ -299,6 +300,7 @@ entities: - type: GasTileOverlay - type: RadiationGridResistance - type: SpreaderGrid + - type: GridPathfinding - proto: AsteroidRockMining entities: - uid: 1 diff --git a/Resources/Maps/Salvage/wh-salvage.yml b/Resources/Maps/Salvage/wh-salvage.yml index 845f1c46ed..8e4a740168 100644 --- a/Resources/Maps/Salvage/wh-salvage.yml +++ b/Resources/Maps/Salvage/wh-salvage.yml @@ -1,17 +1,17 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space 10: FloorAsteroidSand 11: FloorAsteroidTile 12: FloorBar - 22: FloorDark - 37: FloorFreezer - 47: FloorKitchen - 91: FloorWood - 93: Lattice - 94: Plating + 23: FloorDark + 38: FloorFreezer + 48: FloorKitchen + 92: FloorWood + 94: Lattice + 95: Plating entities: - proto: "" entities: @@ -23,16 +23,16 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAKAAAAXQAAAF0AAAAKAAAACgAAAF0AAAAKAAAACgAAAF0AAABdAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAACFgAAAgwAAAAMAAADDAAAAAwAAAAMAAACDAAAAAwAAAMMAAADAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAhYAAAIMAAAADAAAAgwAAAEMAAAADAAAAwwAAAIMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAAWAAACDAAAAwwAAAEMAAADDAAAAgwAAAEMAAACDAAAAQwAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAABFgAAAQwAAAEMAAABDAAAAQwAAAEMAAADDAAAAQwAAAAMAAABAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAxYAAAEMAAACDAAAAQwAAAIMAAADDAAAAQwAAAEMAAACDAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAKAAAAXgAAAF4AAAAKAAAACgAAAF4AAAAKAAAACgAAAF4AAABeAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACFwAAAgwAAAAMAAADDAAAAAwAAAAMAAACDAAAAAwAAAMMAAADAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAhcAAAIMAAAADAAAAgwAAAEMAAAADAAAAwwAAAIMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAAXAAACDAAAAwwAAAEMAAADDAAAAgwAAAEMAAACDAAAAQwAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAABFwAAAQwAAAEMAAABDAAAAQwAAAEMAAADDAAAAQwAAAAMAAABAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAxcAAAEMAAACDAAAAQwAAAIMAAADDAAAAQwAAAEMAAACDAAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAsAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAALAAAACwAAAF0AAABdAAAACgAAAAoAAAAKAAAACgAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAoAAAAKAAAACwAAAAsAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAACgAAAAsAAAALAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAsAAAALAAAACwAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAFsAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAMAAADXgAAAFsAAAFbAAAAWwAAAl4AAAAlAAAAJQAAAF4AAAAlAAAAJQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAADAAAAVsAAAFbAAAAWwAAAlsAAAJeAAAAJQAAACUAAABeAAAAJQAAACUAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAlAAAAXgAAACUAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAMAAACDAAAAgwAAAMMAAABDAAAAQwAAAIMAAACDAAAAgwAAAMMAAADDAAAAV4AAAAAAAAAAAAAAAAAAAAAAAAADAAAAQwAAAIMAAADDAAAAQwAAAMMAAAADAAAAgwAAAEMAAACDAAAAAwAAABeAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAsAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAALAAAACwAAAF4AAABeAAAACgAAAAoAAAAKAAAACgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAoAAAAKAAAACwAAAAsAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABfAAAACgAAAAsAAAALAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAsAAAALAAAACwAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAFwAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAMAAADXwAAAFwAAAFcAAAAXAAAAl8AAAAmAAAAJgAAAF8AAAAmAAAAJgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAADAAAAVwAAAFcAAAAXAAAAlwAAAJfAAAAJgAAACYAAABfAAAAJgAAACYAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAmAAAAXwAAACYAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAMAAACDAAAAgwAAAMMAAABDAAAAQwAAAIMAAACDAAAAgwAAAMMAAADDAAAAV8AAAAAAAAAAAAAAAAAAAAAAAAADAAAAQwAAAIMAAADDAAAAQwAAAMMAAAADAAAAgwAAAEMAAACDAAAAAwAAABfAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: FgAAAhYAAAIWAAADFgAAAxYAAAEWAAAAXgAAAF4AAABeAAAAFgAAA14AAABeAAAAAAAAAAAAAAAAAAAAAAAAAC8AAAAvAAAALwAAAC8AAAAvAAAALwAAAF4AAAAWAAACFgAAAhYAAAMWAAADXgAAAF0AAAAAAAAAAAAAAAAAAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAAAWAAAAFgAAARYAAAEWAAAAFgAAA14AAAAAAAAAAAAAAAAAAAAAAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAAXgAAABYAAAMWAAABFgAAARYAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAl4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAALAAAACwAAAAsAAAALAAAACwAAABYAAAMWAAABFgAAAhYAAAIWAAADFgAAAV4AAABdAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAABeAAAAFgAAAxYAAAAWAAACFgAAARYAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXgAAABYAAAAWAAADFgAAAhYAAAEWAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAF4AAAAWAAADFgAAAhYAAAMWAAADFgAAA14AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAACgAAAAoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FwAAAhcAAAIXAAADFwAAAxcAAAEXAAAAXwAAAF8AAABfAAAAFwAAA18AAABfAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAAF8AAAAXAAACFwAAAhcAAAMXAAADXwAAAF4AAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAAXAAAAFwAAARcAAAEXAAAAFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAXwAAABcAAAMXAAABFwAAARcAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAl8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAALAAAACwAAAAsAAAALAAAACwAAABcAAAMXAAABFwAAAhcAAAIXAAADFwAAAV8AAABeAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAABfAAAAFwAAAxcAAAAXAAACFwAAARcAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXwAAABcAAAAXAAADFwAAAhcAAAEXAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAF8AAAAXAAADFwAAAhcAAAMXAAADFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAACgAAAAoAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAhYAAAAMAAABDAAAAhYAAAIWAAAAFgAAARYAAAIWAAABFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAIWAAAADAAAAwwAAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAACFgAAAgwAAAMMAAACLwAAAC8AAAAvAAAALwAAAC8AAAAvAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAABYAAAAMAAAADAAAAC8AAAAvAAAALwAAAC8AAAAvAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAXQAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAAAAAAAAoAAAAKAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAKAAAACgAAAF0AAABdAAAAXQAAAAoAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAhcAAAAMAAABDAAAAhcAAAIXAAAAFwAAARcAAAIXAAABFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAIXAAAADAAAAwwAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACFwAAAgwAAAMMAAACMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAABcAAAAMAAAADAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAXgAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAAAAAAAAoAAAAKAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAKAAAACgAAAF4AAABeAAAAXgAAAAoAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -40,7 +40,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -395,6 +396,7 @@ entities: - type: RadiationGridResistance - type: GasTileOverlay - type: SpreaderGrid + - type: GridPathfinding - proto: AirlockFreezer entities: - uid: 252 @@ -651,16 +653,12 @@ entities: pos: 4.5,-4.5 parent: 374 type: Transform - - bodyType: Static - type: Physics - uid: 305 components: - rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 374 type: Transform - - bodyType: Static - type: Physics - proto: ChairFolding entities: - uid: 363 @@ -796,8 +794,6 @@ entities: - pos: 7.5,7.5 parent: 374 type: Transform - - bodyType: Static - type: Physics - proto: CrateFilledSpawner entities: - uid: 267 @@ -1810,16 +1806,12 @@ entities: pos: 6.5,-4.5 parent: 374 type: Transform - - bodyType: Static - type: Physics - uid: 26 components: - rot: -1.5707963267948966 rad pos: 10.5,-4.5 parent: 374 type: Transform - - bodyType: Static - type: Physics - proto: TrashBag entities: - uid: 312 diff --git a/Resources/Maps/Shuttles/arrivals.yml b/Resources/Maps/Shuttles/arrivals.yml index 86903df251..fc1f95771f 100644 --- a/Resources/Maps/Shuttles/arrivals.yml +++ b/Resources/Maps/Shuttles/arrivals.yml @@ -181,8 +181,7 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance - - nextUpdate: 0 - type: SpreaderGrid + - type: SpreaderGrid - type: GridPathfinding - proto: AirCanister entities: @@ -1394,7 +1393,7 @@ entities: - pos: 1.5,-5.5 parent: 292 type: Transform -- proto: Intercom +- proto: IntercomCommon entities: - uid: 264 components: diff --git a/Resources/Maps/Shuttles/cargo.yml b/Resources/Maps/Shuttles/cargo.yml index 9433124bfe..38565e20a0 100644 --- a/Resources/Maps/Shuttles/cargo.yml +++ b/Resources/Maps/Shuttles/cargo.yml @@ -1,36 +1,36 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space - 61: FloorShuttleBlue - 65: FloorShuttleWhite - 68: FloorSteel - 78: FloorTechMaint - 94: Plating + 62: FloorShuttleBlue + 66: FloorShuttleWhite + 69: FloorSteel + 79: FloorTechMaint + 95: Plating entities: - proto: "" entities: - uid: 173 components: - - type: MetaData - name: Cargo shuttle + - name: Cargo shuttle + type: MetaData - pos: 2.2710133,-2.4148211 parent: invalid type: Transform - chunks: -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAARAAAAEQAAABEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAEEAAAA9AAAAQQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAPQAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAARQAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAEIAAAA+AAAAQgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAPgAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABPAAAAXwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -38,6 +38,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics + - fixtures: {} + type: Fixtures - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -117,16 +119,16 @@ entities: -1,1: 0: 4096 1: 59647 - 6: 512 - 8: 1024 - 9: 256 + 2: 512 + 3: 1024 + 4: 256 -1,2: - 2: 1 - 3: 16 - 4: 4 - 5: 64 + 5: 1 + 6: 16 + 7: 4 + 8: 64 1: 61066 - 7: 32 + 9: 32 -1,3: 0: 546 1: 52428 @@ -206,6 +208,51 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 268.94583 + moles: + - 20.00614 + - 75.26119 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 285.08194 + moles: + - 21.218632 + - 79.82248 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 196.33333 + moles: + - 14.549919 + - 54.735413 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 147.92499 moles: @@ -266,21 +313,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 268.94583 - moles: - - 20.00614 - - 75.26119 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 265.9203 moles: @@ -296,36 +328,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 285.08194 - moles: - - 21.218632 - - 79.82248 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 196.33333 - moles: - - 14.549919 - - 54.735413 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 type: GridAtmosphere - type: OccluderTree @@ -351,7 +353,6 @@ entities: pos: 0.5,1.5 parent: 173 type: Transform - - proto: AirlockExternalGlassShuttleLocked entities: - uid: 50 @@ -360,21 +361,18 @@ entities: pos: -5.5,3.5 parent: 173 type: Transform - - uid: 52 components: - rot: 1.5707963267948966 rad pos: 0.5,3.5 parent: 173 type: Transform - - uid: 53 components: - rot: -1.5707963267948966 rad pos: -5.5,1.5 parent: 173 type: Transform - - proto: APCHyperCapacity entities: - uid: 79 @@ -411,49 +409,33 @@ entities: - pos: 0.5,4.5 parent: 173 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 57 - type: SignalReceiver + - links: + - 57 + type: DeviceLinkSink - uid: 2 components: - pos: -5.5,4.5 parent: 173 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 56 - type: SignalReceiver + - links: + - 56 + type: DeviceLinkSink - uid: 3 components: - pos: -5.5,0.5 parent: 173 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 55 - type: SignalReceiver + - links: + - 55 + type: DeviceLinkSink - uid: 54 components: - pos: 0.5,0.5 parent: 173 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 58 - type: SignalReceiver + - links: + - 58 + type: DeviceLinkSink - proto: CableApcExtension entities: - uid: 100 @@ -826,8 +808,6 @@ entities: pos: -2.5,7.5 parent: 173 type: Transform - - bodyType: Static - type: Physics - proto: ComputerShuttle entities: - uid: 78 @@ -843,204 +823,108 @@ entities: pos: 0.5,4.5 parent: 173 type: Transform - - inputs: - Reverse: - - port: Right - uid: 36 - Forward: - - port: Left - uid: 36 - Off: - - port: Middle - uid: 36 - type: SignalReceiver + - links: + - 36 + type: DeviceLinkSink - uid: 39 components: - rot: 1.5707963267948966 rad pos: -0.5,4.5 parent: 173 type: Transform - - inputs: - Reverse: - - port: Right - uid: 36 - Forward: - - port: Left - uid: 36 - Off: - - port: Middle - uid: 36 - type: SignalReceiver + - links: + - 36 + type: DeviceLinkSink - uid: 40 components: - rot: 1.5707963267948966 rad pos: -1.5,4.5 parent: 173 type: Transform - - inputs: - Reverse: - - port: Right - uid: 36 - Forward: - - port: Left - uid: 36 - Off: - - port: Middle - uid: 36 - type: SignalReceiver + - links: + - 36 + type: DeviceLinkSink - uid: 41 components: - rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 173 type: Transform - - inputs: - Reverse: - - port: Right - uid: 34 - Forward: - - port: Left - uid: 34 - Off: - - port: Middle - uid: 34 - type: SignalReceiver + - links: + - 34 + type: DeviceLinkSink - uid: 42 components: - rot: 1.5707963267948966 rad pos: -4.5,0.5 parent: 173 type: Transform - - inputs: - Reverse: - - port: Right - uid: 34 - Forward: - - port: Left - uid: 34 - Off: - - port: Middle - uid: 34 - type: SignalReceiver + - links: + - 34 + type: DeviceLinkSink - uid: 43 components: - rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 173 type: Transform - - inputs: - Reverse: - - port: Right - uid: 34 - Forward: - - port: Left - uid: 34 - Off: - - port: Middle - uid: 34 - type: SignalReceiver + - links: + - 34 + type: DeviceLinkSink - uid: 46 components: - rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 173 type: Transform - - inputs: - Reverse: - - port: Right - uid: 35 - Forward: - - port: Left - uid: 35 - Off: - - port: Middle - uid: 35 - type: SignalReceiver + - links: + - 35 + type: DeviceLinkSink - uid: 47 components: - rot: -1.5707963267948966 rad pos: -3.5,4.5 parent: 173 type: Transform - - inputs: - Reverse: - - port: Right - uid: 37 - Forward: - - port: Left - uid: 37 - Off: - - port: Middle - uid: 37 - type: SignalReceiver + - links: + - 37 + type: DeviceLinkSink - uid: 48 components: - rot: -1.5707963267948966 rad pos: -4.5,4.5 parent: 173 type: Transform - - inputs: - Reverse: - - port: Right - uid: 37 - Forward: - - port: Left - uid: 37 - Off: - - port: Middle - uid: 37 - type: SignalReceiver + - links: + - 37 + type: DeviceLinkSink - uid: 49 components: - rot: -1.5707963267948966 rad pos: -5.5,4.5 parent: 173 type: Transform - - inputs: - Reverse: - - port: Right - uid: 37 - Forward: - - port: Left - uid: 37 - Off: - - port: Middle - uid: 37 - type: SignalReceiver + - links: + - 37 + type: DeviceLinkSink - uid: 51 components: - rot: -1.5707963267948966 rad pos: -1.5,0.5 parent: 173 type: Transform - - inputs: - Reverse: - - port: Right - uid: 35 - Forward: - - port: Left - uid: 35 - Off: - - port: Middle - uid: 35 - type: SignalReceiver + - links: + - 35 + type: DeviceLinkSink - uid: 167 components: - rot: -1.5707963267948966 rad pos: 0.5,0.5 parent: 173 type: Transform - - inputs: - Reverse: - - port: Right - uid: 35 - Forward: - - port: Left - uid: 35 - Off: - - port: Middle - uid: 35 - type: SignalReceiver + - links: + - 35 + type: DeviceLinkSink - proto: GasPipeBend entities: - uid: 134 @@ -1049,8 +933,6 @@ entities: pos: -2.5,-1.5 parent: 173 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - proto: GasPipeStraight @@ -1061,24 +943,18 @@ entities: pos: -2.5,0.5 parent: 173 type: Transform - - bodyType: Static - type: Physics - uid: 137 components: - rot: 3.141592653589793 rad pos: -2.5,1.5 parent: 173 type: Transform - - bodyType: Static - type: Physics - uid: 140 components: - rot: 3.141592653589793 rad pos: -2.5,-0.5 parent: 173 type: Transform - - bodyType: Static - type: Physics - proto: GasPort entities: - uid: 135 @@ -1087,8 +963,6 @@ entities: pos: -3.5,-1.5 parent: 173 type: Transform - - bodyType: Static - type: Physics - proto: GasVentPump entities: - uid: 138 @@ -1096,8 +970,8 @@ entities: - pos: -2.5,2.5 parent: 173 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - proto: GeneratorUranium entities: - uid: 83 @@ -1146,8 +1020,6 @@ entities: - pos: -3.5,-2.5 parent: 173 type: Transform - - bodyType: Static - type: Physics - proto: PlasticFlapsAirtightClear entities: - uid: 44 @@ -1155,29 +1027,21 @@ entities: - pos: 0.5,0.5 parent: 173 type: Transform - - bodyType: Static - type: Physics - uid: 164 components: - pos: -5.5,0.5 parent: 173 type: Transform - - bodyType: Static - type: Physics - uid: 165 components: - pos: -5.5,4.5 parent: 173 type: Transform - - bodyType: Static - type: Physics - uid: 166 components: - pos: 0.5,4.5 parent: 173 type: Transform - - bodyType: Static - type: Physics - proto: Poweredlight entities: - uid: 147 @@ -1186,8 +1050,6 @@ entities: pos: -0.5,2.5 parent: 173 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 148 @@ -1196,8 +1058,6 @@ entities: pos: -4.5,2.5 parent: 173 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 149 @@ -1206,8 +1066,6 @@ entities: pos: -3.5,7.5 parent: 173 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 150 @@ -1216,8 +1074,6 @@ entities: pos: -1.5,7.5 parent: 173 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - proto: ShuttleWindow @@ -1254,41 +1110,37 @@ entities: - pos: -5.5,-0.5 parent: 173 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 3 - type: SignalTransmitter + - linkedPorts: + 3: + - Pressed: Toggle + type: DeviceLinkSource - uid: 56 components: - pos: -5.5,5.5 parent: 173 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2 - type: SignalTransmitter + - linkedPorts: + 2: + - Pressed: Toggle + type: DeviceLinkSource - uid: 57 components: - pos: 0.5,5.5 parent: 173 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1 - type: SignalTransmitter + - linkedPorts: + 1: + - Pressed: Toggle + type: DeviceLinkSource - uid: 58 components: - pos: 0.5,-0.5 parent: 173 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 54 - type: SignalTransmitter + - linkedPorts: + 54: + - Pressed: Toggle + type: DeviceLinkSource - proto: SMESBasic entities: - uid: 84 @@ -1323,62 +1175,46 @@ entities: pos: 0.5,-2.5 parent: 173 type: Transform - - bodyType: Static - type: Physics - uid: 13 components: - rot: -1.5707963267948966 rad pos: 0.5,7.5 parent: 173 type: Transform - - bodyType: Static - type: Physics - uid: 14 components: - rot: 1.5707963267948966 rad pos: -5.5,7.5 parent: 173 type: Transform - - bodyType: Static - type: Physics - uid: 15 components: - rot: 1.5707963267948966 rad pos: -5.5,-2.5 parent: 173 type: Transform - - bodyType: Static - type: Physics - uid: 59 components: - pos: -4.5,9.5 parent: 173 type: Transform - - bodyType: Static - type: Physics - uid: 60 components: - pos: -0.5,9.5 parent: 173 type: Transform - - bodyType: Static - type: Physics - uid: 61 components: - rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 173 type: Transform - - bodyType: Static - type: Physics - uid: 62 components: - rot: 3.141592653589793 rad pos: -4.5,-4.5 parent: 173 type: Transform - - bodyType: Static - type: Physics - proto: TwoWayLever entities: - uid: 34 @@ -1386,113 +1222,77 @@ entities: - pos: -3.5,1.5 parent: 173 type: Transform - - outputs: - Left: - - port: Forward - uid: 43 - - port: Forward - uid: 42 - - port: Forward - uid: 41 - Right: - - port: Reverse - uid: 43 - - port: Reverse - uid: 42 - - port: Reverse - uid: 41 - Middle: - - port: Off - uid: 43 - - port: Off - uid: 42 - - port: Off - uid: 41 - type: SignalTransmitter + - linkedPorts: + 43: + - Left: Forward + - Right: Reverse + - Middle: Off + 42: + - Left: Forward + - Right: Reverse + - Middle: Off + 41: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 35 components: - pos: -1.5,1.5 parent: 173 type: Transform - - outputs: - Left: - - port: Forward - uid: 51 - - port: Forward - uid: 46 - - port: Forward - uid: 167 - Right: - - port: Reverse - uid: 51 - - port: Reverse - uid: 46 - - port: Reverse - uid: 167 - Middle: - - port: Off - uid: 51 - - port: Off - uid: 46 - - port: Off - uid: 167 - type: SignalTransmitter + - linkedPorts: + 51: + - Left: Forward + - Right: Reverse + - Middle: Off + 46: + - Left: Forward + - Right: Reverse + - Middle: Off + 167: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 36 components: - pos: -1.5,3.5 parent: 173 type: Transform - - outputs: - Left: - - port: Forward - uid: 38 - - port: Forward - uid: 39 - - port: Forward - uid: 40 - Right: - - port: Reverse - uid: 38 - - port: Reverse - uid: 39 - - port: Reverse - uid: 40 - Middle: - - port: Off - uid: 38 - - port: Off - uid: 39 - - port: Off - uid: 40 - type: SignalTransmitter + - linkedPorts: + 38: + - Left: Forward + - Right: Reverse + - Middle: Off + 39: + - Left: Forward + - Right: Reverse + - Middle: Off + 40: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 37 components: - pos: -3.5,3.5 parent: 173 type: Transform - - outputs: - Left: - - port: Forward - uid: 49 - - port: Forward - uid: 48 - - port: Forward - uid: 47 - Right: - - port: Reverse - uid: 49 - - port: Reverse - uid: 48 - - port: Reverse - uid: 47 - Middle: - - port: Off - uid: 49 - - port: Off - uid: 48 - - port: Off - uid: 47 - type: SignalTransmitter + - linkedPorts: + 49: + - Left: Forward + - Right: Reverse + - Middle: Off + 48: + - Left: Forward + - Right: Reverse + - Middle: Off + 47: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - proto: WallShuttle entities: - uid: 4 diff --git a/Resources/Maps/Shuttles/dart.yml b/Resources/Maps/Shuttles/dart.yml index 9b36dd6ad1..67b28cbbb1 100644 --- a/Resources/Maps/Shuttles/dart.yml +++ b/Resources/Maps/Shuttles/dart.yml @@ -71,571 +71,571 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 267: -2,-18 - 377: 6,-2 + 82: -2,-18 + 165: 6,-2 - node: color: '#FFFFFFFF' id: Arrows decals: - 200: -5,-19 + 33: -5,-19 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 216: 4,-23 - 266: 0,-18 - 378: -8,-2 + 45: 4,-23 + 81: 0,-18 + 166: -8,-2 - node: color: '#FFFFFFFF' id: Bot decals: - 194: -7,-20 - 264: 0,-17 - 265: -2,-17 - 371: -7,-3 - 372: -7,-2 - 373: -7,-1 - 374: 5,-3 - 375: 5,-2 - 376: 5,-1 + 27: -7,-20 + 79: 0,-17 + 80: -2,-17 + 159: -7,-3 + 160: -7,-2 + 161: -7,-1 + 162: 5,-3 + 163: 5,-2 + 164: 5,-1 - node: color: '#FFFFFFFF' id: BotLeft decals: - 212: 4,-22 - 213: 6,-22 + 41: 4,-22 + 42: 6,-22 - node: color: '#FFFFFFFF' id: BotRight decals: - 214: 5,-24 - 215: 7,-24 + 43: 5,-24 + 44: 7,-24 - node: color: '#FFFFFFFF' id: Box decals: - 199: -5,-20 - 401: -5,2 + 32: -5,-20 + 180: -5,2 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 234: 2,-19 + 56: 2,-19 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 236: 3,-21 - 237: 4,-21 - 238: 5,-21 - 239: 6,-21 + 58: 3,-21 + 59: 4,-21 + 60: 5,-21 + 61: 6,-21 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 235: 2,-18 + 57: 2,-18 - node: color: '#DE3A3AE3' id: BrickTileSteelCornerNe decals: - 272: 3,-14 + 84: 3,-14 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 313: 3,-8 + 106: 3,-8 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 314: 2,-8 - 315: 1,-9 + 107: 2,-8 + 108: 1,-9 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 317: 3,-11 + 110: 3,-11 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 316: 1,-11 + 109: 1,-11 - node: color: '#DE3A3AE3' id: BrickTileSteelEndS decals: - 276: 3,-15 + 87: 3,-15 - node: color: '#DE3A3AE3' id: BrickTileSteelEndW decals: - 277: 1,-14 + 88: 1,-14 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 320: 2,-9 + 113: 2,-9 - node: color: '#DE3A3AE3' id: BrickTileSteelInnerSw decals: - 275: 3,-14 + 86: 3,-14 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 311: 3,-10 - 312: 3,-9 + 104: 3,-10 + 105: 3,-9 - node: color: '#DE3A3AE3' id: BrickTileSteelLineN decals: - 271: 2,-14 + 83: 2,-14 - node: color: '#DE3A3AE3' id: BrickTileSteelLineS decals: - 274: 2,-14 + 85: 2,-14 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 318: 2,-11 + 111: 2,-11 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 319: 1,-10 + 112: 1,-10 - node: color: '#8BCC5056' id: BrickTileWhiteCornerNe decals: - 422: -3,7 - 435: 0,7 - 441: 2,7 - 442: 3,6 + 194: -3,7 + 205: 0,7 + 210: 2,7 + 211: 3,6 - node: color: '#EFCF4175' id: BrickTileWhiteCornerNe decals: - 241: 4,-1 + 63: 4,-1 - node: color: '#FFC56993' id: BrickTileWhiteCornerNe decals: - 383: -4,-5 + 167: -4,-5 - node: color: '#8BCC5056' id: BrickTileWhiteCornerNw decals: - 423: -4,7 - 424: -5,6 - 434: -2,7 - 440: 1,7 + 195: -4,7 + 196: -5,6 + 204: -2,7 + 209: 1,7 - node: color: '#EFCF4175' id: BrickTileWhiteCornerNw decals: - 240: 2,-1 + 62: 2,-1 - node: color: '#FFC56993' id: BrickTileWhiteCornerNw decals: - 388: -7,-5 + 172: -7,-5 - node: color: '#8BCC5056' id: BrickTileWhiteCornerSe decals: - 445: 3,4 + 214: 3,4 - node: color: '#EFCF4175' id: BrickTileWhiteCornerSe decals: - 250: 4,-6 + 71: 4,-6 - node: color: '#FFC56993' id: BrickTileWhiteCornerSe decals: - 384: -4,-6 + 168: -4,-6 - node: color: '#8BCC5056' id: BrickTileWhiteCornerSw decals: - 426: -5,5 - 446: 2,4 + 198: -5,5 + 215: 2,4 - node: color: '#EFCF4175' id: BrickTileWhiteCornerSw decals: - 247: 2,-6 + 69: 2,-6 - node: color: '#FFC56993' id: BrickTileWhiteCornerSw decals: - 387: -7,-6 + 171: -7,-6 - node: color: '#8BCC5056' id: BrickTileWhiteInnerNe decals: - 443: 2,6 + 212: 2,6 - node: color: '#8BCC5056' id: BrickTileWhiteInnerNw decals: - 425: -4,6 + 197: -4,6 - node: color: '#8BCC5056' id: BrickTileWhiteInnerSw decals: - 447: 2,5 + 216: 2,5 - node: color: '#8BCC5056' id: BrickTileWhiteLineE decals: - 432: -3,6 - 436: 0,6 - 444: 3,5 + 202: -3,6 + 206: 0,6 + 213: 3,5 - node: color: '#EFCF4175' id: BrickTileWhiteLineE decals: - 251: 4,-5 - 252: 4,-4 - 253: 4,-3 - 254: 4,-2 + 72: 4,-5 + 73: 4,-4 + 74: 4,-3 + 75: 4,-2 - node: color: '#8BCC5056' id: BrickTileWhiteLineN decals: - 437: -1,7 + 207: -1,7 - node: color: '#EFCF4175' id: BrickTileWhiteLineN decals: - 191: -4,-18 - 192: -5,-18 - 193: -6,-18 - 242: 3,-1 + 24: -4,-18 + 25: -5,-18 + 26: -6,-18 + 64: 3,-1 - node: color: '#FFC56993' id: BrickTileWhiteLineN decals: - 389: -5,-5 + 173: -5,-5 - node: color: '#8BCC5056' id: BrickTileWhiteLineS decals: - 427: -4,5 - 428: -3,5 - 429: -2,5 - 448: 1,5 - 449: 0,5 + 199: -4,5 + 200: -3,5 + 201: -2,5 + 217: 1,5 + 218: 0,5 - node: color: '#EFCF4175' id: BrickTileWhiteLineS decals: - 248: 3,-6 + 70: 3,-6 - node: color: '#FFC56993' id: BrickTileWhiteLineS decals: - 385: -5,-6 - 386: -6,-6 + 169: -5,-6 + 170: -6,-6 - node: color: '#8BCC5056' id: BrickTileWhiteLineW decals: - 433: -2,6 - 438: 1,6 + 203: -2,6 + 208: 1,6 - node: color: '#EFCF4175' id: BrickTileWhiteLineW decals: - 189: -7,-20 - 190: -7,-19 - 243: 2,-2 - 244: 2,-3 - 245: 2,-4 - 246: 2,-5 + 22: -7,-20 + 23: -7,-19 + 65: 2,-2 + 66: 2,-3 + 67: 2,-4 + 68: 2,-5 - node: color: '#52B4E996' id: CheckerNWSE decals: - 403: -7,1 - 404: -7,2 - 405: -7,3 + 181: -7,1 + 182: -7,2 + 183: -7,3 - node: color: '#79150096' id: CheckerNWSE decals: - 321: -2,-10 - 322: -3,-10 - 323: -3,-9 - 324: -2,-9 - 325: -4,-10 - 326: -4,-9 - 327: -5,-9 - 328: -5,-10 - 329: -5,-11 - 330: -4,-11 - 331: -3,-11 - 332: -2,-11 + 114: -2,-10 + 115: -3,-10 + 116: -3,-9 + 117: -2,-9 + 118: -4,-10 + 119: -4,-9 + 120: -5,-9 + 121: -5,-10 + 122: -5,-11 + 123: -4,-11 + 124: -3,-11 + 125: -2,-11 - node: color: '#EFCF4175' id: CheckerNWSE decals: - 224: 6,-21 - 225: 5,-21 - 226: 4,-21 - 227: 3,-21 - 228: 3,-20 - 229: 3,-19 - 230: 4,-19 - 231: 2,-19 - 232: 2,-18 - 233: 3,-18 + 46: 6,-21 + 47: 5,-21 + 48: 4,-21 + 49: 3,-21 + 50: 3,-20 + 51: 3,-19 + 52: 4,-19 + 53: 2,-19 + 54: 2,-18 + 55: 3,-18 - node: color: '#FFFFFFFF' id: Delivery decals: - 208: 5,-22 - 209: 7,-22 - 210: 6,-24 - 211: 4,-24 - 261: 5,-5 - 262: 5,-6 - 263: 5,-7 - 289: 0,-10 - 290: 0,-14 - 335: -5,-11 - 365: 8,-3 - 366: 8,-2 - 367: 8,-1 - 368: -10,-3 - 369: -10,-2 - 370: -10,-1 - 390: -6,-4 - 415: -6,0 + 37: 5,-22 + 38: 7,-22 + 39: 6,-24 + 40: 4,-24 + 76: 5,-5 + 77: 5,-6 + 78: 5,-7 + 91: 0,-10 + 92: 0,-14 + 126: -5,-11 + 153: 8,-3 + 154: 8,-2 + 155: 8,-1 + 156: -10,-3 + 157: -10,-2 + 158: -10,-1 + 174: -6,-4 + 193: -6,0 - node: color: '#FFC56993' id: FullTileOverlayGreyscale decals: - 391: -7,-7 + 175: -7,-7 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 394: -6,2 + 176: -6,2 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 399: -4,1 - 400: -4,2 + 178: -4,1 + 179: -4,2 - node: color: '#9FED5850' id: MiniTileCheckerBOverlay decals: - 300: 3,-11 - 301: 3,-10 - 302: 3,-9 - 303: 3,-8 - 304: 2,-8 - 305: 2,-9 - 306: 2,-10 - 307: 2,-11 - 308: 1,-11 - 309: 1,-10 - 310: 1,-9 + 93: 3,-11 + 94: 3,-10 + 95: 3,-9 + 96: 3,-8 + 97: 2,-8 + 98: 2,-9 + 99: 2,-10 + 100: 2,-11 + 101: 1,-11 + 102: 1,-10 + 103: 1,-9 - node: color: '#D4D4D412' id: MiniTileCheckerBOverlay decals: - 287: 3,-16 - 288: 2,-16 + 89: 3,-16 + 90: 2,-16 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 406: -6,-1 - 407: -5,-1 - 408: -4,-1 + 184: -6,-1 + 185: -5,-1 + 186: -4,-1 - node: color: '#79150096' id: QuarterTileOverlayGreyscale decals: - 348: -5,-12 - 349: -4,-12 - 350: -3,-12 - 352: -2,-12 + 137: -5,-12 + 138: -4,-12 + 139: -3,-12 + 140: -2,-12 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 409: -6,-3 - 410: -5,-3 - 411: -4,-3 - 414: -5,1 + 187: -6,-3 + 188: -5,-3 + 189: -4,-3 + 192: -5,1 - node: color: '#DE3A3A96' id: StandClearGreyscale decals: - 130: -3,-1 - 131: -3,-2 - 132: -3,-3 - 133: 1,-1 - 134: 1,-2 - 135: 1,-3 + 0: -3,-1 + 1: -3,-2 + 2: -3,-3 + 3: 1,-1 + 4: 1,-2 + 5: 1,-3 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 396: -4,0 + 177: -4,0 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 412: -5,0 - 413: -6,1 + 190: -5,0 + 191: -6,1 - node: color: '#DE3A3A96' id: WarnBox decals: - 186: 5,3 - 187: 5,2 - 188: 5,1 + 19: 5,3 + 20: 5,2 + 21: 5,1 - node: color: '#52B4E996' id: WarnBoxGreyscale decals: - 180: 2,2 - 181: 2,1 - 182: 2,0 - 183: 2,2 - 184: 2,1 - 185: 2,0 + 13: 2,2 + 14: 2,1 + 15: 2,0 + 16: 2,2 + 17: 2,1 + 18: 2,0 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 357: -8,-1 - 358: 7,-1 + 145: -8,-1 + 146: 7,-1 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 196: -6,-19 - 354: 6,-1 - 355: -9,-1 + 29: -6,-19 + 142: 6,-1 + 143: -9,-1 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 353: 7,-3 - 356: -8,-3 + 141: 7,-3 + 144: -8,-3 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 359: 6,-3 - 360: -9,-3 + 147: 6,-3 + 148: -9,-3 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 201: -6,-21 + 34: -6,-21 - node: color: '#EFB34196' id: WarnLineE decals: - 136: 0,-1 - 137: 0,-2 - 138: 0,-3 + 6: 0,-1 + 7: 0,-2 + 8: 0,-3 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 202: 3,-23 - 203: 3,-22 - 363: 7,-2 - 364: -8,-2 + 35: 3,-23 + 36: 3,-22 + 151: 7,-2 + 152: -8,-2 - node: color: '#8BCC5056' id: WarnLineGreyscaleS decals: - 450: -1,5 + 219: -1,5 - node: color: '#EFB34196' id: WarnLineS decals: - 139: -2,-1 - 140: -2,-2 - 141: -2,-3 + 9: -2,-1 + 10: -2,-2 + 11: -2,-3 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 195: -6,-20 - 361: -9,-2 - 362: 6,-2 + 28: -6,-20 + 149: -9,-2 + 150: 6,-2 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 197: -5,-19 - 198: -4,-19 + 30: -5,-19 + 31: -4,-19 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 346: -2,-13 - 452: 0,3 + 135: -2,-13 + 221: 0,3 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 340: -5,-13 - 451: -2,3 + 129: -5,-13 + 220: -2,3 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 345: -2,-15 - 455: 0,1 + 134: -2,-15 + 224: 0,1 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 342: -5,-15 - 454: -2,1 + 131: -5,-15 + 223: -2,1 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 347: -2,-14 - 458: 0,2 + 136: -2,-14 + 227: 0,2 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 142: -2,3 - 337: -3,-13 - 338: -4,-13 - 453: -1,3 + 12: -2,3 + 127: -3,-13 + 128: -4,-13 + 222: -1,3 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 343: -4,-15 - 344: -3,-15 - 456: -1,1 + 132: -4,-15 + 133: -3,-15 + 225: -1,1 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 341: -5,-14 - 457: -2,2 + 130: -5,-14 + 226: -2,2 type: DecalGrid - version: 2 data: @@ -672,6 +672,7 @@ entities: 0: 65535 -2,1: 0: 36079 + 3: 16384 -2,2: 0: 8 -1,2: @@ -704,6 +705,7 @@ entities: 0: 65535 1,1: 0: 319 + 3: 4096 2,0: 0: 1 -3,-7: @@ -726,6 +728,7 @@ entities: 0: 4096 -1,-6: 0: 30513 + 3: 32768 -1,-5: 0: 65535 0,-6: @@ -792,6 +795,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 type: GridAtmosphere - type: RadiationGridResistance @@ -3001,11 +3019,6 @@ entities: - MedicalScannerSender: MedicalScannerReceiver 926: - CloningPodSender: CloningPodReceiver - registeredSinks: - MedicalScannerSender: - - 928 - CloningPodSender: - - 926 type: DeviceLinkSource - proto: ComputerCrewMonitoring entities: @@ -5477,12 +5490,6 @@ entities: - Pressed: Toggle 807: - Pressed: Toggle - registeredSinks: - Pressed: - - 816 - - 806 - - 826 - - 807 type: DeviceLinkSource - uid: 769 components: @@ -5494,10 +5501,6 @@ entities: - Pressed: Toggle 820: - Pressed: Toggle - registeredSinks: - Pressed: - - 824 - - 820 type: DeviceLinkSource - uid: 822 components: @@ -5509,10 +5512,6 @@ entities: - Pressed: Toggle 819: - Pressed: Toggle - registeredSinks: - Pressed: - - 825 - - 819 type: DeviceLinkSource - uid: 823 components: @@ -5526,11 +5525,6 @@ entities: - Pressed: Toggle 821: - Pressed: Toggle - registeredSinks: - Pressed: - - 817 - - 818 - - 821 type: DeviceLinkSource - proto: SignAtmos entities: diff --git a/Resources/Maps/Shuttles/emergency.yml b/Resources/Maps/Shuttles/emergency.yml index 86feeef51d..bfcb5a27b7 100644 --- a/Resources/Maps/Shuttles/emergency.yml +++ b/Resources/Maps/Shuttles/emergency.yml @@ -1,15 +1,15 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space - 22: FloorDark - 58: FloorReinforced - 68: FloorSteel - 78: FloorTechMaint - 81: FloorWhite - 93: Lattice - 94: Plating + 23: FloorDark + 59: FloorReinforced + 69: FloorSteel + 79: FloorTechMaint + 82: FloorWhite + 94: Lattice + 95: Plating entities: - proto: "" entities: @@ -23,16 +23,16 @@ entities: - chunks: -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAABYAAABeAAAAXgAAAE4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAAWAAAARAAAAEQAAAAWAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAABYAAABEAAAARAAAABYAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAAWAAAAXgAAAF4AAABRAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAWAAAARAAAAF4AAABRAAAAUQAAAFEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAEQAAABeAAAAUQAAAFEAAABRAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAABYAAABEAAAAXgAAAFEAAABRAAAAUQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAAARAAAAF4AAABeAAAAUQAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAFgAAABYAAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAAEQAAAAWAAAAFgAAABYAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAEQAAABEAAAAFgAAABYAAAAWAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAABcAAABfAAAAXwAAAE8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAAXAAAARQAAAEUAAAAXAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAABcAAABFAAAARQAAABcAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAAXAAAAXwAAAF8AAABSAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAXAAAARQAAAF8AAABSAAAAUgAAAFIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAEUAAABfAAAAUgAAAFIAAABSAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAABcAAABFAAAAXwAAAFIAAABSAAAAUgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAAARQAAAF8AAABfAAAAUgAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAARQAAAEUAAAAXAAAAFwAAABcAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAABFAAAAFwAAABcAAAAXAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAABYAAABEAAAAXgAAAE4AAABOAAAAOgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAAARAAAAF4AAABOAAAATgAAADoAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAFgAAAEQAAABeAAAATgAAAE4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAABcAAABFAAAAXwAAAE8AAABPAAAAOwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAAARQAAAF8AAABPAAAATwAAADsAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAFwAAAEUAAABfAAAATwAAAE8AAABfAAAAXwAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAWAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAABYAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAXAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAABcAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: FgAAABYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAEQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAFgAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAABYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAWAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FwAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAFwAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAXAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -40,7 +40,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -85,6 +86,11 @@ entities: 32: -5,12 33: -5,11 34: -3,12 + - node: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + decals: + 5: -3,10 - node: color: '#52B4E996' id: FullTileOverlayGreyscale @@ -94,11 +100,6 @@ entities: 2: -3,7 3: -2,6 4: -4,6 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 5: -3,10 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 @@ -149,8 +150,8 @@ entities: 3: 512 0: 49373 4: 2048 - 10: 1024 - 18: 256 + 5: 1024 + 6: 256 0,-3: 1: 240 0: 65280 @@ -175,10 +176,10 @@ entities: 7: 32 0,3: 0: 65229 - 5: 16 - 6: 256 - 8: 2 - 9: 32 + 8: 16 + 9: 256 + 10: 2 + 11: 32 0,0: 0: 65535 1,3: @@ -199,19 +200,19 @@ entities: 0: 8 -2,0: 0: 61167 - 11: 16 - 12: 256 - 13: 4096 + 12: 16 + 13: 256 + 14: 4096 -2,2: 0: 65499 7: 32 2: 4 -2,3: 0: 143 - 14: 32 - 15: 64 - 16: 1024 - 17: 2048 + 15: 32 + 16: 64 + 17: 1024 + 18: 2048 -2,-2: 0: 64256 19: 1024 @@ -291,6 +292,51 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 250.56815 + moles: + - 18.625212 + - 70.06627 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 192.74052 + moles: + - 14.27995 + - 53.719814 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.213781 + - 79.80423 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 292.48465 moles: @@ -321,21 +367,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.213781 - - 79.80423 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.10843 moles: @@ -366,21 +397,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 250.56815 - moles: - - 18.625212 - - 70.06627 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 220.53749 moles: @@ -486,21 +502,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 192.74052 - moles: - - 14.27995 - - 53.719814 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 220.5375 moles: @@ -525,6 +526,7 @@ entities: type: GravityShake - type: GasTileOverlay - type: SpreaderGrid + - type: GridPathfinding - proto: AirCanister entities: - uid: 300 @@ -554,56 +556,48 @@ entities: pos: -7.5,7.5 parent: 410 type: Transform - - uid: 6 components: - rot: -1.5707963267948966 rad pos: -7.5,5.5 parent: 410 type: Transform - - uid: 12 components: - rot: -1.5707963267948966 rad pos: -7.5,-0.5 parent: 410 type: Transform - - uid: 14 components: - rot: -1.5707963267948966 rad pos: -7.5,-2.5 parent: 410 type: Transform - - uid: 99 components: - rot: 1.5707963267948966 rad pos: 2.5,-0.5 parent: 410 type: Transform - - uid: 100 components: - rot: 1.5707963267948966 rad pos: 2.5,-2.5 parent: 410 type: Transform - - uid: 145 components: - rot: 1.5707963267948966 rad pos: 2.5,7.5 parent: 410 type: Transform - - uid: 152 components: - rot: 1.5707963267948966 rad pos: 2.5,5.5 parent: 410 type: Transform - - proto: AirlockMedicalGlassLocked entities: - uid: 57 @@ -1319,229 +1313,171 @@ entities: - pos: -1.5,3.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 288 components: - pos: -0.5,3.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 289 components: - pos: -4.5,3.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 290 components: - pos: -3.5,3.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 323 components: - rot: -1.5707963267948966 rad pos: -5.5,-1.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 324 components: - rot: -1.5707963267948966 rad pos: -5.5,-0.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 325 components: - rot: 1.5707963267948966 rad pos: 0.5,-1.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 326 components: - rot: 1.5707963267948966 rad pos: 0.5,-0.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 327 components: - rot: 1.5707963267948966 rad pos: 0.5,5.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 328 components: - rot: 1.5707963267948966 rad pos: 0.5,6.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 329 components: - rot: 1.5707963267948966 rad pos: 0.5,7.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 330 components: - rot: -1.5707963267948966 rad pos: -5.5,5.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 331 components: - rot: -1.5707963267948966 rad pos: -5.5,6.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 332 components: - rot: -1.5707963267948966 rad pos: -5.5,7.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 333 components: - rot: 3.141592653589793 rad pos: -4.5,1.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 334 components: - rot: 1.5707963267948966 rad pos: -6.5,1.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 335 components: - rot: 1.5707963267948966 rad pos: -6.5,2.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 336 components: - rot: 1.5707963267948966 rad pos: -6.5,3.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 337 components: - rot: 3.141592653589793 rad pos: -0.5,1.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 338 components: - rot: 3.141592653589793 rad pos: -1.5,1.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 339 components: - rot: 3.141592653589793 rad pos: -3.5,1.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 340 components: - rot: -1.5707963267948966 rad pos: 1.5,1.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 341 components: - rot: -1.5707963267948966 rad pos: 1.5,2.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 342 components: - rot: -1.5707963267948966 rad pos: 1.5,3.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 366 components: - rot: 3.141592653589793 rad pos: -2.5,12.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 375 components: - rot: -1.5707963267948966 rad pos: -4.5,11.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 376 components: - rot: -1.5707963267948966 rad pos: -4.5,12.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 377 components: - rot: 1.5707963267948966 rad pos: -0.5,11.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 378 components: - rot: 1.5707963267948966 rad pos: -0.5,12.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - proto: ClosetEmergencyFilledRandom entities: - uid: 321 @@ -1719,8 +1655,6 @@ entities: - pos: -1.5,-2.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - proto: GasPassiveVent entities: - uid: 270 @@ -1729,8 +1663,6 @@ entities: pos: -1.5,-1.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - proto: GasPipeBend entities: - uid: 291 @@ -1739,15 +1671,11 @@ entities: pos: -2.5,-0.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 298 components: - pos: -1.5,-0.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - proto: GasPipeFourway @@ -1757,8 +1685,6 @@ entities: - pos: -2.5,2.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - proto: GasPipeStraight entities: - uid: 252 @@ -1767,198 +1693,146 @@ entities: pos: -5.5,3.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 253 components: - rot: 3.141592653589793 rad pos: -5.5,4.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 254 components: - rot: 3.141592653589793 rad pos: -5.5,5.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 255 components: - rot: 3.141592653589793 rad pos: 0.5,3.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 256 components: - rot: 3.141592653589793 rad pos: 0.5,4.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 257 components: - rot: 3.141592653589793 rad pos: 0.5,5.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 258 components: - rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 259 components: - rot: 3.141592653589793 rad pos: 0.5,0.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 260 components: - rot: 3.141592653589793 rad pos: 0.5,1.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 261 components: - rot: 3.141592653589793 rad pos: -5.5,-0.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 262 components: - rot: 3.141592653589793 rad pos: -5.5,0.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 263 components: - rot: 3.141592653589793 rad pos: -5.5,1.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 264 components: - rot: 1.5707963267948966 rad pos: -4.5,2.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 265 components: - rot: 1.5707963267948966 rad pos: -3.5,2.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 266 components: - rot: 1.5707963267948966 rad pos: -1.5,2.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 267 components: - rot: 1.5707963267948966 rad pos: -0.5,2.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 268 components: - pos: -2.5,1.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 269 components: - pos: -2.5,0.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 271 components: - pos: -2.5,3.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 272 components: - pos: -2.5,4.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 273 components: - pos: -2.5,5.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 274 components: - pos: -2.5,7.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 275 components: - pos: -2.5,8.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 276 components: - pos: -2.5,9.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 277 components: - pos: -2.5,10.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 278 components: - pos: -2.5,11.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - proto: GasPipeTJunction entities: - uid: 248 @@ -1967,24 +1841,18 @@ entities: pos: -5.5,2.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 249 components: - rot: -1.5707963267948966 rad pos: 0.5,2.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 251 components: - rot: -1.5707963267948966 rad pos: -2.5,6.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - proto: GasPort entities: - uid: 122 @@ -1993,8 +1861,6 @@ entities: pos: -1.5,-3.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - proto: GasVentPump entities: - uid: 242 @@ -2003,45 +1869,45 @@ entities: pos: -5.5,-1.5 parent: 410 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 243 components: - rot: 3.141592653589793 rad pos: 0.5,-1.5 parent: 410 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 244 components: - pos: 0.5,6.5 parent: 410 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 245 components: - pos: -5.5,6.5 parent: 410 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 246 components: - pos: -2.5,12.5 parent: 410 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 247 components: - rot: 1.5707963267948966 rad pos: -3.5,6.5 parent: 410 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - proto: GeneratorUranium entities: - uid: 239 @@ -2222,15 +2088,11 @@ entities: - pos: -5.5,-4.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 309 components: - pos: 0.5,-4.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - proto: HolofanProjector entities: - uid: 303 @@ -2331,8 +2193,6 @@ entities: pos: -3.5,11.5 parent: 410 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 383 @@ -2340,8 +2200,6 @@ entities: - pos: -1.5,-0.5 parent: 410 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 384 @@ -2350,8 +2208,6 @@ entities: pos: -6.5,-1.5 parent: 410 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 385 @@ -2360,8 +2216,6 @@ entities: pos: 1.5,-1.5 parent: 410 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 386 @@ -2370,8 +2224,6 @@ entities: pos: 1.5,6.5 parent: 410 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 387 @@ -2380,8 +2232,6 @@ entities: pos: -6.5,6.5 parent: 410 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 388 @@ -2389,8 +2239,6 @@ entities: - pos: -1.5,7.5 parent: 410 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 389 @@ -2399,8 +2247,6 @@ entities: pos: -3.5,1.5 parent: 410 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 390 @@ -2408,8 +2254,6 @@ entities: - pos: -1.5,9.5 parent: 410 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - proto: ShuttleWindow @@ -2629,62 +2473,46 @@ entities: pos: -7.5,-4.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 71 components: - rot: 3.141592653589793 rad pos: 1.5,-5.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 72 components: - rot: -1.5707963267948966 rad pos: 2.5,-4.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 89 components: - rot: 1.5707963267948966 rad pos: -7.5,11.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 135 components: - pos: -7.5,12.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 175 components: - rot: -1.5707963267948966 rad pos: 2.5,11.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 181 components: - pos: 2.5,12.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - uid: 292 components: - rot: 3.141592653589793 rad pos: -6.5,-5.5 parent: 410 type: Transform - - bodyType: Static - type: Physics - proto: ToolboxElectricalFilled entities: - uid: 344 @@ -3022,6 +2850,14 @@ entities: showEnts: False occludes: True ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] type: ContainerContainer - proto: Welder entities: @@ -3032,7 +2868,7 @@ entities: type: Transform - canCollide: False type: Physics -- proto: WindoorEngineeringLocked +- proto: WindoorSecureEngineeringLocked entities: - uid: 405 components: @@ -3101,6 +2937,4 @@ entities: - pos: -2.5361183,-3.621922 parent: 410 type: Transform - - nextAttack: 268.9663111 - type: MeleeWeapon ... diff --git a/Resources/Maps/Shuttles/emergency_box.yml b/Resources/Maps/Shuttles/emergency_box.yml index 2a7e68bffc..0cf29e8e5b 100644 --- a/Resources/Maps/Shuttles/emergency_box.yml +++ b/Resources/Maps/Shuttles/emergency_box.yml @@ -1,16 +1,16 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space - 22: FloorDark - 31: FloorDarkPlastic - 42: FloorGrassJungle - 56: FloorPlastic - 68: FloorSteel - 78: FloorTechMaint - 81: FloorWhite - 94: Plating + 23: FloorDark + 32: FloorDarkPlastic + 43: FloorGrassJungle + 57: FloorPlastic + 69: FloorSteel + 79: FloorTechMaint + 82: FloorWhite + 95: Plating entities: - proto: "" entities: @@ -24,16 +24,16 @@ entities: - chunks: -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAANRAAABUQAAAV4AAABOAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAEQAAABEAAACRAAAAUQAAAFRAAAAUQAAAVEAAAJeAAAARAAAA0QAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAACRAAAA0QAAABeAAAAUQAAAFEAAAFRAAACXgAAAEQAAAFEAAACAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAARAAAAEQAAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAADgAAAM4AAACOAAAAyoAAAAWAAACFgAAABYAAABEAAACFgAAABYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAABRAAAAEQAAAE4AAACRAAAAUQAAAJEAAABRAAAAkQAAAFEAAACAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAEQAAABEAAACOAAAAkQAAANEAAAARAAAA0QAAANEAAACRAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAABEAAADFgAAASoAAAAWAAACFgAAARYAAABEAAAAFgAAAxYAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACRAAAARYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAfAAABAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAARAAAA0QAAANEAAABRAAAAhYAAAAWAAACFgAAAV4AAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAAhYAAABeAAAAFgAAAhYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE4AAAAWAAAAFgAAAxYAAAEfAAADFgAAAxYAAAAWAAACXgAAABYAAAIWAAADAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAfAAABXgAAABYAAAIWAAADFgAAA14AAAAWAAABFgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAWAAADFgAAAV4AAAAWAAADFgAAAhYAAAFeAAAAFgAAABYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAFgAAABYAAAJeAAAAFgAAAhYAAAAWAAABXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAANSAAABUgAAAV8AAABPAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAEUAAABFAAACRQAAAUUAAAFSAAAAUgAAAVIAAAJfAAAARQAAA0UAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACRQAAA0UAAABfAAAAUgAAAFIAAAFSAAACXwAAAEUAAAFFAAACAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAARQAAAEUAAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAADkAAAM5AAACOQAAAysAAAAXAAACFwAAABcAAABFAAACFwAAABcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAABRQAAAEUAAAE5AAACRQAAAUUAAAJFAAABRQAAAkUAAAFFAAACAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAEUAAABFAAACOQAAAkUAAANFAAAARQAAA0UAAANFAAACRQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAABFAAADFwAAASsAAAAXAAACFwAAARcAAABFAAAAFwAAAxcAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAACRQAAARcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAgAAABAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAARQAAA0UAAANFAAABRQAAAhcAAAAXAAACFwAAAV8AAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAAhcAAABfAAAAFwAAAhcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAAAXAAAAFwAAAxcAAAEgAAADFwAAAxcAAAAXAAACXwAAABcAAAIXAAADAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAgAAABXwAAABcAAAIXAAADFwAAA18AAAAXAAABFwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAXAAADFwAAAV8AAAAXAAADFwAAAhcAAAFfAAAAFwAAABcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAABcAAAJfAAAAFwAAAhcAAAAXAAABXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: TgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAABRAAAAUQAAABEAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAXgAAABYAAANEAAACFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAWAAACRAAAAEQAAANOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAEqAAAAFgAAAEQAAABEAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACOAAAAkQAAAJEAAAAFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAzgAAABEAAADRAAAAxYAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAMqAAAARAAAAkQAAAAWAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAADgAAAM4AAABOAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAA14AAAAWAAACRAAAAkQAAANOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAANeAAAAFgAAAEQAAAAWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACXgAAABYAAAFEAAADRAAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAF4AAAAWAAACRAAAAV4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAJeAAAAFgAAAkQAAANeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAABYAAAMWAAACXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: TwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAABRQAAAUUAAABFAAABTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAXwAAABcAAANFAAACFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAXAAACRQAAAEUAAANPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAErAAAAFwAAAEUAAABFAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAACOQAAAkUAAAJFAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAzkAAABFAAADRQAAAxcAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMrAAAARQAAAkUAAAAXAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAADkAAAM5AAABOQAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAA18AAAAXAAACRQAAAkUAAANPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAANfAAAAFwAAAEUAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACXwAAABcAAAFFAAADRQAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAF8AAAAXAAACRQAAAV8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAJfAAAAFwAAAkUAAANfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAABcAAAMXAAACXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAUQAAAFEAAAJRAAACUQAAAFEAAANRAAABXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAFEAAAJRAAADXgAAAFEAAAJRAAABUQAAAV4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAUgAAAFIAAAJSAAACUgAAAFIAAANSAAABXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAFIAAAJSAAADXwAAAFIAAAJSAAABUgAAAV8AAABfAAAAXwAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -41,21 +41,14 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity - chunkCollection: version: 2 nodes: - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 162: -10,9 - 163: -10,3 - 164: -10,1 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -65,6 +58,14 @@ entities: 166: 4,3 167: 4,9 168: 4,11 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 162: -10,9 + 163: -10,3 + 164: -10,1 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -131,36 +132,36 @@ entities: decals: 47: -6,-1 48: -6,0 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNe - decals: - 85: -4,14 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: 170: 0,10 - - node: - color: '#FFAF4192' - id: BrickTileWhiteCornerNe - decals: - 94: -8,14 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: 34: -4,2 - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNw + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe decals: - 26: -6,2 + 85: -4,14 + - node: + color: '#FFAF4192' + id: BrickTileWhiteCornerNe + decals: + 94: -8,14 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: 119: -2,10 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 26: -6,2 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw @@ -172,15 +173,20 @@ entities: decals: 91: -9,14 - node: - color: '#DE3A3A96' + color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 82: -4,9 + 171: 0,9 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: 30: -4,-2 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 82: -4,9 - node: color: '#FFAF4192' id: BrickTileWhiteCornerSe @@ -188,19 +194,14 @@ entities: 92: -8,13 - node: color: '#334E6DC8' - id: BrickTileWhiteCornerSe + id: BrickTileWhiteCornerSw decals: - 171: 0,9 + 120: -2,9 - node: color: '#FFAF4192' id: BrickTileWhiteCornerSw decals: 93: -9,13 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerSw - decals: - 120: -2,9 - node: color: '#334E6DC8' id: BrickTileWhiteEndE @@ -236,6 +237,13 @@ entities: id: BrickTileWhiteLineE decals: 115: -1,11 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 31: -4,-1 + 32: -4,0 + 33: -4,1 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE @@ -244,13 +252,6 @@ entities: 79: -4,12 80: -4,11 81: -4,10 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineE - decals: - 31: -4,-1 - 32: -4,0 - 33: -4,1 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -277,12 +278,10 @@ entities: decals: 83: -5,9 - node: - color: '#DE3A3A96' + color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 75: -6,10 - 76: -6,12 - 77: -6,13 + 116: -1,11 - node: color: '#52B4E996' id: BrickTileWhiteLineW @@ -290,10 +289,12 @@ entities: 27: -6,0 28: -6,-1 - node: - color: '#334E6DC8' + color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 116: -1,11 + 75: -6,10 + 76: -6,12 + 77: -6,13 - node: color: '#FFFFFFFF' id: Bushf1 @@ -431,11 +432,6 @@ entities: 148: 0,5 149: -1,5 150: -2,5 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 96: -5,14 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 @@ -448,9 +444,9 @@ entities: 147: -4,5 - node: color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 + id: QuarterTileOverlayGreyscale270 decals: - 95: -5,9 + 96: -5,14 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 @@ -465,22 +461,27 @@ entities: 151: 0,6 152: -1,6 153: -2,6 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 95: -5,9 - node: color: '#FFFFFFFF' id: StandClear decals: 89: -9,4 90: 3,8 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale - decals: - 45: -2,2 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: 38: -9,-1 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale + decals: + 45: -2,2 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 @@ -496,16 +497,16 @@ entities: id: ThreeQuarterTileOverlayGreyscale90 decals: 39: -8,-1 - - node: - color: '#DE3A3A96' - id: WarnCornerGreyscaleSW - decals: - 87: -6,9 - node: color: '#52B4E996' id: WarnCornerGreyscaleSW decals: 36: -6,-2 + - node: + color: '#DE3A3A96' + id: WarnCornerGreyscaleSW + decals: + 87: -6,9 - node: color: '#52B4E996' id: WarnFullGreyscale @@ -527,17 +528,17 @@ entities: id: WarnLineGreyscaleS decals: 121: -1,9 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleW + decals: + 37: -6,1 - node: color: '#DE3A3A96' id: WarnLineGreyscaleW decals: 88: -6,11 102: -10,11 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleW - decals: - 37: -6,1 - node: color: '#FFFFFFFF' id: WarnLineN @@ -657,6 +658,7 @@ entities: type: GravityShake - type: GasTileOverlay - type: SpreaderGrid + - type: GridPathfinding - proto: AirCanister entities: - uid: 485 @@ -691,56 +693,48 @@ entities: pos: -10.5,9.5 parent: 603 type: Transform - - uid: 151 components: - rot: -1.5707963267948966 rad pos: -10.5,11.5 parent: 603 type: Transform - - uid: 205 components: - rot: 1.5707963267948966 rad pos: 5.5,1.5 parent: 603 type: Transform - - uid: 303 components: - rot: -1.5707963267948966 rad pos: -10.5,3.5 parent: 603 type: Transform - - uid: 304 components: - rot: 1.5707963267948966 rad pos: 5.5,11.5 parent: 603 type: Transform - - uid: 351 components: - rot: 1.5707963267948966 rad pos: 5.5,3.5 parent: 603 type: Transform - - uid: 352 components: - rot: -1.5707963267948966 rad pos: -10.5,1.5 parent: 603 type: Transform - - uid: 383 components: - rot: 1.5707963267948966 rad pos: 5.5,9.5 parent: 603 type: Transform - - proto: AirlockMedicalGlassLocked entities: - uid: 476 @@ -885,231 +879,155 @@ entities: - pos: -3.5,15.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 602 - type: SignalReceiver + - links: + - 602 + type: DeviceLinkSink - uid: 471 components: - pos: -5.5,15.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 602 - type: SignalReceiver + - links: + - 602 + type: DeviceLinkSink - uid: 472 components: - pos: -7.5,15.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 602 - type: SignalReceiver + - links: + - 602 + type: DeviceLinkSink - uid: 541 components: - pos: -10.5,5.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 555 - type: SignalReceiver + - links: + - 555 + type: DeviceLinkSink - uid: 542 components: - pos: -10.5,6.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 555 - type: SignalReceiver + - links: + - 555 + type: DeviceLinkSink - uid: 543 components: - pos: -10.5,7.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 555 - type: SignalReceiver + - links: + - 555 + type: DeviceLinkSink - uid: 544 components: - pos: -10.5,2.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 555 - type: SignalReceiver + - links: + - 555 + type: DeviceLinkSink - uid: 545 components: - pos: 5.5,2.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 555 - type: SignalReceiver + - links: + - 555 + type: DeviceLinkSink - uid: 546 components: - pos: 5.5,5.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 555 - type: SignalReceiver + - links: + - 555 + type: DeviceLinkSink - uid: 547 components: - pos: 5.5,6.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 555 - type: SignalReceiver + - links: + - 555 + type: DeviceLinkSink - uid: 548 components: - pos: 5.5,7.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 555 - type: SignalReceiver + - links: + - 555 + type: DeviceLinkSink - uid: 549 components: - pos: 5.5,10.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 555 - type: SignalReceiver + - links: + - 555 + type: DeviceLinkSink - uid: 550 components: - rot: -1.5707963267948966 rad pos: 3.5,15.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 555 - type: SignalReceiver + - links: + - 555 + type: DeviceLinkSink - uid: 551 components: - rot: 1.5707963267948966 rad pos: 2.5,15.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 555 - type: SignalReceiver + - links: + - 555 + type: DeviceLinkSink - uid: 552 components: - pos: 0.5,14.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 555 - type: SignalReceiver + - links: + - 555 + type: DeviceLinkSink - uid: 553 components: - pos: -0.5,14.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 555 - type: SignalReceiver + - links: + - 555 + type: DeviceLinkSink - uid: 554 components: - pos: -1.5,14.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 555 - type: SignalReceiver + - links: + - 555 + type: DeviceLinkSink - uid: 556 components: - pos: -1.5,8.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 555 - type: SignalReceiver + - links: + - 555 + type: DeviceLinkSink - uid: 557 components: - pos: 0.5,8.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 555 - type: SignalReceiver + - links: + - 555 + type: DeviceLinkSink - proto: BoxSurvivalEngineering entities: - uid: 600 @@ -2064,16 +1982,12 @@ entities: pos: -8.5,13.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 512 components: - rot: 1.5707963267948966 rad pos: -8.5,14.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - proto: ChairOfficeDark entities: - uid: 165 @@ -2116,323 +2030,241 @@ entities: pos: 0.5,9.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 167 components: - rot: -1.5707963267948966 rad pos: 0.5,10.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 436 components: - pos: -5.5,7.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 437 components: - pos: -4.5,7.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 438 components: - pos: -3.5,7.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 440 components: - rot: 3.141592653589793 rad pos: -5.5,4.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 441 components: - rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 442 components: - rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 443 components: - rot: 1.5707963267948966 rad pos: -9.5,5.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 444 components: - rot: 3.141592653589793 rad pos: -1.5,4.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 445 components: - rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 446 components: - rot: 3.141592653589793 rad pos: 0.5,4.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 447 components: - rot: 1.5707963267948966 rad pos: -9.5,6.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 448 components: - rot: 1.5707963267948966 rad pos: -9.5,7.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 449 components: - rot: -1.5707963267948966 rad pos: 4.5,5.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 450 components: - rot: -1.5707963267948966 rad pos: 4.5,6.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 451 components: - rot: -1.5707963267948966 rad pos: 4.5,7.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 452 components: - rot: 1.5707963267948966 rad pos: 2.5,9.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 453 components: - rot: 1.5707963267948966 rad pos: 2.5,10.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 454 components: - rot: 1.5707963267948966 rad pos: 2.5,11.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 455 components: - rot: 1.5707963267948966 rad pos: 2.5,12.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 456 components: - rot: 1.5707963267948966 rad pos: 2.5,13.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 489 components: - pos: 0.5,2.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 490 components: - pos: -0.5,2.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 522 components: - rot: -1.5707963267948966 rad pos: -7.5,8.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 523 components: - rot: -1.5707963267948966 rad pos: -3.5,11.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 524 components: - rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 534 components: - rot: -1.5707963267948966 rad pos: -3.5,13.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 535 components: - rot: -1.5707963267948966 rad pos: -3.5,14.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 536 components: - rot: 1.5707963267948966 rad pos: -5.5,13.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 537 components: - rot: 1.5707963267948966 rad pos: -5.5,14.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 558 components: - rot: 1.5707963267948966 rad pos: -9.5,2.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 565 components: - rot: 1.5707963267948966 rad pos: -5.5,-0.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 566 components: - rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 567 components: - rot: 1.5707963267948966 rad pos: -1.5,1.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 579 components: - rot: -1.5707963267948966 rad pos: -7.5,7.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 580 components: - rot: 1.5707963267948966 rad pos: 2.5,3.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 581 components: - rot: 1.5707963267948966 rad pos: 2.5,2.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 582 components: - rot: -1.5707963267948966 rad pos: 4.5,2.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 583 components: - rot: 1.5707963267948966 rad pos: 2.5,4.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 590 components: - rot: -1.5707963267948966 rad pos: 4.5,10.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - proto: ClosetEmergencyFilledRandom entities: - uid: 457 @@ -2640,48 +2472,36 @@ entities: pos: -8.5,1.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 32 components: - rot: 1.5707963267948966 rad pos: 3.5,10.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 159 components: - rot: -1.5707963267948966 rad pos: 3.5,1.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 199 components: - rot: -1.5707963267948966 rad pos: -4.5,9.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 200 components: - rot: 1.5707963267948966 rad pos: -8.5,9.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 372 components: - rot: -1.5707963267948966 rad pos: -5.5,-1.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - proto: GasPipeFourway entities: - uid: 316 @@ -2689,8 +2509,6 @@ entities: - pos: -8.5,6.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - proto: GasPipeStraight entities: - uid: 11 @@ -2698,287 +2516,213 @@ entities: - pos: 3.5,7.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 27 components: - rot: 1.5707963267948966 rad pos: 1.5,1.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 28 components: - rot: 1.5707963267948966 rad pos: 2.5,1.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 36 components: - rot: -1.5707963267948966 rad pos: 1.5,6.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 37 components: - pos: -0.5,8.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 39 components: - rot: 3.141592653589793 rad pos: -4.5,11.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 40 components: - rot: -1.5707963267948966 rad pos: -5.5,9.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 50 components: - rot: 1.5707963267948966 rad pos: -6.5,-1.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 145 components: - rot: -1.5707963267948966 rad pos: -3.5,6.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 161 components: - rot: 3.141592653589793 rad pos: 3.5,3.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 162 components: - rot: 3.141592653589793 rad pos: 3.5,5.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 173 components: - pos: 3.5,8.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 175 components: - rot: -1.5707963267948966 rad pos: 2.5,6.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 181 components: - pos: -5.5,0.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 189 components: - pos: -0.5,7.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 190 components: - pos: 3.5,9.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 193 components: - pos: -0.5,9.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 196 components: - rot: -1.5707963267948966 rad pos: -6.5,9.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 317 components: - rot: 3.141592653589793 rad pos: -8.5,4.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 318 components: - rot: 3.141592653589793 rad pos: -8.5,3.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 327 components: - rot: -1.5707963267948966 rad pos: -5.5,6.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 328 components: - rot: -1.5707963267948966 rad pos: -6.5,6.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 329 components: - rot: -1.5707963267948966 rad pos: -7.5,6.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 337 components: - rot: -1.5707963267948966 rad pos: -6.5,1.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 338 components: - rot: 3.141592653589793 rad pos: -8.5,5.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 340 components: - rot: -1.5707963267948966 rad pos: -7.5,1.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 353 components: - rot: -1.5707963267948966 rad pos: 0.5,6.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 366 components: - pos: -8.5,7.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 368 components: - rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 369 components: - rot: 1.5707963267948966 rad pos: 0.5,1.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 371 components: - pos: -5.5,-0.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 375 components: - rot: 3.141592653589793 rad pos: -4.5,10.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 377 components: - pos: -8.5,8.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 378 components: - rot: -1.5707963267948966 rad pos: -7.5,9.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 394 components: - rot: 1.5707963267948966 rad pos: -7.5,-1.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 397 components: - rot: -1.5707963267948966 rad pos: -1.5,6.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 398 components: - rot: -1.5707963267948966 rad pos: -4.5,6.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - proto: GasPipeTJunction entities: - uid: 33 @@ -2987,23 +2731,17 @@ entities: pos: 3.5,6.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 152 components: - pos: -2.5,6.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 157 components: - rot: 3.141592653589793 rad pos: -0.5,-0.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 158 @@ -3012,39 +2750,29 @@ entities: pos: -0.5,1.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 160 components: - rot: 1.5707963267948966 rad pos: 3.5,2.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 332 components: - rot: 3.141592653589793 rad pos: -0.5,6.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 341 components: - rot: 1.5707963267948966 rad pos: -8.5,2.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 578 components: - pos: -5.5,1.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - proto: GasPort entities: - uid: 31 @@ -3053,16 +2781,12 @@ entities: pos: 0.5,-0.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 486 components: - rot: 1.5707963267948966 rad pos: -1.5,-0.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - proto: GasPressurePump entities: - uid: 156 @@ -3071,8 +2795,6 @@ entities: pos: -0.5,0.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - proto: GasVentPump entities: - uid: 89 @@ -3080,78 +2802,78 @@ entities: - pos: -0.5,10.5 parent: 603 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 135 components: - rot: -1.5707963267948966 rad pos: 4.5,10.5 parent: 603 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 147 components: - rot: -1.5707963267948966 rad pos: 4.5,2.5 parent: 603 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 171 components: - pos: -0.5,2.5 parent: 603 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 172 components: - rot: 3.141592653589793 rad pos: -2.5,5.5 parent: 603 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 342 components: - rot: -1.5707963267948966 rad pos: -7.5,2.5 parent: 603 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 373 components: - rot: 1.5707963267948966 rad pos: -8.5,-1.5 parent: 603 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 374 components: - rot: 1.5707963267948966 rad pos: -9.5,6.5 parent: 603 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 376 components: - pos: -4.5,12.5 parent: 603 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 396 components: - rot: -1.5707963267948966 rad pos: -4.5,1.5 parent: 603 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - proto: GeneratorUranium entities: - uid: 214 @@ -3345,8 +3067,6 @@ entities: - pos: 3.5,-1.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - proto: Handcuffs entities: - uid: 530 @@ -3368,7 +3088,7 @@ entities: - pos: -1.598994,0.6269134 parent: 603 type: Transform -- proto: Intercom +- proto: IntercomCommon entities: - uid: 493 components: @@ -3470,8 +3190,6 @@ entities: pos: -6.5,4.5 parent: 603 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 424 @@ -3479,8 +3197,6 @@ entities: - pos: 1.5,7.5 parent: 603 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 425 @@ -3489,8 +3205,6 @@ entities: pos: 0.5,11.5 parent: 603 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 426 @@ -3499,8 +3213,6 @@ entities: pos: 2.5,11.5 parent: 603 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 427 @@ -3509,8 +3221,6 @@ entities: pos: -3.5,11.5 parent: 603 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 429 @@ -3519,8 +3229,6 @@ entities: pos: -3.5,0.5 parent: 603 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 430 @@ -3528,8 +3236,6 @@ entities: - pos: -8.5,-0.5 parent: 603 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 433 @@ -3538,8 +3244,6 @@ entities: pos: 2.5,2.5 parent: 603 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 584 @@ -3547,8 +3251,6 @@ entities: - pos: -8.5,9.5 parent: 603 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 585 @@ -3557,8 +3259,6 @@ entities: pos: -8.5,1.5 parent: 603 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 586 @@ -3567,8 +3267,6 @@ entities: pos: 3.5,1.5 parent: 603 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - proto: PoweredSmallLight @@ -3617,37 +3315,25 @@ entities: - pos: -5.5,8.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 602 - type: SignalReceiver + - links: + - 602 + type: DeviceLinkSink - uid: 468 components: - pos: -4.5,8.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 602 - type: SignalReceiver + - links: + - 602 + type: DeviceLinkSink - uid: 469 components: - pos: -3.5,8.5 parent: 603 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 602 - type: SignalReceiver + - links: + - 602 + type: DeviceLinkSink - proto: ShuttleWindow entities: - uid: 76 @@ -3835,41 +3521,40 @@ entities: - pos: -1.5,9.5 parent: 603 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 554 - - port: Toggle - uid: 553 - - port: Toggle - uid: 552 - - port: Toggle - uid: 551 - - port: Toggle - uid: 550 - - port: Toggle - uid: 549 - - port: Toggle - uid: 548 - - port: Toggle - uid: 547 - - port: Toggle - uid: 546 - - port: Toggle - uid: 545 - - port: Toggle - uid: 544 - - port: Toggle - uid: 541 - - port: Toggle - uid: 542 - - port: Toggle - uid: 543 - - port: Toggle - uid: 557 - - port: Toggle - uid: 556 - type: SignalTransmitter + - linkedPorts: + 554: + - Pressed: Toggle + 553: + - Pressed: Toggle + 552: + - Pressed: Toggle + 551: + - Pressed: Toggle + 550: + - Pressed: Toggle + 549: + - Pressed: Toggle + 548: + - Pressed: Toggle + 547: + - Pressed: Toggle + 546: + - Pressed: Toggle + 545: + - Pressed: Toggle + 544: + - Pressed: Toggle + 541: + - Pressed: Toggle + 542: + - Pressed: Toggle + 543: + - Pressed: Toggle + 557: + - Pressed: Toggle + 556: + - Pressed: Toggle + type: DeviceLinkSource - uid: 602 components: - name: Security Lockdown Switch @@ -3877,21 +3562,20 @@ entities: - pos: -2.5,14.5 parent: 603 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 470 - - port: Toggle - uid: 471 - - port: Toggle - uid: 472 - - port: Toggle - uid: 467 - - port: Toggle - uid: 468 - - port: Toggle - uid: 469 - type: SignalTransmitter + - linkedPorts: + 470: + - Pressed: Toggle + 471: + - Pressed: Toggle + 472: + - Pressed: Toggle + 467: + - Pressed: Toggle + 468: + - Pressed: Toggle + 469: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignEngineering entities: - uid: 599 @@ -4016,63 +3700,47 @@ entities: - pos: 5.5,14.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 82 components: - rot: 1.5707963267948966 rad pos: -10.5,-0.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 137 components: - pos: -10.5,14.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 206 components: - rot: -1.5707963267948966 rad pos: 5.5,13.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 364 components: - rot: 1.5707963267948966 rad pos: -10.5,13.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 387 components: - rot: 3.141592653589793 rad pos: -10.5,-1.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 390 components: - rot: 3.141592653589793 rad pos: 5.5,-1.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - uid: 391 components: - rot: -1.5707963267948966 rad pos: 5.5,-0.5 parent: 603 type: Transform - - bodyType: Static - type: Physics - proto: ToolboxEmergencyFilled entities: - uid: 481 @@ -4575,7 +4243,7 @@ entities: - pos: -3.5,9.5 parent: 603 type: Transform -- proto: WindoorEngineeringLocked +- proto: WindoorSecureEngineeringLocked entities: - uid: 525 components: @@ -4583,7 +4251,7 @@ entities: pos: 1.5,-1.5 parent: 603 type: Transform -- proto: WindoorSecurityLocked +- proto: WindoorSecureSecurityLocked entities: - uid: 510 components: diff --git a/Resources/Maps/Shuttles/emergency_courser.yml b/Resources/Maps/Shuttles/emergency_courser.yml index 515083128b..c47c873834 100644 --- a/Resources/Maps/Shuttles/emergency_courser.yml +++ b/Resources/Maps/Shuttles/emergency_courser.yml @@ -1,15 +1,15 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space - 22: FloorDark - 69: FloorSteelDiagonal - 74: FloorSteelMono - 78: FloorTechMaint - 81: FloorWhite - 93: Lattice - 94: Plating + 23: FloorDark + 70: FloorSteelDiagonal + 75: FloorSteelMono + 79: FloorTechMaint + 82: FloorWhite + 94: Lattice + 95: Plating entities: - proto: "" entities: @@ -23,22 +23,22 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABOAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABKAAABTgAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAASgAAAE4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAABYAAAFOAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEoAAAMWAAACXgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABKAAABFgAAABYAAAAWAAADFgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAASgAAARYAAAAWAAADSgAAAkoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAABYAAAEWAAACXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAMWAAADFgAAA14AAABRAAAAUQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAACFgAAARYAAANRAAAAUQAAAlEAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAhYAAANKAAABXgAAAFEAAAFRAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAEWAAACSgAAA14AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAAAFgAAAxYAAABeAAAARQAAAkUAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAASgAAARYAAAAWAAAARQAAAUUAAAFFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEoAAAAWAAABFgAAAUUAAABFAAABRQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABPAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABLAAABTwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAASwAAAE8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAABcAAAFPAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEsAAAMXAAACXwAAAE8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABLAAABFwAAABcAAAAXAAADFwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASwAAARcAAAAXAAADSwAAAksAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAABcAAAEXAAACXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAMXAAADFwAAA18AAABSAAAAUgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACFwAAARcAAANSAAAAUgAAAlIAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAhcAAANLAAABXwAAAFIAAAFSAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAEXAAACSwAAA18AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAAAFwAAAxcAAABfAAAARgAAAkYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASwAAARcAAAAXAAAARgAAAUYAAAFGAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEsAAAAXAAABFwAAAUYAAABGAAABRgAAAA== 0,-1: ind: 0,-1 - tiles: TgAAAE4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE4AAABOAAAASgAAAl4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAATgAAAEoAAANeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAAAWAAADXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAAAWAAAASgAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAMWAAAAFgAAAkoAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABKAAACFgAAAhYAAABKAAADXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAWAAAAFgAAA14AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAVEAAAFeAAAAFgAAAxYAAAIWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAAFRAAADUQAAARYAAAIWAAADFgAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAADUQAAA14AAABKAAAAFgAAABYAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAASgAAAxYAAAAWAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANFAAADXgAAABYAAAAWAAABFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAABRQAAAkUAAAAWAAABFgAAAEoAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAA0UAAABFAAADFgAAARYAAABKAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: TwAAAE8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABPAAAASwAAAl8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAATwAAAEsAAANfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAAAXAAADXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAAAXAAAASwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAMXAAAAFwAAAksAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAACFwAAAhcAAABLAAADXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAXAAAAFwAAA18AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAVIAAAFfAAAAFwAAAxcAAAIXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAAFSAAADUgAAARcAAAIXAAADFwAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAADUgAAA18AAABLAAAAFwAAABcAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAASwAAAxcAAAAXAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEYAAANGAAADXwAAABcAAAAXAAABFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGAAABRgAAAkYAAAAXAAABFwAAAEsAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAA0YAAABGAAADFwAAARcAAABLAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEoAAAIWAAACFgAAAhYAAAMWAAABFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABKAAAAFgAAAhYAAAIWAAADFgAAAhYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAhYAAAMWAAADFgAAAUoAAAFKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAAWAAACSgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAACFgAAAUoAAANeAAAASgAAAkoAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAxYAAAEWAAABFgAAARYAAAAWAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAWAAABFgAAAV4AAAAWAAABFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAASgAAABYAAABeAAAAFgAAABYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEoAAAMWAAABXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAADFgAAAhYAAAIWAAADFgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAFgAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAAAWAAADFgAAAhYAAAIWAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAEoAAAIWAAADFgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABKAAABFgAAAEoAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAABYAAAEWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEsAAAIXAAACFwAAAhcAAAMXAAABFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABLAAAAFwAAAhcAAAIXAAADFwAAAhcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAhcAAAMXAAADFwAAAUsAAAFLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAAXAAACSwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACFwAAAUsAAANfAAAASwAAAksAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAxcAAAEXAAABFwAAARcAAAAXAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAXAAABFwAAAV8AAAAXAAABFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASwAAABcAAABfAAAAFwAAABcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEsAAAMXAAABXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAADFwAAAhcAAAIXAAADFwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAXAAADFwAAAhcAAAIXAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAEsAAAIXAAADFwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABLAAABFwAAAEsAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAABcAAAEXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAA== 0,0: ind: 0,0 - tiles: FgAAABYAAAAWAAABFgAAAxYAAAJKAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAIWAAADFgAAABYAAAEWAAADSgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAABSgAAAxYAAAEWAAABFgAAARYAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAASgAAARYAAAEWAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABKAAADXgAAAEoAAAIWAAABFgAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACFgAAARYAAAAWAAABFgAAABYAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAJeAAAAFgAAARYAAAJeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAIWAAACXgAAABYAAAFKAAACXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAWAAADSgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAhYAAAEWAAABFgAAAhYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAAxYAAAEWAAABXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAxYAAANKAAACXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAAAWAAAASgAAAV4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACFgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FwAAABcAAAAXAAABFwAAAxcAAAJLAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAIXAAADFwAAABcAAAEXAAADSwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAABSwAAAxcAAAEXAAABFwAAARcAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAASwAAARcAAAEXAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAADXwAAAEsAAAIXAAABFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACFwAAARcAAAAXAAABFwAAABcAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAARcAAAJfAAAAFwAAARcAAAJfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAIXAAACXwAAABcAAAFLAAACXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAXAAADSwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAhcAAAEXAAABFwAAAhcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAFwAAAxcAAAEXAAABXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAxcAAANLAAACXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAAAXAAAASwAAAV8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACFwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAA== 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -46,7 +46,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - type: OccluderTree - type: Shuttle - gravityShakeSound: !type:SoundPathSpecifier @@ -55,6 +56,12 @@ entities: - chunkCollection: version: 2 nodes: + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 126: -2,11 + 127: 1,11 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -65,11 +72,12 @@ entities: 136: 5,-4 137: 5,-6 - node: + angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 126: -2,11 - 127: 1,11 + 128: -2,-12 + 129: 1,-12 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -79,13 +87,6 @@ entities: 131: -6,-6 132: -6,4 133: -6,2 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 128: -2,-12 - 129: 1,-12 - node: color: '#FFFFFFFF' id: Bot @@ -220,6 +221,11 @@ entities: id: BrickTileWhiteCornerNw decals: 86: -2,7 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 112: -4,-6 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE @@ -228,10 +234,15 @@ entities: 84: 1,6 85: 1,5 - node: - color: '#52B4E996' - id: BrickTileWhiteLineE + color: '#334E6DC8' + id: BrickTileWhiteLineN decals: - 112: -4,-6 + 90: -2,9 + 91: 1,9 + 100: -2,14 + 101: -1,14 + 102: 0,14 + 103: 1,14 - node: color: '#52B4E996' id: BrickTileWhiteLineN @@ -246,34 +257,6 @@ entities: decals: 88: -1,7 89: 0,7 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineN - decals: - 90: -2,9 - 91: 1,9 - 100: -2,14 - 101: -1,14 - 102: 0,14 - 103: 1,14 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 114: -2,-10 - 115: 1,-10 - 116: -2,-16 - 117: -1,-16 - 118: 0,-16 - 119: 1,-16 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 108: -2,-7 - 109: -1,-7 - 110: 0,-7 - 111: 1,-7 - node: color: '#334E6DC8' id: BrickTileWhiteLineS @@ -286,6 +269,24 @@ entities: 97: 1,11 98: 2,11 99: 3,11 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 108: -2,-7 + 109: -1,-7 + 110: 0,-7 + 111: 1,-7 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 114: -2,-10 + 115: 1,-10 + 116: -2,-16 + 117: -1,-16 + 118: 0,-16 + 119: 1,-16 - node: color: '#52B4E996' id: BrickTileWhiteLineW @@ -465,6 +466,7 @@ entities: type: GravityShake - type: GasTileOverlay - type: SpreaderGrid + - type: GridPathfinding - proto: AirCanister entities: - uid: 171 @@ -504,56 +506,48 @@ entities: pos: 6.5,-5.5 parent: 656 type: Transform - - uid: 11 components: - rot: 1.5707963267948966 rad pos: 6.5,-3.5 parent: 656 type: Transform - - uid: 12 components: - rot: 1.5707963267948966 rad pos: 6.5,4.5 parent: 656 type: Transform - - uid: 13 components: - rot: 1.5707963267948966 rad pos: 6.5,2.5 parent: 656 type: Transform - - uid: 265 components: - rot: -1.5707963267948966 rad pos: -6.5,4.5 parent: 656 type: Transform - - uid: 266 components: - rot: -1.5707963267948966 rad pos: -6.5,2.5 parent: 656 type: Transform - - uid: 267 components: - rot: -1.5707963267948966 rad pos: -6.5,-5.5 parent: 656 type: Transform - - uid: 268 components: - rot: -1.5707963267948966 rad pos: -6.5,-3.5 parent: 656 type: Transform - - proto: AirlockMedicalGlassLocked entities: - uid: 595 @@ -1699,8 +1693,6 @@ entities: pos: 1.5,-2.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - proto: ChairOfficeLight entities: - uid: 199 @@ -1717,376 +1709,280 @@ entities: pos: 2.5,-13.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 210 components: - rot: -1.5707963267948966 rad pos: 2.5,-14.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 211 components: - rot: 1.5707963267948966 rad pos: -2.5,-13.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 212 components: - rot: 1.5707963267948966 rad pos: -2.5,-14.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 213 components: - pos: -1.5,-8.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 214 components: - pos: -0.5,-8.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 215 components: - pos: 0.5,-8.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 216 components: - pos: 1.5,-8.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 217 components: - rot: -1.5707963267948966 rad pos: 4.5,-8.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 218 components: - rot: -1.5707963267948966 rad pos: 4.5,-9.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 219 components: - rot: -1.5707963267948966 rad pos: 4.5,-10.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 220 components: - rot: 1.5707963267948966 rad pos: 3.5,-4.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 221 components: - rot: 1.5707963267948966 rad pos: 3.5,-3.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 223 components: - rot: -1.5707963267948966 rad pos: -3.5,-4.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 224 components: - rot: -1.5707963267948966 rad pos: -3.5,-3.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 226 components: - rot: 1.5707963267948966 rad pos: -4.5,-10.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 227 components: - rot: 1.5707963267948966 rad pos: -4.5,-9.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 228 components: - rot: 1.5707963267948966 rad pos: -4.5,-8.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 229 components: - rot: -1.5707963267948966 rad pos: 5.5,-0.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 230 components: - rot: 1.5707963267948966 rad pos: -5.5,-1.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 231 components: - rot: 1.5707963267948966 rad pos: -5.5,-0.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 232 components: - rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 233 components: - rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 234 components: - rot: -1.5707963267948966 rad pos: 5.5,-1.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 235 components: - pos: -1.5,2.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 236 components: - pos: -0.5,2.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 237 components: - pos: 0.5,2.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 238 components: - pos: 1.5,2.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 239 components: - rot: 3.141592653589793 rad pos: -0.5,13.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 240 components: - rot: 3.141592653589793 rad pos: 0.5,13.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 241 components: - rot: 3.141592653589793 rad pos: 1.5,4.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 242 components: - rot: 3.141592653589793 rad pos: 0.5,4.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 243 components: - rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 244 components: - rot: 3.141592653589793 rad pos: -1.5,4.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 257 components: - rot: 1.5707963267948966 rad pos: -5.5,1.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 259 components: - rot: 1.5707963267948966 rad pos: -2.5,13.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 260 components: - rot: 1.5707963267948966 rad pos: -2.5,12.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 261 components: - rot: -1.5707963267948966 rad pos: 2.5,13.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 262 components: - rot: -1.5707963267948966 rad pos: 2.5,12.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 264 components: - rot: -1.5707963267948966 rad pos: 5.5,1.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 273 components: - rot: 1.5707963267948966 rad pos: 3.5,3.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 274 components: - rot: 1.5707963267948966 rad pos: 3.5,4.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 275 components: - rot: -1.5707963267948966 rad pos: -3.5,3.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 276 components: - rot: -1.5707963267948966 rad pos: -3.5,4.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 639 components: - rot: 1.5707963267948966 rad pos: -4.5,7.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 640 components: - rot: 1.5707963267948966 rad pos: -4.5,8.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 641 components: - rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 642 components: - rot: -1.5707963267948966 rad pos: 4.5,7.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - proto: ClosetEmergencyFilledRandom entities: - uid: 94 @@ -2293,8 +2189,6 @@ entities: - pos: 0.5,-11.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - proto: GasPassiveVent entities: - uid: 521 @@ -2303,8 +2197,6 @@ entities: pos: -0.5,-11.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - proto: GasPipeBend entities: - uid: 523 @@ -2313,39 +2205,29 @@ entities: pos: -1.5,-12.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 565 components: - rot: 1.5707963267948966 rad pos: -3.5,9.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 567 components: - rot: -1.5707963267948966 rad pos: -1.5,9.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 568 components: - rot: 3.141592653589793 rad pos: 1.5,9.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 578 components: - pos: 3.5,9.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - proto: GasPipeStraight entities: - uid: 525 @@ -2354,336 +2236,248 @@ entities: pos: -1.5,-10.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 527 components: - rot: -1.5707963267948966 rad pos: -2.5,-9.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 529 components: - pos: -3.5,-8.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 530 components: - pos: -3.5,-7.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 531 components: - pos: -3.5,-6.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 532 components: - pos: -3.5,-5.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 533 components: - pos: -3.5,-4.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 534 components: - pos: -3.5,-3.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 535 components: - pos: -3.5,-2.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 536 components: - pos: -3.5,-1.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 537 components: - pos: 3.5,-1.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 538 components: - pos: 3.5,-2.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 539 components: - pos: 3.5,-3.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 540 components: - pos: 3.5,-4.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 541 components: - pos: 3.5,-5.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 542 components: - pos: 3.5,-6.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 543 components: - pos: 3.5,-7.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 544 components: - pos: 3.5,-8.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 546 components: - rot: -1.5707963267948966 rad pos: 2.5,-9.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 547 components: - rot: -1.5707963267948966 rad pos: 1.5,-9.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 548 components: - rot: -1.5707963267948966 rad pos: 0.5,-9.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 549 components: - rot: -1.5707963267948966 rad pos: -0.5,-9.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 556 components: - rot: 3.141592653589793 rad pos: -3.5,0.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 557 components: - rot: 3.141592653589793 rad pos: -3.5,1.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 558 components: - rot: 3.141592653589793 rad pos: -3.5,2.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 559 components: - rot: 3.141592653589793 rad pos: -3.5,3.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 560 components: - rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 561 components: - rot: 3.141592653589793 rad pos: -3.5,5.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 562 components: - rot: 3.141592653589793 rad pos: -3.5,6.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 563 components: - rot: 3.141592653589793 rad pos: -3.5,7.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 566 components: - rot: -1.5707963267948966 rad pos: -2.5,9.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 569 components: - rot: 3.141592653589793 rad pos: 1.5,10.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 570 components: - rot: 3.141592653589793 rad pos: -1.5,10.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 575 components: - rot: 1.5707963267948966 rad pos: -0.5,11.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 576 components: - rot: 1.5707963267948966 rad pos: 0.5,11.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 577 components: - rot: 1.5707963267948966 rad pos: 2.5,9.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 581 components: - rot: 3.141592653589793 rad pos: 3.5,7.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 582 components: - rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 583 components: - rot: 3.141592653589793 rad pos: 3.5,5.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 584 components: - rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 585 components: - rot: 3.141592653589793 rad pos: 3.5,3.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 586 components: - rot: 3.141592653589793 rad pos: 3.5,2.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 587 components: - rot: 3.141592653589793 rad pos: 3.5,1.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 588 components: - rot: 3.141592653589793 rad pos: 3.5,0.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - proto: GasPipeTJunction entities: - uid: 522 @@ -2692,77 +2486,57 @@ entities: pos: -1.5,-11.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 526 components: - pos: -1.5,-9.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 528 components: - rot: 1.5707963267948966 rad pos: -3.5,-9.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 545 components: - rot: -1.5707963267948966 rad pos: 3.5,-9.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 554 components: - rot: 1.5707963267948966 rad pos: 3.5,-0.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 555 components: - rot: -1.5707963267948966 rad pos: -3.5,-0.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 564 components: - rot: -1.5707963267948966 rad pos: -3.5,8.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 571 components: - pos: -1.5,11.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 572 components: - pos: 1.5,11.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 579 components: - rot: 1.5707963267948966 rad pos: 3.5,8.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - proto: GasPort entities: - uid: 489 @@ -2771,8 +2545,6 @@ entities: pos: 0.5,-12.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - proto: GasVentPump entities: - uid: 524 @@ -2781,72 +2553,72 @@ entities: pos: -0.5,-12.5 parent: 656 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 550 components: - rot: 3.141592653589793 rad pos: 3.5,-10.5 parent: 656 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 551 components: - rot: 3.141592653589793 rad pos: -3.5,-10.5 parent: 656 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 552 components: - rot: 1.5707963267948966 rad pos: -4.5,-0.5 parent: 656 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 553 components: - rot: -1.5707963267948966 rad pos: 4.5,-0.5 parent: 656 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 573 components: - rot: -1.5707963267948966 rad pos: 2.5,11.5 parent: 656 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 574 components: - rot: 1.5707963267948966 rad pos: -2.5,11.5 parent: 656 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 580 components: - rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 656 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 589 components: - rot: 1.5707963267948966 rad pos: -4.5,8.5 parent: 656 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - proto: GeneratorUranium entities: - uid: 66 @@ -3127,15 +2899,11 @@ entities: - pos: -3.5,-12.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 32 components: - pos: 3.5,-12.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - proto: HolofanProjector entities: - uid: 508 @@ -3251,8 +3019,6 @@ entities: pos: -2.5,11.5 parent: 656 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 604 @@ -3261,8 +3027,6 @@ entities: pos: 2.5,11.5 parent: 656 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 605 @@ -3270,8 +3034,6 @@ entities: - pos: -0.5,9.5 parent: 656 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 607 @@ -3280,8 +3042,6 @@ entities: pos: 3.5,4.5 parent: 656 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 608 @@ -3290,8 +3050,6 @@ entities: pos: -3.5,4.5 parent: 656 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 609 @@ -3300,8 +3058,6 @@ entities: pos: -2.5,-1.5 parent: 656 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 610 @@ -3310,8 +3066,6 @@ entities: pos: 2.5,-1.5 parent: 656 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 611 @@ -3320,8 +3074,6 @@ entities: pos: 3.5,-4.5 parent: 656 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 612 @@ -3330,8 +3082,6 @@ entities: pos: -3.5,-4.5 parent: 656 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 613 @@ -3339,8 +3089,6 @@ entities: - pos: 2.5,-8.5 parent: 656 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 614 @@ -3348,8 +3096,6 @@ entities: - pos: -2.5,-8.5 parent: 656 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 615 @@ -3358,8 +3104,6 @@ entities: pos: 2.5,-13.5 parent: 656 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 616 @@ -3368,8 +3112,6 @@ entities: pos: -2.5,-13.5 parent: 656 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 617 @@ -3378,8 +3120,6 @@ entities: pos: -1.5,-4.5 parent: 656 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 618 @@ -3388,8 +3128,6 @@ entities: pos: 1.5,-4.5 parent: 656 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 619 @@ -3398,8 +3136,6 @@ entities: pos: -1.5,6.5 parent: 656 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 620 @@ -3408,8 +3144,6 @@ entities: pos: 1.5,6.5 parent: 656 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 637 @@ -3418,8 +3152,6 @@ entities: pos: -3.5,7.5 parent: 656 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 638 @@ -3428,8 +3160,6 @@ entities: pos: 3.5,7.5 parent: 656 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - proto: RandomDrinkGlass @@ -3870,108 +3600,80 @@ entities: pos: -3.5,-16.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 475 components: - rot: 3.141592653589793 rad pos: 3.5,-16.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 476 components: - rot: 3.141592653589793 rad pos: 4.5,-14.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 477 components: - rot: 3.141592653589793 rad pos: -4.5,-14.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 478 components: - rot: 1.5707963267948966 rad pos: -5.5,-12.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 479 components: - rot: -1.5707963267948966 rad pos: 5.5,-12.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 480 components: - rot: -1.5707963267948966 rad pos: 6.5,-8.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 481 components: - rot: 1.5707963267948966 rad pos: -6.5,-8.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 482 components: - pos: -5.5,11.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 483 components: - pos: -4.5,13.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 484 components: - pos: 4.5,13.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 485 components: - pos: 5.5,11.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 486 components: - rot: -1.5707963267948966 rad pos: 6.5,7.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - uid: 487 components: - rot: 1.5707963267948966 rad pos: -6.5,7.5 parent: 656 type: Transform - - bodyType: Static - type: Physics - proto: VendingMachineBooze entities: - uid: 162 diff --git a/Resources/Maps/Shuttles/emergency_lox.yml b/Resources/Maps/Shuttles/emergency_lox.yml index 4a78b5d98d..2f61e00f56 100644 --- a/Resources/Maps/Shuttles/emergency_lox.yml +++ b/Resources/Maps/Shuttles/emergency_lox.yml @@ -1,23 +1,23 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space - 22: FloorDark - 25: FloorDarkHerringbone - 29: FloorDarkPavement - 38: FloorGlass - 40: FloorGrass - 49: FloorLino - 58: FloorReinforced - 59: FloorRockVault - 64: FloorShuttleRed - 68: FloorSteel - 78: FloorTechMaint - 81: FloorWhite - 91: FloorWood - 93: Lattice - 94: Plating + 23: FloorDark + 26: FloorDarkHerringbone + 30: FloorDarkPavement + 39: FloorGlass + 41: FloorGrass + 50: FloorLino + 59: FloorReinforced + 60: FloorRockVault + 65: FloorShuttleRed + 69: FloorSteel + 79: FloorTechMaint + 82: FloorWhite + 92: FloorWood + 94: Lattice + 95: Plating entities: - proto: "" entities: @@ -31,22 +31,22 @@ entities: - chunks: -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAJgAAABYAAAFeAAAAFgAAAyYAAAAWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAAWAAABKAAAABYAAABEAAACFgAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAmAAAAFgAAAygAAAAWAAACJgAAABYAAAMoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAxYAAAAoAAAAFgAAAUQAAAIWAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAACYAAAAWAAACXgAAABYAAAEmAAAAFgAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE4AAABEAAABRAAAAEQAAABEAAABRAAAA0QAAAFEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAkQAAABEAAADRAAAAkQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAEQAAAJEAAABXgAAADEAAAAxAAAAMQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAARAAAAV4AAAAxAAAAMQAAADEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAUQAAA1EAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFEAAABRAAACUQAAA1EAAAFRAAABUQAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABRAAAAUQAAAVEAAABRAAACUQAAA1EAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABbAAACMQAAADEAAAAxAAAAMQAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAWwAAAzEAAAAxAAAAMQAAADEAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABbAAABWwAAA1sAAABbAAAAWwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAJwAAABcAAAFfAAAAFwAAAycAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAAXAAABKQAAABcAAABFAAACFwAAACkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAnAAAAFwAAAykAAAAXAAACJwAAABcAAAMpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAxcAAAApAAAAFwAAAUUAAAIXAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAACcAAAAXAAACXwAAABcAAAEnAAAAFwAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABFAAABRQAAAEUAAABFAAABRQAAA0UAAAFFAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAkUAAABFAAADRQAAAkUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAEUAAAJFAAABXwAAADIAAAAyAAAAMgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAARQAAAV8AAAAyAAAAMgAAADIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAUgAAA1IAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFIAAABSAAACUgAAA1IAAAFSAAABUgAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABSAAAAUgAAAVIAAABSAAACUgAAA1IAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABcAAACMgAAADIAAAAyAAAAMgAAADIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXAAAAzIAAAAyAAAAMgAAADIAAAAyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABcAAABXAAAA1wAAABcAAAAXAAAAA== -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAHQAAAR0AAAAdAAACHQAAAx0AAAIdAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAOgAAADoAAAAWAAACOwAAADsAAAA7AAAARAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAMWAAADFgAAAjsAAAA7AAAAOwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAA7AAAAOwAAADsAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAAWAAADFgAAARYAAANAAAAAQAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAADFgAAARYAAAEWAAACQAAAAEAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAABYAAAJeAAAAFgAAA0AAAABAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAEQAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAAARAAAA0QAAANEAAABRAAAA0QAAAFEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAARAAAAUQAAANEAAACRAAAAEQAAANEAAAARAAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAHgAAAR4AAAAeAAACHgAAAx4AAAIeAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAOwAAADsAAAAXAAACPAAAADwAAAA8AAAARQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAMXAAADFwAAAjwAAAA8AAAAPAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAAA8AAAAPAAAADwAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAAXAAADFwAAARcAAANBAAAAQQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAADFwAAARcAAAEXAAACQQAAAEEAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAABcAAAJfAAAAFwAAA0EAAABBAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAEUAAAJFAAACXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAAARQAAA0UAAANFAAABRQAAA0UAAAFFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAARQAAAUUAAANFAAACRQAAAEUAAANFAAAARQAAAQ== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAJEAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFEAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAE4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFEAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAFgAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAkQAAAJOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAJFAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAABRQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFFAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAE8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFFAAADTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAFwAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAkUAAAJPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: FgAAASYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABEAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAJgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAUQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAImAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAA04AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAABYAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAJEAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACRAAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACRAAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAV4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFsAAAJeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABbAAABXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FwAAAScAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAABFAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAJwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAUUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAInAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAA08AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAABcAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAJFAAABTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAACRQAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAA0UAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAACRQAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAV8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAJfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAABXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,1: ind: 0,1 - tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -54,7 +54,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -71,6 +72,11 @@ entities: 79: -7,-1 80: -7,-3 164: -6,-9 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 183: 0,-9 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -80,11 +86,6 @@ entities: 82: 1,-1 83: 1,5 84: 1,7 - - node: - color: '#FFFFFFFF' - id: Arrows - decals: - 183: 0,-9 - node: angle: -3.141592653589793 rad color: '#52B4E996' @@ -162,25 +163,20 @@ entities: decals: 59: -5,11 - node: - color: '#DE3A3A96' + color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 170: -7,-5 + 70: -4,11 - node: color: '#9FED5896' id: BrickTileWhiteCornerNw decals: 58: -7,11 - node: - color: '#52B4E996' + color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 70: -4,11 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSe - decals: - 172: -4,-6 + 170: -7,-5 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe @@ -192,21 +188,26 @@ entities: decals: 60: -5,10 61: -6,9 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 172: -4,-6 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: 73: -4,10 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSw - decals: - 171: -7,-6 - node: color: '#9FED5896' id: BrickTileWhiteCornerSw decals: 62: -7,9 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 171: -7,-6 - node: color: '#DE3A3A96' id: BrickTileWhiteEndN @@ -218,11 +219,6 @@ entities: decals: 114: -3,-1 115: -7,-1 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerNw - decals: - 176: -4,-5 - node: color: '#D4D4D428' id: BrickTileWhiteInnerNw @@ -230,16 +226,21 @@ entities: 112: 1,-1 113: -3,-1 - node: - color: '#D4D4D428' - id: BrickTileWhiteInnerSe + color: '#DE3A3A96' + id: BrickTileWhiteInnerNw decals: - 106: -3,5 - 107: -7,5 + 176: -4,-5 - node: color: '#9FED5896' id: BrickTileWhiteInnerSe decals: 63: -6,10 + - node: + color: '#D4D4D428' + id: BrickTileWhiteInnerSe + decals: + 106: -3,5 + 107: -7,5 - node: color: '#D4D4D428' id: BrickTileWhiteInnerSw @@ -251,11 +252,6 @@ entities: id: BrickTileWhiteLineE decals: 178: -4,-5 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineN - decals: - 64: -6,11 - node: color: '#0000004A' id: BrickTileWhiteLineN @@ -263,6 +259,16 @@ entities: 19: -2,6 20: -3,6 21: -4,6 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 71: -3,11 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 64: -6,11 - node: color: '#D4D4D428' id: BrickTileWhiteLineN @@ -271,16 +277,16 @@ entities: 109: -2,-1 110: -4,-1 111: -6,-1 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineN - decals: - 71: -3,11 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: 175: -5,-5 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 74: -3,10 - node: color: '#D4D4D428' id: BrickTileWhiteLineS @@ -295,11 +301,6 @@ entities: decals: 173: -5,-6 174: -6,-6 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 74: -3,10 - node: color: '#9FED5896' id: BrickTileWhiteLineW @@ -330,17 +331,17 @@ entities: id: Caution decals: 163: -5,-9 + - node: + color: '#DE3A3A96' + id: Delivery + decals: + 180: -6,-4 - node: color: '#FFFFFFFF' id: Delivery decals: 162: -7,-9 165: 1,-4 - - node: - color: '#DE3A3A96' - id: Delivery - decals: - 180: -6,-4 - node: color: '#FFFFFFFF' id: FlowersBROne @@ -397,6 +398,13 @@ entities: 16: -4,6 17: -3,6 18: -2,6 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 92: 0,11 + 93: 0,10 + 94: 0,9 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale @@ -416,13 +424,6 @@ entities: 143: 0,-7 144: 0,-8 145: 0,-9 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 92: 0,11 - 93: 0,10 - 94: 0,9 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 @@ -431,11 +432,6 @@ entities: 29: 1,-1 30: 1,1 168: -2,-2 - - node: - color: '#EFDF4196' - id: QuarterTileOverlayGreyscale270 - decals: - 67: -6,11 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 @@ -444,6 +440,18 @@ entities: 26: -7,-1 27: -7,-3 169: -4,-2 + - node: + color: '#EFDF4196' + id: QuarterTileOverlayGreyscale270 + decals: + 67: -6,11 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 35: 1,9 + 36: 1,10 + 37: 1,11 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 @@ -453,13 +461,6 @@ entities: 139: 1,-8 140: 1,-9 152: 1,-7 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 35: 1,9 - 36: 1,10 - 37: 1,11 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 @@ -674,6 +675,7 @@ entities: type: GravityShake - type: GasTileOverlay - type: SpreaderGrid + - type: GridPathfinding - proto: AirCanister entities: - uid: 609 @@ -719,56 +721,48 @@ entities: pos: 2.5,-0.5 parent: 670 type: Transform - - uid: 74 components: - rot: 1.5707963267948966 rad pos: 2.5,5.5 parent: 670 type: Transform - - uid: 75 components: - rot: 1.5707963267948966 rad pos: 2.5,7.5 parent: 670 type: Transform - - uid: 77 components: - rot: -1.5707963267948966 rad pos: -7.5,7.5 parent: 670 type: Transform - - uid: 81 components: - rot: -1.5707963267948966 rad pos: -7.5,-2.5 parent: 670 type: Transform - - uid: 93 components: - rot: -1.5707963267948966 rad pos: -7.5,5.5 parent: 670 type: Transform - - uid: 96 components: - rot: 1.5707963267948966 rad pos: 2.5,-2.5 parent: 670 type: Transform - - uid: 142 components: - rot: -1.5707963267948966 rad pos: -7.5,-0.5 parent: 670 type: Transform - - proto: AirlockSecurityGlassLocked entities: - uid: 79 @@ -908,49 +902,33 @@ entities: - pos: -7.5,10.5 parent: 670 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 244 - type: SignalReceiver + - links: + - 244 + type: DeviceLinkSink - uid: 657 components: - pos: 2.5,-8.5 parent: 670 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 660 - type: SignalReceiver + - links: + - 660 + type: DeviceLinkSink - uid: 658 components: - pos: 2.5,-6.5 parent: 670 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 660 - type: SignalReceiver + - links: + - 660 + type: DeviceLinkSink - uid: 659 components: - pos: 2.5,-4.5 parent: 670 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 660 - type: SignalReceiver + - links: + - 660 + type: DeviceLinkSink - proto: CableApcExtension entities: - uid: 196 @@ -2064,32 +2042,24 @@ entities: pos: -1.5,-8.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 629 components: - rot: -1.5707963267948966 rad pos: -1.5,-9.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 631 components: - rot: 1.5707963267948966 rad pos: -3.5,-9.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 632 components: - rot: 1.5707963267948966 rad pos: -3.5,-8.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - proto: ChairOfficeDark entities: - uid: 232 @@ -2124,255 +2094,191 @@ entities: pos: -1.5,0.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 15 components: - rot: -1.5707963267948966 rad pos: -1.5,4.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 16 components: - rot: 1.5707963267948966 rad pos: -3.5,4.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 17 components: - rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 21 components: - rot: 1.5707963267948966 rad pos: -6.5,-4.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 43 components: - rot: -1.5707963267948966 rad pos: -1.5,3.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 55 components: - rot: 1.5707963267948966 rad pos: -6.5,-5.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 58 components: - pos: -3.5,-3.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 100 components: - rot: -1.5707963267948966 rad pos: 1.5,9.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 105 components: - rot: -1.5707963267948966 rad pos: -5.5,2.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 107 components: - rot: -1.5707963267948966 rad pos: -1.5,1.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 113 components: - rot: 1.5707963267948966 rad pos: -3.5,3.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 114 components: - rot: 1.5707963267948966 rad pos: -3.5,2.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 120 components: - rot: 1.5707963267948966 rad pos: 0.5,1.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 121 components: - rot: 1.5707963267948966 rad pos: 0.5,3.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 136 components: - rot: 1.5707963267948966 rad pos: 0.5,2.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 174 components: - rot: -1.5707963267948966 rad pos: -5.5,3.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 187 components: - rot: -1.5707963267948966 rad pos: -5.5,1.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 191 components: - rot: -1.5707963267948966 rad pos: -1.5,2.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 192 components: - rot: -1.5707963267948966 rad pos: -5.5,0.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 236 components: - rot: 1.5707963267948966 rad pos: -3.5,1.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 303 components: - rot: -1.5707963267948966 rad pos: -5.5,4.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 304 components: - rot: 1.5707963267948966 rad pos: 0.5,4.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 363 components: - rot: 1.5707963267948966 rad pos: 0.5,0.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 400 components: - rot: -1.5707963267948966 rad pos: 1.5,10.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 513 components: - rot: -1.5707963267948966 rad pos: 1.5,-1.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 514 components: - rot: 1.5707963267948966 rad pos: -6.5,-1.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 515 components: - rot: 1.5707963267948966 rad pos: -6.5,6.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 516 components: - rot: -1.5707963267948966 rad pos: 1.5,6.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 520 components: - rot: -1.5707963267948966 rad pos: 1.5,-8.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 521 components: - rot: -1.5707963267948966 rad pos: 1.5,-7.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 522 components: - rot: -1.5707963267948966 rad pos: 1.5,-6.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - proto: CigarGold entities: - uid: 51 @@ -2417,45 +2323,33 @@ entities: pos: -3.5,7.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 255 components: - rot: 1.5707963267948966 rad pos: -4.5,13.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 260 components: - pos: -3.5,15.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 268 components: - rot: 1.5707963267948966 rad pos: -4.5,14.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 276 components: - pos: -1.5,15.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 279 components: - pos: -2.5,8.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - proto: ComputerComms entities: - uid: 246 @@ -2625,8 +2519,6 @@ entities: pos: -6.5,-9.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 526 components: - rot: 1.5707963267948966 rad @@ -2635,8 +2527,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - proto: GasPipeBend entities: - uid: 527 @@ -2647,8 +2537,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 530 components: - rot: 1.5707963267948966 rad @@ -2657,8 +2545,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 535 @@ -2669,8 +2555,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 536 components: - pos: 1.5,-5.5 @@ -2678,8 +2562,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 537 components: - rot: 3.141592653589793 rad @@ -2688,8 +2570,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 551 components: - rot: 3.141592653589793 rad @@ -2698,8 +2578,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 552 components: - rot: -1.5707963267948966 rad @@ -2708,8 +2586,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 553 components: - pos: -1.5,4.5 @@ -2717,8 +2593,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 554 components: - rot: 1.5707963267948966 rad @@ -2727,8 +2601,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 558 components: - rot: 3.141592653589793 rad @@ -2737,8 +2609,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 559 components: - rot: -1.5707963267948966 rad @@ -2747,8 +2617,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 573 components: - rot: 3.141592653589793 rad @@ -2757,8 +2625,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - proto: GasPipeFourway entities: - uid: 550 @@ -2768,8 +2634,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 582 components: - pos: -2.5,6.5 @@ -2777,8 +2641,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - proto: GasPipeStraight entities: - uid: 529 @@ -2788,8 +2650,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 531 components: - rot: -1.5707963267948966 rad @@ -2798,8 +2658,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 534 components: - rot: 1.5707963267948966 rad @@ -2808,8 +2666,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 538 components: - rot: 1.5707963267948966 rad @@ -2818,8 +2674,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 544 components: - rot: 3.141592653589793 rad @@ -2828,8 +2682,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 545 components: - rot: 3.141592653589793 rad @@ -2838,8 +2690,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 546 components: - rot: 3.141592653589793 rad @@ -2848,8 +2698,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 560 components: - rot: 3.141592653589793 rad @@ -2858,8 +2706,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 561 components: - rot: 3.141592653589793 rad @@ -2868,8 +2714,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 562 components: - rot: 3.141592653589793 rad @@ -2878,8 +2722,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 563 components: - rot: 3.141592653589793 rad @@ -2888,8 +2730,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 566 components: - rot: 1.5707963267948966 rad @@ -2898,8 +2738,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 567 components: - rot: 1.5707963267948966 rad @@ -2908,8 +2746,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 568 components: - rot: 1.5707963267948966 rad @@ -2918,8 +2754,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 569 components: - rot: 1.5707963267948966 rad @@ -2928,8 +2762,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 571 components: - pos: -5.5,-2.5 @@ -2937,8 +2769,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 572 components: - pos: -5.5,-3.5 @@ -2946,8 +2776,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 576 components: - pos: -3.5,1.5 @@ -2955,8 +2783,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 577 components: - pos: -3.5,2.5 @@ -2964,8 +2790,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 578 components: - pos: -3.5,3.5 @@ -2973,8 +2797,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 579 components: - pos: -1.5,1.5 @@ -2982,8 +2804,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 580 components: - pos: -1.5,2.5 @@ -2991,8 +2811,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 581 components: - pos: -1.5,3.5 @@ -3000,8 +2818,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 585 components: - pos: -2.5,5.5 @@ -3009,8 +2825,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 586 components: - rot: -1.5707963267948966 rad @@ -3019,8 +2833,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 587 components: - rot: -1.5707963267948966 rad @@ -3029,8 +2841,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 588 components: - rot: -1.5707963267948966 rad @@ -3039,8 +2849,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 589 components: - rot: -1.5707963267948966 rad @@ -3049,8 +2857,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 590 components: - rot: 3.141592653589793 rad @@ -3059,8 +2865,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 591 components: - rot: 3.141592653589793 rad @@ -3069,8 +2873,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 596 components: - pos: 0.5,7.5 @@ -3078,8 +2880,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 597 components: - pos: 0.5,8.5 @@ -3087,8 +2887,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 598 components: - pos: 0.5,9.5 @@ -3096,8 +2894,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 599 components: - pos: 0.5,10.5 @@ -3105,8 +2901,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 600 components: - pos: 0.5,11.5 @@ -3114,8 +2908,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 601 components: - pos: 0.5,12.5 @@ -3123,8 +2915,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - proto: GasPipeTJunction entities: - uid: 532 @@ -3134,8 +2924,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 539 components: - rot: -1.5707963267948966 rad @@ -3144,8 +2932,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 547 components: - rot: 1.5707963267948966 rad @@ -3154,8 +2940,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 548 components: - pos: 0.5,-0.5 @@ -3163,8 +2947,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 549 components: - pos: -5.5,-0.5 @@ -3172,8 +2954,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 555 components: - rot: -1.5707963267948966 rad @@ -3182,8 +2962,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 556 components: - pos: -2.5,0.5 @@ -3191,8 +2969,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 557 components: - rot: 3.141592653589793 rad @@ -3201,8 +2977,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 570 components: - rot: -1.5707963267948966 rad @@ -3211,8 +2985,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 583 components: - rot: -1.5707963267948966 rad @@ -3221,8 +2993,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 584 components: - rot: 1.5707963267948966 rad @@ -3231,8 +3001,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - proto: GasPort entities: - uid: 523 @@ -3240,8 +3008,6 @@ entities: - pos: -6.5,-8.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - proto: GasPressurePump entities: - uid: 528 @@ -3250,8 +3016,6 @@ entities: pos: -3.5,-7.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - proto: GasVentPump entities: - uid: 533 @@ -3260,135 +3024,135 @@ entities: pos: -1.5,-8.5 parent: 670 type: Transform + - enabled: False + type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 540 components: - rot: 1.5707963267948966 rad pos: 0.5,-6.5 parent: 670 type: Transform + - enabled: False + type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 541 components: - pos: -6.5,3.5 parent: 670 type: Transform + - enabled: False + type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 543 components: - rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 670 type: Transform + - enabled: False + type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 564 components: - pos: 1.5,1.5 parent: 670 type: Transform + - enabled: False + type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 574 components: - rot: -1.5707963267948966 rad pos: -4.5,-4.5 parent: 670 type: Transform + - enabled: False + type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 575 components: - rot: 1.5707963267948966 rad pos: -2.5,2.5 parent: 670 type: Transform + - enabled: False + type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 592 components: - pos: -5.5,9.5 parent: 670 type: Transform + - enabled: False + type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 593 components: - rot: 3.141592653589793 rad pos: -5.5,5.5 parent: 670 type: Transform + - enabled: False + type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 594 components: - rot: 3.141592653589793 rad pos: 0.5,5.5 parent: 670 type: Transform + - enabled: False + type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 595 components: - pos: -2.5,7.5 parent: 670 type: Transform + - enabled: False + type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 602 components: - pos: 0.5,13.5 parent: 670 type: Transform + - enabled: False + type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 603 components: - rot: 1.5707963267948966 rad pos: -6.5,-1.5 parent: 670 type: Transform + - enabled: False + type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 604 components: - rot: -1.5707963267948966 rad pos: 1.5,-1.5 parent: 670 type: Transform + - enabled: False + type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - proto: GeneratorUranium entities: - uid: 402 @@ -3629,8 +3393,6 @@ entities: - pos: -5.5,-10.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - proto: HolofanProjector entities: - uid: 612 @@ -3791,8 +3553,6 @@ entities: - pos: 1.5,-3.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - proto: PortableScrubber entities: - uid: 636 @@ -3871,8 +3631,6 @@ entities: - pos: -4.5,3.5 parent: 670 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 614 @@ -3881,8 +3639,6 @@ entities: pos: -0.5,1.5 parent: 670 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 615 @@ -3891,8 +3647,6 @@ entities: pos: -5.5,-5.5 parent: 670 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 616 @@ -3901,8 +3655,6 @@ entities: pos: -1.5,10.5 parent: 670 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 619 @@ -3911,8 +3663,6 @@ entities: pos: 0.5,9.5 parent: 670 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 620 @@ -3920,8 +3670,6 @@ entities: - pos: -4.5,-0.5 parent: 670 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 621 @@ -3930,8 +3678,6 @@ entities: pos: 0.5,-6.5 parent: 670 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 622 @@ -3940,8 +3686,6 @@ entities: pos: -6.5,9.5 parent: 670 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - uid: 624 @@ -3949,8 +3693,6 @@ entities: - pos: -2.5,-7.5 parent: 670 type: Transform - - enabled: False - type: AmbientSound - powerLoad: 0 type: ApcPowerReceiver - proto: PoweredSmallLight @@ -4023,73 +3765,49 @@ entities: - pos: -2.5,-2.5 parent: 670 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 54 - type: SignalReceiver + - links: + - 54 + type: DeviceLinkSink - uid: 99 components: - pos: -6.5,-3.5 parent: 670 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 54 - type: SignalReceiver + - links: + - 54 + type: DeviceLinkSink - uid: 251 components: - pos: -6.5,8.5 parent: 670 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 244 - type: SignalReceiver + - links: + - 244 + type: DeviceLinkSink - uid: 257 components: - pos: -2.5,9.5 parent: 670 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 244 - type: SignalReceiver + - links: + - 244 + type: DeviceLinkSink - uid: 274 components: - pos: -3.5,9.5 parent: 670 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 244 - type: SignalReceiver + - links: + - 244 + type: DeviceLinkSink - uid: 284 components: - pos: -1.5,9.5 parent: 670 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 244 - type: SignalReceiver + - links: + - 244 + type: DeviceLinkSink - proto: ShuttleWindow entities: - uid: 2 @@ -4309,45 +4027,42 @@ entities: - pos: -4.5,-3.5 parent: 670 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 99 - - port: Toggle - uid: 62 - type: SignalTransmitter + - linkedPorts: + 99: + - Pressed: Toggle + 62: + - Pressed: Toggle + type: DeviceLinkSource - uid: 244 components: - pos: -4.5,9.5 parent: 670 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 251 - - port: Toggle - uid: 274 - - port: Toggle - uid: 257 - - port: Toggle - uid: 284 - - port: Toggle - uid: 281 - type: SignalTransmitter + - linkedPorts: + 251: + - Pressed: Toggle + 274: + - Pressed: Toggle + 257: + - Pressed: Toggle + 284: + - Pressed: Toggle + 281: + - Pressed: Toggle + type: DeviceLinkSource - uid: 660 components: - pos: -0.5,-6.5 parent: 670 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 658 - - port: Toggle - uid: 657 - - port: Toggle - uid: 659 - type: SignalTransmitter + - linkedPorts: + 658: + - Pressed: Toggle + 657: + - Pressed: Toggle + 659: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignMedical entities: - uid: 5 @@ -4439,62 +4154,46 @@ entities: pos: -7.5,-11.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 97 components: - rot: 3.141592653589793 rad pos: -6.5,-12.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 235 components: - rot: -1.5707963267948966 rad pos: 2.5,13.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 261 components: - pos: 2.5,14.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 295 components: - rot: -1.5707963267948966 rad pos: 2.5,-11.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 319 components: - pos: -7.5,14.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 357 components: - rot: 3.141592653589793 rad pos: 1.5,-12.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - uid: 391 components: - rot: 1.5707963267948966 rad pos: -7.5,13.5 parent: 670 type: Transform - - bodyType: Static - type: Physics - proto: VendingMachineBooze entities: - uid: 66 @@ -4936,7 +4635,7 @@ entities: - pos: -6.5,0.5 parent: 670 type: Transform -- proto: WindoorMedicalLocked +- proto: WindoorSecureMedicalLocked entities: - uid: 258 components: @@ -4944,7 +4643,7 @@ entities: pos: -4.5,10.5 parent: 670 type: Transform -- proto: WindoorSecurityLocked +- proto: WindoorSecureSecurityLocked entities: - uid: 287 components: diff --git a/Resources/Maps/Shuttles/emergency_raven.yml b/Resources/Maps/Shuttles/emergency_raven.yml index fa24dfb066..ad2b7ed7de 100644 --- a/Resources/Maps/Shuttles/emergency_raven.yml +++ b/Resources/Maps/Shuttles/emergency_raven.yml @@ -3,15 +3,15 @@ meta: postmapinit: false tilemap: 0: Space - 22: FloorDark - 40: FloorGrass - 58: FloorReinforced - 68: FloorSteel - 78: FloorTechMaint - 81: FloorWhite - 91: FloorWood - 93: Lattice - 94: Plating + 23: FloorDark + 41: FloorGrass + 59: FloorReinforced + 69: FloorSteel + 79: FloorTechMaint + 82: FloorWhite + 92: FloorWood + 94: Lattice + 95: Plating entities: - proto: "" entities: @@ -24,28 +24,28 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: XgAAAEQAAAAWAAABKAAAACgAAAAoAAAAKAAAACgAAAAoAAAARAAAAEQAAAEoAAAARAAAAUQAAAMoAAAAKAAAAF4AAABEAAABFgAAASgAAAAoAAAAKAAAAEQAAAIWAAAAFgAAAEQAAANEAAACRAAAAEQAAAJEAAAAFgAAARYAAAFeAAAARAAAAUQAAAMWAAADFgAAAhYAAABEAAACRAAAAEQAAABEAAABRAAAA0QAAAFEAAACRAAAAUQAAAJEAAABXgAAAEQAAAFEAAADRAAAAUQAAAFEAAADRAAAAUQAAABEAAACWwAAAFsAAABbAAADWwAAAVsAAABEAAABRAAAAF4AAABEAAADRAAAAUQAAAJeAAAARAAAAEQAAAFeAAAAXgAAAFsAAABbAAACWwAAAVsAAAFbAAADXgAAAF4AAABeAAAARAAAAEQAAANEAAABXgAAAEQAAAFEAAADRAAAAF4AAABbAAABWwAAAVsAAABbAAACWwAAAF4AAABEAAABXgAAABYAAAFEAAAARAAAAF4AAABEAAADRAAAAkQAAAJeAAAAWwAAAVsAAANbAAADWwAAAVsAAAJeAAAARAAAAV4AAAAWAAADRAAAARYAAANeAAAARAAAAUQAAANeAAAAXgAAAF4AAABeAAAAWwAAAl4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAEWAAAAXgAAAEQAAANEAAABXgAAAEQAAAJEAAAAXgAAAFsAAABeAAAARAAAAkQAAANeAAAAXgAAAEQAAABEAAADFgAAAV4AAABEAAADRAAAAV4AAABEAAACRAAAAV4AAABbAAAAXgAAAEQAAAJEAAABXgAAAF4AAAAWAAABRAAAAhYAAAFeAAAARAAAAkQAAABeAAAAXgAAAEQAAAFeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABeAAAAFgAAAkQAAANEAAAAXgAAAEQAAAJEAAADRAAAAEQAAABEAAADRAAAAEQAAABEAAACRAAAA0QAAABEAAACXgAAAEQAAABEAAABRAAAAF4AAABEAAABRAAAAEQAAAFEAAADRAAAAEQAAANEAAABRAAAAUQAAAFEAAADRAAAA14AAABeAAAARAAAAUQAAAFeAAAARAAAAkQAAANEAAABRAAAAUQAAABEAAAARAAAAkQAAAFEAAACRAAAAkQAAAJdAAAAXgAAABYAAAJEAAAAXgAAAEQAAANEAAADRAAAAEQAAAFEAAACRAAAAUQAAAJEAAADRAAAA0QAAAJEAAADXQAAAF4AAAAWAAABRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: XwAAAEUAAAAXAAABKQAAACkAAAApAAAAKQAAACkAAAApAAAARQAAAEUAAAEpAAAARQAAAUUAAAMpAAAAKQAAAF8AAABFAAABFwAAASkAAAApAAAAKQAAAEUAAAIXAAAAFwAAAEUAAANFAAACRQAAAEUAAAJFAAAAFwAAARcAAAFfAAAARQAAAUUAAAMXAAADFwAAAhcAAABFAAACRQAAAEUAAABFAAABRQAAA0UAAAFFAAACRQAAAUUAAAJFAAABXwAAAEUAAAFFAAADRQAAAUUAAAFFAAADRQAAAUUAAABFAAACXAAAAFwAAABcAAADXAAAAVwAAABFAAABRQAAAF8AAABFAAADRQAAAUUAAAJfAAAARQAAAEUAAAFfAAAAXwAAAFwAAABcAAACXAAAAVwAAAFcAAADXwAAAF8AAABfAAAARQAAAEUAAANFAAABXwAAAEUAAAFFAAADRQAAAF8AAABcAAABXAAAAVwAAABcAAACXAAAAF8AAABFAAABXwAAABcAAAFFAAAARQAAAF8AAABFAAADRQAAAkUAAAJfAAAAXAAAAVwAAANcAAADXAAAAVwAAAJfAAAARQAAAV8AAAAXAAADRQAAARcAAANfAAAARQAAAUUAAANfAAAAXwAAAF8AAABfAAAAXAAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAEXAAAAXwAAAEUAAANFAAABXwAAAEUAAAJFAAAAXwAAAFwAAABfAAAARQAAAkUAAANfAAAAXwAAAEUAAABFAAADFwAAAV8AAABFAAADRQAAAV8AAABFAAACRQAAAV8AAABcAAAAXwAAAEUAAAJFAAABXwAAAF8AAAAXAAABRQAAAhcAAAFfAAAARQAAAkUAAABfAAAAXwAAAEUAAAFfAAAAXwAAAF8AAABFAAAAXwAAAF8AAABfAAAAFwAAAkUAAANFAAAAXwAAAEUAAAJFAAADRQAAAEUAAABFAAADRQAAAEUAAABFAAACRQAAA0UAAABFAAACXwAAAEUAAABFAAABRQAAAF8AAABFAAABRQAAAEUAAAFFAAADRQAAAEUAAANFAAABRQAAAUUAAAFFAAADRQAAA18AAABfAAAARQAAAUUAAAFfAAAARQAAAkUAAANFAAABRQAAAUUAAABFAAAARQAAAkUAAAFFAAACRQAAAkUAAAJeAAAAXwAAABcAAAJFAAAAXwAAAEUAAANFAAADRQAAAEUAAAFFAAACRQAAAUUAAAJFAAADRQAAA0UAAAJFAAADXgAAAF8AAAAXAAABRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== 0,-1: ind: 0,-1 - tiles: XQAAAF4AAAAWAAAARAAAABYAAAEWAAACRAAAAl4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABeAAAAXgAAAF0AAABeAAAAFgAAA0QAAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAABeAAAARAAAA0QAAAFEAAACRAAAAF4AAABdAAAAXgAAABYAAAFEAAABXgAAAFEAAAJRAAAAXgAAABYAAAMWAAADXgAAAEQAAABEAAABRAAAAUQAAAE6AAAAXgAAAF4AAABEAAADRAAAAF4AAABRAAABUQAAAV4AAAAWAAACFgAAAV4AAABEAAACRAAAAkQAAABEAAADXgAAAF4AAABEAAABRAAAAUQAAANeAAAAXgAAAFEAAAFeAAAAXgAAABYAAANeAAAAXgAAAF4AAABEAAACXgAAAF4AAABeAAAAFgAAAUQAAABEAAABXgAAAFEAAANRAAABUQAAAVEAAAFRAAACUQAAAVEAAANRAAADUQAAAlEAAAJRAAAAXgAAABYAAAFEAAADFgAAAl4AAABRAAACUQAAAFEAAANRAAACUQAAA1EAAAJRAAACUQAAAVEAAABRAAADUQAAA14AAABEAAADRAAAABYAAAJeAAAAUQAAAlEAAABRAAAAUQAAA1EAAANRAAAAUQAAAF4AAABRAAAAUQAAAV4AAABeAAAARAAAAEQAAAEWAAAAXgAAAF4AAABRAAAAXgAAAF4AAABeAAAAUQAAAV4AAABeAAAAUQAAAFEAAAJRAAABXgAAABYAAAJEAAACFgAAAl4AAABRAAACUQAAA1EAAABeAAAAUQAAAVEAAABRAAADXgAAAFEAAANRAAAAUQAAAF4AAAAWAAABRAAAA0QAAABeAAAAUQAAA1EAAAJRAAADXgAAAFEAAABRAAAAUQAAAFEAAABRAAACUQAAAFEAAAJeAAAARAAAAEQAAAFEAAABXgAAAFEAAAFRAAADUQAAA14AAABRAAADUQAAAFEAAAJeAAAAUQAAAlEAAAFRAAAAXgAAAEQAAABEAAABRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAABRAAACXgAAAF4AAABEAAACRAAAAEQAAANEAAACRAAAAUQAAAFEAAAARAAAAEQAAAEWAAACFgAAABYAAAJEAAAARAAAA0QAAAJeAAAARAAAAEQAAAAWAAADFgAAAxYAAABEAAAARAAAAUQAAABEAAABRAAAAkQAAAFEAAADRAAAAEQAAAFEAAADXgAAAEQAAAAWAAACKAAAACgAAAAoAAAARAAAAxYAAAMWAAAARAAAA0QAAAFEAAACRAAAAUQAAAAWAAAAFgAAAA== + tiles: XgAAAF8AAAAXAAAARQAAABcAAAEXAAACRQAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABfAAAAXwAAAF4AAABfAAAAFwAAA0UAAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAABfAAAARQAAA0UAAAFFAAACRQAAAF8AAABeAAAAXwAAABcAAAFFAAABXwAAAFIAAAJSAAAAXwAAABcAAAMXAAADXwAAAEUAAABFAAABRQAAAUUAAAE7AAAAXwAAAF8AAABFAAADRQAAAF8AAABSAAABUgAAAV8AAAAXAAACFwAAAV8AAABFAAACRQAAAkUAAABFAAADXwAAAF8AAABFAAABRQAAAUUAAANfAAAAXwAAAFIAAAFfAAAAXwAAABcAAANfAAAAXwAAAF8AAABFAAACXwAAAF8AAABfAAAAFwAAAUUAAABFAAABXwAAAFIAAANSAAABUgAAAVIAAAFSAAACUgAAAVIAAANSAAADUgAAAlIAAAJSAAAAXwAAABcAAAFFAAADFwAAAl8AAABSAAACUgAAAFIAAANSAAACUgAAA1IAAAJSAAACUgAAAVIAAABSAAADUgAAA18AAABFAAADRQAAABcAAAJfAAAAUgAAAlIAAABSAAAAUgAAA1IAAANSAAAAUgAAAF8AAABSAAAAUgAAAV8AAABfAAAARQAAAEUAAAEXAAAAXwAAAF8AAABSAAAAXwAAAF8AAABfAAAAUgAAAV8AAABfAAAAUgAAAFIAAAJSAAABXwAAABcAAAJFAAACFwAAAl8AAABSAAACUgAAA1IAAABfAAAAUgAAAVIAAABSAAADXwAAAFIAAANSAAAAUgAAAF8AAAAXAAABRQAAA0UAAABfAAAAUgAAA1IAAAJSAAADXwAAAFIAAABSAAAAUgAAAFIAAABSAAACUgAAAFIAAAJfAAAARQAAAEUAAAFFAAABXwAAAFIAAAFSAAADUgAAA18AAABSAAADUgAAAFIAAAJfAAAAUgAAAlIAAAFSAAAAXwAAAEUAAABFAAABRQAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAABSAAACXwAAAF8AAABFAAACRQAAAEUAAANFAAACRQAAAUUAAAFFAAAARQAAAEUAAAEXAAACFwAAABcAAAJFAAAARQAAA0UAAAJfAAAARQAAAEUAAAAXAAADFwAAAxcAAABFAAAARQAAAUUAAABFAAABRQAAAkUAAAFFAAADRQAAAEUAAAFFAAADXwAAAEUAAAAXAAACKQAAACkAAAApAAAARQAAAxcAAAMXAAAARQAAA0UAAAFFAAACRQAAAUUAAAAXAAAAFwAAAA== 1,0: ind: 1,0 - tiles: KAAAACgAAAAoAAAAKAAAABYAAANEAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAEoAAAAKAAAACgAAAAWAAABRAAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADFgAAAxYAAAAWAAABRAAAAUQAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAABEAAAARAAAAUQAAAJEAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAAAXgAAAEQAAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAA14AAABEAAAARAAAAEQAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAANeAAAARAAAAUQAAAIWAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAADXgAAABYAAANEAAACFgAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACRAAAAF4AAAAWAAADRAAAAkQAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABeAAAAFgAAAEQAAABEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFEAAACXgAAABYAAANEAAABFgAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAAV4AAABEAAADRAAAAxYAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAANeAAAARAAAAUQAAABEAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFEAAAAXgAAAEQAAABEAAABXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAAV4AAABEAAABFgAAA14AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAhYAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: KQAAACkAAAApAAAAKQAAABcAAANFAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAEpAAAAKQAAACkAAAAXAAABRQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAADFwAAAxcAAAAXAAABRQAAAUUAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAA0UAAABFAAAARQAAAUUAAAJFAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANFAAAAXwAAAEUAAABFAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAA18AAABFAAAARQAAAEUAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAA0UAAANfAAAARQAAAUUAAAIXAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANFAAADXwAAABcAAANFAAACFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAACRQAAAF8AAAAXAAADRQAAAkUAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABfAAAAFwAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFFAAACXwAAABcAAANFAAABFwAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAABRQAAAV8AAABFAAADRQAAAxcAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAA0UAAANfAAAARQAAAUUAAABFAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFFAAAAXwAAAEUAAABFAAABXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAABRQAAAV8AAABFAAABFwAAA18AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAhcAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-1: ind: 1,-1 - tiles: RAAAAxYAAAMWAAAARAAAARYAAANeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAAAWAAADXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAAF4AAABEAAACFgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAABeAAAARAAAAUQAAANeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAABUQAAA14AAABEAAAARAAAABYAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAlEAAAJeAAAAFgAAA0QAAAAWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAAFeAAAAXgAAABYAAAJEAAACRAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAABUQAAAl4AAAAWAAACRAAAAUQAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAFEAAABeAAAAFgAAA0QAAAAWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAAJRAAAAXgAAAEQAAAFEAAACFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAADUQAAAV4AAABEAAADRAAAAUQAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAABRAAAAUQAAANEAAAARAAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAABFgAAAhYAAAEWAAAARAAAAUQAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAASgAAAAoAAAAKAAAABYAAANEAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAAxcAAAMXAAAARQAAARcAAANfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAAXAAADXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAAF8AAABFAAACFwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAABfAAAARQAAAUUAAANfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAAJFAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAABUgAAA18AAABFAAAARQAAABcAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAlIAAAJfAAAAFwAAA0UAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAAFfAAAAXwAAABcAAAJFAAACRQAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAABUgAAAl8AAAAXAAACRQAAAUUAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAFIAAABfAAAAFwAAA0UAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAAJSAAAAXwAAAEUAAAFFAAACFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAADUgAAAV8AAABFAAADRQAAAUUAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAEUAAAJFAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAABRQAAAUUAAANFAAAARQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAABFwAAAhcAAAEXAAAARQAAAUUAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAASkAAAApAAAAKQAAABcAAANFAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,1: ind: 0,1 - tiles: XQAAAF4AAAAWAAAARAAAA0QAAAIWAAAARAAAAxYAAANEAAAARAAAAEQAAANEAAACRAAAAkQAAANEAAAAFgAAA10AAABeAAAARAAAAUQAAABEAAAARAAAA0QAAANEAAACRAAAA0QAAAIWAAADFgAAAxYAAAFEAAADRAAAAkQAAAIAAAAAXgAAAF4AAABEAAADRAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAABeAAAAXgAAAEQAAANEAAAAXgAAAFsAAABbAAAAWwAAAlsAAABbAAAAWwAAA1sAAANbAAACWwAAAgAAAABdAAAAXgAAAEQAAANEAAADRAAAA14AAABbAAACWwAAA1sAAAJbAAAAWwAAAVsAAAJbAAADWwAAAlsAAAIAAAAAXQAAAF4AAABEAAADRAAAAEQAAAFeAAAAWwAAAlsAAAFbAAAAWwAAAVsAAANbAAABWwAAAFsAAABbAAADAAAAAAAAAABeAAAAXgAAAEQAAAFEAAABXgAAAF4AAABbAAACXgAAAF4AAABeAAAAXgAAAF4AAABbAAADXgAAAAAAAAAAAAAAXQAAAF4AAABEAAABRAAAARYAAAIWAAAARAAAABYAAAEWAAABFgAAARYAAAMWAAACRAAAARYAAAEAAAAAAAAAAF0AAABeAAAARAAAAEQAAAFEAAACRAAAA0QAAAEWAAACFgAAARYAAAEWAAABFgAAAkQAAABEAAABAAAAAAAAAABdAAAAXgAAABYAAAEWAAABRAAAA0QAAANEAAABRAAAA0QAAABEAAAARAAAAEQAAAJEAAABRAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAFgAAARYAAAEWAAACFgAAAhYAAAMWAAADFgAAABYAAAAWAAACFgAAABYAAAIAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAFgAAARYAAAAWAAAAFgAAABYAAAMWAAACFgAAAxYAAAEWAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XgAAAF8AAAAXAAAARQAAA0UAAAIXAAAARQAAAxcAAANFAAAARQAAAEUAAANFAAACRQAAAkUAAANFAAAAFwAAA14AAABfAAAARQAAAUUAAABFAAAARQAAA0UAAANFAAACRQAAA0UAAAIXAAADFwAAAxcAAAFFAAADRQAAAkUAAAIAAAAAXwAAAF8AAABFAAADRQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAF4AAABfAAAAXwAAAEUAAANFAAAAXwAAAFwAAABcAAAAXAAAAlwAAABcAAAAXAAAA1wAAANcAAACXAAAAgAAAABeAAAAXwAAAEUAAANFAAADRQAAA18AAABcAAACXAAAA1wAAAJcAAAAXAAAAVwAAAJcAAADXAAAAlwAAAIAAAAAXgAAAF8AAABFAAADRQAAAEUAAAFfAAAAXAAAAlwAAAFcAAAAXAAAAVwAAANcAAABXAAAAFwAAABcAAADAAAAAAAAAABfAAAAXwAAAEUAAAFFAAABXwAAAF8AAABcAAACXwAAAF8AAABfAAAAXwAAAF8AAABcAAADXwAAAAAAAAAAAAAAXgAAAF8AAABFAAABRQAAARcAAAIXAAAARQAAABcAAAEXAAABFwAAARcAAAMXAAACRQAAARcAAAEAAAAAAAAAAF4AAABfAAAARQAAAEUAAAFFAAACRQAAA0UAAAEXAAACFwAAARcAAAEXAAABFwAAAkUAAABFAAABAAAAAAAAAABeAAAAXwAAABcAAAEXAAABRQAAA0UAAANFAAABRQAAA0UAAABFAAAARQAAAEUAAAJFAAABRQAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAARcAAAEXAAACFwAAAhcAAAMXAAADFwAAABcAAAAXAAACFwAAABcAAAIAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAFwAAARcAAAAXAAAAFwAAABcAAAMXAAACFwAAAxcAAAEXAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,1: ind: 1,1 - tiles: RAAAABYAAAFEAAADRAAAAhYAAANeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAAARAAAA0QAAAJEAAABXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAA0QAAAJEAAADRAAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACRAAAA0QAAANeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAA0QAAAFEAAADXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAFEAAABXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABEAAAARAAAAl4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACRAAAA0QAAANeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAhYAAAEWAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAIWAAABXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAABcAAAFFAAADRQAAAhcAAANfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANFAAAARQAAA0UAAAJFAAABXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAA0UAAAJFAAADRQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAACRQAAA0UAAANfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAA0UAAAFFAAADXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAFFAAABXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAABFAAAARQAAAl8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAACRQAAA0UAAANfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAhcAAAEXAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAIXAAABXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAAFeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABOAAAARAAAAF4AAABeAAAARAAAAEQAAABEAAABXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAXgAAAF4AAABOAAAATgAAAEQAAABeAAAAXgAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAF4AAABEAAADRAAAA0QAAAFEAAACRAAAAEQAAAJEAAAARAAAA14AAABEAAAARAAAAUQAAAEAAAAAAAAAAF0AAABeAAAARAAAAkQAAABEAAADRAAAAkQAAANEAAACRAAAA0QAAABeAAAARAAAAkQAAAFEAAAAAAAAAAAAAABdAAAAXgAAAEQAAABEAAABRAAAAEQAAAJEAAADRAAAAkQAAABEAAABXgAAAEQAAAFEAAADRAAAAwAAAAAAAAAAXgAAAF4AAABEAAAARAAAAV4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABEAAABRAAAAkQAAAIAAAAAXQAAAF4AAABEAAABRAAAA0QAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFEAAAAAAAAAF0AAABeAAAARAAAAkQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAAwAAAABdAAAAXgAAAF4AAABEAAABRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABEAAAARAAAAkQAAABEAAADRAAAAUQAAAJEAAADRAAAAUQAAAIWAAABFgAAABYAAANEAAAAXQAAAF4AAABEAAADRAAAAkQAAANEAAACRAAAA0QAAAAWAAADFgAAAhYAAAJEAAACRAAAAUQAAAJEAAACRAAAAw== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAA0UAAAFfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABPAAAARQAAAF8AAABfAAAARQAAAEUAAABFAAABXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAXwAAAF8AAABPAAAATwAAAEUAAABfAAAAXwAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXgAAAF8AAABFAAADRQAAA0UAAAFFAAACRQAAAEUAAAJFAAAARQAAA18AAABFAAAARQAAAUUAAAEAAAAAAAAAAF4AAABfAAAARQAAAkUAAABFAAADRQAAAkUAAANFAAACRQAAA0UAAABfAAAARQAAAkUAAAFFAAAAAAAAAAAAAABeAAAAXwAAAEUAAABFAAABRQAAAEUAAAJFAAADRQAAAkUAAABFAAABXwAAAEUAAAFFAAADRQAAAwAAAAAAAAAAXwAAAF8AAABFAAAARQAAAV8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABFAAABRQAAAkUAAAIAAAAAXgAAAF8AAABFAAABRQAAA0UAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAFFAAAAAAAAAF4AAABfAAAARQAAAkUAAAFFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAAwAAAABeAAAAXwAAAF8AAABFAAABRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABFAAAARQAAAkUAAABFAAADRQAAAUUAAAJFAAADRQAAAUUAAAIXAAABFwAAABcAAANFAAAAXgAAAF8AAABFAAADRQAAAkUAAANFAAACRQAAA0UAAAAXAAADFwAAAhcAAAJFAAACRQAAAUUAAAJFAAACRQAAAw== 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAACRAAAA14AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAAEQAAAFeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAAFEAAACXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAARAAAAV4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAUQAAAJEAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAABRAAAA14AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAARAAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAA0QAAAJEAAACXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAACRAAAAUQAAANeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAACXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAUUAAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAACRQAAA18AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAABRQAAAEUAAAFfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAUUAAAFFAAACXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAV8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAUUAAAJFAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAABRQAAA18AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAADRQAAA0UAAAJFAAACXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAACRQAAAUUAAANfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -1165,8 +1165,8 @@ entities: chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay - - nextUpdate: 0 - type: SpreaderGrid + - type: SpreaderGrid + - type: GridPathfinding - proto: AcousticGuitarInstrument entities: - uid: 2124 @@ -1663,665 +1663,439 @@ entities: - pos: 4.5,10.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2276 - - port: Pressed - uid: 2277 - type: SignalReceiver + - links: + - 2276 + - 2277 + type: DeviceLinkSink - uid: 2232 components: - pos: 4.5,11.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2276 - - port: Pressed - uid: 2277 - type: SignalReceiver + - links: + - 2276 + - 2277 + type: DeviceLinkSink - uid: 2233 components: - pos: 4.5,12.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2276 - - port: Pressed - uid: 2277 - type: SignalReceiver + - links: + - 2276 + - 2277 + type: DeviceLinkSink - uid: 2234 components: - pos: 7.5,15.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2276 - - port: Pressed - uid: 2277 - type: SignalReceiver + - links: + - 2276 + - 2277 + type: DeviceLinkSink - uid: 2235 components: - pos: 8.5,15.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2276 - - port: Pressed - uid: 2277 - type: SignalReceiver + - links: + - 2276 + - 2277 + type: DeviceLinkSink - uid: 2236 components: - pos: 9.5,15.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2276 - - port: Pressed - uid: 2277 - type: SignalReceiver + - links: + - 2276 + - 2277 + type: DeviceLinkSink - uid: 2237 components: - pos: 13.5,15.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2276 - - port: Pressed - uid: 2277 - type: SignalReceiver + - links: + - 2276 + - 2277 + type: DeviceLinkSink - uid: 2238 components: - pos: 14.5,15.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2276 - - port: Pressed - uid: 2277 - type: SignalReceiver + - links: + - 2276 + - 2277 + type: DeviceLinkSink - uid: 2239 components: - pos: 15.5,15.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2276 - - port: Pressed - uid: 2277 - type: SignalReceiver + - links: + - 2276 + - 2277 + type: DeviceLinkSink - uid: 2240 components: - pos: 18.5,12.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2276 - - port: Pressed - uid: 2277 - type: SignalReceiver + - links: + - 2276 + - 2277 + type: DeviceLinkSink - uid: 2241 components: - pos: 18.5,11.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2276 - - port: Pressed - uid: 2277 - type: SignalReceiver + - links: + - 2276 + - 2277 + type: DeviceLinkSink - uid: 2242 components: - pos: 18.5,10.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2276 - - port: Pressed - uid: 2277 - type: SignalReceiver + - links: + - 2276 + - 2277 + type: DeviceLinkSink - uid: 2243 components: - pos: 13.5,18.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2274 - type: SignalReceiver + - links: + - 2274 + type: DeviceLinkSink - uid: 2244 components: - pos: 14.5,18.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2274 - type: SignalReceiver + - links: + - 2274 + type: DeviceLinkSink - uid: 2245 components: - pos: 9.5,18.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2274 - type: SignalReceiver + - links: + - 2274 + type: DeviceLinkSink - uid: 2246 components: - pos: 8.5,18.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2274 - type: SignalReceiver + - links: + - 2274 + type: DeviceLinkSink - uid: 2247 components: - pos: 7.5,22.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2274 - type: SignalReceiver + - links: + - 2274 + type: DeviceLinkSink - uid: 2248 components: - pos: 15.5,22.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2274 - type: SignalReceiver + - links: + - 2274 + type: DeviceLinkSink - uid: 2249 components: - pos: 19.5,24.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2250 components: - pos: 19.5,25.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2251 components: - pos: 19.5,26.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2252 components: - pos: 18.5,26.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2253 components: - pos: 18.5,27.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2254 components: - pos: 17.5,27.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2255 components: - pos: 16.5,27.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2256 components: - pos: 16.5,28.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2257 components: - pos: 15.5,28.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2258 components: - pos: 14.5,28.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2259 components: - pos: 13.5,28.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2260 components: - pos: 12.5,28.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2261 components: - pos: 11.5,28.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2262 components: - pos: 10.5,28.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2263 components: - pos: 9.5,28.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2264 components: - pos: 8.5,28.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2265 components: - pos: 7.5,28.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2266 components: - pos: 6.5,28.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2267 components: - pos: 6.5,27.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2268 components: - pos: 5.5,27.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2269 components: - pos: 4.5,27.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2270 components: - pos: 4.5,26.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2271 components: - pos: 3.5,26.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2272 components: - pos: 3.5,25.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2273 components: - pos: 3.5,24.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2275 - type: SignalReceiver + - links: + - 2275 + type: DeviceLinkSink - uid: 2283 components: - pos: 12.5,-6.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2288 - type: SignalReceiver + - links: + - 2288 + type: DeviceLinkSink - uid: 2284 components: - pos: 12.5,-4.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2288 - type: SignalReceiver + - links: + - 2288 + type: DeviceLinkSink - uid: 2285 components: - pos: 15.5,-3.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2288 - type: SignalReceiver + - links: + - 2288 + type: DeviceLinkSink - uid: 2286 components: - pos: 16.5,-3.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2288 - type: SignalReceiver + - links: + - 2288 + type: DeviceLinkSink - uid: 2287 components: - pos: 17.5,-3.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2288 - type: SignalReceiver + - links: + - 2288 + type: DeviceLinkSink - uid: 2290 components: - pos: 10.5,22.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2274 - type: SignalReceiver + - links: + - 2274 + type: DeviceLinkSink - uid: 2291 components: - pos: 11.5,22.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2274 - type: SignalReceiver + - links: + - 2274 + type: DeviceLinkSink - uid: 2292 components: - pos: 12.5,22.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2274 - type: SignalReceiver + - links: + - 2274 + type: DeviceLinkSink - uid: 2451 components: - pos: 4.5,9.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2276 - - port: Pressed - uid: 2277 - type: SignalReceiver + - links: + - 2276 + - 2277 + type: DeviceLinkSink - uid: 2452 components: - pos: 18.5,9.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2277 - - port: Pressed - uid: 2276 - type: SignalReceiver + - links: + - 2276 + - 2277 + type: DeviceLinkSink - proto: BoozeDispenser entities: - uid: 2127 @@ -2435,162 +2209,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 974 components: - pos: 4.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 975 components: - pos: 4.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 976 components: - pos: 4.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 977 components: - pos: 4.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 978 components: - pos: 4.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 979 components: - pos: 4.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 980 components: - pos: 5.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 981 components: - pos: 6.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 982 components: - pos: 7.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 983 components: - pos: 8.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 984 components: - pos: 9.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 985 components: - pos: 10.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 986 components: - pos: 11.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 987 components: - pos: 6.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 988 components: - pos: 6.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 989 components: - pos: 11.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 990 components: - pos: 11.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 991 components: - pos: 11.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 994 components: - pos: 12.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 995 components: - pos: 12.5,-27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 996 components: - pos: 10.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 997 components: - pos: 10.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 998 components: - pos: 10.5,-20.5 @@ -2598,8 +2326,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 999 components: - pos: 9.5,-20.5 @@ -2607,8 +2333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1000 components: - pos: 8.5,-20.5 @@ -2616,8 +2340,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1001 components: - pos: 16.5,-21.5 @@ -2625,85 +2347,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1002 components: - pos: 15.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1003 components: - pos: 14.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1004 components: - pos: 14.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1005 components: - pos: 14.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1006 components: - pos: 14.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1007 components: - pos: 16.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1008 components: - pos: 16.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1009 components: - pos: 16.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1010 components: - pos: 16.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1011 components: - pos: 17.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1012 components: - pos: 18.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1013 components: - pos: 19.5,-23.5 @@ -2711,36 +2409,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1014 components: - pos: 18.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1015 components: - pos: 18.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1016 components: - pos: 18.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1017 components: - pos: 18.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1018 components: - pos: 19.5,-22.5 @@ -2748,8 +2436,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1019 components: - pos: 19.5,-24.5 @@ -2757,8 +2443,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1020 components: - pos: 10.5,-12.5 @@ -2766,78 +2450,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1021 components: - pos: 9.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1022 components: - pos: 9.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1023 components: - pos: 9.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1024 components: - pos: 9.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1025 components: - pos: 9.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1026 components: - pos: 8.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1027 components: - pos: 7.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1028 components: - pos: 6.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1029 components: - pos: 5.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1030 components: - pos: 5.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1031 components: - pos: 5.5,-11.5 @@ -2845,232 +2507,166 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1032 components: - pos: 5.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1033 components: - pos: 6.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1034 components: - pos: 6.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1035 components: - pos: 6.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1036 components: - pos: 6.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1037 components: - pos: 10.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1038 components: - pos: 10.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1039 components: - pos: 10.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1040 components: - pos: 10.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1041 components: - pos: 10.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1042 components: - pos: 11.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1043 components: - pos: 12.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1044 components: - pos: 13.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1045 components: - pos: 14.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1046 components: - pos: 15.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1047 components: - pos: 16.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1048 components: - pos: 14.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1049 components: - pos: 14.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1050 components: - pos: 14.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1051 components: - pos: 14.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1052 components: - pos: 16.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1053 components: - pos: 16.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1054 components: - pos: 16.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1055 components: - pos: 16.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1056 components: - pos: 13.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1057 components: - pos: 13.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1058 components: - pos: 13.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1059 components: - pos: 13.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1060 components: - pos: 12.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1061 components: - pos: 14.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1062 components: - pos: 15.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1063 components: - pos: 16.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1064 components: - pos: 0.5,-5.5 @@ -3078,225 +2674,161 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1065 components: - pos: 1.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1066 components: - pos: 2.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1067 components: - pos: 2.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1068 components: - pos: 2.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1069 components: - pos: 2.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1070 components: - pos: 2.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1071 components: - pos: 2.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1072 components: - pos: 2.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1073 components: - pos: 2.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1074 components: - pos: 2.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1075 components: - pos: 2.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1076 components: - pos: 2.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1077 components: - pos: 2.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1078 components: - pos: 3.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1079 components: - pos: 4.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1080 components: - pos: 5.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1081 components: - pos: 6.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1082 components: - pos: 7.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1083 components: - pos: 8.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1084 components: - pos: 9.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1085 components: - pos: 2.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1086 components: - pos: 2.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1087 components: - pos: 2.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1088 components: - pos: 2.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1089 components: - pos: 3.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1090 components: - pos: 4.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1091 components: - pos: 5.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1092 components: - pos: 6.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1093 components: - pos: 7.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1094 components: - pos: 8.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1095 components: - pos: 9.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1100 components: - pos: 22.5,-5.5 @@ -3304,218 +2836,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1101 components: - pos: 21.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1102 components: - pos: 20.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1103 components: - pos: 20.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1104 components: - pos: 20.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1105 components: - pos: 20.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1106 components: - pos: 20.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1107 components: - pos: 19.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1108 components: - pos: 18.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1109 components: - pos: 17.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1110 components: - pos: 16.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1111 components: - pos: 15.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1112 components: - pos: 14.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1113 components: - pos: 13.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1114 components: - pos: 20.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1115 components: - pos: 20.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1116 components: - pos: 20.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1117 components: - pos: 20.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1118 components: - pos: 20.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1119 components: - pos: 20.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1120 components: - pos: 20.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1121 components: - pos: 20.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1122 components: - pos: 20.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1123 components: - pos: 20.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1124 components: - pos: 20.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1125 components: - pos: 19.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1126 components: - pos: 18.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1127 components: - pos: 17.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1128 components: - pos: 16.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1129 components: - pos: 13.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1130 components: - pos: 13.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1131 components: - pos: 22.5,6.5 @@ -3523,155 +2993,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1132 components: - pos: 21.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1133 components: - pos: 20.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1134 components: - pos: 20.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1135 components: - pos: 20.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1136 components: - pos: 20.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1137 components: - pos: 20.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1138 components: - pos: 19.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1139 components: - pos: 18.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1140 components: - pos: 17.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1141 components: - pos: 16.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1142 components: - pos: 15.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1143 components: - pos: 14.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1144 components: - pos: 13.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1145 components: - pos: 11.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1146 components: - pos: 11.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1147 components: - pos: 11.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1148 components: - pos: 11.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1149 components: - pos: 11.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1150 components: - pos: 11.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1151 components: - pos: 10.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1152 components: - pos: 12.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1153 components: - pos: 0.5,6.5 @@ -3679,351 +3105,251 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1154 components: - pos: 1.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1155 components: - pos: 2.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1156 components: - pos: 2.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1157 components: - pos: 2.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1158 components: - pos: 2.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1159 components: - pos: 2.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1160 components: - pos: 3.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1161 components: - pos: 4.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1162 components: - pos: 5.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1163 components: - pos: 6.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1164 components: - pos: 7.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1165 components: - pos: 8.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1166 components: - pos: 9.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1167 components: - pos: 2.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1168 components: - pos: 2.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1169 components: - pos: 2.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1170 components: - pos: 2.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1171 components: - pos: 2.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1172 components: - pos: 2.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1173 components: - pos: 2.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1174 components: - pos: 2.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1175 components: - pos: 2.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1176 components: - pos: 2.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1177 components: - pos: 2.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1178 components: - pos: 3.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1179 components: - pos: 4.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1180 components: - pos: 5.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1181 components: - pos: 6.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1182 components: - pos: 7.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1183 components: - pos: 8.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1184 components: - pos: 9.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1185 components: - pos: 13.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1186 components: - pos: 14.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1187 components: - pos: 15.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1188 components: - pos: 16.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1189 components: - pos: 17.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1190 components: - pos: 18.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1191 components: - pos: 19.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1192 components: - pos: 20.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1193 components: - pos: 20.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1194 components: - pos: 20.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1195 components: - pos: 20.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1196 components: - pos: 20.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1197 components: - pos: 20.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1198 components: - pos: 20.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1199 components: - pos: 20.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1200 components: - pos: 20.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1201 components: - pos: 20.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1202 components: - pos: 20.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1203 components: - pos: 11.5,15.5 @@ -4031,197 +3357,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1204 components: - pos: 11.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1205 components: - pos: 11.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1206 components: - pos: 11.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1207 components: - pos: 10.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1208 components: - pos: 9.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1209 components: - pos: 8.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1210 components: - pos: 7.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1211 components: - pos: 6.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1212 components: - pos: 6.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1213 components: - pos: 6.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1214 components: - pos: 6.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1215 components: - pos: 6.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1216 components: - pos: 6.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1217 components: - pos: 6.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1218 components: - pos: 6.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1219 components: - pos: 12.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1220 components: - pos: 13.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1221 components: - pos: 14.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1222 components: - pos: 15.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1223 components: - pos: 16.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1224 components: - pos: 16.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1225 components: - pos: 16.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1226 components: - pos: 16.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1227 components: - pos: 16.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1228 components: - pos: 16.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1229 components: - pos: 16.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1230 components: - pos: 16.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1277 components: - pos: 13.5,22.5 @@ -4229,330 +3499,236 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1278 components: - pos: 13.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1279 components: - pos: 13.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1280 components: - pos: 13.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1281 components: - pos: 14.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1282 components: - pos: 15.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1283 components: - pos: 16.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1284 components: - pos: 17.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1285 components: - pos: 17.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1286 components: - pos: 17.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1287 components: - pos: 17.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1288 components: - pos: 17.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1289 components: - pos: 17.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1290 components: - pos: 12.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1291 components: - pos: 11.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1292 components: - pos: 10.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1293 components: - pos: 9.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1294 components: - pos: 8.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1295 components: - pos: 7.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1296 components: - pos: 6.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1297 components: - pos: 5.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1298 components: - pos: 5.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1299 components: - pos: 5.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1300 components: - pos: 5.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1301 components: - pos: 5.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1302 components: - pos: 5.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1303 components: - pos: 8.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1304 components: - pos: 8.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1305 components: - pos: 8.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1306 components: - pos: 8.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1307 components: - pos: 8.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1308 components: - pos: 9.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1309 components: - pos: 10.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1310 components: - pos: 11.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1311 components: - pos: 12.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1312 components: - pos: 13.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1313 components: - pos: 14.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1314 components: - pos: 12.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1315 components: - pos: 11.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1316 components: - pos: 13.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1317 components: - pos: 13.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1318 components: - pos: 13.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1319 components: - pos: 9.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1320 components: - pos: 9.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1321 components: - pos: 9.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1805 components: - pos: 16.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1806 components: - pos: 6.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1807 components: - pos: 3.5,-23.5 @@ -4560,15 +3736,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1808 components: - pos: 3.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1809 components: - pos: 1.5,-15.5 @@ -4576,8 +3748,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1810 components: - pos: 1.5,15.5 @@ -4585,29 +3755,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1811 components: - pos: 4.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1812 components: - pos: 3.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1813 components: - pos: 4.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1814 components: - pos: 3.5,25.5 @@ -4615,15 +3777,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1815 components: - pos: 18.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1816 components: - pos: 19.5,25.5 @@ -4631,22 +3789,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1817 components: - pos: 18.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1818 components: - pos: 19.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1819 components: - pos: 21.5,16.5 @@ -4654,8 +3806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1820 components: - pos: 21.5,-14.5 @@ -4663,15 +3813,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1821 components: - pos: 19.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - proto: CableHV entities: - uid: 612 @@ -4681,8 +3827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 617 components: - pos: 7.5,-19.5 @@ -4690,8 +3834,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 618 components: - pos: 8.5,-19.5 @@ -4699,8 +3841,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 619 components: - pos: 9.5,-19.5 @@ -4708,8 +3848,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 620 components: - pos: 10.5,-19.5 @@ -4717,8 +3855,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 621 components: - pos: 11.5,-19.5 @@ -4726,8 +3862,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 622 components: - pos: 8.5,-20.5 @@ -4735,8 +3869,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 623 components: - pos: 7.5,-20.5 @@ -4744,8 +3876,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 624 components: - pos: 7.5,-21.5 @@ -4753,8 +3883,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 625 components: - pos: 8.5,-21.5 @@ -4762,99 +3890,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 628 components: - pos: 7.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 629 components: - pos: 8.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 630 components: - pos: 6.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 631 components: - pos: 6.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 632 components: - pos: 6.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 633 components: - pos: 6.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 634 components: - pos: 5.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 635 components: - pos: 5.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 636 components: - pos: 5.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 637 components: - pos: 5.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 638 components: - pos: 5.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 639 components: - pos: 5.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 640 components: - pos: 5.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 704 components: - pos: 9.5,-20.5 @@ -4862,92 +3962,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 725 components: - pos: 6.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 726 components: - pos: 7.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 727 components: - pos: 8.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 728 components: - pos: 9.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 729 components: - pos: 10.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 730 components: - pos: 11.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 731 components: - pos: 12.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 732 components: - pos: 12.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 733 components: - pos: 12.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 734 components: - pos: 12.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 735 components: - pos: 12.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 736 components: - pos: 11.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 737 components: - pos: 10.5,-13.5 @@ -4955,743 +4029,531 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 738 components: - pos: 13.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 739 components: - pos: 14.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 740 components: - pos: 15.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 741 components: - pos: 16.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 742 components: - pos: 17.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 743 components: - pos: 18.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 744 components: - pos: 19.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 745 components: - pos: 19.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 746 components: - pos: 20.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 747 components: - pos: 20.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 748 components: - pos: 20.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 749 components: - pos: 20.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 750 components: - pos: 20.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 751 components: - pos: 20.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 752 components: - pos: 20.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 753 components: - pos: 20.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 754 components: - pos: 20.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 755 components: - pos: 20.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 756 components: - pos: 20.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 757 components: - pos: 20.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 758 components: - pos: 20.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 759 components: - pos: 20.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 760 components: - pos: 20.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 761 components: - pos: 20.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 762 components: - pos: 20.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 763 components: - pos: 20.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 764 components: - pos: 20.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 765 components: - pos: 20.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 766 components: - pos: 20.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 767 components: - pos: 20.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 768 components: - pos: 20.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 769 components: - pos: 20.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 770 components: - pos: 20.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 771 components: - pos: 20.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 772 components: - pos: 20.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 773 components: - pos: 20.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 774 components: - pos: 20.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 775 components: - pos: 20.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 776 components: - pos: 20.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 777 components: - pos: 20.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 778 components: - pos: 20.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 779 components: - pos: 20.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 780 components: - pos: 20.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 781 components: - pos: 19.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 782 components: - pos: 18.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 783 components: - pos: 17.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 784 components: - pos: 16.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 785 components: - pos: 15.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 786 components: - pos: 14.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 787 components: - pos: 13.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 788 components: - pos: 12.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 789 components: - pos: 11.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 790 components: - pos: 10.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 791 components: - pos: 9.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 792 components: - pos: 8.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 793 components: - pos: 7.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 794 components: - pos: 6.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 795 components: - pos: 5.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 796 components: - pos: 4.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 797 components: - pos: 3.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 798 components: - pos: 2.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 799 components: - pos: 2.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 800 components: - pos: 2.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 801 components: - pos: 2.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 802 components: - pos: 2.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 803 components: - pos: 2.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 804 components: - pos: 2.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 805 components: - pos: 2.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 806 components: - pos: 2.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 807 components: - pos: 2.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 808 components: - pos: 2.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 809 components: - pos: 2.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 810 components: - pos: 2.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 811 components: - pos: 2.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 812 components: - pos: 2.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 813 components: - pos: 2.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 814 components: - pos: 2.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 815 components: - pos: 2.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 816 components: - pos: 2.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 817 components: - pos: 2.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 818 components: - pos: 2.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 819 components: - pos: 2.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 820 components: - pos: 2.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 821 components: - pos: 2.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 822 components: - pos: 2.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 823 components: - pos: 2.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 824 components: - pos: 2.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 825 components: - pos: 2.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 826 components: - pos: 2.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 827 components: - pos: 2.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 828 components: - pos: 2.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 829 components: - pos: 2.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 830 components: - pos: 2.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 831 components: - pos: 2.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 832 components: - pos: 2.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 833 components: - pos: 3.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 834 components: - pos: 3.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 835 components: - pos: 4.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 836 components: - pos: 3.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 837 components: - pos: 4.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 838 components: - pos: 5.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 839 components: - pos: 6.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 840 components: - pos: 7.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 841 components: - pos: 8.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 842 components: - pos: 9.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 843 components: - pos: 9.5,-3.5 @@ -5699,442 +4561,316 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 844 components: - pos: 10.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 845 components: - pos: 11.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 846 components: - pos: 12.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 847 components: - pos: 13.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 848 components: - pos: 14.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 849 components: - pos: 15.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 850 components: - pos: 16.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 851 components: - pos: 17.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 852 components: - pos: 18.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 853 components: - pos: 19.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 854 components: - pos: 10.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 855 components: - pos: 10.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 856 components: - pos: 10.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 857 components: - pos: 10.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 858 components: - pos: 10.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 859 components: - pos: 10.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 860 components: - pos: 9.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 861 components: - pos: 8.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 862 components: - pos: 7.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 863 components: - pos: 6.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 864 components: - pos: 5.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 865 components: - pos: 4.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 866 components: - pos: 3.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 867 components: - pos: 12.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 868 components: - pos: 12.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 869 components: - pos: 12.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 870 components: - pos: 12.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 871 components: - pos: 12.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 872 components: - pos: 12.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 873 components: - pos: 11.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 874 components: - pos: 13.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 875 components: - pos: 14.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 876 components: - pos: 15.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 877 components: - pos: 16.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 878 components: - pos: 17.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 879 components: - pos: 18.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 880 components: - pos: 19.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 881 components: - pos: 6.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 882 components: - pos: 6.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 883 components: - pos: 6.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 884 components: - pos: 6.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 885 components: - pos: 6.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 886 components: - pos: 6.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 887 components: - pos: 6.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 888 components: - pos: 6.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 889 components: - pos: 7.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 890 components: - pos: 8.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 891 components: - pos: 9.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 892 components: - pos: 10.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 893 components: - pos: 11.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 894 components: - pos: 12.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 895 components: - pos: 13.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 896 components: - pos: 14.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 897 components: - pos: 15.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 898 components: - pos: 16.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 899 components: - pos: 16.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 900 components: - pos: 16.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 901 components: - pos: 16.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 902 components: - pos: 16.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 903 components: - pos: 16.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 904 components: - pos: 16.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 905 components: - pos: 16.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 906 components: - pos: 11.5,10.5 @@ -6142,169 +4878,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 907 components: - pos: 17.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 908 components: - pos: 17.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 909 components: - pos: 17.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 910 components: - pos: 17.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 911 components: - pos: 17.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 912 components: - pos: 17.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 913 components: - pos: 16.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 914 components: - pos: 15.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 915 components: - pos: 14.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 916 components: - pos: 13.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 917 components: - pos: 12.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 918 components: - pos: 11.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 919 components: - pos: 10.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 920 components: - pos: 9.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 921 components: - pos: 8.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 922 components: - pos: 7.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 923 components: - pos: 6.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 924 components: - pos: 5.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 925 components: - pos: 5.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 926 components: - pos: 5.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 927 components: - pos: 5.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 928 components: - pos: 5.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 929 components: - pos: 5.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 930 components: - pos: 9.5,22.5 @@ -6312,8 +5000,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 931 components: - pos: 10.5,22.5 @@ -6321,8 +5007,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 932 components: - pos: 11.5,22.5 @@ -6330,8 +5014,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 933 components: - pos: 12.5,22.5 @@ -6339,8 +5021,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 934 components: - pos: 8.5,18.5 @@ -6348,8 +5028,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 935 components: - pos: 9.5,18.5 @@ -6357,8 +5035,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 936 components: - pos: 13.5,18.5 @@ -6366,8 +5042,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 937 components: - pos: 14.5,18.5 @@ -6375,8 +5049,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 938 components: - pos: 15.5,22.5 @@ -6384,8 +5056,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 939 components: - pos: 7.5,22.5 @@ -6393,22 +5063,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 940 components: - pos: 4.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 941 components: - pos: 4.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 942 components: - pos: 3.5,24.5 @@ -6416,8 +5080,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 943 components: - pos: 3.5,25.5 @@ -6425,8 +5087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 944 components: - pos: 3.5,26.5 @@ -6434,8 +5094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 945 components: - pos: 4.5,26.5 @@ -6443,8 +5101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 946 components: - pos: 4.5,27.5 @@ -6452,8 +5108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 947 components: - pos: 5.5,27.5 @@ -6461,8 +5115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 948 components: - pos: 6.5,27.5 @@ -6470,8 +5122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 949 components: - pos: 6.5,28.5 @@ -6479,8 +5129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 950 components: - pos: 7.5,28.5 @@ -6488,8 +5136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 951 components: - pos: 8.5,28.5 @@ -6497,8 +5143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 952 components: - pos: 9.5,28.5 @@ -6506,8 +5150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 953 components: - pos: 10.5,28.5 @@ -6515,8 +5157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 954 components: - pos: 11.5,28.5 @@ -6524,8 +5164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 955 components: - pos: 12.5,28.5 @@ -6533,8 +5171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 956 components: - pos: 13.5,28.5 @@ -6542,8 +5178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 957 components: - pos: 14.5,28.5 @@ -6551,8 +5185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 958 components: - pos: 15.5,28.5 @@ -6560,8 +5192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 959 components: - pos: 16.5,28.5 @@ -6569,8 +5199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 960 components: - pos: 16.5,27.5 @@ -6578,8 +5206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 961 components: - pos: 17.5,27.5 @@ -6587,8 +5213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 962 components: - pos: 18.5,27.5 @@ -6596,8 +5220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 963 components: - pos: 18.5,26.5 @@ -6605,8 +5227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 964 components: - pos: 19.5,26.5 @@ -6614,8 +5234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 965 components: - pos: 19.5,25.5 @@ -6623,8 +5241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 966 components: - pos: 19.5,24.5 @@ -6632,29 +5248,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 967 components: - pos: 18.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 968 components: - pos: 18.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 969 components: - pos: 4.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 970 components: - pos: 3.5,-22.5 @@ -6662,8 +5270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 971 components: - pos: 3.5,-23.5 @@ -6671,8 +5277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 972 components: - pos: 3.5,-24.5 @@ -6680,15 +5284,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2199 components: - pos: 5.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2321 components: - pos: 11.5,-20.5 @@ -6696,29 +5296,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2389 components: - pos: 17.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2390 components: - pos: 17.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2391 components: - pos: 17.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2392 components: - pos: 16.5,-20.5 @@ -6726,8 +5318,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2427 components: - pos: 8.5,4.5 @@ -6735,8 +5325,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableMV entities: - uid: 656 @@ -6746,15 +5334,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 657 components: - pos: 5.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 658 components: - pos: 16.5,-20.5 @@ -6762,8 +5346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 659 components: - pos: 16.5,-21.5 @@ -6771,8 +5353,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 660 components: - pos: 10.5,-12.5 @@ -6780,8 +5360,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 661 components: - pos: 10.5,-13.5 @@ -6789,8 +5367,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 662 components: - pos: 9.5,-3.5 @@ -6798,92 +5374,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 663 components: - pos: 9.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 664 components: - pos: 8.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 665 components: - pos: 7.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 666 components: - pos: 6.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 667 components: - pos: 5.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 668 components: - pos: 4.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 669 components: - pos: 3.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 670 components: - pos: 2.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 671 components: - pos: 1.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 672 components: - pos: 1.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 673 components: - pos: 1.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 674 components: - pos: 1.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 675 components: - pos: 0.5,-5.5 @@ -6891,71 +5441,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 676 components: - pos: 5.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 677 components: - pos: 6.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 678 components: - pos: 4.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 679 components: - pos: 3.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 680 components: - pos: 1.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 681 components: - pos: 2.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 682 components: - pos: 1.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 683 components: - pos: 1.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 684 components: - pos: 1.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 685 components: - pos: 0.5,6.5 @@ -6963,113 +5493,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 686 components: - pos: 10.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 687 components: - pos: 11.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 688 components: - pos: 12.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 689 components: - pos: 13.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 690 components: - pos: 14.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 691 components: - pos: 15.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 692 components: - pos: 16.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 693 components: - pos: 17.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 694 components: - pos: 18.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 695 components: - pos: 19.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 696 components: - pos: 20.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 697 components: - pos: 21.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 698 components: - pos: 21.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 699 components: - pos: 21.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 700 components: - pos: 21.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 701 components: - pos: 22.5,-5.5 @@ -7077,36 +5575,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 707 components: - pos: 21.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 708 components: - pos: 21.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 709 components: - pos: 21.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 710 components: - pos: 21.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 711 components: - pos: 22.5,6.5 @@ -7114,8 +5602,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 712 components: - pos: 11.5,15.5 @@ -7123,36 +5609,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 713 components: - pos: 11.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 714 components: - pos: 11.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 715 components: - pos: 11.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 716 components: - pos: 11.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 717 components: - pos: 11.5,10.5 @@ -7160,8 +5636,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 718 components: - pos: 9.5,22.5 @@ -7169,43 +5643,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 719 components: - pos: 9.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 720 components: - pos: 10.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 721 components: - pos: 11.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 722 components: - pos: 12.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 723 components: - pos: 13.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 724 components: - pos: 13.5,22.5 @@ -7213,50 +5675,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1231 components: - pos: 10.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1232 components: - pos: 9.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1233 components: - pos: 8.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1234 components: - pos: 7.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1235 components: - pos: 6.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1236 components: - pos: 5.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1237 components: - pos: 4.5,11.5 @@ -7264,8 +5712,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1238 components: - pos: 4.5,10.5 @@ -7273,8 +5719,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1239 components: - pos: 4.5,12.5 @@ -7282,8 +5726,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1240 components: - pos: 8.5,10.5 @@ -7291,50 +5733,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1241 components: - pos: 12.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1242 components: - pos: 13.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1243 components: - pos: 14.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1244 components: - pos: 15.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1245 components: - pos: 16.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1246 components: - pos: 17.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1247 components: - pos: 18.5,11.5 @@ -7342,8 +5770,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1248 components: - pos: 18.5,10.5 @@ -7351,8 +5777,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1249 components: - pos: 18.5,12.5 @@ -7360,8 +5784,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1250 components: - pos: 14.5,10.5 @@ -7369,29 +5791,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1251 components: - pos: 14.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1252 components: - pos: 14.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1253 components: - pos: 14.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1254 components: - pos: 14.5,15.5 @@ -7399,8 +5813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1255 components: - pos: 13.5,15.5 @@ -7408,8 +5820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1256 components: - pos: 15.5,15.5 @@ -7417,29 +5827,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1257 components: - pos: 8.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1258 components: - pos: 8.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1259 components: - pos: 8.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1260 components: - pos: 8.5,15.5 @@ -7447,8 +5849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1261 components: - pos: 7.5,15.5 @@ -7456,8 +5856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1262 components: - pos: 9.5,15.5 @@ -7465,43 +5863,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1263 components: - pos: 17.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1264 components: - pos: 17.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1265 components: - pos: 17.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1266 components: - pos: 17.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1267 components: - pos: 17.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1268 components: - pos: 18.5,6.5 @@ -7509,8 +5895,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1269 components: - pos: 18.5,5.5 @@ -7518,43 +5902,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1270 components: - pos: 5.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1271 components: - pos: 5.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1272 components: - pos: 5.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1273 components: - pos: 5.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1274 components: - pos: 5.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1275 components: - pos: 4.5,6.5 @@ -7562,8 +5934,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1276 components: - pos: 4.5,5.5 @@ -7571,8 +5941,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2425 components: - pos: 18.5,9.5 @@ -7580,8 +5948,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2426 components: - pos: 4.5,9.5 @@ -7589,22 +5955,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2428 components: - pos: 7.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2429 components: - pos: 8.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2430 components: - pos: 8.5,4.5 @@ -7612,92 +5972,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2431 components: - pos: 9.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2432 components: - pos: 10.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2433 components: - pos: 11.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2434 components: - pos: 12.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2435 components: - pos: 13.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2436 components: - pos: 14.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2437 components: - pos: 15.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2438 components: - pos: 16.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2439 components: - pos: 17.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2440 components: - pos: 18.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2441 components: - pos: 19.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2442 components: - pos: 20.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - proto: CableTerminal entities: - uid: 626 @@ -9001,6 +7335,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: CrowbarRed entities: @@ -13987,8 +12322,6 @@ entities: - pos: 5.472954,-6.515773 parent: 1 type: Transform - - lastUseAttempt: 60.8172325 - type: NetworkConfigurator - proto: Ointment entities: - uid: 2074 @@ -14839,61 +13172,41 @@ entities: - pos: 9.5,4.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2289 - type: SignalReceiver + - links: + - 2289 + type: DeviceLinkSink - uid: 2279 components: - pos: 10.5,4.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2289 - type: SignalReceiver + - links: + - 2289 + type: DeviceLinkSink - uid: 2280 components: - pos: 11.5,4.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2289 - type: SignalReceiver + - links: + - 2289 + type: DeviceLinkSink - uid: 2281 components: - pos: 12.5,4.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2289 - type: SignalReceiver + - links: + - 2289 + type: DeviceLinkSink - uid: 2282 components: - pos: 13.5,4.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2289 - type: SignalReceiver + - links: + - 2289 + type: DeviceLinkSink - proto: ShuttleWindow entities: - uid: 2 @@ -15441,196 +13754,190 @@ entities: pos: 15.5,21.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2243 - - port: Toggle - uid: 2244 - - port: Toggle - uid: 2245 - - port: Toggle - uid: 2246 - - port: Toggle - uid: 2247 - - port: Toggle - uid: 2248 - - port: Toggle - uid: 2292 - - port: Toggle - uid: 2291 - - port: Toggle - uid: 2290 - type: SignalTransmitter + - linkedPorts: + 2243: + - Pressed: Toggle + 2244: + - Pressed: Toggle + 2245: + - Pressed: Toggle + 2246: + - Pressed: Toggle + 2247: + - Pressed: Toggle + 2248: + - Pressed: Toggle + 2292: + - Pressed: Toggle + 2291: + - Pressed: Toggle + 2290: + - Pressed: Toggle + type: DeviceLinkSource - uid: 2275 components: - rot: -1.5707963267948966 rad pos: 13.5,23.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2273 - - port: Toggle - uid: 2272 - - port: Toggle - uid: 2271 - - port: Toggle - uid: 2270 - - port: Toggle - uid: 2269 - - port: Toggle - uid: 2268 - - port: Toggle - uid: 2267 - - port: Toggle - uid: 2266 - - port: Toggle - uid: 2265 - - port: Toggle - uid: 2264 - - port: Toggle - uid: 2263 - - port: Toggle - uid: 2262 - - port: Toggle - uid: 2261 - - port: Toggle - uid: 2260 - - port: Toggle - uid: 2259 - - port: Toggle - uid: 2258 - - port: Toggle - uid: 2257 - - port: Toggle - uid: 2256 - - port: Toggle - uid: 2255 - - port: Toggle - uid: 2254 - - port: Toggle - uid: 2253 - - port: Toggle - uid: 2252 - - port: Toggle - uid: 2251 - - port: Toggle - uid: 2250 - - port: Toggle - uid: 2249 - type: SignalTransmitter + - linkedPorts: + 2273: + - Pressed: Toggle + 2272: + - Pressed: Toggle + 2271: + - Pressed: Toggle + 2270: + - Pressed: Toggle + 2269: + - Pressed: Toggle + 2268: + - Pressed: Toggle + 2267: + - Pressed: Toggle + 2266: + - Pressed: Toggle + 2265: + - Pressed: Toggle + 2264: + - Pressed: Toggle + 2263: + - Pressed: Toggle + 2262: + - Pressed: Toggle + 2261: + - Pressed: Toggle + 2260: + - Pressed: Toggle + 2259: + - Pressed: Toggle + 2258: + - Pressed: Toggle + 2257: + - Pressed: Toggle + 2256: + - Pressed: Toggle + 2255: + - Pressed: Toggle + 2254: + - Pressed: Toggle + 2253: + - Pressed: Toggle + 2252: + - Pressed: Toggle + 2251: + - Pressed: Toggle + 2250: + - Pressed: Toggle + 2249: + - Pressed: Toggle + type: DeviceLinkSource - uid: 2276 components: - rot: -1.5707963267948966 rad pos: 7.5,10.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2231 - - port: Toggle - uid: 2232 - - port: Toggle - uid: 2233 - - port: Toggle - uid: 2234 - - port: Toggle - uid: 2235 - - port: Toggle - uid: 2236 - - port: Toggle - uid: 2237 - - port: Toggle - uid: 2238 - - port: Toggle - uid: 2239 - - port: Toggle - uid: 2240 - - port: Toggle - uid: 2241 - - port: Toggle - uid: 2242 - - port: Toggle - uid: 2451 - - port: Toggle - uid: 2452 - type: SignalTransmitter + - linkedPorts: + 2231: + - Pressed: Toggle + 2232: + - Pressed: Toggle + 2233: + - Pressed: Toggle + 2234: + - Pressed: Toggle + 2235: + - Pressed: Toggle + 2236: + - Pressed: Toggle + 2237: + - Pressed: Toggle + 2238: + - Pressed: Toggle + 2239: + - Pressed: Toggle + 2240: + - Pressed: Toggle + 2241: + - Pressed: Toggle + 2242: + - Pressed: Toggle + 2451: + - Pressed: Toggle + 2452: + - Pressed: Toggle + type: DeviceLinkSource - uid: 2277 components: - rot: 1.5707963267948966 rad pos: 15.5,10.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2242 - - port: Toggle - uid: 2241 - - port: Toggle - uid: 2240 - - port: Toggle - uid: 2239 - - port: Toggle - uid: 2238 - - port: Toggle - uid: 2237 - - port: Toggle - uid: 2236 - - port: Toggle - uid: 2235 - - port: Toggle - uid: 2234 - - port: Toggle - uid: 2233 - - port: Toggle - uid: 2232 - - port: Toggle - uid: 2231 - - port: Toggle - uid: 2451 - - port: Toggle - uid: 2452 - type: SignalTransmitter + - linkedPorts: + 2242: + - Pressed: Toggle + 2241: + - Pressed: Toggle + 2240: + - Pressed: Toggle + 2239: + - Pressed: Toggle + 2238: + - Pressed: Toggle + 2237: + - Pressed: Toggle + 2236: + - Pressed: Toggle + 2235: + - Pressed: Toggle + 2234: + - Pressed: Toggle + 2233: + - Pressed: Toggle + 2232: + - Pressed: Toggle + 2231: + - Pressed: Toggle + 2451: + - Pressed: Toggle + 2452: + - Pressed: Toggle + type: DeviceLinkSource - uid: 2288 components: - pos: 15.5,-8.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2283 - - port: Toggle - uid: 2284 - - port: Toggle - uid: 2286 - - port: Toggle - uid: 2285 - - port: Toggle - uid: 2287 - type: SignalTransmitter + - linkedPorts: + 2283: + - Pressed: Toggle + 2284: + - Pressed: Toggle + 2286: + - Pressed: Toggle + 2285: + - Pressed: Toggle + 2287: + - Pressed: Toggle + type: DeviceLinkSource - uid: 2289 components: - pos: 10.5,7.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2278 - - port: Toggle - uid: 2279 - - port: Toggle - uid: 2280 - - port: Toggle - uid: 2281 - - port: Toggle - uid: 2282 - type: SignalTransmitter + - linkedPorts: + 2278: + - Pressed: Toggle + 2279: + - Pressed: Toggle + 2280: + - Pressed: Toggle + 2281: + - Pressed: Toggle + 2282: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignBar entities: - uid: 2416 @@ -17824,35 +16131,6 @@ entities: - pos: 13.5,4.5 parent: 1 type: Transform -- proto: WindoorChemistryLocked - entities: - - uid: 1370 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 1 - type: Transform -- proto: WindoorCommandLocked - entities: - - uid: 1369 - components: - - rot: 3.141592653589793 rad - pos: 9.5,24.5 - parent: 1 - type: Transform -- proto: WindoorEngineeringLocked - entities: - - uid: 1330 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-25.5 - parent: 1 - type: Transform - - uid: 1331 - components: - - pos: 10.5,-21.5 - parent: 1 - type: Transform - proto: WindoorSecure entities: - uid: 1371 @@ -17869,7 +16147,36 @@ entities: pos: 16.5,-25.5 parent: 1 type: Transform -- proto: WindoorSecurityLocked +- proto: WindoorSecureChemistryLocked + entities: + - uid: 1370 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 1 + type: Transform +- proto: WindoorSecureCommandLocked + entities: + - uid: 1369 + components: + - rot: 3.141592653589793 rad + pos: 9.5,24.5 + parent: 1 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 1330 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-25.5 + parent: 1 + type: Transform + - uid: 1331 + components: + - pos: 10.5,-21.5 + parent: 1 + type: Transform +- proto: WindoorSecureSecurityLocked entities: - uid: 1367 components: diff --git a/Resources/Maps/Shuttles/emergency_rod.yml b/Resources/Maps/Shuttles/emergency_rod.yml index 3107e88183..9b3e8e4d36 100644 --- a/Resources/Maps/Shuttles/emergency_rod.yml +++ b/Resources/Maps/Shuttles/emergency_rod.yml @@ -63,7 +63,7 @@ entities: color: '#DE3A3A96' id: Arrows decals: - 120: -2,-1 + 117: -2,-1 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -132,26 +132,26 @@ entities: 29: -2,-11 30: 0,0 31: 0,-1 - 94: -6,-2 - 95: -6,-1 - 96: -6,0 - 97: -6,1 - 98: 2,1 - 99: 2,-1 - 100: 2,0 - 101: 2,-2 - 102: -5,-12 - 103: -4,-12 - 110: -7,16 - 111: -7,15 - 112: -7,14 - 113: -7,13 - 114: 3,13 - 115: 3,14 - 116: 3,15 - 117: 3,16 - 118: -2,-2 - 119: -2,0 + 91: -6,-2 + 92: -6,-1 + 93: -6,0 + 94: -6,1 + 95: 2,1 + 96: 2,-1 + 97: 2,0 + 98: 2,-2 + 99: -5,-12 + 100: -4,-12 + 107: -7,16 + 108: -7,15 + 109: -7,14 + 110: -7,13 + 111: 3,13 + 112: 3,14 + 113: 3,15 + 114: 3,16 + 115: -2,-2 + 116: -2,0 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' @@ -163,82 +163,82 @@ entities: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 68: 2,20 - 72: 3,19 + 65: 2,20 + 69: 3,19 - node: angle: 6.283185307179586 rad color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 67: -6,20 - 71: -7,19 + 64: -6,20 + 68: -7,19 - node: angle: 6.283185307179586 rad color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 70: 2,19 + 67: 2,19 - node: angle: 6.283185307179586 rad color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 69: -6,19 + 66: -6,19 - node: angle: 6.283185307179586 rad color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 73: 3,18 + 70: 3,18 - node: angle: 6.283185307179586 rad color: '#52B4E9FF' id: BrickTileWhiteLineE decals: - 89: -3,7 + 86: -3,7 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 105: -3,-12 - 106: -3,-11 - 107: -3,-10 + 102: -3,-12 + 103: -3,-11 + 104: -3,-10 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 108: -6,16 - 109: 2,16 + 105: -6,16 + 106: 2,16 - node: angle: 6.283185307179586 rad color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 60: -5,20 - 61: -4,20 - 62: -3,20 - 63: -2,20 - 64: -1,20 - 65: 0,20 - 66: 1,20 + 57: -5,20 + 58: -4,20 + 59: -3,20 + 60: -2,20 + 61: -1,20 + 62: 0,20 + 63: 1,20 - node: angle: 6.283185307179586 rad color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 55: -4,1 - 56: -3,1 - 57: -1,1 - 58: 0,1 - 59: -2,1 + 52: -4,1 + 53: -3,1 + 54: -1,1 + 55: 0,1 + 56: -2,1 - node: angle: 6.283185307179586 rad color: '#DE3A3A96' id: BrickTileWhiteLineS decals: 49: -2,3 - 52: -1,-2 - 53: 0,-2 + 50: -1,-2 + 51: 0,-2 - node: angle: 6.283185307179586 rad color: '#EFB34196' @@ -251,46 +251,46 @@ entities: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 74: -7,18 + 71: -7,18 - node: angle: 6.283185307179586 rad color: '#52B4E996' id: BrickTileWhiteLineW decals: - 75: -1,9 - 76: -1,8 - 77: -1,7 - 78: -1,6 + 72: -1,9 + 73: -1,8 + 74: -1,7 + 75: -1,6 - node: angle: 9.42477796076938 rad color: '#52B4E996' id: BrickTileWhiteLineW decals: - 79: 2,8 - 80: 2,7 - 81: 2,9 + 76: 2,8 + 77: 2,7 + 78: 2,9 - node: angle: 6.283185307179586 rad color: '#52B4E9FF' id: BrickTileWhiteLineW decals: - 85: -1,6 - 86: -1,7 - 87: -1,9 - 88: -1,8 + 82: -1,6 + 83: -1,7 + 84: -1,9 + 85: -1,8 - node: angle: 9.42477796076938 rad color: '#52B4E9FF' id: BrickTileWhiteLineW decals: - 82: 2,9 - 83: 2,8 - 84: 2,7 + 79: 2,9 + 80: 2,8 + 81: 2,7 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 104: -6,-12 + 101: -6,-12 - node: angle: 6.283185307179586 rad color: '#EFB34196' @@ -302,36 +302,36 @@ entities: color: '#DE3A3A96' id: CheckerNESW decals: - 121: -3,-2 - 122: -4,-2 - 123: -4,-1 - 124: -3,-1 - 125: -3,0 - 126: -4,0 + 118: -3,-2 + 119: -4,-2 + 120: -4,-1 + 121: -3,-1 + 122: -3,0 + 123: -4,0 - node: angle: 6.283185307179586 rad color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 92: 1,7 + 89: 1,7 - node: angle: 6.283185307179586 rad color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 93: 0,8 + 90: 0,8 - node: angle: 6.283185307179586 rad color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 91: 1,8 + 88: 1,8 - node: angle: 6.283185307179586 rad color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 90: 0,7 + 87: 0,7 type: DecalGrid - version: 2 data: diff --git a/Resources/Maps/Shuttles/emergency_transit.yml b/Resources/Maps/Shuttles/emergency_transit.yml index 9441ccf01b..32508e7d5a 100644 --- a/Resources/Maps/Shuttles/emergency_transit.yml +++ b/Resources/Maps/Shuttles/emergency_transit.yml @@ -46,8 +46,7 @@ entities: - fixtures: {} type: Fixtures - type: OccluderTree - - nextUpdate: -307.6002253 - type: SpreaderGrid + - type: SpreaderGrid - type: Shuttle - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg @@ -306,6 +305,7 @@ entities: chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay + - type: GridPathfinding - proto: AirAlarm entities: - uid: 3 @@ -490,15 +490,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21 components: - pos: 11.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 22 components: - pos: 8.5,-17.5 @@ -506,36 +502,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23 components: - pos: 15.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 24 components: - pos: 2.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 25 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 26 components: - pos: 13.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 27 components: - pos: 8.5,-17.5 @@ -543,141 +529,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 28 components: - pos: 7.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 29 components: - pos: 7.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 30 components: - pos: 7.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 31 components: - pos: 7.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 32 components: - pos: 6.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 33 components: - pos: 13.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 34 components: - pos: 13.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 35 components: - pos: 13.5,-12.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 36 components: - pos: 13.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 37 components: - pos: 12.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 38 components: - pos: 11.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 39 components: - pos: 10.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 40 components: - pos: 9.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 41 components: - pos: 9.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 42 components: - pos: 9.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 43 components: - pos: 9.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 44 components: - pos: 9.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 45 components: - pos: 8.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 46 components: - pos: 7.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 47 components: - pos: 9.5,-2.5 @@ -685,29 +631,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 48 components: - pos: 8.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 49 components: - pos: 9.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 50 components: - pos: 9.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 51 components: - pos: 8.5,-2.5 @@ -715,15 +653,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 52 components: - pos: 7.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 53 components: - pos: 6.5,-2.5 @@ -731,29 +665,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 54 components: - pos: 5.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 55 components: - pos: 4.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 56 components: - pos: 4.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 57 components: - pos: 14.5,-10.5 @@ -761,8 +687,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 58 components: - pos: 15.5,-10.5 @@ -770,8 +694,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 59 components: - pos: 16.5,-10.5 @@ -779,15 +701,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 60 components: - pos: 16.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 61 components: - pos: 16.5,-8.5 @@ -795,15 +713,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 62 components: - pos: 16.5,-7.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 63 components: - pos: 16.5,-6.5 @@ -811,8 +725,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 64 components: - pos: 15.5,-6.5 @@ -820,8 +732,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 65 components: - pos: 14.5,-6.5 @@ -829,78 +739,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 66 components: - pos: 13.5,-6.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 67 components: - pos: 13.5,-5.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 68 components: - pos: 13.5,-4.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 69 components: - pos: 13.5,-3.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 70 components: - pos: 13.5,-2.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 71 components: - pos: 13.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 72 components: - pos: 12.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 73 components: - pos: 11.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 74 components: - pos: 11.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 75 components: - pos: 11.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 76 components: - pos: 2.5,-8.5 @@ -908,15 +796,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 77 components: - pos: 2.5,-9.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 78 components: - pos: 2.5,-10.5 @@ -924,8 +808,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 79 components: - pos: 3.5,-10.5 @@ -933,8 +815,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 80 components: - pos: 4.5,-10.5 @@ -942,22 +822,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 81 components: - pos: 5.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 82 components: - pos: 5.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 83 components: - pos: 4.5,-10.5 @@ -965,43 +839,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 84 components: - pos: 9.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 85 components: - pos: 6.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 86 components: - pos: 7.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 87 components: - pos: 8.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 88 components: - pos: 10.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 89 components: - pos: 11.5,-10.5 @@ -1009,8 +871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 90 components: - pos: 12.5,-10.5 @@ -1018,22 +878,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 91 components: - pos: 13.5,-11.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 92 components: - pos: 10.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 93 components: - pos: 9.5,-21.5 @@ -1041,43 +895,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 94 components: - pos: 14.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 95 components: - pos: 14.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 96 components: - pos: 11.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 97 components: - pos: 11.5,-14.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 98 components: - pos: 11.5,-13.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 99 components: - pos: 3.5,-6.5 @@ -1085,8 +927,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 100 components: - pos: 2.5,-6.5 @@ -1094,15 +934,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 101 components: - pos: 13.5,-8.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 102 components: - pos: 3.5,-5.5 @@ -1110,8 +946,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 103 components: - pos: 3.5,-2.5 @@ -1119,8 +953,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 104 components: - pos: 3.5,-3.5 @@ -1128,22 +960,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 105 components: - pos: 4.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 106 components: - pos: 4.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 107 components: - pos: 4.5,1.5 @@ -1151,8 +977,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 108 components: - pos: 3.5,0.5 @@ -1160,43 +984,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 109 components: - pos: 13.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 110 components: - pos: 14.5,-1.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 111 components: - pos: 14.5,-0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 112 components: - pos: 14.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 113 components: - pos: 14.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 114 components: - pos: 15.5,0.5 @@ -1204,8 +1016,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 115 components: - pos: 15.5,-5.5 @@ -1213,8 +1023,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 116 components: - pos: 15.5,-3.5 @@ -1222,8 +1030,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 117 components: - pos: 15.5,-2.5 @@ -1231,8 +1037,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 118 components: - pos: 15.5,-1.5 @@ -1240,8 +1044,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 119 components: - pos: 14.5,-11.5 @@ -1249,8 +1051,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 120 components: - pos: 14.5,-15.5 @@ -1258,22 +1058,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 121 components: - pos: 13.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 122 components: - pos: 12.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 123 components: - pos: 4.5,-15.5 @@ -1281,43 +1075,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 124 components: - pos: 5.5,-15.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 125 components: - pos: 5.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 126 components: - pos: 5.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 127 components: - pos: 5.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 128 components: - pos: 6.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 129 components: - pos: 3.5,-15.5 @@ -1325,8 +1107,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 130 components: - pos: 3.5,-21.5 @@ -1334,29 +1114,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 131 components: - pos: 3.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 132 components: - pos: 4.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 133 components: - pos: 5.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 134 components: - pos: 7.5,-21.5 @@ -1364,8 +1136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 135 components: - pos: 8.5,-21.5 @@ -1373,8 +1143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 136 components: - pos: 3.5,-11.5 @@ -1382,8 +1150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 428 components: - pos: 14.5,-16.5 @@ -1391,8 +1157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 471 components: - pos: 15.5,-15.5 @@ -1400,8 +1164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 549 components: - pos: 10.5,-21.5 @@ -1409,8 +1171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 550 components: - pos: 11.5,-21.5 @@ -1418,8 +1178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 551 components: - pos: 12.5,-21.5 @@ -1427,8 +1185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 552 components: - pos: 13.5,-21.5 @@ -1436,8 +1192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 553 components: - pos: 14.5,-21.5 @@ -1445,8 +1199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 554 components: - pos: 14.5,-20.5 @@ -1454,15 +1206,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 555 components: - pos: 14.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 556 components: - pos: 15.5,-21.5 @@ -1470,29 +1218,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 562 components: - pos: 10.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 563 components: - pos: 9.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 564 components: - pos: 8.5,0.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 570 components: - pos: 12.5,-16.5 @@ -1500,36 +1240,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 571 components: - pos: 12.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 572 components: - pos: 12.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 573 components: - pos: 12.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 574 components: - pos: 12.5,-20.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - proto: CableHV entities: - uid: 137 @@ -1537,29 +1267,21 @@ entities: - pos: 15.5,-19.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 139 components: - pos: 15.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 299 components: - pos: 15.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 576 components: - pos: 15.5,-18.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - proto: CableMV entities: - uid: 140 @@ -1569,8 +1291,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 141 components: - pos: 8.5,-12.5 @@ -1578,8 +1298,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 142 components: - pos: 8.5,-13.5 @@ -1587,8 +1305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 143 components: - pos: 8.5,-14.5 @@ -1596,15 +1312,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 144 components: - pos: 8.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 145 components: - pos: 8.5,-15.5 @@ -1612,15 +1324,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 146 components: - pos: 15.5,-17.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 147 components: - pos: 12.5,-10.5 @@ -1628,8 +1336,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 148 components: - pos: 14.5,-16.5 @@ -1637,8 +1343,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 149 components: - pos: 13.5,-16.5 @@ -1646,8 +1350,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 150 components: - pos: 12.5,-16.5 @@ -1655,8 +1357,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 151 components: - pos: 11.5,-16.5 @@ -1664,8 +1364,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 152 components: - pos: 10.5,-16.5 @@ -1673,15 +1371,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 153 components: - pos: 9.5,-16.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 154 components: - pos: 8.5,-17.5 @@ -1689,8 +1383,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 155 components: - pos: 8.5,-16.5 @@ -1698,8 +1390,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 156 components: - pos: 11.5,-10.5 @@ -1707,29 +1397,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 157 components: - pos: 10.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 158 components: - pos: 9.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 159 components: - pos: 13.5,-10.5 parent: 2 type: Transform - - fixtures: {} - type: Fixtures - uid: 160 components: - pos: 15.5,-16.5 @@ -1737,8 +1419,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: ChairOfficeLight entities: - uid: 161 @@ -2018,8 +1698,6 @@ entities: - pos: 8.598151,-3.4971018 parent: 2 type: Transform - - nextAttack: 401.8711134 - type: MeleeWeapon - proto: ExtinguisherCabinetFilled entities: - uid: 193 @@ -2176,15 +1854,11 @@ entities: - pos: 11.444105,-11.399542 parent: 2 type: Transform - - nextAttack: 756.8198121 - type: MeleeWeapon - uid: 209 components: - pos: 11.787855,-11.508917 parent: 2 type: Transform - - nextAttack: 757.7026162 - type: MeleeWeapon - proto: FlashlightSeclite entities: - uid: 210 @@ -2613,6 +2287,8 @@ entities: pos: 16.5,-16.5 parent: 2 type: Transform + - enabled: True + type: AmbientSound - proto: GasPipeTJunction entities: - uid: 279 @@ -3027,8 +2703,6 @@ entities: pos: 14.5,-17.5 parent: 2 type: Transform - - nextFire: 560.5758072 - type: Thruster - proto: InflatableDoorStack entities: - uid: 342 @@ -3120,8 +2794,6 @@ entities: - pos: 7.3750105,0.676074 parent: 2 type: Transform - - nextAttack: 5292.589895 - type: MeleeWeapon - proto: PortableScrubber entities: - uid: 354 @@ -3716,108 +3388,80 @@ entities: pos: 15.5,-21.5 parent: 2 type: Transform - - nextFire: 2958.6249795 - type: Thruster - uid: 443 components: - rot: 3.141592653589793 rad pos: 15.5,-3.5 parent: 2 type: Transform - - nextFire: 2947.8100301 - type: Thruster - uid: 444 components: - pos: 15.5,-5.5 parent: 2 type: Transform - - nextFire: 2948.9810177 - type: Thruster - uid: 445 components: - rot: -1.5707963267948966 rad pos: 15.5,0.5 parent: 2 type: Transform - - nextFire: 2952.4519556 - type: Thruster - uid: 446 components: - rot: 1.5707963267948966 rad pos: 3.5,0.5 parent: 2 type: Transform - - nextFire: 2953.9526458 - type: Thruster - uid: 447 components: - rot: 1.5707963267948966 rad pos: 3.5,-15.5 parent: 2 type: Transform - - nextFire: 2943.7259326 - type: Thruster - uid: 448 components: - rot: 1.5707963267948966 rad pos: 3.5,-11.5 parent: 2 type: Transform - - nextFire: 2944.2088789 - type: Thruster - uid: 449 components: - rot: -1.5707963267948966 rad pos: 15.5,-11.5 parent: 2 type: Transform - - nextFire: 2941.9575691 - type: Thruster - uid: 450 components: - rot: -1.5707963267948966 rad pos: 15.5,-15.5 parent: 2 type: Transform - - nextFire: 2941.4751144 - type: Thruster - uid: 451 components: - pos: 3.5,-5.5 parent: 2 type: Transform - - nextFire: 2945.8249411 - type: Thruster - uid: 452 components: - rot: 3.141592653589793 rad pos: 3.5,-3.5 parent: 2 type: Transform - - nextFire: 2947.0469724 - type: Thruster - uid: 453 components: - pos: 14.5,1.5 parent: 2 type: Transform - - nextFire: 2955.6710566 - type: Thruster - uid: 454 components: - pos: 4.5,1.5 parent: 2 type: Transform - - nextFire: 2955.2049955 - type: Thruster - uid: 455 components: - rot: 3.141592653589793 rad pos: 3.5,-21.5 parent: 2 type: Transform - - nextFire: 2958.1409552 - type: Thruster - proto: VendingMachineBooze entities: - uid: 456 @@ -3827,8 +3471,6 @@ entities: - pos: 4.5,-1.5 parent: 2 type: Transform - - nextEmpEject: 1934.1599486 - type: VendingMachine - proto: VendingMachineMedical entities: - uid: 458 @@ -3838,8 +3480,6 @@ entities: - pos: 7.5,-3.5 parent: 2 type: Transform - - nextEmpEject: 3285.3349356 - type: VendingMachine - proto: VendingMachineSec entities: - uid: 459 @@ -3849,8 +3489,6 @@ entities: - pos: 13.5,-11.5 parent: 2 type: Transform - - nextEmpEject: -47.4476933 - type: VendingMachine - proto: WallShuttle entities: - uid: 316 @@ -4312,7 +3950,7 @@ entities: - pos: 11.5,0.5 parent: 2 type: Transform -- proto: WindoorEngineeringLocked +- proto: WindoorSecureEngineeringLocked entities: - uid: 545 components: @@ -4320,7 +3958,7 @@ entities: pos: 14.5,-18.5 parent: 2 type: Transform -- proto: WindoorSecurityLocked +- proto: WindoorSecureSecurityLocked entities: - uid: 546 components: diff --git a/Resources/Maps/Shuttles/escape_pod_small.yml b/Resources/Maps/Shuttles/escape_pod_small.yml index d6d9fbdae6..066470ccd3 100644 --- a/Resources/Maps/Shuttles/escape_pod_small.yml +++ b/Resources/Maps/Shuttles/escape_pod_small.yml @@ -1,12 +1,12 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space - 61: FloorShuttleBlue - 62: FloorShuttleOrange - 93: Lattice - 94: Plating + 62: FloorShuttleBlue + 63: FloorShuttleOrange + 94: Lattice + 95: Plating entities: - proto: "" entities: @@ -20,16 +20,16 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAPQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAPgAAAA== 0,0: ind: 0,0 - tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -37,7 +37,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - id: Empty type: BecomesStation - type: OccluderTree @@ -98,6 +99,7 @@ entities: - type: GasTileOverlay - type: RadiationGridResistance - type: SpreaderGrid + - type: GridPathfinding - proto: AirlockGlassShuttle entities: - uid: 12 @@ -105,7 +107,6 @@ entities: - pos: -0.5,-1.5 parent: 29 type: Transform - - proto: APCBasic entities: - uid: 15 @@ -195,16 +196,12 @@ entities: pos: -0.5,-0.5 parent: 29 type: Transform - - bodyType: Static - type: Physics - uid: 27 components: - rot: 3.141592653589793 rad pos: -0.5,0.5 parent: 29 type: Transform - - bodyType: Static - type: Physics - proto: GeneratorWallmountAPU entities: - uid: 13 @@ -251,16 +248,12 @@ entities: pos: -1.5,-1.5 parent: 29 type: Transform - - bodyType: Static - type: Physics - uid: 11 components: - rot: 3.141592653589793 rad pos: 0.5,-1.5 parent: 29 type: Transform - - bodyType: Static - type: Physics - proto: WallShuttle entities: - uid: 1 diff --git a/Resources/Maps/Shuttles/pirate.yml b/Resources/Maps/Shuttles/pirate.yml index 3f7882feeb..faf091665f 100644 --- a/Resources/Maps/Shuttles/pirate.yml +++ b/Resources/Maps/Shuttles/pirate.yml @@ -4,14 +4,14 @@ meta: tilemap: 0: Space 12: FloorBar - 22: FloorDark - 58: FloorReinforced - 60: FloorShowroom - 68: FloorSteel - 78: FloorTechMaint - 91: FloorWood - 93: Lattice - 94: Plating + 23: FloorDark + 59: FloorReinforced + 61: FloorShowroom + 69: FloorSteel + 79: FloorTechMaint + 92: FloorWood + 94: Lattice + 95: Plating entities: - proto: "" entities: @@ -24,16 +24,16 @@ entities: - chunks: -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAAAMAAAAXgAAAF4AAAAWAAAAFgAAABYAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAAAXgAAAEQAAABeAAAAFgAAABYAAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAF4AAABEAAAAXgAAABYAAAAWAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAABeAAAARAAAAF4AAAAWAAAAFgAAABYAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAARAAAAF4AAABeAAAAFgAAABYAAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAWwAAAF4AAABeAAAAFgAAABYAAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABbAAAAWwAAAFsAAABbAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAWwAAAFsAAABbAAAAWwAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAFsAAABbAAAAWwAAAFsAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAFgAAABYAAAAWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAAAMAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAAAXwAAAEUAAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAF8AAABFAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAABfAAAARQAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXAAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABcAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXAAAAFwAAABcAAAAXAAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAFwAAABcAAAAXAAAAFwAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAFwAAABcAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAwAAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABbAAAAWwAAAFsAAAAMAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAWwAAAFsAAABbAAAADAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAFsAAABbAAAAWwAAAAwAAAAMAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABbAAAAWwAAAFsAAAAMAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAADAAAAAwAAAAMAAAADAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAwAAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABcAAAAXAAAAFwAAAAMAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXAAAAFwAAABcAAAADAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAFwAAABcAAAAXAAAAAwAAAAMAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABcAAAAXAAAAFwAAAAMAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAADAAAAAwAAAAMAAAADAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== 0,0: ind: 0,0 - tiles: XgAAAF4AAABEAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAEQAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAABEAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABeAAAARAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAARAAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAPAAAADwAAAA8AAAAPAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAADwAAAA8AAAAPAAAADwAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAA8AAAAPAAAADwAAAA8AAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAF4AAABeAAAATgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABdAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAEUAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABFAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAARQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAPQAAAD0AAAA9AAAAPQAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAD0AAAA9AAAAPQAAAD0AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAA9AAAAPQAAAD0AAAA9AAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAF8AAABfAAAATwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAABeAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAAXgAAAE4AAABOAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAOgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAADoAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAXwAAAE8AAABPAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAOwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAADsAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -341,12 +341,11 @@ entities: - type: OccluderTree - type: Shuttle - type: RadiationGridResistance - - nextShake: -4201.5220081 - shakeTimes: 10 + - shakeTimes: 10 type: GravityShake - type: GasTileOverlay - - nextUpdate: 0 - type: SpreaderGrid + - type: SpreaderGrid + - type: GridPathfinding - proto: AirlockCommand entities: - uid: 649 @@ -569,8 +568,6 @@ entities: - pos: -0.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 339 components: - pos: -0.5,5.5 @@ -578,85 +575,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 340 components: - pos: -0.5,4.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 341 components: - pos: -1.5,4.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 342 components: - pos: -2.5,4.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 343 components: - pos: -2.5,3.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 344 components: - pos: -2.5,2.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 345 components: - pos: -2.5,1.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 346 components: - pos: -2.5,0.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 347 components: - pos: -3.5,2.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 348 components: - pos: -1.5,2.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 349 components: - pos: -4.5,2.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 350 components: - pos: -0.5,2.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 351 components: - pos: 4.5,8.5 @@ -664,43 +637,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 352 components: - pos: 4.5,7.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 353 components: - pos: 4.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 354 components: - pos: 3.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 355 components: - pos: 3.5,8.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 356 components: - pos: 3.5,9.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 357 components: - pos: 3.5,10.5 @@ -708,8 +669,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 358 components: - pos: 3.5,11.5 @@ -717,8 +676,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 359 components: - pos: 3.5,12.5 @@ -726,8 +683,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 360 components: - pos: 3.5,13.5 @@ -735,29 +690,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 362 components: - pos: 2.5,5.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 363 components: - pos: 2.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 364 components: - pos: 2.5,4.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 365 components: - pos: 2.5,3.5 @@ -765,8 +712,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 366 components: - pos: 2.5,2.5 @@ -774,15 +719,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 367 components: - pos: 3.5,2.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 368 components: - pos: 5.5,2.5 @@ -790,8 +731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 369 components: - pos: 4.5,2.5 @@ -799,8 +738,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 370 components: - pos: 2.5,1.5 @@ -808,99 +745,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 371 components: - pos: -1.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 372 components: - pos: -2.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 373 components: - pos: -3.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 374 components: - pos: -4.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 375 components: - pos: -2.5,7.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 376 components: - pos: -2.5,8.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 377 components: - pos: -2.5,9.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 378 components: - pos: -2.5,10.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 379 components: - pos: -2.5,11.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 380 components: - pos: -3.5,9.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 381 components: - pos: -4.5,9.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 382 components: - pos: -1.5,9.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 383 components: - pos: -0.5,9.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 384 components: - pos: 0.5,-0.5 @@ -908,8 +817,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 385 components: - pos: 0.5,-1.5 @@ -917,8 +824,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 386 components: - pos: 0.5,-2.5 @@ -926,8 +831,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 387 components: - pos: 1.5,-2.5 @@ -935,8 +838,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 388 components: - pos: 2.5,-2.5 @@ -944,8 +845,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 389 components: - pos: 2.5,-1.5 @@ -953,8 +852,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 390 components: - pos: 2.5,-0.5 @@ -962,8 +859,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 391 components: - pos: -0.5,-2.5 @@ -971,8 +866,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 392 components: - pos: -1.5,-2.5 @@ -980,8 +873,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 393 components: - pos: -2.5,-2.5 @@ -989,8 +880,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 394 components: - pos: -3.5,-2.5 @@ -998,8 +887,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 395 components: - pos: -4.5,-2.5 @@ -1007,8 +894,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 396 components: - pos: 0.5,-3.5 @@ -1016,8 +901,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 397 components: - pos: -9.5,0.5 @@ -1025,50 +908,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 398 components: - pos: 0.5,-4.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 399 components: - pos: 0.5,-5.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 400 components: - pos: -0.5,-5.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 401 components: - pos: -1.5,-5.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 402 components: - pos: -2.5,-5.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 403 components: - pos: -3.5,-5.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 404 components: - pos: -4.5,-5.5 @@ -1076,8 +945,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 405 components: - pos: 1.5,-5.5 @@ -1085,71 +952,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 406 components: - pos: -9.5,-0.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 407 components: - pos: -8.5,-0.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 408 components: - pos: -7.5,-0.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 409 components: - pos: -7.5,-1.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 410 components: - pos: -7.5,-2.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 411 components: - pos: -7.5,-3.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 412 components: - pos: -7.5,-4.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 413 components: - pos: -6.5,-2.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 414 components: - pos: -7.5,0.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 415 components: - pos: -7.5,1.5 @@ -1157,8 +1004,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 416 components: - pos: -7.5,2.5 @@ -1166,8 +1011,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 417 components: - pos: -7.5,3.5 @@ -1175,15 +1018,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 418 components: - pos: -8.5,2.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 419 components: - pos: -9.5,2.5 @@ -1191,8 +1030,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 420 components: - pos: -10.5,2.5 @@ -1200,22 +1037,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 421 components: - pos: -7.5,4.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 422 components: - pos: -7.5,5.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 423 components: - pos: -7.5,6.5 @@ -1223,8 +1054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 424 components: - pos: -6.5,6.5 @@ -1232,50 +1061,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 425 components: - pos: -7.5,7.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 426 components: - pos: -7.5,8.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 427 components: - pos: -8.5,5.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 428 components: - pos: -9.5,5.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 429 components: - pos: 1.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 430 components: - pos: 1.5,7.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 431 components: - pos: 1.5,8.5 @@ -1283,15 +1098,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 432 components: - pos: 4.5,5.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 433 components: - pos: 5.5,5.5 @@ -1299,15 +1110,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 434 components: - pos: -7.5,9.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 435 components: - pos: -10.5,5.5 @@ -1315,8 +1122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 436 components: - pos: -10.5,-0.5 @@ -1324,8 +1129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 437 components: - pos: -7.5,-5.5 @@ -1333,8 +1136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 438 components: - pos: -8.5,-5.5 @@ -1342,8 +1143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 439 components: - pos: -9.5,-5.5 @@ -1351,8 +1150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 440 components: - pos: 2.5,-5.5 @@ -1360,8 +1157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 441 components: - pos: 3.5,-5.5 @@ -1369,8 +1164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 442 components: - pos: 4.5,-5.5 @@ -1378,8 +1171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 443 components: - pos: 3.5,-0.5 @@ -1387,15 +1178,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 444 components: - pos: 4.5,-0.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 445 components: - pos: 5.5,-0.5 @@ -1403,8 +1190,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 541 components: - pos: -2.5,-3.5 @@ -1412,43 +1197,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 551 components: - pos: -8.5,9.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 553 components: - pos: -2.5,-4.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 554 components: - pos: -5.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 555 components: - pos: -2.5,12.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 563 components: - pos: -2.5,-5.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 564 components: - pos: -2.5,-6.5 @@ -1456,8 +1229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 631 components: - pos: -1.5,-6.5 @@ -1465,8 +1236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 632 components: - pos: -2.5,-6.5 @@ -1474,8 +1243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 633 components: - pos: -3.5,-6.5 @@ -1483,29 +1250,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 636 components: - pos: -7.5,10.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 640 components: - pos: -9.5,9.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 641 components: - pos: -6.5,9.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 714 components: - pos: 3.5,14.5 @@ -1513,8 +1272,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableHV entities: - uid: 230 @@ -1522,8 +1279,6 @@ entities: - pos: 1.5,7.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 269 components: - pos: -2.5,-1.5 @@ -1531,8 +1286,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 270 components: - pos: -1.5,-1.5 @@ -1540,8 +1293,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 271 components: - pos: -0.5,-1.5 @@ -1549,8 +1300,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 272 components: - pos: 0.5,-1.5 @@ -1558,8 +1307,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 273 components: - pos: 1.5,-1.5 @@ -1567,8 +1314,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 274 components: - pos: 1.5,-2.5 @@ -1576,8 +1321,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 275 components: - pos: 2.5,-2.5 @@ -1585,8 +1328,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 276 components: - pos: 3.5,-2.5 @@ -1594,8 +1335,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 279 components: - pos: -3.5,-1.5 @@ -1603,8 +1342,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 280 components: - pos: -4.5,-1.5 @@ -1612,8 +1349,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 281 components: - pos: -4.5,-2.5 @@ -1621,8 +1356,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 282 components: - pos: -4.5,-3.5 @@ -1630,8 +1363,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 283 components: - pos: -4.5,-4.5 @@ -1639,8 +1370,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 284 components: - pos: -4.5,-5.5 @@ -1648,50 +1377,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 285 components: - pos: -5.5,-2.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 286 components: - pos: -6.5,-2.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 287 components: - pos: -7.5,-2.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 288 components: - pos: -7.5,-1.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 289 components: - pos: -7.5,-0.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 290 components: - pos: -7.5,0.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 291 components: - pos: -7.5,1.5 @@ -1699,8 +1414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 292 components: - pos: -7.5,2.5 @@ -1708,8 +1421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 293 components: - pos: -7.5,3.5 @@ -1717,22 +1428,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 294 components: - pos: -7.5,4.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 295 components: - pos: -7.5,5.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 296 components: - pos: -7.5,6.5 @@ -1740,36 +1445,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 297 components: - pos: -3.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 298 components: - pos: -2.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 313 components: - pos: 1.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 315 components: - pos: 0.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 316 components: - pos: 1.5,8.5 @@ -1777,22 +1472,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 318 components: - pos: -0.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 326 components: - pos: -1.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 488 components: - pos: 1.5,9.5 @@ -1800,22 +1489,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 582 components: - pos: -4.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 585 components: - pos: -5.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 586 components: - pos: -6.5,6.5 @@ -1823,8 +1506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableMV entities: - uid: 300 @@ -1834,8 +1515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 301 components: - pos: -4.5,-4.5 @@ -1843,8 +1522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 302 components: - pos: -4.5,-3.5 @@ -1852,8 +1529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 303 components: - pos: -4.5,-2.5 @@ -1861,57 +1536,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 304 components: - pos: -5.5,-2.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 305 components: - pos: -6.5,-2.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 306 components: - pos: -7.5,-2.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 307 components: - pos: -8.5,-2.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 308 components: - pos: -9.5,-2.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 309 components: - pos: -9.5,-1.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 310 components: - pos: -9.5,-0.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 311 components: - pos: -9.5,0.5 @@ -1919,8 +1578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 314 components: - pos: -8.5,6.5 @@ -1928,8 +1585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 319 components: - pos: 1.5,9.5 @@ -1937,8 +1592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 320 components: - pos: 1.5,8.5 @@ -1946,22 +1599,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 321 components: - pos: 1.5,7.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 322 components: - pos: -0.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 323 components: - pos: -0.5,5.5 @@ -1969,43 +1616,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 324 components: - pos: 0.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 325 components: - pos: 1.5,6.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 327 components: - pos: 2.5,7.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 328 components: - pos: 3.5,7.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 329 components: - pos: 4.5,7.5 parent: 732 type: Transform - - fixtures: {} - type: Fixtures - uid: 330 components: - pos: 4.5,8.5 @@ -2013,8 +1648,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 332 components: - pos: -3.5,-2.5 @@ -2022,8 +1655,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 333 components: - pos: -2.5,-2.5 @@ -2031,8 +1662,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 334 components: - pos: -1.5,-2.5 @@ -2040,8 +1669,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 335 components: - pos: -0.5,-2.5 @@ -2049,8 +1676,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 336 components: - pos: 0.5,-2.5 @@ -2058,8 +1683,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 337 components: - pos: 0.5,-1.5 @@ -2067,8 +1690,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 338 components: - pos: 0.5,-0.5 @@ -2076,8 +1697,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableTerminal entities: - uid: 268 diff --git a/Resources/Maps/Shuttles/striker.yml b/Resources/Maps/Shuttles/striker.yml index c70899b50c..4d341f61e7 100644 --- a/Resources/Maps/Shuttles/striker.yml +++ b/Resources/Maps/Shuttles/striker.yml @@ -260,13 +260,9 @@ entities: ents: - 331 type: ContainerContainer - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 205 - type: SignalReceiver + - links: + - 205 + type: DeviceLinkSink - uid: 191 components: - pos: 1.5,-4.5 @@ -279,13 +275,9 @@ entities: ents: - 332 type: ContainerContainer - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 205 - type: SignalReceiver + - links: + - 205 + type: DeviceLinkSink - uid: 192 components: - pos: -2.5,-5.5 @@ -298,13 +290,9 @@ entities: ents: - 333 type: ContainerContainer - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 205 - type: SignalReceiver + - links: + - 205 + type: DeviceLinkSink - uid: 193 components: - pos: -2.5,-4.5 @@ -317,13 +305,9 @@ entities: ents: - 334 type: ContainerContainer - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 205 - type: SignalReceiver + - links: + - 205 + type: DeviceLinkSink - uid: 196 components: - pos: 3.5,-1.5 @@ -336,13 +320,9 @@ entities: ents: - 337 type: ContainerContainer - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 205 - type: SignalReceiver + - links: + - 205 + type: DeviceLinkSink - uid: 198 components: - pos: -1.5,1.5 @@ -355,13 +335,9 @@ entities: ents: - 339 type: ContainerContainer - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 205 - type: SignalReceiver + - links: + - 205 + type: DeviceLinkSink - uid: 199 components: - pos: -1.5,2.5 @@ -374,13 +350,9 @@ entities: ents: - 340 type: ContainerContainer - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 205 - type: SignalReceiver + - links: + - 205 + type: DeviceLinkSink - uid: 200 components: - pos: -0.5,2.5 @@ -393,13 +365,9 @@ entities: ents: - 341 type: ContainerContainer - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 205 - type: SignalReceiver + - links: + - 205 + type: DeviceLinkSink - uid: 201 components: - pos: 0.5,2.5 @@ -412,13 +380,9 @@ entities: ents: - 342 type: ContainerContainer - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 205 - type: SignalReceiver + - links: + - 205 + type: DeviceLinkSink - uid: 202 components: - pos: 0.5,1.5 @@ -431,13 +395,9 @@ entities: ents: - 343 type: ContainerContainer - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 205 - type: SignalReceiver + - links: + - 205 + type: DeviceLinkSink - proto: BoxMRE entities: - uid: 320 @@ -2038,29 +1998,28 @@ entities: pos: -1.5,-3.5 parent: 325 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 193 - - port: Toggle - uid: 192 - - port: Toggle - uid: 190 - - port: Toggle - uid: 191 - - port: Toggle - uid: 196 - - port: Toggle - uid: 202 - - port: Toggle - uid: 201 - - port: Toggle - uid: 200 - - port: Toggle - uid: 199 - - port: Toggle - uid: 198 - type: SignalTransmitter + - linkedPorts: + 193: + - Pressed: Toggle + 192: + - Pressed: Toggle + 190: + - Pressed: Toggle + 191: + - Pressed: Toggle + 196: + - Pressed: Toggle + 202: + - Pressed: Toggle + 201: + - Pressed: Toggle + 200: + - Pressed: Toggle + 199: + - Pressed: Toggle + 198: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignSpace entities: - uid: 230 diff --git a/Resources/Maps/Shuttles/wizard.yml b/Resources/Maps/Shuttles/wizard.yml index 1db92011d1..65d560d538 100644 --- a/Resources/Maps/Shuttles/wizard.yml +++ b/Resources/Maps/Shuttles/wizard.yml @@ -3,23 +3,23 @@ meta: postmapinit: false tilemap: 0: Space - 20: FloorCaveDrought - 22: FloorDark - 23: FloorDarkDiagonal - 25: FloorDarkHerringbone - 27: FloorDarkMono - 28: FloorDarkOffset - 29: FloorDarkPavement - 30: FloorDarkPavementVertical - 41: FloorGrassDark - 68: FloorSteel - 74: FloorSteelMono - 78: FloorTechMaint - 81: FloorWhite - 85: FloorWhiteMini - 91: FloorWood - 93: Lattice - 94: Plating + 21: FloorCaveDrought + 23: FloorDark + 24: FloorDarkDiagonal + 26: FloorDarkHerringbone + 28: FloorDarkMono + 29: FloorDarkOffset + 30: FloorDarkPavement + 31: FloorDarkPavementVertical + 42: FloorGrassDark + 69: FloorSteel + 75: FloorSteelMono + 79: FloorTechMaint + 82: FloorWhite + 86: FloorWhiteMini + 92: FloorWood + 94: Lattice + 95: Plating entities: - proto: "" entities: @@ -32,22 +32,22 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAGwAAAl4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABKAAADSgAAA0QAAAFeAAAAWwAAAlsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAASgAAAEoAAAJEAAACXgAAAFsAAANbAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAEQAAANEAAADRAAAAF4AAABbAAADWwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAGwAAAl4AAABeAAAAXgAAABsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAZAAABHgAAARkAAAAeAAACGQAAAR4AAAMZAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAAAZAAADHQAAA14AAAAdAAADXgAAAB0AAAJeAAAAGQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAHgAAAhkAAAAeAAACGQAAAR4AAAEZAAABHgAAARkAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAA14AAABeAAAAXgAAAF4AAAAbAAABAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAGwAAABsAAABeAAAAFgAAARYAAABeAAAAKQAAASkAAAApAAABKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAABsAAAMbAAACGwAAAxYAAAIWAAADXgAAACkAAAEXAAACFwAAAhcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAABRAAAA14AAAAWAAAAFgAAA14AAAApAAAAFwAAAhcAAAIXAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAGwAAARsAAAAbAAACFgAAABYAAANeAAAAKQAAARcAAAMXAAABFwAAAg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAHAAAAl8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABLAAADSwAAA0UAAAFfAAAAXAAAAlwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASwAAAEsAAAJFAAACXwAAAFwAAANcAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEUAAANFAAADRQAAAF8AAABcAAADXAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAHAAAAl8AAABfAAAAXwAAABwAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAaAAABHwAAARoAAAAfAAACGgAAAR8AAAMaAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAaAAADHgAAA18AAAAeAAADXwAAAB4AAAJfAAAAGgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAHwAAAhoAAAAfAAACGgAAAR8AAAEaAAABHwAAARoAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAHAAAA18AAABfAAAAXwAAAF8AAAAcAAABAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAHAAAABwAAABfAAAAFwAAARcAAABfAAAAKgAAASoAAAAqAAABKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAABwAAAMcAAACHAAAAxcAAAIXAAADXwAAACoAAAEYAAACGAAAAhgAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABRQAAA18AAAAXAAAAFwAAA18AAAAqAAAAGAAAAhgAAAIYAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAHAAAARwAAAAcAAACFwAAABcAAANfAAAAKgAAARgAAAMYAAABGAAAAg== 0,-1: ind: 0,-1 - tiles: TgAAAE4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFsAAABeAAAAUQAAAlEAAAJRAAACXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABbAAACXgAAAFEAAANVAAACUQAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAl4AAABRAAACUQAAAFEAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAABsAAAJeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAACGQAAAx4AAAIZAAABHgAAAxkAAANeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAB0AAABeAAAAHQAAAV4AAAAdAAABGQAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAEZAAABHgAAAhkAAAIeAAACGQAAAh4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAikAAAMpAAAAXgAAABQAAAQUAAAGFAAABxQAAAJeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEXAAADKQAAAl4AAAAUAAADFAAAAxQAAAYUAAAEFAAAAhsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAAikAAANeAAAAFAAABxQAAAQUAAADFAAAAxQAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAhcAAAIpAAADXgAAABQAAAcUAAACFAAAARQAAAQUAAABGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: TwAAAE8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABfAAAAUgAAAlIAAAJSAAACXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAACXwAAAFIAAANWAAACUgAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAl8AAABSAAACUgAAAFIAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAABwAAAJfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAACGgAAAx8AAAIaAAABHwAAAxoAAANfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAB4AAABfAAAAHgAAAV8AAAAeAAABGgAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAEaAAABHwAAAhoAAAIfAAACGgAAAh8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAioAAAMqAAAAXwAAABUAAAQVAAAGFQAABxUAAAJfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAEYAAADKgAAAl8AAAAVAAADFQAAAxUAAAYVAAAEFQAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAADGAAAAioAAANfAAAAFQAABxUAAAQVAAADFQAAAxUAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAhgAAAIqAAADXwAAABUAAAcVAAACFQAAARUAAAQVAAABHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAGwAAAxsAAAJeAAAAFgAAARYAAAJeAAAAKQAAACkAAAApAAADKQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAABsAAANeAAAAXgAAAF4AAABeAAAAXgAAABsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAFsAAAJbAAADWwAAA1sAAANbAAADXgAAABwAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABbAAABWwAAA1sAAAFbAAABWwAAA14AAAAcAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAFsAAAFbAAADWwAAAFsAAAAbAAAAHAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAWwAAAFsAAAFbAAAAXgAAABwAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABbAAABWwAAAl4AAAAcAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAABsAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAHAAAABwAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAABwAAAAcAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAHAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAHAAAAxwAAAJfAAAAFwAAARcAAAJfAAAAKgAAACoAAAAqAAADKgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAABwAAANfAAAAXwAAAF8AAABfAAAAXwAAABwAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAFwAAAJcAAADXAAAA1wAAANcAAADXwAAAB0AAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABcAAABXAAAA1wAAAFcAAABXAAAA18AAAAdAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAFwAAAFcAAADXAAAAFwAAAAcAAAAHQAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXAAAAFwAAAFcAAAAXwAAAB0AAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABcAAABXAAAAl8AAAAdAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAABwAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAHQAAAB0AAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAB0AAAAdAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAHQAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: KQAAAykAAAEpAAADXgAAABQAAAUUAAAAFAAABRQAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAXgAAAFsAAABbAAABWwAAA1sAAANbAAADXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAF4AAABbAAADWwAAAlsAAAFbAAADWwAAAl4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAbAAABWwAAAVsAAABbAAABWwAAAl4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAXgAAAFsAAAFbAAABWwAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAF4AAABbAAACWwAAA14AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAHAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAABwAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: KgAAAyoAAAEqAAADXwAAABUAAAUVAAAAFQAABRUAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAXwAAAFwAAABcAAABXAAAA1wAAANcAAADXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAF8AAABcAAADXAAAAlwAAAFcAAADXAAAAl8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAcAAABXAAAAVwAAABcAAABXAAAAl8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAXwAAAFwAAAFcAAABXAAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAF8AAABcAAACXAAAA18AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAHQAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAB0AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAA== 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -544,8 +544,8 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance - - nextUpdate: 0 - type: SpreaderGrid + - type: SpreaderGrid + - type: GridPathfinding - proto: AirlockExternalGlass entities: - uid: 344 @@ -740,113 +740,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 439 components: - pos: -1.5,-11.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 440 components: - pos: -1.5,-10.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 441 components: - pos: -1.5,-9.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 442 components: - pos: -0.5,-9.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 443 components: - pos: -0.5,-8.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 444 components: - pos: -0.5,-7.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 445 components: - pos: -0.5,-6.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 446 components: - pos: -0.5,-5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 447 components: - pos: 0.5,-5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 448 components: - pos: 1.5,-5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 449 components: - pos: 2.5,-5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 450 components: - pos: 3.5,-5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 451 components: - pos: 4.5,-5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 452 components: - pos: 5.5,-5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 453 components: - pos: 6.5,-5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 454 components: - pos: 4.5,-4.5 @@ -854,8 +822,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 455 components: - pos: 5.5,-4.5 @@ -863,8 +829,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 456 components: - pos: 6.5,-4.5 @@ -872,8 +836,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 457 components: - pos: 7.5,-5.5 @@ -881,8 +843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 458 components: - pos: 7.5,-6.5 @@ -890,8 +850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 459 components: - pos: 7.5,-4.5 @@ -899,8 +857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 460 components: - pos: 8.5,-4.5 @@ -908,8 +864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 461 components: - pos: 8.5,-3.5 @@ -917,8 +871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 462 components: - pos: 9.5,-3.5 @@ -926,15 +878,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 463 components: - pos: 9.5,-2.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 464 components: - pos: 9.5,-1.5 @@ -942,64 +890,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 465 components: - pos: 9.5,-0.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 466 components: - pos: -1.5,-5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 467 components: - pos: -2.5,-5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 468 components: - pos: -3.5,-5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 469 components: - pos: -4.5,-5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 470 components: - pos: -5.5,-5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 471 components: - pos: -6.5,-5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 472 components: - pos: -7.5,-5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 473 components: - pos: -8.5,-5.5 @@ -1007,8 +937,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 474 components: - pos: -8.5,-6.5 @@ -1016,71 +944,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 475 components: - pos: -4.5,-6.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 476 components: - pos: -4.5,-7.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 477 components: - pos: -4.5,-8.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 478 components: - pos: -4.5,-9.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 479 components: - pos: -3.5,-9.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 480 components: - pos: -3.5,-10.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 481 components: - pos: -3.5,-11.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 482 components: - pos: -4.5,-11.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 483 components: - pos: -5.5,-11.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 484 components: - pos: -6.5,-11.5 @@ -1088,15 +996,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 485 components: - pos: -3.5,-12.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 486 components: - pos: -3.5,-13.5 @@ -1104,8 +1008,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 487 components: - pos: -3.5,-14.5 @@ -1113,8 +1015,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 488 components: - pos: -2.5,-14.5 @@ -1122,8 +1022,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 489 components: - pos: -1.5,-14.5 @@ -1131,8 +1029,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 490 components: - pos: -1.5,-13.5 @@ -1140,8 +1036,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 491 components: - pos: -0.5,-14.5 @@ -1149,8 +1043,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 492 components: - pos: 0.5,-14.5 @@ -1158,8 +1050,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 493 components: - pos: 1.5,-14.5 @@ -1167,8 +1057,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 494 components: - pos: 2.5,-14.5 @@ -1176,8 +1064,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 495 components: - pos: 3.5,-14.5 @@ -1185,8 +1071,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 496 components: - pos: 4.5,-14.5 @@ -1194,8 +1078,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 497 components: - pos: 4.5,-13.5 @@ -1203,15 +1085,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 498 components: - pos: -1.5,-15.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 499 components: - pos: -1.5,-16.5 @@ -1219,8 +1097,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 500 components: - pos: -2.5,-16.5 @@ -1228,15 +1104,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 501 components: - pos: 0.5,-15.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 502 components: - pos: 0.5,-16.5 @@ -1244,8 +1116,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 503 components: - pos: 1.5,-16.5 @@ -1253,57 +1123,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 504 components: - pos: 3.5,-6.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 505 components: - pos: 3.5,-7.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 506 components: - pos: 3.5,-8.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 507 components: - pos: 3.5,-9.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 508 components: - pos: 3.5,-10.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 509 components: - pos: 3.5,-11.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 510 components: - pos: 4.5,-11.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 511 components: - pos: 5.5,-11.5 @@ -1311,8 +1165,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 512 components: - pos: 5.5,-10.5 @@ -1320,8 +1172,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 513 components: - pos: -2.5,5.5 @@ -1329,57 +1179,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 514 components: - pos: -1.5,5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 515 components: - pos: -0.5,5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 516 components: - pos: -0.5,6.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 517 components: - pos: -0.5,7.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 518 components: - pos: -0.5,8.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 519 components: - pos: -0.5,9.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 520 components: - pos: -0.5,10.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 521 components: - pos: -0.5,11.5 @@ -1387,8 +1221,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 522 components: - pos: -1.5,11.5 @@ -1396,8 +1228,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 523 components: - pos: 0.5,11.5 @@ -1405,22 +1235,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 524 components: - pos: -1.5,8.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 525 components: - pos: -2.5,8.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 526 components: - pos: -3.5,8.5 @@ -1428,8 +1252,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 527 components: - pos: -3.5,9.5 @@ -1437,22 +1259,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 528 components: - pos: 0.5,8.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 529 components: - pos: 1.5,8.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 530 components: - pos: 2.5,8.5 @@ -1460,8 +1276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 531 components: - pos: 2.5,9.5 @@ -1469,36 +1283,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 532 components: - pos: -0.5,4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 533 components: - pos: -0.5,3.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 534 components: - pos: -0.5,2.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 535 components: - pos: -0.5,1.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 536 components: - pos: -2.5,5.5 @@ -1506,71 +1310,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 537 components: - pos: -3.5,5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 538 components: - pos: -4.5,5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 539 components: - pos: -5.5,5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 540 components: - pos: -5.5,4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 541 components: - pos: -6.5,4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 542 components: - pos: -6.5,3.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 543 components: - pos: -6.5,2.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 544 components: - pos: -6.5,1.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 545 components: - pos: -6.5,0.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 546 components: - pos: -7.5,0.5 @@ -1578,50 +1362,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 547 components: - pos: -8.5,0.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 548 components: - pos: -9.5,0.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 549 components: - pos: -6.5,-0.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 550 components: - pos: -6.5,-1.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 551 components: - pos: -6.5,-2.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 552 components: - pos: -6.5,-3.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 553 components: - pos: -7.5,-3.5 @@ -1629,71 +1399,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 554 components: - pos: -8.5,-3.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 555 components: - pos: -9.5,-3.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 556 components: - pos: 0.5,4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 557 components: - pos: 1.5,4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 558 components: - pos: 2.5,4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 559 components: - pos: 3.5,4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 560 components: - pos: 4.5,4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 561 components: - pos: 4.5,3.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 562 components: - pos: 4.5,2.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 563 components: - pos: 4.5,1.5 @@ -1701,8 +1451,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 564 components: - pos: 6.5,1.5 @@ -1710,8 +1458,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 565 components: - pos: 5.5,1.5 @@ -1719,8 +1465,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 566 components: - pos: 7.5,1.5 @@ -1728,8 +1472,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableHV entities: - uid: 363 @@ -1737,29 +1479,21 @@ entities: - pos: 1.5,-15.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 364 components: - pos: 0.5,-15.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 366 components: - pos: -0.5,-15.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 367 components: - pos: -1.5,-15.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - proto: CableMV entities: - uid: 368 @@ -1767,8 +1501,6 @@ entities: - pos: -1.5,-15.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 369 components: - pos: -1.5,-14.5 @@ -1776,8 +1508,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 370 components: - pos: -2.5,-14.5 @@ -1785,8 +1515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 371 components: - pos: -3.5,-14.5 @@ -1794,8 +1522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 372 components: - pos: -3.5,-13.5 @@ -1803,36 +1529,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 373 components: - pos: -3.5,-12.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 374 components: - pos: -3.5,-11.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 375 components: - pos: -3.5,-10.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 376 components: - pos: -3.5,-9.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 377 components: - pos: -4.5,-13.5 @@ -1840,8 +1556,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 378 components: - pos: -5.5,-13.5 @@ -1849,8 +1563,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 379 components: - pos: -5.5,-14.5 @@ -1858,22 +1570,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 380 components: - pos: -4.5,-11.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 381 components: - pos: -5.5,-11.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 382 components: - pos: -6.5,-11.5 @@ -1881,8 +1587,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 383 components: - pos: -6.5,-10.5 @@ -1890,8 +1594,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 384 components: - pos: -0.5,-14.5 @@ -1899,8 +1601,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 385 components: - pos: 0.5,-14.5 @@ -1908,8 +1608,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 386 components: - pos: 1.5,-14.5 @@ -1917,8 +1615,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 387 components: - pos: 2.5,-14.5 @@ -1926,8 +1622,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 388 components: - pos: 3.5,-14.5 @@ -1935,8 +1629,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 389 components: - pos: 4.5,-14.5 @@ -1944,8 +1636,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 390 components: - pos: 4.5,-13.5 @@ -1953,8 +1643,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 391 components: - pos: 4.5,-12.5 @@ -1962,8 +1650,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 392 components: - pos: 5.5,-12.5 @@ -1971,8 +1657,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 393 components: - pos: 5.5,-11.5 @@ -1980,8 +1664,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 394 components: - pos: 5.5,-10.5 @@ -1989,218 +1671,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 395 components: - pos: -4.5,-9.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 396 components: - pos: -4.5,-8.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 397 components: - pos: -4.5,-7.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 398 components: - pos: -4.5,-6.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 399 components: - pos: -4.5,-5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 400 components: - pos: -5.5,-5.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 401 components: - pos: -5.5,-4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 402 components: - pos: -5.5,-3.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 403 components: - pos: -5.5,-2.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 404 components: - pos: -5.5,-1.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 405 components: - pos: -5.5,-0.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 406 components: - pos: -5.5,0.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 407 components: - pos: -6.5,0.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 408 components: - pos: -6.5,1.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 409 components: - pos: -6.5,2.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 410 components: - pos: -6.5,3.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 411 components: - pos: -6.5,4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 412 components: - pos: -5.5,4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 413 components: - pos: -4.5,4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 414 components: - pos: -3.5,4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 415 components: - pos: -2.5,4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 416 components: - pos: -1.5,4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 417 components: - pos: -0.5,4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 418 components: - pos: 0.5,4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 419 components: - pos: 1.5,4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 420 components: - pos: 2.5,4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 421 components: - pos: 3.5,4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 422 components: - pos: 4.5,4.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 423 components: - pos: 4.5,3.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 424 components: - pos: 4.5,2.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 425 components: - pos: 4.5,1.5 @@ -2208,8 +1828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 426 components: - pos: 5.5,1.5 @@ -2217,8 +1835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 427 components: - pos: 6.5,1.5 @@ -2226,50 +1842,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 428 components: - pos: -3.5,-7.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 429 components: - pos: -2.5,-7.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 430 components: - pos: -1.5,-7.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 431 components: - pos: -0.5,-7.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 432 components: - pos: 0.5,-7.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 433 components: - pos: 1.5,-7.5 parent: 768 type: Transform - - fixtures: {} - type: Fixtures - uid: 434 components: - pos: -1.5,-13.5 @@ -2277,8 +1879,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 435 components: - pos: -1.5,-12.5 @@ -2286,8 +1886,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 763 components: - pos: -2.5,5.5 @@ -2295,8 +1893,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableTerminal entities: - uid: 365 diff --git a/Resources/Maps/Test/Breathing/3by3-20oxy-80nit.yml b/Resources/Maps/Test/Breathing/3by3-20oxy-80nit.yml index cb25561432..df423b16d4 100644 --- a/Resources/Maps/Test/Breathing/3by3-20oxy-80nit.yml +++ b/Resources/Maps/Test/Breathing/3by3-20oxy-80nit.yml @@ -1,9 +1,9 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space - 68: FloorSteel + 69: FloorSteel entities: - proto: "" entities: @@ -15,16 +15,16 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: RAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -32,7 +32,8 @@ 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 422e890aee..74f3da0771 100644 --- a/Resources/Maps/Test/admin_test_arena.yml +++ b/Resources/Maps/Test/admin_test_arena.yml @@ -1,11 +1,11 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space - 51: FloorMetalDiamond - 68: FloorSteel - 94: Plating + 52: FloorMetalDiamond + 69: FloorSteel + 95: Plating entities: - proto: "" entities: @@ -18,16 +18,16 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAAARAAAADMAAAAzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAARAAAAEQAAAAzAAAAMwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAARQAAADQAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAEUAAAA0AAAANAAAAA== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAARAAAAEQAAAAzAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAEUAAAA0AAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: MwAAAEQAAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: NAAAAEUAAABFAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzAAAARAAAAEQAAABEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAEQAAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAARQAAAEUAAABFAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAEUAAABFAAAARQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -35,7 +35,8 @@ 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 8c2bb6bfb9..871b6d3fad 100644 --- a/Resources/Maps/Test/dev_map.yml +++ b/Resources/Maps/Test/dev_map.yml @@ -78,8 +78,7 @@ entities: - type: OccluderTree - type: Shuttle - type: RadiationGridResistance - - nextShake: 0 - shakeTimes: 10 + - shakeTimes: 10 type: GravityShake - version: 2 data: @@ -126,6 +125,7 @@ entities: 0: 65535 -1,-4: 0: 65520 + 1: 15 -1,-3: 0: 65535 -1,-2: @@ -192,6 +192,7 @@ entities: 0: 61166 0,-4: 0: 65520 + 1: 7 0,-3: 0: 65535 0,-2: @@ -308,6 +309,10 @@ entities: 0: 204 -3,2: 0: 35071 + 0,-5: + 1: 28672 + -1,-5: + 1: 61440 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -324,13 +329,28 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay - id: Dev type: BecomesStation - - nextUpdate: 0 - type: SpreaderGrid + - type: SpreaderGrid + - type: GridPathfinding - uid: 962 components: - type: MetaData @@ -901,29 +921,21 @@ entities: - pos: -13.5,4.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 736 components: - pos: -2.5,9.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 760 components: - pos: -2.5,10.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 761 components: - pos: -15.5,5.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 763 components: - pos: -2.5,11.5 @@ -931,8 +943,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 764 components: - pos: -1.5,11.5 @@ -940,8 +950,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 765 components: - pos: -7.5,0.5 @@ -949,8 +957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 766 components: - pos: -0.5,11.5 @@ -958,239 +964,171 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 767 components: - pos: -3.5,10.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 768 components: - pos: -4.5,10.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 769 components: - pos: -5.5,10.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 770 components: - pos: -6.5,10.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 771 components: - pos: -2.5,8.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 772 components: - pos: -2.5,7.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 773 components: - pos: -2.5,6.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 774 components: - pos: -2.5,5.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 775 components: - pos: -3.5,5.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 776 components: - pos: -4.5,5.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 777 components: - pos: -5.5,5.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 778 components: - pos: -6.5,5.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 779 components: - pos: -6.5,4.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 780 components: - pos: -7.5,4.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 781 components: - pos: -8.5,4.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 782 components: - pos: -9.5,4.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 783 components: - pos: -10.5,4.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 784 components: - pos: -11.5,4.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 785 components: - pos: -12.5,4.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 786 components: - pos: -12.5,3.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 787 components: - pos: -12.5,2.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 788 components: - pos: -12.5,1.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 789 components: - pos: -12.5,0.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 790 components: - pos: -12.5,-0.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 791 components: - pos: -2.5,4.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 792 components: - pos: -2.5,2.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 793 components: - pos: -2.5,1.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 794 components: - pos: -2.5,0.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 795 components: - pos: -2.5,3.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 796 components: - pos: -2.5,-0.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 797 components: - pos: -2.5,-1.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 798 components: - pos: -2.5,-2.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 799 components: - pos: -2.5,-3.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 802 components: - pos: -8.5,0.5 @@ -1198,8 +1136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 803 components: - pos: 2.5,-2.5 @@ -1207,8 +1143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 804 components: - pos: 2.5,-3.5 @@ -1216,8 +1150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 805 components: - pos: -9.5,0.5 @@ -1225,8 +1157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 806 components: - pos: -10.5,0.5 @@ -1234,78 +1164,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 807 components: - pos: -14.5,0.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 808 components: - pos: -11.5,0.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 809 components: - pos: -15.5,0.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 810 components: - pos: -15.5,0.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 811 components: - pos: -16.5,0.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 812 components: - pos: -16.5,5.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 813 components: - pos: -16.5,4.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 814 components: - pos: -16.5,3.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 815 components: - pos: -16.5,2.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 816 components: - pos: -16.5,1.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 817 components: - pos: 7.5,5.5 @@ -1313,8 +1221,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 818 components: - pos: 7.5,7.5 @@ -1322,8 +1228,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 819 components: - pos: 7.5,8.5 @@ -1331,155 +1235,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 820 components: - pos: 7.5,9.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 821 components: - pos: 8.5,9.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 822 components: - pos: 6.5,9.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 823 components: - pos: 5.5,9.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 824 components: - pos: 4.5,9.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 825 components: - pos: 8.5,10.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 826 components: - pos: 8.5,11.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 827 components: - pos: 8.5,12.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 828 components: - pos: 7.5,12.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 829 components: - pos: 7.5,11.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 830 components: - pos: 2.5,-5.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 831 components: - pos: 2.5,-4.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 832 components: - pos: 1.5,-5.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 833 components: - pos: 0.5,-5.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 834 components: - pos: -0.5,-5.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 835 components: - pos: -1.5,-5.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 836 components: - pos: -2.5,-5.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 837 components: - pos: -3.5,-5.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 838 components: - pos: -4.5,-5.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 839 components: - pos: 1.5,11.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 840 components: - pos: 2.5,11.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 841 components: - pos: 0.5,11.5 @@ -1487,106 +1347,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 842 components: - pos: 2.5,12.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 843 components: - pos: 2.5,13.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 844 components: - pos: 2.5,14.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 845 components: - pos: 2.5,15.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 853 components: - pos: -3.5,-3.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 854 components: - pos: -4.5,-3.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 855 components: - pos: -5.5,-3.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 856 components: - pos: -6.5,-3.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 857 components: - pos: -6.5,-2.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 858 components: - pos: -6.5,-1.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 859 components: - pos: -6.5,-0.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 860 components: - pos: -6.5,0.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 861 components: - pos: -6.5,1.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 862 components: - pos: -6.5,2.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 872 components: - pos: 7.5,6.5 @@ -1594,15 +1424,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 877 components: - pos: -6.5,3.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 878 components: - pos: -2.5,-4.5 @@ -1610,8 +1436,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 879 components: - pos: -1.5,-4.5 @@ -1619,8 +1443,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 880 components: - pos: -0.5,-4.5 @@ -1628,8 +1450,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 881 components: - pos: 0.5,-4.5 @@ -1637,8 +1457,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 882 components: - pos: 1.5,-4.5 @@ -1646,22 +1464,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 883 components: - pos: 2.5,-4.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 884 components: - pos: 3.5,-4.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 885 components: - pos: 4.5,-4.5 @@ -1669,8 +1481,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 886 components: - pos: 5.5,-4.5 @@ -1678,8 +1488,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 887 components: - pos: 6.5,-4.5 @@ -1687,8 +1495,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 888 components: - pos: 7.5,-4.5 @@ -1696,8 +1502,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 889 components: - pos: 8.5,-4.5 @@ -1705,8 +1509,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 890 components: - pos: 8.5,-3.5 @@ -1714,8 +1516,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 891 components: - pos: 8.5,-2.5 @@ -1723,8 +1523,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 892 components: - pos: 8.5,-1.5 @@ -1732,8 +1530,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 893 components: - pos: 8.5,-0.5 @@ -1741,8 +1537,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 894 components: - pos: 8.5,0.5 @@ -1750,8 +1544,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 895 components: - pos: 8.5,1.5 @@ -1759,8 +1551,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 896 components: - pos: 8.5,2.5 @@ -1768,8 +1558,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 897 components: - pos: 8.5,3.5 @@ -1777,8 +1565,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 898 components: - pos: 8.5,4.5 @@ -1786,8 +1572,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 899 components: - pos: 8.5,5.5 @@ -1795,71 +1579,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 900 components: - pos: -14.5,5.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 905 components: - pos: -12.5,5.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 906 components: - pos: -14.5,4.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 908 components: - pos: -15.5,4.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 970 components: - pos: 9.5,12.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 971 components: - pos: 10.5,12.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 972 components: - pos: 11.5,12.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 973 components: - pos: 12.5,12.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 974 components: - pos: 13.5,12.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 1026 components: - pos: -5.5,-14.5 @@ -1867,8 +1631,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1027 components: - pos: -5.5,-13.5 @@ -1876,8 +1638,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1028 components: - pos: -5.5,-12.5 @@ -1885,22 +1645,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1029 components: - pos: -4.5,-12.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 1030 components: - pos: -3.5,-12.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 1031 components: - pos: -2.5,-12.5 @@ -1908,29 +1662,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1032 components: - pos: -1.5,-12.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 1033 components: - pos: -0.5,-12.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 1034 components: - pos: 0.5,-12.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 1035 components: - pos: 1.5,-12.5 @@ -1938,29 +1684,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1036 components: - pos: 2.5,-12.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 1037 components: - pos: 3.5,-12.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 1038 components: - pos: 0.5,-13.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 1039 components: - pos: 0.5,-14.5 @@ -1968,8 +1706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1040 components: - pos: 0.5,-15.5 @@ -1977,15 +1713,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1041 components: - pos: -1.5,-13.5 parent: 179 type: Transform - - fixtures: {} - type: Fixtures - uid: 1042 components: - pos: -1.5,-14.5 @@ -1993,8 +1725,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1043 components: - pos: -1.5,-15.5 @@ -2002,8 +1732,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1044 components: - pos: 4.5,-12.5 @@ -2011,8 +1739,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1045 components: - pos: 4.5,-13.5 @@ -2020,8 +1746,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableApcStack entities: - uid: 70 @@ -2058,8 +1782,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1020 components: - pos: -6.5,-12.5 @@ -2067,8 +1789,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1021 components: - pos: -6.5,-11.5 @@ -2076,8 +1796,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableHVStack entities: - uid: 184 @@ -2094,8 +1812,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1024 components: - pos: -5.5,-13.5 @@ -2103,8 +1819,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1025 components: - pos: -5.5,-14.5 @@ -2112,8 +1826,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableMVStack entities: - uid: 325 @@ -2821,51 +2533,27 @@ entities: pos: -1.5,11.5 parent: 179 type: Transform - - inputs: - Reverse: - - port: Right - uid: 722 - Forward: - - port: Left - uid: 722 - Off: - - port: Middle - uid: 722 - type: SignalReceiver + - links: + - 722 + type: DeviceLinkSink - uid: 720 components: - rot: -1.5707963267948966 rad pos: -0.5,11.5 parent: 179 type: Transform - - inputs: - Reverse: - - port: Right - uid: 722 - Forward: - - port: Left - uid: 722 - Off: - - port: Middle - uid: 722 - type: SignalReceiver + - links: + - 722 + type: DeviceLinkSink - uid: 721 components: - rot: -1.5707963267948966 rad pos: 0.5,11.5 parent: 179 type: Transform - - inputs: - Reverse: - - port: Right - uid: 722 - Forward: - - port: Left - uid: 722 - Off: - - port: Middle - uid: 722 - type: SignalReceiver + - links: + - 722 + type: DeviceLinkSink - uid: 985 components: - rot: 3.141592653589793 rad @@ -4746,10 +4434,6 @@ entities: - Pressed: Toggle 984: - Pressed: Toggle - registeredSinks: - Pressed: - - 202 - - 984 type: DeviceLinkSource - uid: 1014 components: @@ -4761,10 +4445,6 @@ entities: - Pressed: Toggle 698: - Pressed: Toggle - registeredSinks: - Pressed: - - 697 - - 698 type: DeviceLinkSource - proto: SignCargoDock entities: @@ -5405,48 +5085,26 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - registeredSinks: - Left: - - 990 - - 195 - - 991 - Right: - - 990 - - 195 - - 991 - Middle: - - 990 - - 195 - - 991 type: DeviceLinkSource - uid: 722 components: - pos: 1.5,11.5 parent: 179 type: Transform - - outputs: - Left: - - port: Forward - uid: 721 - - port: Forward - uid: 720 - - port: Forward - uid: 716 - Right: - - port: Reverse - uid: 721 - - port: Reverse - uid: 720 - - port: Reverse - uid: 716 - Middle: - - port: Off - uid: 721 - - port: Off - uid: 720 - - port: Off - uid: 716 - type: SignalTransmitter + - linkedPorts: + 721: + - Left: Forward + - Right: Reverse + - Middle: Off + 720: + - Left: Forward + - Right: Reverse + - Middle: Off + 716: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 983 components: - pos: 2.5,-13.5 @@ -5469,22 +5127,6 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - registeredSinks: - Left: - - 985 - - 259 - - 989 - - 463 - Right: - - 985 - - 259 - - 989 - - 463 - Middle: - - 985 - - 259 - - 989 - - 463 type: DeviceLinkSource - proto: UnfinishedMachineFrame entities: diff --git a/Resources/Maps/Test/empty.yml b/Resources/Maps/Test/empty.yml index c5e01b5217..8cfd608ea6 100644 --- a/Resources/Maps/Test/empty.yml +++ b/Resources/Maps/Test/empty.yml @@ -1,9 +1,9 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space - 68: FloorSteel + 69: FloorSteel entities: - proto: "" entities: @@ -15,10 +15,7 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAA== - 0,0: - ind: 0,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -26,7 +23,8 @@ 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 331f44040b..069c7e8380 100644 --- a/Resources/Maps/Test/floor3x3.yml +++ b/Resources/Maps/Test/floor3x3.yml @@ -1,10 +1,10 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space 11: FloorAsteroidTile - 68: FloorSteel + 69: FloorSteel entities: - proto: "" entities: @@ -16,7 +16,7 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAARAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAARQAAAA== -1,0: ind: -1,0 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== @@ -33,7 +33,8 @@ 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 179bec7705..41debf8ff3 100644 --- a/Resources/Maps/Test/npc_test_map.yml +++ b/Resources/Maps/Test/npc_test_map.yml @@ -1,10 +1,10 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space - 58: FloorReinforced - 68: FloorSteel + 59: FloorReinforced + 69: FloorSteel entities: - proto: "" entities: @@ -17,6 +17,8 @@ entities: - type: Broadphase - type: OccluderTree - type: LoadedMap + - type: GridTree + - type: MovedGrids - uid: 10 components: - type: MetaData @@ -26,28 +28,28 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAA== 0,-1: ind: 0,-1 - tiles: OgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAA== + tiles: OwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAA== 0,0: ind: 0,0 - tiles: OgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: OwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAA== 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAA== 1,0: ind: 1,0 - tiles: RAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -55,7 +57,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity @@ -244,22 +247,22 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAA== -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAA== -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAA== -1,0: ind: -1,0 - tiles: OgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAA== + tiles: OwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAA== -1,1: ind: -1,1 - tiles: OgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: OwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,1: ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== index: 1 type: MapGrid - type: Broadphase @@ -268,7 +271,8 @@ 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 07a35467eb..687ab00491 100644 --- a/Resources/Maps/aspid.yml +++ b/Resources/Maps/aspid.yml @@ -271,10 +271,10 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 5231: -43,28 - 5232: -43,27 - 5251: -46,27 - 5252: -46,28 + 5210: -43,28 + 5211: -43,27 + 5230: -46,27 + 5231: -46,28 - node: color: '#FFFFFFFF' id: Bot @@ -296,45 +296,45 @@ entities: 1712: 8,-37 1713: 9,-37 2016: 7,-22 - 2443: 27,23 - 2444: 27,26 - 2445: 48,42 - 2446: 27,43 - 2447: 18,36 - 2448: 16,29 - 2449: 7,34 - 2450: -10,23 - 2451: -22,25 - 2452: -16,30 - 2453: -25,38 - 2454: -31,22 - 2456: -46,44 - 2457: -18,53 - 2458: 4,52 - 2459: -4,57 - 2460: -3,68 - 2461: 2,70 - 2462: -8,76 - 2463: -2,27 - 2464: 16,20 - 2465: 45,12 - 2466: 33,7 - 2467: 45,-7 - 2468: 17,-4 - 2469: 10,-16 - 2470: -8,-15 - 2471: 3,2 - 2472: -14,1 - 2473: 11,7 - 2474: 7,-6 - 2475: -18,-20 - 2476: -39,-3 - 2477: -46,12 - 2478: -35,16 - 2479: -24,15 - 2480: 14,47 - 2481: -34,-9 - 5214: -37,24 + 2428: 27,23 + 2429: 27,26 + 2430: 48,42 + 2431: 27,43 + 2432: 18,36 + 2433: 16,29 + 2434: 7,34 + 2435: -10,23 + 2436: -22,25 + 2437: -16,30 + 2438: -25,38 + 2439: -31,22 + 2440: -46,44 + 2441: -18,53 + 2442: 4,52 + 2443: -4,57 + 2444: -3,68 + 2445: 2,70 + 2446: -8,76 + 2447: -2,27 + 2448: 16,20 + 2449: 45,12 + 2450: 33,7 + 2451: 45,-7 + 2452: 17,-4 + 2453: 10,-16 + 2454: -8,-15 + 2455: 3,2 + 2456: -14,1 + 2457: 11,7 + 2458: 7,-6 + 2459: -18,-20 + 2460: -39,-3 + 2461: -46,12 + 2462: -35,16 + 2463: -24,15 + 2464: 14,47 + 2465: -34,-9 + 5195: -37,24 - node: color: '#52B4E996' id: BotGreyscale @@ -354,9 +354,9 @@ entities: color: '#52B4E996' id: BotLeftGreyscale decals: - 2319: 27,5 - 2320: 27,6 - 2321: 27,4 + 2304: 27,5 + 2305: 27,6 + 2306: 27,4 - node: color: '#FFFFFFFF' id: BotRight @@ -370,8 +370,8 @@ entities: color: '#FFFFFFFF' id: BotRight decals: - 5235: -41,24 - 5236: -41,22 + 5214: -41,24 + 5215: -41,22 - node: color: '#FFFFFFFF' id: Box @@ -447,10 +447,10 @@ entities: 1455: -7,-5 1456: -4,-5 1457: -4,-3 - 5102: -13,-5 - 5103: -13,-3 - 5104: -10,-3 - 5105: -10,-5 + 5085: -13,-5 + 5086: -13,-3 + 5087: -10,-3 + 5088: -10,-5 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe @@ -467,9 +467,9 @@ entities: 1900: 18,-22 1943: -11,-18 1999: 5,47 - 2307: 13,54 - 2342: 18,-34 - 5107: 19,-14 + 2292: 13,54 + 2327: 18,-34 + 5090: 19,-14 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw @@ -486,7 +486,7 @@ entities: 1791: 5,-25 1930: 18,-14 2000: 4,47 - 2308: 8,54 + 2293: 8,54 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe @@ -497,8 +497,8 @@ entities: 1929: 19,-18 2001: 5,46 2017: 7,-27 - 2309: 13,53 - 2339: 18,-38 + 2294: 13,53 + 2324: 18,-38 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw @@ -508,7 +508,7 @@ entities: 1793: 5,-26 1928: 18,-18 2002: 4,46 - 2310: 8,53 + 2295: 8,53 - node: color: '#FFFFFFFF' id: BrickTileDarkEndE @@ -543,13 +543,13 @@ entities: decals: 1937: 13,-25 1986: 0,45 - 2341: 18,-35 - 2343: 17,-34 + 2326: 18,-35 + 2328: 17,-34 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 2377: 29,2 + 2362: 29,2 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe @@ -559,8 +559,8 @@ entities: 1913: 17,-10 1938: 13,-23 1985: 0,48 - 2340: 18,-37 - 2344: 17,-38 + 2325: 18,-37 + 2329: 17,-38 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw @@ -569,7 +569,7 @@ entities: 415: 1,76 684: -7,62 1914: 20,-10 - 2376: 29,7 + 2361: 29,7 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE @@ -645,18 +645,18 @@ entities: 2018: 7,-26 2019: 7,-25 2020: 7,-24 - 2158: -37,28 - 2159: -37,27 - 2160: -37,23 - 2161: -37,26 - 2162: -37,25 - 2201: -35,-1 - 2202: -35,-2 - 2203: -35,-3 - 2204: -35,-4 - 2205: -35,-5 - 2206: -35,-6 - 5212: -37,24 + 2148: -37,28 + 2149: -37,27 + 2150: -37,23 + 2151: -37,26 + 2152: -37,25 + 2186: -35,-1 + 2187: -35,-2 + 2188: -35,-3 + 2189: -35,-4 + 2190: -35,-5 + 2191: -35,-6 + 5193: -37,24 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -705,41 +705,41 @@ entities: 2075: -37,11 2076: -36,11 2077: -35,11 - 2224: 26,-12 - 2225: 27,-12 - 2226: 28,-12 - 2227: 29,-12 - 2228: 30,-12 - 2275: 41,44 - 2276: 42,44 - 2277: 43,44 - 2278: 44,44 - 2311: 9,54 - 2312: 10,54 - 2313: 11,54 - 2314: 12,54 - 5124: 22,-17 - 5125: 21,-17 - 5126: 20,-17 - 5127: 20,-15 - 5128: 21,-15 - 5129: 22,-15 - 5130: 15,-15 - 5131: 16,-15 - 5132: 17,-15 - 5133: 15,-17 - 5134: 16,-17 - 5135: 17,-17 - 5172: 18,-13 - 5173: 19,-13 - 5239: -46,28 - 5240: -45,28 + 2209: 26,-12 + 2210: 27,-12 + 2211: 28,-12 + 2212: 29,-12 + 2213: 30,-12 + 2260: 41,44 + 2261: 42,44 + 2262: 43,44 + 2263: 44,44 + 2296: 9,54 + 2297: 10,54 + 2298: 11,54 + 2299: 12,54 + 5107: 22,-17 + 5108: 21,-17 + 5109: 20,-17 + 5110: 20,-15 + 5111: 21,-15 + 5112: 22,-15 + 5113: 15,-15 + 5114: 16,-15 + 5115: 17,-15 + 5116: 15,-17 + 5117: 16,-17 + 5118: 17,-17 + 5155: 18,-13 + 5156: 19,-13 + 5218: -46,28 + 5219: -45,28 - node: color: '#D4D4D479' id: BrickTileDarkLineS decals: - 5166: 18,-12 - 5167: 19,-12 + 5149: 18,-12 + 5150: 19,-12 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -819,35 +819,35 @@ entities: 2072: -37,9 2073: -36,9 2074: -35,9 - 2219: 26,-14 - 2220: 27,-14 - 2221: 28,-14 - 2222: 29,-14 - 2223: 30,-14 - 2271: 41,42 - 2272: 42,42 - 2273: 43,42 - 2274: 44,42 - 2315: 9,53 - 2316: 10,53 - 2317: 11,53 - 2318: 12,53 - 5112: 22,-15 - 5113: 21,-15 - 5114: 20,-15 - 5115: 17,-15 - 5116: 16,-15 - 5117: 15,-15 - 5118: 15,-17 - 5119: 16,-17 - 5120: 17,-17 - 5121: 20,-17 - 5122: 21,-17 - 5123: 22,-17 - 5170: 18,-13 - 5171: 19,-13 - 5237: -45,27 - 5238: -46,27 + 2204: 26,-14 + 2205: 27,-14 + 2206: 28,-14 + 2207: 29,-14 + 2208: 30,-14 + 2256: 41,42 + 2257: 42,42 + 2258: 43,42 + 2259: 44,42 + 2300: 9,53 + 2301: 10,53 + 2302: 11,53 + 2303: 12,53 + 5095: 22,-15 + 5096: 21,-15 + 5097: 20,-15 + 5098: 17,-15 + 5099: 16,-15 + 5100: 15,-15 + 5101: 15,-17 + 5102: 16,-17 + 5103: 17,-17 + 5104: 20,-17 + 5105: 21,-17 + 5106: 22,-17 + 5153: 18,-13 + 5154: 19,-13 + 5216: -45,27 + 5217: -46,27 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -925,26 +925,26 @@ entities: 1963: -14,-24 1964: -14,-23 1965: -14,-22 - 2148: -40,17 - 2149: -40,18 - 2150: -40,19 - 2151: -40,20 - 2156: -40,29 - 2157: -40,30 - 2195: -37,-1 - 2196: -37,-2 - 2197: -37,-3 - 2198: -37,-4 - 2199: -37,-5 - 2200: -37,-6 - 2374: 29,4 - 2375: 29,5 - 5215: -43,26 - 5216: -43,25 - 5217: -43,24 - 5218: -43,23 - 5219: -43,22 - 5220: -43,21 + 2142: -40,17 + 2143: -40,18 + 2144: -40,19 + 2145: -40,20 + 2146: -40,29 + 2147: -40,30 + 2180: -37,-1 + 2181: -37,-2 + 2182: -37,-3 + 2183: -37,-4 + 2184: -37,-5 + 2185: -37,-6 + 2359: 29,4 + 2360: 29,5 + 5196: -43,26 + 5197: -43,25 + 5198: -43,24 + 5199: -43,23 + 5200: -43,22 + 5201: -43,21 - node: color: '#FFFFFFFF' id: BrickTileSteelBox @@ -1026,8 +1026,8 @@ entities: 1828: -6,19 1857: -48,41 2125: -36,7 - 2185: -4,57 - 2401: 26,18 + 2170: -4,57 + 2386: 26,18 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe @@ -1035,7 +1035,7 @@ entities: 772: 21,40 1334: -10,-15 1357: 11,-15 - 2395: 23,20 + 2380: 23,20 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw @@ -1046,17 +1046,17 @@ entities: 1335: -13,-15 1356: 8,-15 2126: -36,4 - 2180: -4,52 + 2165: -4,52 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN decals: - 2265: -28,33 + 2250: -28,33 - node: color: '#FFFFFFFF' id: BrickTileSteelEndS decals: - 2266: -28,30 + 2251: -28,30 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw @@ -1112,10 +1112,10 @@ entities: 2096: -38,7 2103: -35,1 2104: -35,2 - 2267: -28,32 - 2268: -28,31 - 2396: 23,21 - 2397: 23,22 + 2252: -28,32 + 2253: -28,31 + 2381: 23,21 + 2382: 23,22 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -1168,8 +1168,8 @@ entities: 1855: -46,41 2128: -35,7 2129: -34,7 - 2186: -3,57 - 2400: 27,18 + 2171: -3,57 + 2385: 27,18 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS @@ -1192,9 +1192,9 @@ entities: 1419: -14,-15 2130: -35,4 2131: -34,4 - 2179: -3,52 - 2398: 21,20 - 2412: 22,20 + 2164: -3,52 + 2383: 21,20 + 2397: 22,20 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -1246,13 +1246,13 @@ entities: 2101: -41,11 2102: -41,3 2127: -36,6 - 2181: -4,53 - 2182: -4,54 - 2183: -4,55 - 2184: -4,56 - 2269: -28,31 - 2270: -28,32 - 2394: 26,17 + 2166: -4,53 + 2167: -4,54 + 2168: -4,55 + 2169: -4,56 + 2254: -28,31 + 2255: -28,32 + 2379: 26,17 - node: color: '#FFFFFFFF' id: BrickTileWhiteBox @@ -1306,8 +1306,8 @@ entities: 1231: -5,23 1683: 7,1 1686: 10,-2 - 2385: -17,-40 - 2390: 16,-40 + 2370: -17,-40 + 2375: 16,-40 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw @@ -1343,7 +1343,7 @@ entities: id: BrickTileWhiteCornerNw decals: 77: 0,80 - 2188: -4,57 + 2173: -4,57 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw @@ -1360,8 +1360,8 @@ entities: 1008: 4,33 1232: -7,23 1682: 6,1 - 2387: -18,-40 - 2388: 15,-40 + 2372: -18,-40 + 2373: 15,-40 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe @@ -1394,8 +1394,8 @@ entities: 1226: -4,21 1227: -5,22 1681: 10,-4 - 2384: -17,-41 - 2389: 16,-41 + 2369: -17,-41 + 2374: 16,-41 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw @@ -1422,7 +1422,7 @@ entities: id: BrickTileWhiteCornerSw decals: 594: -20,44 - 2193: -4,52 + 2178: -4,52 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw @@ -1434,8 +1434,8 @@ entities: 1005: 4,31 1233: -7,22 1684: 6,-4 - 2386: -18,-41 - 2391: 15,-41 + 2371: -18,-41 + 2376: 15,-41 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndN @@ -1461,7 +1461,7 @@ entities: color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 2379: 29,2 + 2364: 29,2 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe @@ -1479,7 +1479,7 @@ entities: id: BrickTileWhiteInnerSw decals: 1918: 20,-10 - 2378: 29,7 + 2363: 29,7 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw @@ -1554,12 +1554,12 @@ entities: 2113: -38,5 2114: -38,4 2115: -38,3 - 2163: -37,28 - 2164: -37,27 - 2165: -37,26 - 2166: -37,25 - 2168: -37,23 - 5213: -37,24 + 2153: -37,28 + 2154: -37,27 + 2155: -37,26 + 2156: -37,25 + 2157: -37,23 + 5194: -37,24 - node: color: '#D381C996' id: BrickTileWhiteLineE @@ -1614,12 +1614,12 @@ entities: 659: -6,54 660: -6,53 661: -6,52 - 2207: -35,-6 - 2208: -35,-5 - 2209: -35,-4 - 2210: -35,-3 - 2211: -35,-2 - 2212: -35,-1 + 2192: -35,-6 + 2193: -35,-5 + 2194: -35,-4 + 2195: -35,-3 + 2196: -35,-2 + 2197: -35,-1 - node: color: '#EFB34196' id: BrickTileWhiteLineE @@ -1688,8 +1688,8 @@ entities: 454: 5,74 455: 7,74 1909: 17,-22 - 5136: 17,-15 - 5151: 20,-15 + 5119: 17,-15 + 5134: 20,-15 - node: color: '#52B4E996' id: BrickTileWhiteLineN @@ -1714,14 +1714,14 @@ entities: 1851: 14,29 1852: 15,29 1853: 16,29 - 5139: 15,-17 - 5146: 22,-17 + 5122: 15,-17 + 5129: 22,-17 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 5138: 15,-15 - 5153: 22,-15 + 5121: 15,-15 + 5136: 22,-15 - node: color: '#A4610696' id: BrickTileWhiteLineN @@ -1731,10 +1731,10 @@ entities: 2084: -35,11 2137: -35,7 2138: -34,7 - 5137: 16,-15 - 5152: 21,-15 - 5243: -46,28 - 5244: -45,28 + 5120: 16,-15 + 5135: 21,-15 + 5222: -46,28 + 5223: -45,28 - node: color: '#D381C996' id: BrickTileWhiteLineN @@ -1763,8 +1763,8 @@ entities: color: '#D4D4D426' id: BrickTileWhiteLineN decals: - 5164: 18,-12 - 5165: 19,-12 + 5147: 18,-12 + 5148: 19,-12 - node: color: '#D56F18EF' id: BrickTileWhiteLineN @@ -1791,18 +1791,18 @@ entities: 675: -14,50 676: -13,50 677: -12,50 - 2187: -3,57 - 2229: 26,-12 - 2230: 27,-12 - 2231: 28,-12 - 2232: 29,-12 - 2233: 30,-12 - 2279: 41,44 - 2280: 42,44 - 2281: 43,44 - 2282: 44,44 - 5140: 16,-17 - 5147: 21,-17 + 2172: -3,57 + 2214: 26,-12 + 2215: 27,-12 + 2216: 28,-12 + 2217: 29,-12 + 2218: 30,-12 + 2264: 41,44 + 2265: 42,44 + 2266: 43,44 + 2267: 44,44 + 5123: 16,-17 + 5130: 21,-17 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -1829,8 +1829,8 @@ entities: 1949: -14,-18 1950: -13,-18 1951: -12,-18 - 5141: 17,-17 - 5150: 20,-17 + 5124: 17,-17 + 5133: 20,-17 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN @@ -1892,8 +1892,8 @@ entities: 1848: 14,27 1849: 15,27 1850: 16,27 - 5144: 15,-15 - 5145: 22,-15 + 5127: 15,-15 + 5128: 22,-15 - node: color: '#5A5A605A' id: BrickTileWhiteLineS @@ -1917,8 +1917,8 @@ entities: 2081: -35,9 2132: -34,4 2133: -35,4 - 5241: -45,27 - 5242: -46,27 + 5220: -45,27 + 5221: -46,27 - node: color: '#D381C996' id: BrickTileWhiteLineS @@ -1937,20 +1937,20 @@ entities: 1239: -7,21 1240: -6,21 1241: -5,21 - 5154: 16,-17 - 5159: 21,-17 + 5137: 16,-17 + 5142: 21,-17 - node: color: '#D4D4D428' id: BrickTileWhiteLineS decals: - 5157: 15,-17 - 5158: 22,-17 + 5140: 15,-17 + 5141: 22,-17 - node: color: '#D4D4D496' id: BrickTileWhiteLineS decals: - 5155: 17,-17 - 5156: 20,-17 + 5138: 17,-17 + 5139: 20,-17 - node: color: '#D56F18EF' id: BrickTileWhiteLineS @@ -1997,18 +1997,18 @@ entities: 688: -8,62 689: -9,62 690: -10,62 - 2194: -3,52 - 2234: 26,-14 - 2235: 27,-14 - 2236: 28,-14 - 2237: 29,-14 - 2238: 30,-14 - 2283: 41,42 - 2284: 42,42 - 2285: 43,42 - 2286: 44,42 - 5143: 16,-15 - 5148: 21,-15 + 2179: -3,52 + 2219: 26,-14 + 2220: 27,-14 + 2221: 28,-14 + 2222: 29,-14 + 2223: 30,-14 + 2268: 41,42 + 2269: 42,42 + 2270: 43,42 + 2271: 44,42 + 5126: 16,-15 + 5131: 21,-15 - node: color: '#EFB34196' id: BrickTileWhiteLineS @@ -2016,8 +2016,8 @@ entities: 2025: 6,-27 2026: 5,-27 2027: 4,-27 - 5142: 17,-15 - 5149: 20,-15 + 5125: 17,-15 + 5132: 20,-15 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS @@ -2056,8 +2056,8 @@ entities: 441: -2,73 442: -2,71 443: -2,70 - 2380: 29,4 - 2381: 29,5 + 2365: 29,4 + 2366: 29,5 - node: color: '#52B4E996' id: BrickTileWhiteLineW @@ -2093,18 +2093,18 @@ entities: 2123: -44,-2 2124: -44,-3 2135: -36,6 - 2169: -40,30 - 2170: -40,29 - 2175: -40,20 - 2176: -40,19 - 2177: -40,18 - 2178: -40,17 - 5221: -43,26 - 5222: -43,25 - 5223: -43,24 - 5224: -43,23 - 5225: -43,22 - 5226: -43,21 + 2158: -40,30 + 2159: -40,29 + 2160: -40,20 + 2161: -40,19 + 2162: -40,18 + 2163: -40,17 + 5202: -43,26 + 5203: -43,25 + 5204: -43,24 + 5205: -43,23 + 5206: -43,22 + 5207: -43,21 - node: color: '#D381C996' id: BrickTileWhiteLineW @@ -2159,16 +2159,16 @@ entities: 681: -7,61 682: -7,60 683: -7,59 - 2189: -4,56 - 2190: -4,55 - 2191: -4,54 - 2192: -4,53 - 2213: -37,-6 - 2214: -37,-5 - 2215: -37,-4 - 2216: -37,-3 - 2217: -37,-2 - 2218: -37,-1 + 2174: -4,56 + 2175: -4,55 + 2176: -4,54 + 2177: -4,53 + 2198: -37,-6 + 2199: -37,-5 + 2200: -37,-4 + 2201: -37,-3 + 2202: -37,-2 + 2203: -37,-1 - node: color: '#EFB34196' id: BrickTileWhiteLineW @@ -2241,88 +2241,88 @@ entities: color: '#80C71FA4' id: Busha1 decals: - 5080: -47.70598,40.43374 + 5063: -47.70598,40.43374 - node: color: '#80C71FAB' id: Busha1 decals: - 2404: 22.65236,20.282064 + 2389: 22.65236,20.282064 - node: color: '#FFFFFF7F' id: Busha1 decals: - 2353: 32.123173,40.915573 + 2338: 32.123173,40.915573 - node: color: '#80C71FA4' id: Busha2 decals: - 5082: -45.230186,40.743168 + 5065: -45.230186,40.743168 - node: color: '#80C71FCA' id: Busha2 decals: - 2403: 22.247696,21.53798 + 2388: 22.247696,21.53798 - node: color: '#FFFFFF7F' id: Busha2 decals: - 2352: 28.87165,40.802044 - 2354: 32.094776,39.978962 + 2337: 28.87165,40.802044 + 2339: 32.094776,39.978962 - node: color: '#FFFFFF7F' id: Busha3 decals: - 2355: 28.928446,39.978962 + 2340: 28.928446,39.978962 - node: color: '#80C71FA4' id: Bushb1 decals: - 5079: -46.05545,40.68423 - 5083: -47.396503,39.873817 + 5062: -46.05545,40.68423 + 5066: -47.396503,39.873817 - node: color: '#80C71FCA' id: Bushb1 decals: - 2402: 21.225384,20.367212 + 2387: 21.225384,20.367212 - node: color: '#FFFFFF7F' id: Bushb1 decals: - 2356: 28.857452,41.01491 - 2357: 32.123173,41.043293 + 2341: 28.857452,41.01491 + 2342: 32.123173,41.043293 - node: color: '#80C71FAB' id: Bushb3 decals: - 2405: 26.187859,16.8762 + 2390: 26.187859,16.8762 - node: color: '#80C71FA4' id: Bushc2 decals: - 5081: -45.30387,39.903286 + 5064: -45.30387,39.903286 - node: color: '#FFFFFF7F' id: Bushf1 decals: - 2348: 28.885849,40.418884 - 2349: 32.13737,41.057484 + 2333: 28.885849,40.418884 + 2334: 32.13737,41.057484 - node: color: '#80C71FAB' id: Bushf2 decals: - 2406: 26.99719,17.621233 + 2391: 26.99719,17.621233 - node: color: '#FFFFFF7F' id: Bushf3 decals: - 2346: 32.108974,39.865433 - 2347: 28.87165,41.01491 + 2331: 32.108974,39.865433 + 2332: 28.87165,41.01491 - node: color: '#FFFFFF7F' id: Bushg3 decals: - 2350: 28.843252,39.879623 - 2351: 32.165768,40.518223 + 2335: 28.843252,39.879623 + 2336: 32.165768,40.518223 - node: color: '#DE3A3A96' id: CautionGreyscale @@ -2480,23 +2480,23 @@ entities: color: '#52B4E996' id: DeliveryGreyscale decals: - 2322: 27,3 + 2307: 27,3 - node: color: '#334E6DC8' id: DiagonalCheckerAOverlay decals: - 2295: 13,53 - 2296: 13,54 - 2297: 11,54 - 2298: 12,54 - 2299: 12,53 - 2300: 11,53 - 2301: 10,53 - 2302: 10,54 - 2303: 9,54 - 2304: 9,53 - 2305: 8,53 - 2306: 8,54 + 2280: 13,53 + 2281: 13,54 + 2282: 11,54 + 2283: 12,54 + 2284: 12,53 + 2285: 11,53 + 2286: 10,53 + 2287: 10,54 + 2288: 9,54 + 2289: 9,53 + 2290: 8,53 + 2291: 8,54 - node: color: '#52B4E996' id: DiagonalCheckerAOverlay @@ -2519,2794 +2519,2794 @@ entities: color: '#83543273' id: Dirt decals: - 2482: 6,-9 - 2483: 4,-9 - 2484: 2,-9 - 2485: 0,-9 - 2486: -2,-9 - 2487: -4,-9 - 2488: -6,-9 - 2489: -7,-9 - 2490: -9,-9 - 2491: -11,-9 - 2492: -13,-9 - 2493: -15,-9 - 2494: -17,-9 - 2495: -18,-9 - 2496: -19,-9 - 2497: -21,-9 - 2498: -23,-9 - 2499: -25,-9 - 2500: -27,-9 - 2501: -30,-9 - 2502: -32,-9 - 2503: -32,-7 - 2504: -32,-4 - 2505: -32,-1 - 2506: -32,0 - 2507: -32,4 - 2508: -32,8 - 2509: -32,12 - 2510: -32,14 - 2511: -34,14 - 2512: -36,14 - 2513: -38,14 - 2514: -39,14 - 2515: -42,14 - 2516: -44,14 - 2517: -46,14 - 2518: -48,14 - 2519: -50,14 - 2520: -48,14 - 2521: -46,14 - 2522: -44,14 - 2523: -42,14 - 2524: -40,14 - 2525: -38,14 - 2526: -36,14 - 2527: -29,14 - 2528: -27,14 - 2529: -25,14 - 2530: -23,14 - 2531: -21,14 - 2532: -19,14 - 2533: -17,14 - 2534: -15,14 - 2535: -13,14 - 2536: -11,14 - 2537: -9,14 - 2538: -7,14 - 2539: -5,14 - 2540: -3,14 - 2541: -1,14 - 2542: 1,14 - 2543: 3,14 - 2544: 5,14 - 2545: 7,14 - 2546: 9,14 - 2547: 11,14 - 2548: 13,14 - 2549: 15,14 - 2550: 17,14 - 2551: 19,14 - 2552: 21,14 - 2553: 23,14 - 2554: 25,14 - 2555: 27,14 - 2556: 29,14 - 2557: 31,14 - 2558: 33,14 - 2559: 35,14 - 2560: 37,14 - 2561: 39,14 - 2562: 41,14 - 2563: 43,14 - 2564: 45,14 - 2565: 47,14 - 2566: 49,14 - 2567: 30,14 - 2568: 30,15 - 2569: 30,17 - 2570: 30,19 - 2571: 30,22 - 2572: 30,24 - 2573: 30,26 - 2574: 30,28 - 2575: 30,30 - 2576: 30,32 - 2577: 30,34 - 2578: 31,28 - 2579: 31,24 - 2580: 31,20 - 2581: 32,19 - 2582: 31,10 - 2583: 31,6 - 2584: 30,5 - 2585: 28,3 + 2466: 6,-9 + 2467: 4,-9 + 2468: 2,-9 + 2469: 0,-9 + 2470: -2,-9 + 2471: -4,-9 + 2472: -6,-9 + 2473: -7,-9 + 2474: -9,-9 + 2475: -11,-9 + 2476: -13,-9 + 2477: -15,-9 + 2478: -17,-9 + 2479: -18,-9 + 2480: -19,-9 + 2481: -21,-9 + 2482: -23,-9 + 2483: -25,-9 + 2484: -27,-9 + 2485: -30,-9 + 2486: -32,-9 + 2487: -32,-7 + 2488: -32,-4 + 2489: -32,-1 + 2490: -32,0 + 2491: -32,4 + 2492: -32,8 + 2493: -32,12 + 2494: -32,14 + 2495: -34,14 + 2496: -36,14 + 2497: -38,14 + 2498: -39,14 + 2499: -42,14 + 2500: -44,14 + 2501: -46,14 + 2502: -48,14 + 2503: -50,14 + 2504: -48,14 + 2505: -46,14 + 2506: -44,14 + 2507: -42,14 + 2508: -40,14 + 2509: -38,14 + 2510: -36,14 + 2511: -29,14 + 2512: -27,14 + 2513: -25,14 + 2514: -23,14 + 2515: -21,14 + 2516: -19,14 + 2517: -17,14 + 2518: -15,14 + 2519: -13,14 + 2520: -11,14 + 2521: -9,14 + 2522: -7,14 + 2523: -5,14 + 2524: -3,14 + 2525: -1,14 + 2526: 1,14 + 2527: 3,14 + 2528: 5,14 + 2529: 7,14 + 2530: 9,14 + 2531: 11,14 + 2532: 13,14 + 2533: 15,14 + 2534: 17,14 + 2535: 19,14 + 2536: 21,14 + 2537: 23,14 + 2538: 25,14 + 2539: 27,14 + 2540: 29,14 + 2541: 31,14 + 2542: 33,14 + 2543: 35,14 + 2544: 37,14 + 2545: 39,14 + 2546: 41,14 + 2547: 43,14 + 2548: 45,14 + 2549: 47,14 + 2550: 49,14 + 2551: 30,14 + 2552: 30,15 + 2553: 30,17 + 2554: 30,19 + 2555: 30,22 + 2556: 30,24 + 2557: 30,26 + 2558: 30,28 + 2559: 30,30 + 2560: 30,32 + 2561: 30,34 + 2562: 31,28 + 2563: 31,24 + 2564: 31,20 + 2565: 32,19 + 2566: 31,10 + 2567: 31,6 + 2568: 30,5 + 2569: 28,3 - node: cleanable: True color: '#83543273' id: Dirt decals: - 2586: 27,3 - 2587: 27,4 - 2588: 27,5 - 2589: 27,6 - 2590: 28,6 - 2591: 29,6 - 2592: 29,5 - 2593: 31,5 - 2594: 32,6 - 2595: 32,11 - 2596: 32,14 - 2597: 26,14 - 2598: 21,14 - 2599: 18,14 - 2600: 16,14 - 2601: 14,14 - 2602: 10,14 - 2603: 5,14 - 2604: 2,14 - 2605: -4,14 - 2606: -7,14 - 2607: -10,14 - 2608: -13,14 - 2609: -15,14 - 2610: -19,14 - 2611: -21,14 - 2612: -26,14 - 2613: -28,13 - 2614: -30,13 - 2615: -33,14 - 2616: -35,14 - 2617: -37,13 - 2618: -39,14 - 2619: -41,14 - 2620: -39,15 - 2621: -38,15 - 2622: -37,14 - 2623: -48,13 - 2624: -50,13 - 2625: -51,15 - 2626: -51,13 - 2627: -53,13 - 2628: -53,15 - 2629: -51,14 - 2630: -34,4 - 2631: -34,6 - 2632: -34,7 - 2633: -34,5 - 2634: -36,5 - 2635: -36,4 - 2636: -36,6 - 2637: -36,7 - 2638: -35,7 - 2639: -31,7 - 2640: -31,6 - 2641: -31,4 - 2642: -34,4 - 2643: -36,2 - 2644: -37,2 - 2645: -39,2 - 2646: -41,1 - 2647: -41,0 - 2648: -40,0 - 2649: -40,1 - 2650: -42,2 - 2651: -43,2 - 2652: -44,2 - 2653: -45,2 - 2654: -44,4 - 2655: -43,4 - 2656: -43,4 - 2657: -42,4 - 2658: -40,4 - 2659: -39,6 - 2660: -39,5 - 2661: -40,6 - 2662: -41,8 - 2663: -41,10 - 2664: -41,10 - 2665: -39,7 - 2666: -38,7 - 2667: -41,-1 - 2668: -42,-3 - 2669: -41,-3 - 2670: -42,-4 - 2671: -41,-4 - 2672: -42,-5 - 2673: -42,-6 - 2674: -41,-7 - 2675: -42,-8 - 2676: -44,-8 - 2677: -43,-6 - 2678: -40,-6 - 2679: -39,-6 - 2680: -39,-8 - 2681: -41,-8 - 2682: -39,-5 - 2683: -42,-2 - 2684: -42,-1 - 2685: -39,-2 - 2686: -39,1 - 2687: -37,1 - 2688: -36,-3 - 2689: -35,-5 - 2690: -35,-5 - 2691: -37,-3 - 2692: -40,-2 - 2693: -35,-6 - 2694: -36,-5 - 2695: -36,-4 - 2696: -37,-3 - 2697: -37,-2 - 2698: -33,-5 - 2699: -32,-5 - 2700: -33,-5 - 2701: -32,-3 - 2702: -32,-2 - 2703: -32,1 - 2704: -32,4 - 2705: -32,8 - 2706: -32,5 - 2707: -32,6 - 2708: -33,7 - 2709: -33,6 - 2710: -33,4 - 2711: -33,3 - 2712: -32,2 - 2713: -32,3 - 2714: -31,0 - 2715: -31,1 - 2716: -32,-6 - 2717: -31,-7 - 2718: -31,-8 - 2719: -30,-8 - 2720: -29,-9 - 2721: -28,-9 - 2722: -27,-8 - 2723: -28,-8 - 2724: -27,-9 - 2725: -28,-10 - 2726: -27,-10 - 2727: -29,-10 - 2728: -25,-9 - 2729: -21,-9 - 2730: -19,-9 - 2731: -17,-9 - 2732: -14,-9 - 2733: -11,-9 - 2734: -9,-9 - 2735: -6,-9 - 2736: -4,-9 - 2737: -2,-9 - 2738: 2,-9 - 2739: 4,-9 - 2740: 6,-9 - 2741: 9,-9 - 2742: 11,-9 - 2743: 13,-9 - 2744: 15,-9 - 2745: 18,-9 - 2746: 20,-9 - 2747: 23,-9 - 2748: 25,-9 - 2749: 27,-9 - 2750: 30,-9 - 2751: 32,-9 - 2752: 35,-9 - 2753: 37,-9 - 2754: 39,-9 - 2755: 42,-9 - 2756: 44,-9 - 2757: 46,-9 - 2758: 48,-9 - 2759: 46,-10 - 2760: 46,-9 - 2761: 47,-9 - 2762: 48,-10 - 2763: 49,-10 - 2764: 49,-9 - 2765: 50,-8 - 2766: 51,-8 - 2767: 50,-8 - 2768: 50,-10 - 2769: 48,-10 - 2770: 44,-10 - 2771: 38,-10 - 2772: 39,-10 - 2773: 41,-10 - 2774: 40,-9 - 2775: 38,-9 - 2776: 38,-10 - 2777: 37,-9 - 2778: 34,-8 - 2779: 33,-8 - 2780: 32,-8 - 2781: 32,-7 - 2782: 30,-8 - 2783: 30,-7 - 2784: 29,-8 - 2785: 29,-10 - 2786: 30,-10 - 2787: 26,-11 - 2788: 27,-10 - 2789: 27,-11 - 2790: 27,-12 - 2791: 27,-13 - 2792: 28,-13 - 2793: 28,-14 - 2794: 28,-15 - 2795: 27,-14 - 2796: 28,-14 - 2797: 27,-9 - 2798: 30,-5 - 2799: 30,-2 - 2800: 32,-2 - 2801: 31,-3 - 2802: 30,-4 - 2803: 30,-4 - 2804: 31,-6 - 2805: 32,-5 - 2806: 30,-1 - 2807: 30,2 - 2808: 29,3 - 2809: 33,3 - 2810: 34,0 - 2811: 34,2 - 2812: 34,5 - 2813: 34,1 - 2814: 32,0 - 2815: 29,4 - 2816: 31,8 - 2817: 32,11 - 2818: 30,14 - 2819: 35,13 - 2820: 39,12 - 2821: 42,14 - 2822: 45,14 + 2570: 27,3 + 2571: 27,4 + 2572: 27,5 + 2573: 27,6 + 2574: 28,6 + 2575: 29,6 + 2576: 29,5 + 2577: 31,5 + 2578: 32,6 + 2579: 32,11 + 2580: 32,14 + 2581: 26,14 + 2582: 21,14 + 2583: 18,14 + 2584: 16,14 + 2585: 14,14 + 2586: 10,14 + 2587: 5,14 + 2588: 2,14 + 2589: -4,14 + 2590: -7,14 + 2591: -10,14 + 2592: -13,14 + 2593: -15,14 + 2594: -19,14 + 2595: -21,14 + 2596: -26,14 + 2597: -28,13 + 2598: -30,13 + 2599: -33,14 + 2600: -35,14 + 2601: -37,13 + 2602: -39,14 + 2603: -41,14 + 2604: -39,15 + 2605: -38,15 + 2606: -37,14 + 2607: -48,13 + 2608: -50,13 + 2609: -51,15 + 2610: -51,13 + 2611: -53,13 + 2612: -53,15 + 2613: -51,14 + 2614: -34,4 + 2615: -34,6 + 2616: -34,7 + 2617: -34,5 + 2618: -36,5 + 2619: -36,4 + 2620: -36,6 + 2621: -36,7 + 2622: -35,7 + 2623: -31,7 + 2624: -31,6 + 2625: -31,4 + 2626: -34,4 + 2627: -36,2 + 2628: -37,2 + 2629: -39,2 + 2630: -41,1 + 2631: -41,0 + 2632: -40,0 + 2633: -40,1 + 2634: -42,2 + 2635: -43,2 + 2636: -44,2 + 2637: -45,2 + 2638: -44,4 + 2639: -43,4 + 2640: -43,4 + 2641: -42,4 + 2642: -40,4 + 2643: -39,6 + 2644: -39,5 + 2645: -40,6 + 2646: -41,8 + 2647: -41,10 + 2648: -41,10 + 2649: -39,7 + 2650: -38,7 + 2651: -41,-1 + 2652: -42,-3 + 2653: -41,-3 + 2654: -42,-4 + 2655: -41,-4 + 2656: -42,-5 + 2657: -42,-6 + 2658: -41,-7 + 2659: -42,-8 + 2660: -44,-8 + 2661: -43,-6 + 2662: -40,-6 + 2663: -39,-6 + 2664: -39,-8 + 2665: -41,-8 + 2666: -39,-5 + 2667: -42,-2 + 2668: -42,-1 + 2669: -39,-2 + 2670: -39,1 + 2671: -37,1 + 2672: -36,-3 + 2673: -35,-5 + 2674: -35,-5 + 2675: -37,-3 + 2676: -40,-2 + 2677: -35,-6 + 2678: -36,-5 + 2679: -36,-4 + 2680: -37,-3 + 2681: -37,-2 + 2682: -33,-5 + 2683: -32,-5 + 2684: -33,-5 + 2685: -32,-3 + 2686: -32,-2 + 2687: -32,1 + 2688: -32,4 + 2689: -32,8 + 2690: -32,5 + 2691: -32,6 + 2692: -33,7 + 2693: -33,6 + 2694: -33,4 + 2695: -33,3 + 2696: -32,2 + 2697: -32,3 + 2698: -31,0 + 2699: -31,1 + 2700: -32,-6 + 2701: -31,-7 + 2702: -31,-8 + 2703: -30,-8 + 2704: -29,-9 + 2705: -28,-9 + 2706: -27,-8 + 2707: -28,-8 + 2708: -27,-9 + 2709: -28,-10 + 2710: -27,-10 + 2711: -29,-10 + 2712: -25,-9 + 2713: -21,-9 + 2714: -19,-9 + 2715: -17,-9 + 2716: -14,-9 + 2717: -11,-9 + 2718: -9,-9 + 2719: -6,-9 + 2720: -4,-9 + 2721: -2,-9 + 2722: 2,-9 + 2723: 4,-9 + 2724: 6,-9 + 2725: 9,-9 + 2726: 11,-9 + 2727: 13,-9 + 2728: 15,-9 + 2729: 18,-9 + 2730: 20,-9 + 2731: 23,-9 + 2732: 25,-9 + 2733: 27,-9 + 2734: 30,-9 + 2735: 32,-9 + 2736: 35,-9 + 2737: 37,-9 + 2738: 39,-9 + 2739: 42,-9 + 2740: 44,-9 + 2741: 46,-9 + 2742: 48,-9 + 2743: 46,-10 + 2744: 46,-9 + 2745: 47,-9 + 2746: 48,-10 + 2747: 49,-10 + 2748: 49,-9 + 2749: 50,-8 + 2750: 51,-8 + 2751: 50,-8 + 2752: 50,-10 + 2753: 48,-10 + 2754: 44,-10 + 2755: 38,-10 + 2756: 39,-10 + 2757: 41,-10 + 2758: 40,-9 + 2759: 38,-9 + 2760: 38,-10 + 2761: 37,-9 + 2762: 34,-8 + 2763: 33,-8 + 2764: 32,-8 + 2765: 32,-7 + 2766: 30,-8 + 2767: 30,-7 + 2768: 29,-8 + 2769: 29,-10 + 2770: 30,-10 + 2771: 26,-11 + 2772: 27,-10 + 2773: 27,-11 + 2774: 27,-12 + 2775: 27,-13 + 2776: 28,-13 + 2777: 28,-14 + 2778: 28,-15 + 2779: 27,-14 + 2780: 28,-14 + 2781: 27,-9 + 2782: 30,-5 + 2783: 30,-2 + 2784: 32,-2 + 2785: 31,-3 + 2786: 30,-4 + 2787: 30,-4 + 2788: 31,-6 + 2789: 32,-5 + 2790: 30,-1 + 2791: 30,2 + 2792: 29,3 + 2793: 33,3 + 2794: 34,0 + 2795: 34,2 + 2796: 34,5 + 2797: 34,1 + 2798: 32,0 + 2799: 29,4 + 2800: 31,8 + 2801: 32,11 + 2802: 30,14 + 2803: 35,13 + 2804: 39,12 + 2805: 42,14 + 2806: 45,14 + 2807: 50,13 + 2808: 51,13 + 2809: 51,15 + 2810: 50,15 + 2811: 51,15 + 2812: 49,15 + 2813: 48,15 + 2814: 48,17 + 2815: 48,17 + 2816: 48,15 + 2817: 46,15 + 2818: 46,16 + 2819: 46,17 + 2820: 46,15 + 2821: 45,13 + 2822: 48,13 2823: 50,13 - 2824: 51,13 - 2825: 51,15 - 2826: 50,15 - 2827: 51,15 - 2828: 49,15 - 2829: 48,15 - 2830: 48,17 - 2831: 48,17 - 2832: 48,15 - 2833: 46,15 - 2834: 46,16 - 2835: 46,17 - 2836: 46,15 - 2837: 45,13 - 2838: 48,13 - 2839: 50,13 - 2840: 49,13 - 2841: 46,13 - 2842: 42,13 - 2843: 40,14 - 2844: 39,14 - 2845: 36,13 - 2846: 34,15 - 2847: 31,14 - 2848: 30,13 - 2849: 27,13 - 2850: 26,14 - 2851: 24,15 - 2852: 22,14 - 2853: 21,13 - 2854: 30,16 - 2855: 31,18 - 2856: 29,20 - 2857: 31,22 - 2858: 30,24 - 2859: 28,26 - 2860: 29,26 - 2861: 28,26 - 2862: 28,28 - 2863: 27,25 - 2864: 28,25 - 2865: 28,25 - 2866: 29,25 - 2867: 28,28 - 2868: 29,32 - 2869: 29,32 - 2870: 29,33 - 2871: 27,33 - 2872: 27,32 - 2873: 26,32 - 2874: 25,33 - 2875: 25,35 - 2876: 25,35 - 2877: 26,35 - 2878: 25,36 - 2879: 27,36 - 2880: 25,36 - 2881: 26,36 - 2882: 27,36 - 2883: 30,36 - 2884: 30,37 - 2885: 30,38 - 2886: 31,41 - 2887: 30,41 - 2888: 31,40 - 2889: 30,44 - 2890: 30,45 - 2891: 31,46 - 2892: 31,44 - 2893: 30,47 - 2894: 31,49 - 2895: 32,47 - 2896: 35,47 - 2897: 34,48 - 2898: 31,47 - 2899: 28,47 - 2900: 27,47 - 2901: 27,45 - 2902: 27,43 - 2903: 27,47 - 2904: 27,49 - 2905: 29,47 - 2906: 31,48 - 2907: 32,37 - 2908: 34,37 - 2909: 37,37 - 2910: 41,38 - 2911: 46,37 - 2912: 34,38 - 2913: 34,38 - 2914: 36,38 - 2915: 35,38 - 2916: 35,37 - 2917: 39,37 - 2918: 45,36 - 2919: 41,37 - 2920: 41,39 - 2921: 43,40 - 2922: 42,40 - 2923: 41,40 - 2924: 42,40 - 2925: 41,40 - 2926: 45,40 - 2927: 47,41 - 2928: 47,43 - 2929: 47,44 - 2930: 46,42 - 2931: 47,38 - 2932: 47,37 - 2933: 48,40 - 2934: 48,38 - 2935: 49,37 - 2936: 49,36 - 2937: 50,38 - 2938: 51,38 - 2939: 51,38 - 2940: 48,38 - 2941: 51,36 - 2942: 50,36 - 2943: 49,36 - 2944: 51,36 - 2945: 49,38 - 2946: 48,36 - 2947: 48,35 - 2948: 48,35 - 2949: 49,34 - 2950: 47,35 - 2951: 44,36 - 2952: 46,35 - 2953: 46,35 - 2954: 46,36 - 2955: 46,34 - 2956: 46,34 - 2957: 46,37 - 2958: 43,36 - 2959: 43,36 - 2960: 45,38 - 2961: 44,38 - 2962: 45,39 - 2963: 42,39 - 2964: 46,37 - 2965: 43,37 - 2966: 41,37 - 2967: 44,38 - 2968: 45,38 - 2969: 38,37 - 2970: 41,37 - 2971: 42,37 - 2972: 40,37 - 2973: 42,39 - 2974: 41,40 - 2975: 45,43 - 2976: 45,43 - 2977: 44,43 - 2978: 41,43 - 2979: 41,43 - 2980: 43,43 - 2981: 44,43 - 2982: 41,43 - 2983: 44,42 - 2984: 43,42 - 2985: 27,37 - 2986: 25,38 - 2987: 24,38 - 2988: 25,38 - 2989: 26,38 - 2990: 22,40 - 2991: 22,42 - 2992: 20,42 - 2993: 18,41 - 2994: 17,40 - 2995: 18,39 - 2996: 19,41 - 2997: 22,41 - 2998: 22,40 - 2999: 24,38 - 3000: 17,38 - 3001: 14,39 - 3002: 14,41 - 3003: 14,42 - 3004: 13,42 - 3005: 12,44 - 3006: 12,45 - 3007: 14,45 - 3008: 16,46 - 3009: 17,46 - 3010: 18,46 - 3011: 18,45 - 3012: 18,45 - 3013: 18,46 - 3014: 17,46 - 3015: 18,45 - 3016: 20,45 - 3017: 21,45 - 3018: 21,46 - 3019: 21,47 - 3020: 21,48 - 3021: 20,49 - 3022: 16,50 - 3023: 15,47 - 3024: 15,48 - 3025: 15,49 - 3026: 14,44 - 3027: 15,37 - 3028: 13,38 - 3029: 11,38 - 3030: 7,38 - 3031: 12,38 - 3032: 12,38 - 3033: 7,36 - 3034: 3,36 - 3035: 0,36 - 3036: 0,37 - 3037: 5,37 - 3038: 4,37 - 3039: -5,37 - 3040: -9,37 - 3041: -12,37 - 3042: -13,37 - 3043: -7,37 - 3044: -6,37 - 3045: -13,38 - 3046: -18,37 - 3047: -22,37 - 3048: -27,37 - 3049: -29,37 - 3050: -13,42 - 3051: -14,42 - 3052: -14,41 - 3053: -13,41 - 3054: -13,42 - 3055: -15,40 - 3056: -13,40 - 3057: -13,41 - 3058: -14,40 - 3059: -14,40 - 3060: -13,42 - 3061: -13,42 - 3062: -14,40 - 3063: -13,42 - 3064: -11,42 - 3065: -10,41 - 3066: -11,40 - 3067: -11,42 - 3068: -11,41 - 3069: -10,41 - 3070: -11,42 - 3071: -11,40 - 3072: -10,40 - 3073: -10,42 - 3074: -10,40 - 3075: -10,41 - 3076: -10,42 - 3077: -10,42 - 3078: -10,42 - 3079: -7,42 - 3080: -7,41 - 3081: -7,40 - 3082: -7,42 - 3083: -7,40 - 3084: -7,40 - 3085: -8,42 - 3086: -7,40 - 3087: -7,42 - 3088: -8,41 - 3089: -7,42 - 3090: -7,42 - 3091: -4,42 - 3092: -4,41 - 3093: -5,41 - 3094: -5,40 - 3095: -4,40 - 3096: -4,41 - 3097: -5,42 - 3098: -5,42 - 3099: -4,40 - 3100: -4,40 - 3101: -5,42 - 3102: -5,40 - 3103: -4,42 - 3104: -4,42 - 3105: -4,42 - 3106: -5,41 - 3107: -4,44 - 3108: -5,45 - 3109: -7,45 - 3110: -9,46 - 3111: -6,44 - 3112: -8,45 - 3113: -7,44 - 3114: -8,46 - 3115: -12,46 - 3116: -10,44 - 3117: -11,45 - 3118: -13,46 - 3119: -11,45 - 3120: -10,43 - 3121: -13,45 - 3122: -12,43 - 3123: -14,45 - 3124: -15,46 - 3125: -13,44 - 3126: -16,46 - 3127: -14,45 - 3128: -17,46 - 3129: -18,47 - 3130: -18,50 - 3131: -17,52 - 3132: -17,46 - 3133: -18,48 - 3134: -19,48 - 3135: -20,47 - 3136: -20,48 - 3137: -22,48 - 3138: -22,47 - 3139: -23,47 - 3140: -23,48 - 3141: -24,48 - 3142: -22,49 - 3143: -23,46 - 3144: -24,46 - 3145: -22,46 - 3146: -22,49 - 3147: -23,49 - 3148: -22,46 - 3149: -25,48 - 3150: -26,47 - 3151: -26,47 - 3152: -25,48 - 3153: -29,47 - 3154: -29,48 - 3155: -28,48 - 3156: -29,47 - 3157: -28,48 - 3158: -31,47 - 3159: -32,48 - 3160: -36,48 - 3161: -35,47 - 3162: -33,47 - 3163: -34,48 - 3164: -35,48 - 3165: -32,48 - 3166: -32,46 - 3167: -32,45 - 3168: -32,43 - 3169: -34,43 - 3170: -35,43 - 3171: -30,42 - 3172: -30,43 - 3173: -36,43 - 3174: -35,43 - 3175: -31,42 - 3176: -30,43 - 3177: -34,43 - 3178: -27,42 - 3179: -28,43 - 3180: -28,45 - 3181: -29,45 - 3182: -29,44 - 3183: -29,43 - 3184: -18,49 - 3185: -18,52 - 3186: -16,54 - 3187: -15,55 - 3188: -14,53 - 3189: -11,54 - 3190: -10,56 - 3191: -11,58 - 3192: -10,59 - 3193: -11,59 - 3194: -12,59 - 3195: -14,59 - 3196: -16,59 - 3197: -14,59 - 3198: -14,59 - 3199: -12,59 - 3200: -11,58 - 3201: -10,59 - 3202: -9,59 - 3203: -7,59 - 3204: -6,60 - 3205: -7,59 - 3206: -7,60 - 3207: -7,61 - 3208: -7,62 - 3209: -9,63 - 3210: -9,64 - 3211: -9,62 - 3212: -6,63 - 3213: -9,58 - 3214: -9,54 - 3215: -9,53 - 3216: -8,55 - 3217: -7,56 - 3218: -7,54 - 3219: -6,53 - 3220: -7,53 - 3221: -8,55 - 3222: -11,55 - 3223: -9,51 - 3224: -10,50 - 3225: -6,50 - 3226: -3,50 - 3227: -2,50 - 3228: -5,50 - 3229: -8,50 - 3230: -6,50 - 3231: -2,50 - 3232: -2,50 - 3233: -4,50 - 3234: -4,50 - 3235: -2,51 - 3236: -2,51 - 3237: -4,53 - 3238: -4,53 - 3239: -4,54 - 3240: -1,52 - 3241: -1,54 - 3242: 0,57 - 3243: 0,60 - 3244: 0,56 - 3245: 0,54 - 3246: 0,52 - 3247: -2,53 - 3248: -1,56 - 3249: -2,59 - 3250: -1,60 - 3251: -1,64 - 3252: -1,66 - 3253: 0,68 - 3254: 0,67 - 3255: 0,66 - 3256: 0,62 - 3257: 0,59 - 3258: -2,61 - 3259: -1,66 - 3260: -1,69 - 3261: -2,65 - 3262: -1,68 - 3263: -2,71 - 3264: -2,74 - 3265: -1,77 - 3266: 0,67 - 3267: 0,71 - 3268: 0,75 - 3269: 0,78 - 3270: -3,77 - 3271: -5,78 - 3272: -4,79 - 3273: -3,80 - 3274: -4,78 - 3275: -6,77 - 3276: -6,80 - 3277: -4,81 - 3278: -1,81 - 3279: 1,82 - 3280: 3,81 - 3281: 4,81 - 3282: 4,78 - 3283: 5,77 - 3284: 6,76 - 3285: 2,76 - 3286: 1,78 - 3287: -1,79 - 3288: -4,78 - 3289: 1,79 - 3290: 2,79 - 3291: 2,80 - 3292: 4,80 - 3293: 4,78 - 3294: -2,77 - 3295: -6,78 - 3296: -6,80 - 3297: -4,82 - 3298: -8,76 - 3299: -8,75 - 3300: -6,76 - 3301: -6,74 - 3302: -9,72 - 3303: -8,72 - 3304: -9,71 - 3305: -9,70 - 3306: -9,69 - 3307: -8,70 - 3308: -8,69 - 3309: -9,69 - 3310: -9,72 - 3311: -6,75 - 3312: -6,76 - 3313: 1,67 - 3314: 4,67 - 3315: 8,67 - 3316: 9,68 - 3317: 10,69 - 3318: 13,69 - 3319: 7,66 - 3320: 6,67 - 3321: 7,66 - 3322: 9,67 - 3323: 7,66 - 3324: 6,66 - 3325: 9,66 - 3326: 8,66 - 3327: 1,67 - 3328: -1,66 - 3329: 0,62 - 3330: -1,59 - 3331: 1,56 - 3332: 3,55 - 3333: 2,56 - 3334: 3,56 - 3335: 4,56 - 3336: 5,55 - 3337: 7,53 - 3338: 10,53 - 3339: 11,53 - 3340: 14,54 - 3341: 13,55 - 3342: 10,54 - 3343: 7,54 - 3344: 6,52 - 3345: 8,52 - 3346: 11,52 - 3347: 13,52 - 3348: 14,52 - 3349: 11,52 - 3350: 7,52 - 3351: 5,53 - 3352: 3,53 - 3353: 4,53 - 3354: 1,53 - 3355: 0,52 - 3356: 2,52 - 3357: 4,53 - 3358: 0,53 - 3359: 0,50 - 3360: -1,50 - 3361: -1,49 - 3362: -1,47 - 3363: -1,45 - 3364: -1,47 - 3365: -3,48 - 3366: -2,47 - 3367: -2,47 - 3368: -2,48 - 3369: -1,48 - 3370: -1,46 - 3371: -1,44 - 3372: -1,44 - 3373: -2,40 - 3374: -2,39 - 3375: -3,38 - 3376: -4,37 - 3377: -2,38 - 3378: -2,40 - 3379: -2,38 - 3380: -4,38 - 3381: 0,40 - 3382: 0,38 - 3383: 2,37 - 3384: 1,38 - 3385: 0,39 - 3386: -1,40 - 3387: -1,41 - 3388: -1,43 - 3389: -1,44 - 3390: -1,44 - 3391: 1,37 - 3392: 2,37 - 3393: 5,37 - 3394: 10,37 - 3395: 5,37 - 3396: 12,37 - 3397: 15,37 - 3398: 20,37 - 3399: 20,37 - 3400: 11,37 - 3401: 2,37 - 3402: -1,35 - 3403: -1,33 - 3404: -1,31 - 3405: -1,29 - 3406: -1,28 - 3407: -1,28 - 3408: -1,26 - 3409: -1,24 - 3410: -1,22 - 3411: -1,21 - 3412: -1,20 - 3413: -1,18 - 3414: -5,18 - 3415: -6,18 - 3416: -7,18 - 3417: -6,17 - 3418: -7,17 - 3419: -10,17 - 3420: -12,17 - 3421: -9,17 - 3422: -7,17 - 3423: -11,18 - 3424: -9,18 - 3425: -8,17 - 3426: -10,17 - 3427: -6,17 - 3428: -3,17 - 3429: 1,17 - 3430: 5,17 - 3431: 6,17 - 3432: 3,18 - 3433: 10,18 - 3434: 5,18 - 3435: 8,18 - 3436: 12,18 - 3437: 16,18 - 3438: 16,19 - 3439: 15,20 - 3440: 15,20 - 3441: 15,19 - 3442: 14,20 - 3443: 15,20 - 3444: 16,19 - 3445: 10,18 - 3446: 7,18 - 3447: 6,18 - 3448: 5,17 - 3449: 11,19 - 3450: 11,20 - 3451: 11,23 - 3452: 11,22 - 3453: 11,21 - 3454: 10,23 - 3455: 10,24 - 3456: 10,26 - 3457: 11,27 - 3458: 11,25 - 3459: 10,26 - 3460: 9,27 - 3461: 7,28 - 3462: 6,28 - 3463: 8,27 - 3464: 6,25 - 3465: 4,23 - 3466: 3,22 - 3467: 7,23 - 3468: 5,24 - 3469: 3,24 - 3470: 7,27 - 3471: 6,28 - 3472: 6,30 - 3473: 6,33 - 3474: 5,34 - 3475: 4,33 - 3476: 4,32 - 3477: 4,31 - 3478: 4,29 - 3479: 3,27 - 3480: 4,27 - 3481: 4,27 - 3482: 4,29 - 3483: 5,32 - 3484: 5,33 - 3485: 6,31 - 3486: 6,29 - 3487: 7,29 - 3488: 7,31 - 3489: 8,28 - 3490: 11,28 - 3491: 11,28 - 3492: 13,28 - 3493: 15,28 - 3494: 12,28 - 3495: 14,28 - 3496: 19,29 - 3497: 19,30 - 3498: 19,29 - 3499: 19,31 - 3500: 19,32 - 3501: 20,33 - 3502: 20,34 - 3503: 20,33 - 3504: 19,31 - 3505: 18,31 - 3506: 18,33 - 3507: 18,27 - 3508: 19,26 - 3509: 22,27 - 3510: 21,26 - 3511: 21,26 - 3512: 21,27 - 3513: 21,28 - 3514: 20,32 - 3515: 20,33 - 3516: 20,33 - 3517: 19,32 - 3518: 19,31 - 3519: 19,34 - 3520: 19,34 - 3521: 20,33 - 3522: 20,31 - 3523: 20,31 - 3524: 20,32 - 3525: 20,33 - 3526: 20,34 - 3527: 20,32 - 3528: 19,32 - 3529: 19,34 - 3530: 19,31 - 3531: 14,17 - 3532: 11,22 - 3533: 10,23 - 3534: 10,25 - 3535: 18,14 - 3536: 20,14 - 3537: 25,14 - 3538: 23,14 - 3539: 23,17 - 3540: 25,19 - 3541: 26,21 - 3542: 27,22 - 3543: 26,21 - 3544: 24,19 - 3545: 23,18 - 3546: 22,18 - 3547: 22,19 - 3548: 24,20 - 3549: 26,22 - 3550: 27,22 - 3551: 27,20 - 3552: 24,18 - 3553: 23,18 - 3554: 27,20 - 3555: 26,20 - 3556: 25,18 - 3557: 25,17 - 3558: 24,17 - 3559: 24,16 - 3560: 23,15 - 3561: 23,16 - 3562: 25,16 - 3563: 25,16 - 3564: 24,16 - 3565: 25,17 - 3566: 28,19 - 3567: 29,20 - 3568: 29,21 - 3569: 28,19 - 3570: 28,20 - 3571: 29,21 - 3572: 29,22 - 3573: 27,25 - 3574: 30,31 - 3575: 30,28 - 3576: 31,26 - 3577: 31,19 - 3578: 31,18 - 3579: 33,16 - 3580: 39,14 - 3581: 44,15 - 3582: 19,13 - 3583: 18,13 - 3584: 17,14 - 3585: 17,13 - 3586: 18,13 - 3587: 19,15 - 3588: 18,14 - 3589: 18,15 - 3590: 23,16 - 3591: 22,17 - 3592: 25,21 - 3593: 27,21 - 3594: 28,21 - 3595: 27,19 - 3596: 27,21 - 3597: 25,18 - 3598: 24,17 - 3613: 10,-12 - 3614: 11,-12 - 3615: 11,-13 - 3616: 11,-15 - 3617: 11,-16 - 3618: 12,-17 - 3619: 11,-15 - 3620: 10,-11 - 3621: 8,-14 - 3622: 5,-16 - 3623: 6,-16 - 3624: 10,-12 - 3625: 12,-14 - 3626: 12,-17 - 3627: 12,-18 - 3628: 11,-14 - 3629: 9,-12 - 3630: 9,-13 - 3631: 5,-13 - 3632: 4,-10 - 3633: 4,-11 - 3634: 4,-13 - 3635: 4,-14 - 3636: 2,-14 - 3637: 4,-11 - 3638: 4,-12 - 3639: 3,-13 - 3640: -4,-14 - 3641: -6,-13 - 3642: -6,-11 - 3643: -7,-8 - 3644: -3,-13 - 3645: -6,-11 - 3646: -7,-9 - 3647: -5,-14 - 3648: -5,-10 - 3649: -1,-11 - 3650: 0,-11 - 3651: -5,-14 - 3652: -6,-11 - 3653: -8,-9 - 3654: -12,-9 - 3655: -10,-10 - 3656: -15,-10 - 3657: -19,-10 - 3658: -19,-13 - 3659: -19,-16 - 3660: -19,-19 - 3661: -16,-10 - 3662: -18,-18 - 3663: -19,-19 - 3664: -17,-12 - 3665: -18,-12 - 3666: -18,-13 - 3667: -19,-12 - 3668: -19,-10 - 3669: -17,-10 - 3670: -15,-9 - 3671: -11,-9 - 3672: -20,-10 - 3673: -20,-10 - 3674: -18,-17 - 3675: -17,-19 - 3676: -17,-20 - 3677: -17,-20 - 3678: -9,-14 - 3679: -13,-12 - 3680: -11,-13 - 3681: -10,-15 - 3682: -10,-15 - 3683: -14,-13 - 3684: -10,-13 - 3685: -9,-16 - 3686: -9,-15 - 3687: -10,-16 - 3688: -9,-16 - 3689: -13,-16 - 3690: -13,-15 - 3691: -13,-13 - 3692: -13,-14 - 3693: -13,-18 - 3694: -13,-19 - 3695: -13,-20 - 3696: -14,-19 - 3697: -12,-19 - 3698: -11,-19 - 3699: -15,-19 - 3700: -8,-19 - 3701: -8,-21 - 3702: -10,-23 - 3703: -8,-26 - 3704: -8,-28 - 3705: -7,-30 - 3706: -6,-32 - 3707: -9,-34 - 3708: -6,-36 - 3709: -9,-37 - 3710: -10,-39 - 3711: -10,-41 - 3712: -7,-41 - 3713: -9,-39 - 3714: -10,-36 - 3715: -11,-34 - 3716: -10,-38 - 3717: -10,-41 - 3718: -7,-39 - 3719: -7,-33 - 3748: -14,-38 - 3749: -13,-37 - 3750: -13,-35 - 3751: -13,-32 - 3752: -13,-24 - 3753: -13,-24 - 3754: -12,-23 - 3755: -12,-22 - 3756: -13,-22 - 3757: -13,-22 - 3758: -13,-23 - 3759: -13,-24 - 3760: -12,-25 - 3761: 12,-21 - 3762: 12,-22 - 3763: 12,-23 - 3764: 12,-25 - 3765: 12,-27 - 3766: 12,-29 - 3767: 12,-31 - 3768: 12,-33 - 3769: 12,-35 - 3770: 12,-36 - 3771: 12,-37 - 3772: 12,-38 - 3773: 12,-37 - 3774: 12,-35 - 3775: 12,-33 - 3776: 12,-31 - 3777: 12,-29 - 3778: 12,-27 - 3779: 12,-25 - 3780: 12,-23 - 3781: 12,-21 - 3782: 12,-21 - 3783: 12,-25 - 3784: 12,-27 - 3785: 12,-29 - 3786: 12,-32 - 3787: 12,-34 - 3822: 11,-21 - 3823: 11,-23 - 3824: 11,-25 - 3825: 11,-27 - 3826: 11,-30 - 3827: 11,-32 - 3828: 11,-35 - 3829: 11,-36 - 3830: 11,-35 - 3831: 11,-33 - 3832: 11,-30 - 3833: 11,-27 - 3834: 11,-24 - 3835: 11,-21 - 3836: 13,-24 - 3837: 13,-24 - 3838: 12,-24 - 3839: 11,-24 - 3840: 10,-25 - 3841: 9,-25 - 3842: 10,-25 - 3843: 7,-26 - 3844: 6,-27 - 3845: 4,-26 - 3846: 6,-25 - 3847: 7,-25 - 3848: 10,-21 - 3849: 8,-21 - 3850: 6,-21 - 3851: 5,-20 - 3852: 5,-19 - 3853: 7,-19 - 3855: 7,-18 - 3856: 7,-20 - 3858: 5,-21 - 3859: 5,-21 - 3861: 6,-19 - 3862: 5,-19 - 3863: 6,-20 - 3864: 6,-21 - 3865: 5,-21 - 3870: 10,-21 - 3871: 9,-21 - 3872: 10,-22 - 3873: 9,-22 - 3874: 10,-23 - 3875: 9,-22 - 3876: 11,-22 - 3909: 6,-35 - 3910: 11,-34 - 3911: 7,-37 - 3912: 6,-37 - 3913: 7,-38 - 3914: 7,-37 - 3915: 6,-37 - 3916: 6,-38 - 3917: 6,-38 - 3918: 6,-38 - 3919: 5,-38 - 3920: 4,-40 - 3943: 17,-37 - 3944: 18,-37 - 3945: 18,-37 + 2824: 49,13 + 2825: 46,13 + 2826: 42,13 + 2827: 40,14 + 2828: 39,14 + 2829: 36,13 + 2830: 34,15 + 2831: 31,14 + 2832: 30,13 + 2833: 27,13 + 2834: 26,14 + 2835: 24,15 + 2836: 22,14 + 2837: 21,13 + 2838: 30,16 + 2839: 31,18 + 2840: 29,20 + 2841: 31,22 + 2842: 30,24 + 2843: 28,26 + 2844: 29,26 + 2845: 28,26 + 2846: 28,28 + 2847: 27,25 + 2848: 28,25 + 2849: 28,25 + 2850: 29,25 + 2851: 28,28 + 2852: 29,32 + 2853: 29,32 + 2854: 29,33 + 2855: 27,33 + 2856: 27,32 + 2857: 26,32 + 2858: 25,33 + 2859: 25,35 + 2860: 25,35 + 2861: 26,35 + 2862: 25,36 + 2863: 27,36 + 2864: 25,36 + 2865: 26,36 + 2866: 27,36 + 2867: 30,36 + 2868: 30,37 + 2869: 30,38 + 2870: 31,41 + 2871: 30,41 + 2872: 31,40 + 2873: 30,44 + 2874: 30,45 + 2875: 31,46 + 2876: 31,44 + 2877: 30,47 + 2878: 31,49 + 2879: 32,47 + 2880: 35,47 + 2881: 34,48 + 2882: 31,47 + 2883: 28,47 + 2884: 27,47 + 2885: 27,45 + 2886: 27,43 + 2887: 27,47 + 2888: 27,49 + 2889: 29,47 + 2890: 31,48 + 2891: 32,37 + 2892: 34,37 + 2893: 37,37 + 2894: 41,38 + 2895: 46,37 + 2896: 34,38 + 2897: 34,38 + 2898: 36,38 + 2899: 35,38 + 2900: 35,37 + 2901: 39,37 + 2902: 45,36 + 2903: 41,37 + 2904: 41,39 + 2905: 43,40 + 2906: 42,40 + 2907: 41,40 + 2908: 42,40 + 2909: 41,40 + 2910: 45,40 + 2911: 47,41 + 2912: 47,43 + 2913: 47,44 + 2914: 46,42 + 2915: 47,38 + 2916: 47,37 + 2917: 48,40 + 2918: 48,38 + 2919: 49,37 + 2920: 49,36 + 2921: 50,38 + 2922: 51,38 + 2923: 51,38 + 2924: 48,38 + 2925: 51,36 + 2926: 50,36 + 2927: 49,36 + 2928: 51,36 + 2929: 49,38 + 2930: 48,36 + 2931: 48,35 + 2932: 48,35 + 2933: 49,34 + 2934: 47,35 + 2935: 44,36 + 2936: 46,35 + 2937: 46,35 + 2938: 46,36 + 2939: 46,34 + 2940: 46,34 + 2941: 46,37 + 2942: 43,36 + 2943: 43,36 + 2944: 45,38 + 2945: 44,38 + 2946: 45,39 + 2947: 42,39 + 2948: 46,37 + 2949: 43,37 + 2950: 41,37 + 2951: 44,38 + 2952: 45,38 + 2953: 38,37 + 2954: 41,37 + 2955: 42,37 + 2956: 40,37 + 2957: 42,39 + 2958: 41,40 + 2959: 45,43 + 2960: 45,43 + 2961: 44,43 + 2962: 41,43 + 2963: 41,43 + 2964: 43,43 + 2965: 44,43 + 2966: 41,43 + 2967: 44,42 + 2968: 43,42 + 2969: 27,37 + 2970: 25,38 + 2971: 24,38 + 2972: 25,38 + 2973: 26,38 + 2974: 22,40 + 2975: 22,42 + 2976: 20,42 + 2977: 18,41 + 2978: 17,40 + 2979: 18,39 + 2980: 19,41 + 2981: 22,41 + 2982: 22,40 + 2983: 24,38 + 2984: 17,38 + 2985: 14,39 + 2986: 14,41 + 2987: 14,42 + 2988: 13,42 + 2989: 12,44 + 2990: 12,45 + 2991: 14,45 + 2992: 16,46 + 2993: 17,46 + 2994: 18,46 + 2995: 18,45 + 2996: 18,45 + 2997: 18,46 + 2998: 17,46 + 2999: 18,45 + 3000: 20,45 + 3001: 21,45 + 3002: 21,46 + 3003: 21,47 + 3004: 21,48 + 3005: 20,49 + 3006: 16,50 + 3007: 15,47 + 3008: 15,48 + 3009: 15,49 + 3010: 14,44 + 3011: 15,37 + 3012: 13,38 + 3013: 11,38 + 3014: 7,38 + 3015: 12,38 + 3016: 12,38 + 3017: 7,36 + 3018: 3,36 + 3019: 0,36 + 3020: 0,37 + 3021: 5,37 + 3022: 4,37 + 3023: -5,37 + 3024: -9,37 + 3025: -12,37 + 3026: -13,37 + 3027: -7,37 + 3028: -6,37 + 3029: -13,38 + 3030: -18,37 + 3031: -22,37 + 3032: -27,37 + 3033: -29,37 + 3034: -13,42 + 3035: -14,42 + 3036: -14,41 + 3037: -13,41 + 3038: -13,42 + 3039: -15,40 + 3040: -13,40 + 3041: -13,41 + 3042: -14,40 + 3043: -14,40 + 3044: -13,42 + 3045: -13,42 + 3046: -14,40 + 3047: -13,42 + 3048: -11,42 + 3049: -10,41 + 3050: -11,40 + 3051: -11,42 + 3052: -11,41 + 3053: -10,41 + 3054: -11,42 + 3055: -11,40 + 3056: -10,40 + 3057: -10,42 + 3058: -10,40 + 3059: -10,41 + 3060: -10,42 + 3061: -10,42 + 3062: -10,42 + 3063: -7,42 + 3064: -7,41 + 3065: -7,40 + 3066: -7,42 + 3067: -7,40 + 3068: -7,40 + 3069: -8,42 + 3070: -7,40 + 3071: -7,42 + 3072: -8,41 + 3073: -7,42 + 3074: -7,42 + 3075: -4,42 + 3076: -4,41 + 3077: -5,41 + 3078: -5,40 + 3079: -4,40 + 3080: -4,41 + 3081: -5,42 + 3082: -5,42 + 3083: -4,40 + 3084: -4,40 + 3085: -5,42 + 3086: -5,40 + 3087: -4,42 + 3088: -4,42 + 3089: -4,42 + 3090: -5,41 + 3091: -4,44 + 3092: -5,45 + 3093: -7,45 + 3094: -9,46 + 3095: -6,44 + 3096: -8,45 + 3097: -7,44 + 3098: -8,46 + 3099: -12,46 + 3100: -10,44 + 3101: -11,45 + 3102: -13,46 + 3103: -11,45 + 3104: -10,43 + 3105: -13,45 + 3106: -12,43 + 3107: -14,45 + 3108: -15,46 + 3109: -13,44 + 3110: -16,46 + 3111: -14,45 + 3112: -17,46 + 3113: -18,47 + 3114: -18,50 + 3115: -17,52 + 3116: -17,46 + 3117: -18,48 + 3118: -19,48 + 3119: -20,47 + 3120: -20,48 + 3121: -22,48 + 3122: -22,47 + 3123: -23,47 + 3124: -23,48 + 3125: -24,48 + 3126: -22,49 + 3127: -23,46 + 3128: -24,46 + 3129: -22,46 + 3130: -22,49 + 3131: -23,49 + 3132: -22,46 + 3133: -25,48 + 3134: -26,47 + 3135: -26,47 + 3136: -25,48 + 3137: -29,47 + 3138: -29,48 + 3139: -28,48 + 3140: -29,47 + 3141: -28,48 + 3142: -31,47 + 3143: -32,48 + 3144: -36,48 + 3145: -35,47 + 3146: -33,47 + 3147: -34,48 + 3148: -35,48 + 3149: -32,48 + 3150: -32,46 + 3151: -32,45 + 3152: -32,43 + 3153: -34,43 + 3154: -35,43 + 3155: -30,42 + 3156: -30,43 + 3157: -36,43 + 3158: -35,43 + 3159: -31,42 + 3160: -30,43 + 3161: -34,43 + 3162: -27,42 + 3163: -28,43 + 3164: -28,45 + 3165: -29,45 + 3166: -29,44 + 3167: -29,43 + 3168: -18,49 + 3169: -18,52 + 3170: -16,54 + 3171: -15,55 + 3172: -14,53 + 3173: -11,54 + 3174: -10,56 + 3175: -11,58 + 3176: -10,59 + 3177: -11,59 + 3178: -12,59 + 3179: -14,59 + 3180: -16,59 + 3181: -14,59 + 3182: -14,59 + 3183: -12,59 + 3184: -11,58 + 3185: -10,59 + 3186: -9,59 + 3187: -7,59 + 3188: -6,60 + 3189: -7,59 + 3190: -7,60 + 3191: -7,61 + 3192: -7,62 + 3193: -9,63 + 3194: -9,64 + 3195: -9,62 + 3196: -6,63 + 3197: -9,58 + 3198: -9,54 + 3199: -9,53 + 3200: -8,55 + 3201: -7,56 + 3202: -7,54 + 3203: -6,53 + 3204: -7,53 + 3205: -8,55 + 3206: -11,55 + 3207: -9,51 + 3208: -10,50 + 3209: -6,50 + 3210: -3,50 + 3211: -2,50 + 3212: -5,50 + 3213: -8,50 + 3214: -6,50 + 3215: -2,50 + 3216: -2,50 + 3217: -4,50 + 3218: -4,50 + 3219: -2,51 + 3220: -2,51 + 3221: -4,53 + 3222: -4,53 + 3223: -4,54 + 3224: -1,52 + 3225: -1,54 + 3226: 0,57 + 3227: 0,60 + 3228: 0,56 + 3229: 0,54 + 3230: 0,52 + 3231: -2,53 + 3232: -1,56 + 3233: -2,59 + 3234: -1,60 + 3235: -1,64 + 3236: -1,66 + 3237: 0,68 + 3238: 0,67 + 3239: 0,66 + 3240: 0,62 + 3241: 0,59 + 3242: -2,61 + 3243: -1,66 + 3244: -1,69 + 3245: -2,65 + 3246: -1,68 + 3247: -2,71 + 3248: -2,74 + 3249: -1,77 + 3250: 0,67 + 3251: 0,71 + 3252: 0,75 + 3253: 0,78 + 3254: -3,77 + 3255: -5,78 + 3256: -4,79 + 3257: -3,80 + 3258: -4,78 + 3259: -6,77 + 3260: -6,80 + 3261: -4,81 + 3262: -1,81 + 3263: 1,82 + 3264: 3,81 + 3265: 4,81 + 3266: 4,78 + 3267: 5,77 + 3268: 6,76 + 3269: 2,76 + 3270: 1,78 + 3271: -1,79 + 3272: -4,78 + 3273: 1,79 + 3274: 2,79 + 3275: 2,80 + 3276: 4,80 + 3277: 4,78 + 3278: -2,77 + 3279: -6,78 + 3280: -6,80 + 3281: -4,82 + 3282: -8,76 + 3283: -8,75 + 3284: -6,76 + 3285: -6,74 + 3286: -9,72 + 3287: -8,72 + 3288: -9,71 + 3289: -9,70 + 3290: -9,69 + 3291: -8,70 + 3292: -8,69 + 3293: -9,69 + 3294: -9,72 + 3295: -6,75 + 3296: -6,76 + 3297: 1,67 + 3298: 4,67 + 3299: 8,67 + 3300: 9,68 + 3301: 10,69 + 3302: 13,69 + 3303: 7,66 + 3304: 6,67 + 3305: 7,66 + 3306: 9,67 + 3307: 7,66 + 3308: 6,66 + 3309: 9,66 + 3310: 8,66 + 3311: 1,67 + 3312: -1,66 + 3313: 0,62 + 3314: -1,59 + 3315: 1,56 + 3316: 3,55 + 3317: 2,56 + 3318: 3,56 + 3319: 4,56 + 3320: 5,55 + 3321: 7,53 + 3322: 10,53 + 3323: 11,53 + 3324: 14,54 + 3325: 13,55 + 3326: 10,54 + 3327: 7,54 + 3328: 6,52 + 3329: 8,52 + 3330: 11,52 + 3331: 13,52 + 3332: 14,52 + 3333: 11,52 + 3334: 7,52 + 3335: 5,53 + 3336: 3,53 + 3337: 4,53 + 3338: 1,53 + 3339: 0,52 + 3340: 2,52 + 3341: 4,53 + 3342: 0,53 + 3343: 0,50 + 3344: -1,50 + 3345: -1,49 + 3346: -1,47 + 3347: -1,45 + 3348: -1,47 + 3349: -3,48 + 3350: -2,47 + 3351: -2,47 + 3352: -2,48 + 3353: -1,48 + 3354: -1,46 + 3355: -1,44 + 3356: -1,44 + 3357: -2,40 + 3358: -2,39 + 3359: -3,38 + 3360: -4,37 + 3361: -2,38 + 3362: -2,40 + 3363: -2,38 + 3364: -4,38 + 3365: 0,40 + 3366: 0,38 + 3367: 2,37 + 3368: 1,38 + 3369: 0,39 + 3370: -1,40 + 3371: -1,41 + 3372: -1,43 + 3373: -1,44 + 3374: -1,44 + 3375: 1,37 + 3376: 2,37 + 3377: 5,37 + 3378: 10,37 + 3379: 5,37 + 3380: 12,37 + 3381: 15,37 + 3382: 20,37 + 3383: 20,37 + 3384: 11,37 + 3385: 2,37 + 3386: -1,35 + 3387: -1,33 + 3388: -1,31 + 3389: -1,29 + 3390: -1,28 + 3391: -1,28 + 3392: -1,26 + 3393: -1,24 + 3394: -1,22 + 3395: -1,21 + 3396: -1,20 + 3397: -1,18 + 3398: -5,18 + 3399: -6,18 + 3400: -7,18 + 3401: -6,17 + 3402: -7,17 + 3403: -10,17 + 3404: -12,17 + 3405: -9,17 + 3406: -7,17 + 3407: -11,18 + 3408: -9,18 + 3409: -8,17 + 3410: -10,17 + 3411: -6,17 + 3412: -3,17 + 3413: 1,17 + 3414: 5,17 + 3415: 6,17 + 3416: 3,18 + 3417: 10,18 + 3418: 5,18 + 3419: 8,18 + 3420: 12,18 + 3421: 16,18 + 3422: 16,19 + 3423: 15,20 + 3424: 15,20 + 3425: 15,19 + 3426: 14,20 + 3427: 15,20 + 3428: 16,19 + 3429: 10,18 + 3430: 7,18 + 3431: 6,18 + 3432: 5,17 + 3433: 11,19 + 3434: 11,20 + 3435: 11,23 + 3436: 11,22 + 3437: 11,21 + 3438: 10,23 + 3439: 10,24 + 3440: 10,26 + 3441: 11,27 + 3442: 11,25 + 3443: 10,26 + 3444: 9,27 + 3445: 7,28 + 3446: 6,28 + 3447: 8,27 + 3448: 6,25 + 3449: 4,23 + 3450: 3,22 + 3451: 7,23 + 3452: 5,24 + 3453: 3,24 + 3454: 7,27 + 3455: 6,28 + 3456: 6,30 + 3457: 6,33 + 3458: 5,34 + 3459: 4,33 + 3460: 4,32 + 3461: 4,31 + 3462: 4,29 + 3463: 3,27 + 3464: 4,27 + 3465: 4,27 + 3466: 4,29 + 3467: 5,32 + 3468: 5,33 + 3469: 6,31 + 3470: 6,29 + 3471: 7,29 + 3472: 7,31 + 3473: 8,28 + 3474: 11,28 + 3475: 11,28 + 3476: 13,28 + 3477: 15,28 + 3478: 12,28 + 3479: 14,28 + 3480: 19,29 + 3481: 19,30 + 3482: 19,29 + 3483: 19,31 + 3484: 19,32 + 3485: 20,33 + 3486: 20,34 + 3487: 20,33 + 3488: 19,31 + 3489: 18,31 + 3490: 18,33 + 3491: 18,27 + 3492: 19,26 + 3493: 22,27 + 3494: 21,26 + 3495: 21,26 + 3496: 21,27 + 3497: 21,28 + 3498: 20,32 + 3499: 20,33 + 3500: 20,33 + 3501: 19,32 + 3502: 19,31 + 3503: 19,34 + 3504: 19,34 + 3505: 20,33 + 3506: 20,31 + 3507: 20,31 + 3508: 20,32 + 3509: 20,33 + 3510: 20,34 + 3511: 20,32 + 3512: 19,32 + 3513: 19,34 + 3514: 19,31 + 3515: 14,17 + 3516: 11,22 + 3517: 10,23 + 3518: 10,25 + 3519: 18,14 + 3520: 20,14 + 3521: 25,14 + 3522: 23,14 + 3523: 23,17 + 3524: 25,19 + 3525: 26,21 + 3526: 27,22 + 3527: 26,21 + 3528: 24,19 + 3529: 23,18 + 3530: 22,18 + 3531: 22,19 + 3532: 24,20 + 3533: 26,22 + 3534: 27,22 + 3535: 27,20 + 3536: 24,18 + 3537: 23,18 + 3538: 27,20 + 3539: 26,20 + 3540: 25,18 + 3541: 25,17 + 3542: 24,17 + 3543: 24,16 + 3544: 23,15 + 3545: 23,16 + 3546: 25,16 + 3547: 25,16 + 3548: 24,16 + 3549: 25,17 + 3550: 28,19 + 3551: 29,20 + 3552: 29,21 + 3553: 28,19 + 3554: 28,20 + 3555: 29,21 + 3556: 29,22 + 3557: 27,25 + 3558: 30,31 + 3559: 30,28 + 3560: 31,26 + 3561: 31,19 + 3562: 31,18 + 3563: 33,16 + 3564: 39,14 + 3565: 44,15 + 3566: 19,13 + 3567: 18,13 + 3568: 17,14 + 3569: 17,13 + 3570: 18,13 + 3571: 19,15 + 3572: 18,14 + 3573: 18,15 + 3574: 23,16 + 3575: 22,17 + 3576: 25,21 + 3577: 27,21 + 3578: 28,21 + 3579: 27,19 + 3580: 27,21 + 3581: 25,18 + 3582: 24,17 + 3597: 10,-12 + 3598: 11,-12 + 3599: 11,-13 + 3600: 11,-15 + 3601: 11,-16 + 3602: 12,-17 + 3603: 11,-15 + 3604: 10,-11 + 3605: 8,-14 + 3606: 5,-16 + 3607: 6,-16 + 3608: 10,-12 + 3609: 12,-14 + 3610: 12,-17 + 3611: 12,-18 + 3612: 11,-14 + 3613: 9,-12 + 3614: 9,-13 + 3615: 5,-13 + 3616: 4,-10 + 3617: 4,-11 + 3618: 4,-13 + 3619: 4,-14 + 3620: 2,-14 + 3621: 4,-11 + 3622: 4,-12 + 3623: 3,-13 + 3624: -4,-14 + 3625: -6,-13 + 3626: -6,-11 + 3627: -7,-8 + 3628: -3,-13 + 3629: -6,-11 + 3630: -7,-9 + 3631: -5,-14 + 3632: -5,-10 + 3633: -1,-11 + 3634: 0,-11 + 3635: -5,-14 + 3636: -6,-11 + 3637: -8,-9 + 3638: -12,-9 + 3639: -10,-10 + 3640: -15,-10 + 3641: -19,-10 + 3642: -19,-13 + 3643: -19,-16 + 3644: -19,-19 + 3645: -16,-10 + 3646: -18,-18 + 3647: -19,-19 + 3648: -17,-12 + 3649: -18,-12 + 3650: -18,-13 + 3651: -19,-12 + 3652: -19,-10 + 3653: -17,-10 + 3654: -15,-9 + 3655: -11,-9 + 3656: -20,-10 + 3657: -20,-10 + 3658: -18,-17 + 3659: -17,-19 + 3660: -17,-20 + 3661: -17,-20 + 3662: -9,-14 + 3663: -13,-12 + 3664: -11,-13 + 3665: -10,-15 + 3666: -10,-15 + 3667: -14,-13 + 3668: -10,-13 + 3669: -9,-16 + 3670: -9,-15 + 3671: -10,-16 + 3672: -9,-16 + 3673: -13,-16 + 3674: -13,-15 + 3675: -13,-13 + 3676: -13,-14 + 3677: -13,-18 + 3678: -13,-19 + 3679: -13,-20 + 3680: -14,-19 + 3681: -12,-19 + 3682: -11,-19 + 3683: -15,-19 + 3684: -8,-19 + 3685: -8,-21 + 3686: -10,-23 + 3687: -8,-26 + 3688: -8,-28 + 3689: -7,-30 + 3690: -6,-32 + 3691: -9,-34 + 3692: -6,-36 + 3693: -9,-37 + 3694: -10,-39 + 3695: -10,-41 + 3696: -7,-41 + 3697: -9,-39 + 3698: -10,-36 + 3699: -11,-34 + 3700: -10,-38 + 3701: -10,-41 + 3702: -7,-39 + 3703: -7,-33 + 3732: -14,-38 + 3733: -13,-37 + 3734: -13,-35 + 3735: -13,-32 + 3736: -13,-24 + 3737: -13,-24 + 3738: -12,-23 + 3739: -12,-22 + 3740: -13,-22 + 3741: -13,-22 + 3742: -13,-23 + 3743: -13,-24 + 3744: -12,-25 + 3745: 12,-21 + 3746: 12,-22 + 3747: 12,-23 + 3748: 12,-25 + 3749: 12,-27 + 3750: 12,-29 + 3751: 12,-31 + 3752: 12,-33 + 3753: 12,-35 + 3754: 12,-36 + 3755: 12,-37 + 3756: 12,-38 + 3757: 12,-37 + 3758: 12,-35 + 3759: 12,-33 + 3760: 12,-31 + 3761: 12,-29 + 3762: 12,-27 + 3763: 12,-25 + 3764: 12,-23 + 3765: 12,-21 + 3766: 12,-21 + 3767: 12,-25 + 3768: 12,-27 + 3769: 12,-29 + 3770: 12,-32 + 3771: 12,-34 + 3806: 11,-21 + 3807: 11,-23 + 3808: 11,-25 + 3809: 11,-27 + 3810: 11,-30 + 3811: 11,-32 + 3812: 11,-35 + 3813: 11,-36 + 3814: 11,-35 + 3815: 11,-33 + 3816: 11,-30 + 3817: 11,-27 + 3818: 11,-24 + 3819: 11,-21 + 3820: 13,-24 + 3821: 13,-24 + 3822: 12,-24 + 3823: 11,-24 + 3824: 10,-25 + 3825: 9,-25 + 3826: 10,-25 + 3827: 7,-26 + 3828: 6,-27 + 3829: 4,-26 + 3830: 6,-25 + 3831: 7,-25 + 3832: 10,-21 + 3833: 8,-21 + 3834: 6,-21 + 3835: 5,-20 + 3836: 5,-19 + 3837: 7,-19 + 3839: 7,-18 + 3840: 7,-20 + 3842: 5,-21 + 3843: 5,-21 + 3845: 6,-19 + 3846: 5,-19 + 3847: 6,-20 + 3848: 6,-21 + 3849: 5,-21 + 3854: 10,-21 + 3855: 9,-21 + 3856: 10,-22 + 3857: 9,-22 + 3858: 10,-23 + 3859: 9,-22 + 3860: 11,-22 + 3893: 6,-35 + 3894: 11,-34 + 3895: 7,-37 + 3896: 6,-37 + 3897: 7,-38 + 3898: 7,-37 + 3899: 6,-37 + 3900: 6,-38 + 3901: 6,-38 + 3902: 6,-38 + 3903: 5,-38 + 3904: 4,-40 + 3927: 17,-37 + 3928: 18,-37 + 3929: 18,-37 + 3930: 18,-36 + 3931: 18,-35 + 3932: 18,-35 + 3933: 18,-34 + 3934: 18,-35 + 3935: 18,-35 + 3936: 17,-35 + 3937: 17,-35 + 3938: 17,-34 + 3939: 17,-34 + 3940: 17,-34 + 3941: 17,-34 + 3942: 18,-36 + 3943: 18,-36 + 3944: 18,-36 + 3945: 18,-36 3946: 18,-36 - 3947: 18,-35 - 3948: 18,-35 - 3949: 18,-34 - 3950: 18,-35 - 3951: 18,-35 - 3952: 17,-35 - 3953: 17,-35 - 3954: 17,-34 - 3955: 17,-34 - 3956: 17,-34 - 3957: 17,-34 - 3958: 18,-36 - 3959: 18,-36 - 3960: 18,-36 - 3961: 18,-36 - 3962: 18,-36 - 3973: 15,-41 - 3974: 15,-40 - 3975: 16,-40 - 3976: 16,-41 - 3977: 15,-41 - 3978: 15,-40 - 3979: 15,-38 - 3980: 15,-37 - 3981: 15,-37 - 3982: 15,-38 - 3983: 16,-41 - 3984: 16,-40 - 3985: 15,-41 - 3986: 15,-40 - 3987: 8,-38 - 3988: 9,-39 - 3989: 9,-41 - 3990: 4,-42 - 3991: 4,-39 - 3992: 5,-41 - 3993: -14,-38 - 3994: -13,-35 - 3995: -13,-32 - 3996: -13,-24 - 3997: -12,-23 - 3998: -13,-30 - 3999: -14,-30 - 4000: -16,-27 - 4001: -13,-27 - 4002: -14,-28 - 4003: -16,-29 - 4004: -16,-29 - 4005: -15,-27 - 4006: -13,-28 - 4007: -13,-29 - 4008: -14,-30 - 4009: -13,-29 - 4010: -13,-27 - 4011: -12,-29 - 4012: -7,-6 - 4013: -7,-4 - 4014: -5,-2 - 4015: -2,1 - 4016: -1,4 - 4017: 0,7 - 4018: 2,10 - 4019: 1,8 - 4020: 1,4 - 4021: -3,6 - 4022: -3,11 - 4023: -3,5 - 4024: 1,1 - 4025: -3,-2 - 4026: -1,-5 - 4027: 1,-6 - 4028: 1,-4 - 4029: 1,0 - 4030: 1,4 - 4031: 1,9 - 4032: 2,11 - 4033: 2,7 - 4034: 2,2 - 4035: 3,-2 - 4036: 3,-7 - 4037: 2,-4 - 4038: 1,0 - 4039: 1,5 - 4040: 1,8 - 4041: 1,11 - 4042: -2,11 - 4043: -4,7 - 4044: -4,2 - 4045: -3,-2 - 4046: 7,-5 - 4047: 6,-4 - 4048: 5,-1 - 4049: 6,1 - 4050: 7,0 - 4051: 7,-2 - 4052: 7,-3 - 4053: 10,-4 - 4054: 11,-5 - 4055: 11,-3 - 4056: 11,-3 - 4057: 9,-5 - 4058: 8,-5 - 4059: 10,-3 - 4060: 10,-1 - 4061: 8,-1 - 4062: 7,1 - 4063: 11,-1 - 4064: 11,-1 - 4065: 11,-2 - 4066: 11,-1 - 4067: 10,2 - 4068: 10,2 - 4069: 11,2 - 4070: 11,1 - 4071: 10,1 - 4072: 11,1 - 4073: 11,1 - 4074: 12,2 - 4075: 12,2 - 4088: 8,5 - 4089: 7,6 - 4090: 6,8 - 4091: 7,9 - 4092: 9,10 - 4093: 10,9 - 4094: 10,7 - 4095: 7,6 - 4096: 5,11 - 4097: 5,11 - 4098: 5,9 - 4099: 6,6 - 4100: 7,5 - 4101: 11,7 - 4102: 10,10 - 4103: 6,5 - 4104: 5,5 - 4105: 5,5 - 4106: 3,5 - 4107: 4,5 - 4108: 5,5 - 4109: 2,5 - 4110: 3,5 - 4111: 3,5 - 4112: 5,-4 - 4113: 5,-5 - 4114: 6,-5 - 4115: 6,1 - 4116: 7,2 - 4117: 6,2 - 4118: 5,-5 - 4119: 4,-5 - 4133: 7,-4 - 4134: 6,-4 - 4135: 5,-3 - 4136: 5,-3 - 4137: 3,-3 - 4138: 3,-2 - 4139: 3,-1 - 4140: 3,-4 - 4141: 2,-6 - 4142: 1,-6 - 4143: 1,-6 - 4144: 1,-5 - 4145: 2,-5 - 4146: 3,-3 - 4147: 3,-2 - 4148: 9,-8 - 4149: 10,-7 - 4150: 11,-7 - 4151: 9,-7 - 4152: 11,-7 - 4153: 10,-7 - 4154: 9,-8 - 4155: 10,-8 - 4156: 10,-9 - 4157: 7,-8 - 4158: 8,-8 - 4159: 7,-8 - 4160: 8,-8 - 4161: 10,-8 - 4162: 10,-7 - 4163: 11,-7 - 4164: 12,-8 - 4165: 13,-8 - 4166: 14,-8 - 4167: 12,-8 - 4168: 13,-9 - 4169: 11,-8 - 4170: 10,-7 - 4171: 9,-8 - 4172: 8,-8 - 4173: 6,-8 - 4174: 9,-8 - 4175: 9,-7 - 4176: 8,-9 - 4187: -3,-1 - 4188: -4,1 - 4189: -4,3 - 4190: -4,4 - 4191: -7,3 - 4192: -9,2 - 4193: -11,-1 - 4194: -11,-1 - 4195: -13,-2 - 4196: -13,-2 - 4197: -15,1 - 4198: -14,0 - 4199: -14,2 - 4200: -14,3 - 4201: -14,4 - 4202: -13,2 - 4203: -13,1 - 4204: -12,0 - 4205: -10,1 - 4206: -9,2 - 4207: -8,2 - 4208: -7,1 - 4209: -8,2 - 4210: -6,0 - 4211: -4,0 - 4212: -3,2 - 4213: -3,4 - 4214: -2,6 - 4215: 0,6 - 4222: 3,6 - 4223: 2,6 - 4226: -10,7 - 4227: -9,6 - 4228: -9,6 - 4229: -8,6 - 4230: -7,6 - 4231: -10,7 - 4232: -10,6 - 4233: -10,8 - 4234: -9,8 - 4235: -10,8 - 4236: -11,7 - 4237: -10,6 - 4238: -9,6 - 4239: -9,7 - 4240: -7,8 - 4241: -5,7 - 4242: -5,6 - 4243: -5,5 - 4244: -5,4 - 4245: -8,4 - 4246: -9,4 - 4247: -8,4 - 4248: -9,4 - 4249: -9,4 - 4250: -7,4 - 4251: -5,10 - 4252: -5,10 - 4253: -4,10 - 4254: -4,11 - 4255: -4,11 - 4256: -3,11 - 4257: -4,9 - 4258: -3,10 - 4259: -3,7 - 4260: -3,5 - 4261: -3,3 - 4262: -3,0 - 4263: -3,-2 - 4264: -3,0 - 4265: -3,4 - 4266: -3,8 - 4267: -3,11 - 4268: -3,1 - 4269: -3,-2 - 4270: -3,-5 - 4271: -3,-6 - 4366: -44,43 - 4367: -44,42 - 4368: -44,40 - 4369: -43,38 - 4370: -43,37 - 4371: -43,37 - 4372: -44,39 - 4373: -44,42 - 4374: -45,44 - 4375: -46,43 - 4376: -47,43 - 4377: -48,44 - 4378: -45,43 - 4379: -44,43 - 4380: -45,43 - 4381: -47,43 - 4382: -49,43 - 4383: -49,41 - 4384: -49,39 - 4385: -51,38 - 4386: -51,38 - 4387: -51,37 - 4388: -51,36 - 4389: -51,36 - 4390: -46,36 - 4391: -44,36 - 4392: -49,36 - 4393: -51,36 - 4394: -47,37 - 4395: -51,38 - 4396: -50,38 - 4397: -46,37 - 4398: -43,37 - 4399: -38,37 - 4400: -45,37 - 4401: -51,36 - 4402: -47,36 - 4403: -41,36 - 4404: -44,37 - 4405: -38,37 - 4406: -33,37 - 4407: -38,36 - 4408: -39,36 - 4409: -41,36 - 4410: -39,36 - 4411: -39,37 - 4412: -40,37 - 4413: -40,36 - 4414: -37,37 - 4415: -37,36 - 4416: -41,37 - 4417: -42,37 - 4418: -36,37 - 4419: -35,37 - 4420: -33,36 - 4421: -35,36 - 4422: -35,36 - 4423: -37,37 - 4424: -35,38 - 4425: -30,36 - 4426: -31,36 - 4427: -31,35 - 4428: -31,35 - 4429: -30,37 - 4430: -30,36 - 4431: -31,35 - 4432: -30,33 - 4433: -29,33 - 4434: -27,32 - 4435: -28,31 - 4436: -29,30 - 4437: -30,30 - 4438: -32,30 - 4439: -29,30 - 4440: -28,31 - 4441: -29,33 - 4442: -31,33 - 4443: -31,32 - 4444: -28,33 - 4445: -28,31 - 4446: -28,32 - 4447: -28,33 - 4448: -28,32 - 4449: -28,30 - 4450: -28,30 - 4451: -27,30 - 4452: -27,31 - 4453: -27,33 - 4496: -39,19 - 4497: -39,18 - 4498: -39,20 - 4499: -39,23 - 4500: -39,23 - 4501: -38,26 - 4502: -39,29 - 4503: -38,28 - 4504: -39,26 - 4505: -39,23 - 4506: -39,21 - 4507: -39,27 - 4508: -38,26 - 4509: -38,21 - 4510: -38,19 - 4511: -39,21 - 4512: -39,29 - 4513: -39,27 - 4514: -39,21 - 4515: -39,24 - 4516: -40,27 - 4517: -39,25 - 4518: -39,24 - 4519: -39,26 - 4520: -37,26 - 4521: -37,23 - 4522: -38,20 - 4523: -39,19 - 4524: -39,18 - 4525: -40,18 - 4526: -38,21 - 4527: -38,26 - 4529: -42,26 - 4530: -42,25 - 4531: -41,25 - 4532: -42,25 - 4533: -41,26 - 4534: -41,26 - 4564: -38,15 - 4565: -36,15 - 4566: -36,15 - 4567: -35,15 - 4568: -40,5 - 4569: -39,4 - 4570: -40,3 - 4571: -41,3 - 4572: -40,2 - 4573: -40,1 - 4574: -41,0 - 4575: -40,0 - 4576: -40,-1 - 4577: -42,-5 - 4578: -42,-7 - 4579: -41,-7 - 4580: -41,-1 - 4581: -41,-2 - 4582: -42,-2 - 4583: -43,-3 - 4584: -36,2 - 4585: -36,2 - 4586: -36,1 - 4587: -37,2 - 4588: -36,1 - 4589: -40,9 - 4590: -41,9 - 4591: -39,10 - 4592: -39,10 - 4593: -37,10 - 4594: -38,10 - 4595: -37,10 - 4596: -35,10 - 4597: -35,10 - 4598: -36,11 - 4599: -37,10 - 4643: -4,13 - 4644: 2,13 - 4645: 1,13 - 4646: 1,13 - 4647: -3,13 - 4648: -3,13 - 4649: -4,13 - 4650: -5,13 - 4651: -5,13 - 4652: -2,13 - 4653: -2,13 - 4654: 3,13 - 4655: 3,13 - 4656: 0,13 - 4657: 0,13 - 4669: -5,16 - 4670: -4,16 - 4671: -6,16 - 4672: -3,18 - 4673: -3,19 - 4674: 1,18 - 4675: 1,17 - 4676: 1,17 - 4677: 3,16 - 4678: 4,16 - 4679: 2,16 - 4709: 15,47 - 4710: 15,46 - 4711: 14,46 - 4712: 15,47 - 4749: 5,74 - 4750: 5,75 - 4751: 5,76 - 4752: 4,77 - 4753: 4,80 - 4754: 5,81 - 4755: 1,81 - 4756: -2,81 - 4757: 1,82 - 4758: 0,82 - 4759: 1,82 - 4760: 0,83 - 4761: 1,83 - 4762: 1,82 - 4763: 0,83 - 4764: 0,82 - 4765: -1,81 - 4766: -4,81 - 4767: -7,81 - 4768: -5,81 - 4769: 2,79 - 4770: 0,79 - 4771: 0,79 - 4772: -4,76 - 4773: -5,76 - 4774: -6,74 - 4775: -7,74 - 4776: -8,73 - 4777: -9,72 - 4778: -9,73 - 4779: -8,72 - 4780: -8,74 - 4781: -9,70 - 4782: -9,69 - 4783: -8,70 - 4784: 9,66 - 4785: 10,69 - 4786: 12,69 - 4787: 13,58 - 4788: 13,60 - 4789: 12,56 - 4790: 13,56 - 4791: 8,56 - 4792: 8,56 - 4793: 8,56 - 4794: 14,60 - 4795: 14,60 - 4796: 14,61 - 4797: 14,60 - 4798: 22,58 - 4799: 23,57 - 4800: 27,56 - 4801: 28,56 - 4802: 28,55 - 4803: 28,54 - 4804: 34,55 - 4805: 34,54 - 4806: 33,54 - 4807: 30,55 - 4808: 30,56 - 4809: 30,54 - 4810: 31,54 - 4811: 32,54 - 4819: 46,36 - 4820: 46,34 - 4871: 32,16 - 4872: 32,15 - 4873: 32,13 - 4874: 32,11 - 4875: 32,13 - 4904: 34,1 - 4905: 36,1 - 4906: 37,1 - 4907: 37,1 - 4908: 36,1 - 4909: 35,1 - 4910: 35,3 - 4911: 37,3 - 4912: 19,-4 - 4913: 18,-5 - 4914: 17,-6 - 4915: 17,-5 - 4916: 17,-4 - 4917: 18,-6 - 4918: 21,-6 - 4919: 19,-4 - 4920: 22,-4 - 4921: 21,-5 - 4922: 20,-6 - 4923: 22,-6 - 4924: 21,-4 - 4925: 21,-4 - 4926: 19,-5 - 4927: 20,-4 - 4928: 20,-4 - 4929: 20,-5 - 4930: 17,-4 - 4945: -9,-6 - 4946: -9,-5 - 4947: -9,-3 - 4948: -11,-2 - 4949: -10,-2 - 4950: -9,-3 - 4951: -9,-5 - 4952: -16,1 - 4953: -14,0 - 4954: -14,0 - 4955: -14,0 - 4956: -14,-1 - 4957: -13,0 - 4958: -13,1 - 4965: -10,-9 - 4966: -9,-10 - 4967: -6,-10 - 4968: -4,-11 - 4969: -2,-11 - 4970: -6,-14 - 4971: -6,-13 - 4972: 4,-14 - 4973: 4,-13 - 4974: 3,-11 - 4975: 3,-9 - 4976: 1,-9 - 4977: 5,-9 - 4978: 7,-9 - 4979: 8,-10 - 4980: 3,-5 - 4981: 4,-5 - 4982: 3,-5 - 5032: 12,9 - 5033: 13,9 - 5034: 14,9 - 5035: 14,8 - 5036: 14,7 - 5037: 15,9 - 5038: 15,10 - 5039: 15,10 - 5040: 13,10 - 5041: 9,10 - 5042: 6,10 - 5043: 6,8 - 5044: 7,6 - 5045: 7,9 - 5046: 8,8 - 5047: 7,7 - 5048: 8,7 - 5049: 8,9 - 5050: 8,6 - 5051: 8,7 - 5052: 8,9 - 5053: 7,10 - 5054: 6,11 - 5055: 8,11 - 5056: 10,10 - 5057: 10,6 - 5060: 14,38 - 5061: 15,38 - 5062: 14,38 - 5063: 15,38 - 5064: 14,38 + 3957: 15,-41 + 3958: 15,-40 + 3959: 16,-40 + 3960: 16,-41 + 3961: 15,-41 + 3962: 15,-40 + 3963: 15,-38 + 3964: 15,-37 + 3965: 15,-37 + 3966: 15,-38 + 3967: 16,-41 + 3968: 16,-40 + 3969: 15,-41 + 3970: 15,-40 + 3971: 8,-38 + 3972: 9,-39 + 3973: 9,-41 + 3974: 4,-42 + 3975: 4,-39 + 3976: 5,-41 + 3977: -14,-38 + 3978: -13,-35 + 3979: -13,-32 + 3980: -13,-24 + 3981: -12,-23 + 3982: -13,-30 + 3983: -14,-30 + 3984: -16,-27 + 3985: -13,-27 + 3986: -14,-28 + 3987: -16,-29 + 3988: -16,-29 + 3989: -15,-27 + 3990: -13,-28 + 3991: -13,-29 + 3992: -14,-30 + 3993: -13,-29 + 3994: -13,-27 + 3995: -12,-29 + 3996: -7,-6 + 3997: -7,-4 + 3998: -5,-2 + 3999: -2,1 + 4000: -1,4 + 4001: 0,7 + 4002: 2,10 + 4003: 1,8 + 4004: 1,4 + 4005: -3,6 + 4006: -3,11 + 4007: -3,5 + 4008: 1,1 + 4009: -3,-2 + 4010: -1,-5 + 4011: 1,-6 + 4012: 1,-4 + 4013: 1,0 + 4014: 1,4 + 4015: 1,9 + 4016: 2,11 + 4017: 2,7 + 4018: 2,2 + 4019: 3,-2 + 4020: 3,-7 + 4021: 2,-4 + 4022: 1,0 + 4023: 1,5 + 4024: 1,8 + 4025: 1,11 + 4026: -2,11 + 4027: -4,7 + 4028: -4,2 + 4029: -3,-2 + 4030: 7,-5 + 4031: 6,-4 + 4032: 5,-1 + 4033: 6,1 + 4034: 7,0 + 4035: 7,-2 + 4036: 7,-3 + 4037: 10,-4 + 4038: 11,-5 + 4039: 11,-3 + 4040: 11,-3 + 4041: 9,-5 + 4042: 8,-5 + 4043: 10,-3 + 4044: 10,-1 + 4045: 8,-1 + 4046: 7,1 + 4047: 11,-1 + 4048: 11,-1 + 4049: 11,-2 + 4050: 11,-1 + 4051: 10,2 + 4052: 10,2 + 4053: 11,2 + 4054: 11,1 + 4055: 10,1 + 4056: 11,1 + 4057: 11,1 + 4058: 12,2 + 4059: 12,2 + 4072: 8,5 + 4073: 7,6 + 4074: 6,8 + 4075: 7,9 + 4076: 9,10 + 4077: 10,9 + 4078: 10,7 + 4079: 7,6 + 4080: 5,11 + 4081: 5,11 + 4082: 5,9 + 4083: 6,6 + 4084: 7,5 + 4085: 11,7 + 4086: 10,10 + 4087: 6,5 + 4088: 5,5 + 4089: 5,5 + 4090: 3,5 + 4091: 4,5 + 4092: 5,5 + 4093: 2,5 + 4094: 3,5 + 4095: 3,5 + 4096: 5,-4 + 4097: 5,-5 + 4098: 6,-5 + 4099: 6,1 + 4100: 7,2 + 4101: 6,2 + 4102: 5,-5 + 4103: 4,-5 + 4117: 7,-4 + 4118: 6,-4 + 4119: 5,-3 + 4120: 5,-3 + 4121: 3,-3 + 4122: 3,-2 + 4123: 3,-1 + 4124: 3,-4 + 4125: 2,-6 + 4126: 1,-6 + 4127: 1,-6 + 4128: 1,-5 + 4129: 2,-5 + 4130: 3,-3 + 4131: 3,-2 + 4132: 9,-8 + 4133: 10,-7 + 4134: 11,-7 + 4135: 9,-7 + 4136: 11,-7 + 4137: 10,-7 + 4138: 9,-8 + 4139: 10,-8 + 4140: 10,-9 + 4141: 7,-8 + 4142: 8,-8 + 4143: 7,-8 + 4144: 8,-8 + 4145: 10,-8 + 4146: 10,-7 + 4147: 11,-7 + 4148: 12,-8 + 4149: 13,-8 + 4150: 14,-8 + 4151: 12,-8 + 4152: 13,-9 + 4153: 11,-8 + 4154: 10,-7 + 4155: 9,-8 + 4156: 8,-8 + 4157: 6,-8 + 4158: 9,-8 + 4159: 9,-7 + 4160: 8,-9 + 4171: -3,-1 + 4172: -4,1 + 4173: -4,3 + 4174: -4,4 + 4175: -7,3 + 4176: -9,2 + 4177: -11,-1 + 4178: -11,-1 + 4179: -13,-2 + 4180: -13,-2 + 4181: -15,1 + 4182: -14,0 + 4183: -14,2 + 4184: -14,3 + 4185: -14,4 + 4186: -13,2 + 4187: -13,1 + 4188: -12,0 + 4189: -10,1 + 4190: -9,2 + 4191: -8,2 + 4192: -7,1 + 4193: -8,2 + 4194: -6,0 + 4195: -4,0 + 4196: -3,2 + 4197: -3,4 + 4198: -2,6 + 4199: 0,6 + 4206: 3,6 + 4207: 2,6 + 4210: -10,7 + 4211: -9,6 + 4212: -9,6 + 4213: -8,6 + 4214: -7,6 + 4215: -10,7 + 4216: -10,6 + 4217: -10,8 + 4218: -9,8 + 4219: -10,8 + 4220: -11,7 + 4221: -10,6 + 4222: -9,6 + 4223: -9,7 + 4224: -7,8 + 4225: -5,7 + 4226: -5,6 + 4227: -5,5 + 4228: -5,4 + 4229: -8,4 + 4230: -9,4 + 4231: -8,4 + 4232: -9,4 + 4233: -9,4 + 4234: -7,4 + 4235: -5,10 + 4236: -5,10 + 4237: -4,10 + 4238: -4,11 + 4239: -4,11 + 4240: -3,11 + 4241: -4,9 + 4242: -3,10 + 4243: -3,7 + 4244: -3,5 + 4245: -3,3 + 4246: -3,0 + 4247: -3,-2 + 4248: -3,0 + 4249: -3,4 + 4250: -3,8 + 4251: -3,11 + 4252: -3,1 + 4253: -3,-2 + 4254: -3,-5 + 4255: -3,-6 + 4350: -44,43 + 4351: -44,42 + 4352: -44,40 + 4353: -43,38 + 4354: -43,37 + 4355: -43,37 + 4356: -44,39 + 4357: -44,42 + 4358: -45,44 + 4359: -46,43 + 4360: -47,43 + 4361: -48,44 + 4362: -45,43 + 4363: -44,43 + 4364: -45,43 + 4365: -47,43 + 4366: -49,43 + 4367: -49,41 + 4368: -49,39 + 4369: -51,38 + 4370: -51,38 + 4371: -51,37 + 4372: -51,36 + 4373: -51,36 + 4374: -46,36 + 4375: -44,36 + 4376: -49,36 + 4377: -51,36 + 4378: -47,37 + 4379: -51,38 + 4380: -50,38 + 4381: -46,37 + 4382: -43,37 + 4383: -38,37 + 4384: -45,37 + 4385: -51,36 + 4386: -47,36 + 4387: -41,36 + 4388: -44,37 + 4389: -38,37 + 4390: -33,37 + 4391: -38,36 + 4392: -39,36 + 4393: -41,36 + 4394: -39,36 + 4395: -39,37 + 4396: -40,37 + 4397: -40,36 + 4398: -37,37 + 4399: -37,36 + 4400: -41,37 + 4401: -42,37 + 4402: -36,37 + 4403: -35,37 + 4404: -33,36 + 4405: -35,36 + 4406: -35,36 + 4407: -37,37 + 4408: -35,38 + 4409: -30,36 + 4410: -31,36 + 4411: -31,35 + 4412: -31,35 + 4413: -30,37 + 4414: -30,36 + 4415: -31,35 + 4416: -30,33 + 4417: -29,33 + 4418: -27,32 + 4419: -28,31 + 4420: -29,30 + 4421: -30,30 + 4422: -32,30 + 4423: -29,30 + 4424: -28,31 + 4425: -29,33 + 4426: -31,33 + 4427: -31,32 + 4428: -28,33 + 4429: -28,31 + 4430: -28,32 + 4431: -28,33 + 4432: -28,32 + 4433: -28,30 + 4434: -28,30 + 4435: -27,30 + 4436: -27,31 + 4437: -27,33 + 4480: -39,19 + 4481: -39,18 + 4482: -39,20 + 4483: -39,23 + 4484: -39,23 + 4485: -38,26 + 4486: -39,29 + 4487: -38,28 + 4488: -39,26 + 4489: -39,23 + 4490: -39,21 + 4491: -39,27 + 4492: -38,26 + 4493: -38,21 + 4494: -38,19 + 4495: -39,21 + 4496: -39,29 + 4497: -39,27 + 4498: -39,21 + 4499: -39,24 + 4500: -40,27 + 4501: -39,25 + 4502: -39,24 + 4503: -39,26 + 4504: -37,26 + 4505: -37,23 + 4506: -38,20 + 4507: -39,19 + 4508: -39,18 + 4509: -40,18 + 4510: -38,21 + 4511: -38,26 + 4512: -42,26 + 4513: -42,25 + 4514: -41,25 + 4515: -42,25 + 4516: -41,26 + 4517: -41,26 + 4547: -38,15 + 4548: -36,15 + 4549: -36,15 + 4550: -35,15 + 4551: -40,5 + 4552: -39,4 + 4553: -40,3 + 4554: -41,3 + 4555: -40,2 + 4556: -40,1 + 4557: -41,0 + 4558: -40,0 + 4559: -40,-1 + 4560: -42,-5 + 4561: -42,-7 + 4562: -41,-7 + 4563: -41,-1 + 4564: -41,-2 + 4565: -42,-2 + 4566: -43,-3 + 4567: -36,2 + 4568: -36,2 + 4569: -36,1 + 4570: -37,2 + 4571: -36,1 + 4572: -40,9 + 4573: -41,9 + 4574: -39,10 + 4575: -39,10 + 4576: -37,10 + 4577: -38,10 + 4578: -37,10 + 4579: -35,10 + 4580: -35,10 + 4581: -36,11 + 4582: -37,10 + 4626: -4,13 + 4627: 2,13 + 4628: 1,13 + 4629: 1,13 + 4630: -3,13 + 4631: -3,13 + 4632: -4,13 + 4633: -5,13 + 4634: -5,13 + 4635: -2,13 + 4636: -2,13 + 4637: 3,13 + 4638: 3,13 + 4639: 0,13 + 4640: 0,13 + 4652: -5,16 + 4653: -4,16 + 4654: -6,16 + 4655: -3,18 + 4656: -3,19 + 4657: 1,18 + 4658: 1,17 + 4659: 1,17 + 4660: 3,16 + 4661: 4,16 + 4662: 2,16 + 4692: 15,47 + 4693: 15,46 + 4694: 14,46 + 4695: 15,47 + 4732: 5,74 + 4733: 5,75 + 4734: 5,76 + 4735: 4,77 + 4736: 4,80 + 4737: 5,81 + 4738: 1,81 + 4739: -2,81 + 4740: 1,82 + 4741: 0,82 + 4742: 1,82 + 4743: 0,83 + 4744: 1,83 + 4745: 1,82 + 4746: 0,83 + 4747: 0,82 + 4748: -1,81 + 4749: -4,81 + 4750: -7,81 + 4751: -5,81 + 4752: 2,79 + 4753: 0,79 + 4754: 0,79 + 4755: -4,76 + 4756: -5,76 + 4757: -6,74 + 4758: -7,74 + 4759: -8,73 + 4760: -9,72 + 4761: -9,73 + 4762: -8,72 + 4763: -8,74 + 4764: -9,70 + 4765: -9,69 + 4766: -8,70 + 4767: 9,66 + 4768: 10,69 + 4769: 12,69 + 4770: 13,58 + 4771: 13,60 + 4772: 12,56 + 4773: 13,56 + 4774: 8,56 + 4775: 8,56 + 4776: 8,56 + 4777: 14,60 + 4778: 14,60 + 4779: 14,61 + 4780: 14,60 + 4781: 22,58 + 4782: 23,57 + 4783: 27,56 + 4784: 28,56 + 4785: 28,55 + 4786: 28,54 + 4787: 34,55 + 4788: 34,54 + 4789: 33,54 + 4790: 30,55 + 4791: 30,56 + 4792: 30,54 + 4793: 31,54 + 4794: 32,54 + 4802: 46,36 + 4803: 46,34 + 4854: 32,16 + 4855: 32,15 + 4856: 32,13 + 4857: 32,11 + 4858: 32,13 + 4887: 34,1 + 4888: 36,1 + 4889: 37,1 + 4890: 37,1 + 4891: 36,1 + 4892: 35,1 + 4893: 35,3 + 4894: 37,3 + 4895: 19,-4 + 4896: 18,-5 + 4897: 17,-6 + 4898: 17,-5 + 4899: 17,-4 + 4900: 18,-6 + 4901: 21,-6 + 4902: 19,-4 + 4903: 22,-4 + 4904: 21,-5 + 4905: 20,-6 + 4906: 22,-6 + 4907: 21,-4 + 4908: 21,-4 + 4909: 19,-5 + 4910: 20,-4 + 4911: 20,-4 + 4912: 20,-5 + 4913: 17,-4 + 4928: -9,-6 + 4929: -9,-5 + 4930: -9,-3 + 4931: -11,-2 + 4932: -10,-2 + 4933: -9,-3 + 4934: -9,-5 + 4935: -16,1 + 4936: -14,0 + 4937: -14,0 + 4938: -14,0 + 4939: -14,-1 + 4940: -13,0 + 4941: -13,1 + 4948: -10,-9 + 4949: -9,-10 + 4950: -6,-10 + 4951: -4,-11 + 4952: -2,-11 + 4953: -6,-14 + 4954: -6,-13 + 4955: 4,-14 + 4956: 4,-13 + 4957: 3,-11 + 4958: 3,-9 + 4959: 1,-9 + 4960: 5,-9 + 4961: 7,-9 + 4962: 8,-10 + 4963: 3,-5 + 4964: 4,-5 + 4965: 3,-5 + 5015: 12,9 + 5016: 13,9 + 5017: 14,9 + 5018: 14,8 + 5019: 14,7 + 5020: 15,9 + 5021: 15,10 + 5022: 15,10 + 5023: 13,10 + 5024: 9,10 + 5025: 6,10 + 5026: 6,8 + 5027: 7,6 + 5028: 7,9 + 5029: 8,8 + 5030: 7,7 + 5031: 8,7 + 5032: 8,9 + 5033: 8,6 + 5034: 8,7 + 5035: 8,9 + 5036: 7,10 + 5037: 6,11 + 5038: 8,11 + 5039: 10,10 + 5040: 10,6 + 5043: 14,38 + 5044: 15,38 + 5045: 14,38 + 5046: 15,38 + 5047: 14,38 - node: cleanable: True angle: -1.5707963267948966 rad color: '#A461065E' id: Dirt decals: - 5288: -42,22 - 5289: -41,22 - 5290: -41,22 + 5263: -42,22 + 5264: -41,22 + 5265: -41,22 - node: cleanable: True angle: -1.5707963267948966 rad color: '#A46106A4' id: Dirt decals: - 5291: -41,22 - 5292: -42,22 - 5293: -42,24 + 5266: -41,22 + 5267: -42,22 + 5268: -42,24 + 5269: -42,24 + 5270: -41,24 + 5271: -42,23 + 5272: -43,23 + 5273: -39,22 + 5274: -40,22 + 5275: -40,24 + 5276: -40,25 + 5277: -40,26 + 5278: -42,27 + 5279: -43,27 + 5280: -41,28 + 5281: -40,28 + 5282: -41,27 + 5283: -44,27 + 5284: -44,28 + 5285: -45,28 + 5286: -46,27 + 5287: -47,28 + 5288: -47,27 + 5289: -46,28 + 5290: -38,23 + 5291: -38,24 + 5292: -38,27 + 5293: -38,29 5294: -42,24 - 5295: -41,24 - 5296: -42,23 - 5297: -43,23 - 5298: -39,22 - 5299: -40,22 - 5300: -40,24 - 5301: -40,25 - 5302: -40,26 - 5303: -42,27 - 5304: -43,27 - 5305: -41,28 - 5306: -40,28 - 5307: -41,27 - 5308: -44,27 - 5309: -44,28 - 5310: -45,28 - 5311: -46,27 - 5312: -47,28 - 5313: -47,27 - 5314: -46,28 - 5315: -38,23 - 5316: -38,24 - 5317: -38,27 - 5318: -38,29 - 5319: -42,24 - 5320: -42,22 - 5321: -41,21 - 5322: -43,21 - 5323: -42,21 - 5324: -43,22 - 5325: -43,25 - 5326: -43,24 - 5327: -41,24 - 5328: -41,22 - 5329: -41,24 - 5330: -40,20 - 5331: -38,17 - 5332: -38,22 + 5295: -42,22 + 5296: -41,21 + 5297: -43,21 + 5298: -42,21 + 5299: -43,22 + 5300: -43,25 + 5301: -43,24 + 5302: -41,24 + 5303: -41,22 + 5304: -41,24 + 5305: -40,20 + 5306: -38,17 + 5307: -38,22 - node: cleanable: True color: '#83543273' id: DirtHeavy decals: - 3599: 29,6 - 3604: 46,-10 - 3605: 48,-10 - 3720: -13,-41 - 3721: -11,-41 - 3722: -11,-40 - 3723: -10,-37 - 3724: -9,-34 - 3725: -7,-37 - 3726: -8,-40 - 3727: -6,-39 - 3728: -7,-34 - 3729: -7,-28 - 3730: -7,-24 - 3731: -7,-26 - 3732: -7,-30 - 3733: -9,-35 - 3734: -10,-38 - 3735: -10,-40 - 3788: 12,-37 - 3789: 12,-35 - 3790: 12,-34 - 3791: 12,-32 - 3792: 12,-30 - 3793: 12,-28 - 3794: 12,-26 - 3795: 12,-23 - 3796: 12,-21 - 3797: 12,-20 - 3854: 6,-19 - 3857: 5,-19 - 3860: 5,-20 - 3877: 11,-22 - 3878: 11,-24 - 3879: 11,-27 - 3880: 11,-29 - 3881: 11,-32 - 3882: 11,-34 - 3883: 11,-36 - 3904: 7,-35 - 3905: 5,-35 - 3906: 9,-34 - 3907: 10,-34 - 3908: 8,-35 - 3921: 4,-39 - 3922: 6,-38 - 3923: 7,-38 - 3924: 7,-37 - 3925: 8,-38 - 3926: 9,-39 - 3927: 18,-38 - 3928: 18,-37 - 3929: 17,-37 - 3930: 17,-35 - 3931: 17,-34 - 3932: 17,-34 - 3966: 18,-36 - 3967: 18,-36 - 3968: 16,-41 - 4076: 10,1 - 4077: 10,1 - 4078: 12,2 - 4130: 11,-4 - 4131: 6,-1 - 4132: 8,-1 - 4177: 8,-8 - 4220: 3,4 - 4221: 2,4 - 4272: -3,-6 - 4273: -5,-6 - 4274: -3,-4 - 4275: -4,-2 - 4276: -3,1 - 4277: -4,4 - 4278: -4,6 - 4279: -3,8 - 4280: -5,9 - 4281: -3,10 - 4294: 3,14 - 4295: -1,17 - 4296: 0,20 - 4297: -1,25 - 4298: -1,30 - 4299: -1,33 - 4300: -1,36 - 4301: -2,38 - 4302: -1,49 - 4303: -1,50 - 4304: -2,50 - 4332: -7,48 - 4333: -8,48 - 4334: -9,46 - 4335: -10,45 - 4336: -11,45 - 4337: -13,45 - 4338: -16,45 - 4339: -17,45 - 4340: -9,46 - 4341: -7,46 - 4342: -5,45 - 4343: -7,46 - 4344: -8,48 - 4345: -9,49 - 4346: -11,53 - 4347: -14,55 - 4348: -17,53 - 4349: -13,53 - 4350: -12,54 - 4351: -14,53 - 4352: -16,53 - 4353: -18,52 - 4354: -19,51 - 4355: -19,50 - 4356: -19,48 - 4357: -20,48 - 4358: -20,47 - 4359: -20,47 - 4360: -18,46 - 4361: -16,45 - 4454: -27,33 - 4455: -30,33 - 4456: -29,33 - 4464: -29,33 - 4465: -27,30 - 4600: -41,10 - 4601: -40,10 - 4602: -40,9 - 4603: -40,8 - 4604: -39,5 - 4605: -39,4 - 4606: -39,5 - 4607: -40,2 - 4608: -40,1 - 4609: -41,2 - 4610: -41,4 - 4611: -41,4 - 4634: -38,6 - 4635: -39,4 - 4636: -38,3 - 4637: -39,3 - 4638: -38,2 - 4639: -38,1 - 4640: -36,2 - 4641: -36,4 - 4642: -36,3 - 4658: -5,13 - 4659: -3,13 - 4660: -2,13 - 4661: 1,13 - 4662: 2,13 - 4713: 15,47 - 4714: 15,47 - 4715: 15,46 - 4716: 14,46 - 4717: 15,45 - 4718: 15,44 - 4719: 2,56 - 4720: 2,54 - 4721: 3,53 - 4722: 4,53 - 4723: 2,53 - 4724: 4,54 - 4725: 4,56 - 4726: 4,56 - 4727: 5,55 - 4728: -2,54 - 4729: -2,54 - 4730: -2,70 - 4731: -2,70 - 4732: -2,68 - 4733: -2,68 - 4734: 0,68 - 4735: -2,67 - 4736: -3,67 - 4737: -3,67 - 4812: 32,54 - 4813: 33,54 - 4821: 46,36 - 4822: 45,36 - 4823: 46,36 - 4824: 49,36 - 4825: 48,36 - 4826: 48,35 - 4827: 48,34 - 4828: 48,35 - 4829: 48,36 - 4858: 27,25 - 4859: 29,25 - 4860: 30,26 - 4861: 30,23 - 4862: 30,24 - 4863: 30,25 - 4864: 30,24 - 4865: 32,19 - 4866: 32,16 - 4867: 32,15 - 4868: 33,15 - 4869: 32,15 - 4870: 32,16 - 4876: 39,14 - 4877: 41,15 - 4878: 42,15 - 4879: 45,14 - 4880: 46,15 - 4881: 48,15 - 4882: 47,15 - 4883: 49,15 - 4884: 49,13 - 4885: 45,15 - 4931: 17,-4 - 4932: 16,-5 - 4933: 16,-6 - 4934: 18,-5 - 4935: 18,-4 - 4936: 19,-6 - 4937: 20,-6 - 4938: 20,-4 - 4939: 20,-5 - 4940: 20,-5 - 4941: 21,-6 - 4942: 21,-4 - 4943: 22,-3 - 4944: 20,-3 - 4959: -12,-10 - 4960: -13,-10 - 4961: -12,-9 - 4962: -13,-10 - 4963: -12,-10 - 4964: -11,-10 - 4983: 3,-5 - 4984: 2,-6 - 5065: 14,38 + 3583: 29,6 + 3588: 46,-10 + 3589: 48,-10 + 3704: -13,-41 + 3705: -11,-41 + 3706: -11,-40 + 3707: -10,-37 + 3708: -9,-34 + 3709: -7,-37 + 3710: -8,-40 + 3711: -6,-39 + 3712: -7,-34 + 3713: -7,-28 + 3714: -7,-24 + 3715: -7,-26 + 3716: -7,-30 + 3717: -9,-35 + 3718: -10,-38 + 3719: -10,-40 + 3772: 12,-37 + 3773: 12,-35 + 3774: 12,-34 + 3775: 12,-32 + 3776: 12,-30 + 3777: 12,-28 + 3778: 12,-26 + 3779: 12,-23 + 3780: 12,-21 + 3781: 12,-20 + 3838: 6,-19 + 3841: 5,-19 + 3844: 5,-20 + 3861: 11,-22 + 3862: 11,-24 + 3863: 11,-27 + 3864: 11,-29 + 3865: 11,-32 + 3866: 11,-34 + 3867: 11,-36 + 3888: 7,-35 + 3889: 5,-35 + 3890: 9,-34 + 3891: 10,-34 + 3892: 8,-35 + 3905: 4,-39 + 3906: 6,-38 + 3907: 7,-38 + 3908: 7,-37 + 3909: 8,-38 + 3910: 9,-39 + 3911: 18,-38 + 3912: 18,-37 + 3913: 17,-37 + 3914: 17,-35 + 3915: 17,-34 + 3916: 17,-34 + 3950: 18,-36 + 3951: 18,-36 + 3952: 16,-41 + 4060: 10,1 + 4061: 10,1 + 4062: 12,2 + 4114: 11,-4 + 4115: 6,-1 + 4116: 8,-1 + 4161: 8,-8 + 4204: 3,4 + 4205: 2,4 + 4256: -3,-6 + 4257: -5,-6 + 4258: -3,-4 + 4259: -4,-2 + 4260: -3,1 + 4261: -4,4 + 4262: -4,6 + 4263: -3,8 + 4264: -5,9 + 4265: -3,10 + 4278: 3,14 + 4279: -1,17 + 4280: 0,20 + 4281: -1,25 + 4282: -1,30 + 4283: -1,33 + 4284: -1,36 + 4285: -2,38 + 4286: -1,49 + 4287: -1,50 + 4288: -2,50 + 4316: -7,48 + 4317: -8,48 + 4318: -9,46 + 4319: -10,45 + 4320: -11,45 + 4321: -13,45 + 4322: -16,45 + 4323: -17,45 + 4324: -9,46 + 4325: -7,46 + 4326: -5,45 + 4327: -7,46 + 4328: -8,48 + 4329: -9,49 + 4330: -11,53 + 4331: -14,55 + 4332: -17,53 + 4333: -13,53 + 4334: -12,54 + 4335: -14,53 + 4336: -16,53 + 4337: -18,52 + 4338: -19,51 + 4339: -19,50 + 4340: -19,48 + 4341: -20,48 + 4342: -20,47 + 4343: -20,47 + 4344: -18,46 + 4345: -16,45 + 4438: -27,33 + 4439: -30,33 + 4440: -29,33 + 4448: -29,33 + 4449: -27,30 + 4583: -41,10 + 4584: -40,10 + 4585: -40,9 + 4586: -40,8 + 4587: -39,5 + 4588: -39,4 + 4589: -39,5 + 4590: -40,2 + 4591: -40,1 + 4592: -41,2 + 4593: -41,4 + 4594: -41,4 + 4617: -38,6 + 4618: -39,4 + 4619: -38,3 + 4620: -39,3 + 4621: -38,2 + 4622: -38,1 + 4623: -36,2 + 4624: -36,4 + 4625: -36,3 + 4641: -5,13 + 4642: -3,13 + 4643: -2,13 + 4644: 1,13 + 4645: 2,13 + 4696: 15,47 + 4697: 15,47 + 4698: 15,46 + 4699: 14,46 + 4700: 15,45 + 4701: 15,44 + 4702: 2,56 + 4703: 2,54 + 4704: 3,53 + 4705: 4,53 + 4706: 2,53 + 4707: 4,54 + 4708: 4,56 + 4709: 4,56 + 4710: 5,55 + 4711: -2,54 + 4712: -2,54 + 4713: -2,70 + 4714: -2,70 + 4715: -2,68 + 4716: -2,68 + 4717: 0,68 + 4718: -2,67 + 4719: -3,67 + 4720: -3,67 + 4795: 32,54 + 4796: 33,54 + 4804: 46,36 + 4805: 45,36 + 4806: 46,36 + 4807: 49,36 + 4808: 48,36 + 4809: 48,35 + 4810: 48,34 + 4811: 48,35 + 4812: 48,36 + 4841: 27,25 + 4842: 29,25 + 4843: 30,26 + 4844: 30,23 + 4845: 30,24 + 4846: 30,25 + 4847: 30,24 + 4848: 32,19 + 4849: 32,16 + 4850: 32,15 + 4851: 33,15 + 4852: 32,15 + 4853: 32,16 + 4859: 39,14 + 4860: 41,15 + 4861: 42,15 + 4862: 45,14 + 4863: 46,15 + 4864: 48,15 + 4865: 47,15 + 4866: 49,15 + 4867: 49,13 + 4868: 45,15 + 4914: 17,-4 + 4915: 16,-5 + 4916: 16,-6 + 4917: 18,-5 + 4918: 18,-4 + 4919: 19,-6 + 4920: 20,-6 + 4921: 20,-4 + 4922: 20,-5 + 4923: 20,-5 + 4924: 21,-6 + 4925: 21,-4 + 4926: 22,-3 + 4927: 20,-3 + 4942: -12,-10 + 4943: -13,-10 + 4944: -12,-9 + 4945: -13,-10 + 4946: -12,-10 + 4947: -11,-10 + 4966: 3,-5 + 4967: 2,-6 + 5048: 14,38 - node: cleanable: True angle: -1.5707963267948966 rad color: '#A4610696' id: DirtHeavy decals: - 5257: -40,21 - 5258: -41,22 - 5259: -43,23 - 5260: -43,27 - 5261: -43,28 - 5262: -42,28 - 5263: -46,28 - 5264: -45,28 - 5265: -45,27 - 5266: -47,27 - 5267: -38,20 - 5268: -41,20 - 5269: -42,27 - 5270: -41,24 - 5271: -42,24 + 5232: -40,21 + 5233: -41,22 + 5234: -43,23 + 5235: -43,27 + 5236: -43,28 + 5237: -42,28 + 5238: -46,28 + 5239: -45,28 + 5240: -45,27 + 5241: -47,27 + 5242: -38,20 + 5243: -41,20 + 5244: -42,27 + 5245: -41,24 + 5246: -42,24 - node: cleanable: True color: '#83543273' id: DirtLight decals: - 3600: 29,6 - 3602: 46,-10 - 3603: 48,-10 - 3606: 46,-10 - 3609: 18,-9 - 3610: 22,-9 - 3798: 12,-36 - 3799: 12,-34 - 3800: 12,-32 - 3801: 12,-30 - 3802: 12,-28 - 3803: 12,-26 - 3804: 12,-24 - 3805: 12,-22 - 3806: 12,-20 - 3807: 12,-18 - 3808: 12,-18 - 3809: 11,-19 - 3810: 12,-19 - 3866: 6,-21 - 3867: 5,-19 - 3901: 9,-35 - 3902: 7,-35 - 3903: 8,-35 - 3969: 15,-40 - 3970: 16,-40 - 4120: 5,-5 - 4121: 7,-5 - 4122: 10,-5 - 4123: 11,-2 - 4178: 9,-8 - 4179: 10,-8 - 4180: 10,-9 - 4181: 10,-9 - 4182: 9,-9 - 4183: 9,-9 - 4184: 12,-9 - 4185: 11,-8 - 4186: 11,-9 - 4216: -1,6 - 4224: -8,6 - 4225: -11,7 - 4282: 1,11 - 4283: 2,10 - 4284: 1,8 - 4285: 1,6 - 4286: 2,4 - 4287: 0,2 - 4288: 2,0 - 4289: 1,-3 - 4290: 2,-5 - 4291: 1,-6 - 4292: 1,4 - 4293: 2,7 - 4305: -2,48 - 4306: -2,50 - 4362: -44,43 - 4363: -44,43 - 4457: -31,31 - 4458: -31,30 - 4459: -29,30 - 4460: -32,33 - 4461: -31,33 - 4462: -31,30 - 4463: -29,30 - 4466: -27,31 - 4467: -27,32 - 4612: -41,-1 - 4613: -42,-2 - 4614: -40,-1 - 4615: -40,2 - 4616: -37,2 - 4617: -36,2 - 4618: -36,4 - 4619: -35,4 - 4625: -39,10 - 4626: -36,10 - 4627: -35,10 - 4628: -37,10 - 4629: -38,10 - 4630: -36,11 - 4631: -41,10 - 4632: -41,9 - 4633: -42,9 - 4663: 1,13 - 4664: 3,13 - 4665: 5,14 - 4666: 5,14 - 4667: 3,15 - 4668: 2,15 - 4680: 3,16 - 4681: 3,16 - 4682: 4,17 - 4683: 4,18 - 4684: 3,18 - 4695: 6,28 - 4696: 7,28 - 4697: 7,29 - 4698: 6,29 - 4699: 6,30 - 4700: 3,31 - 4701: 3,33 - 4702: 2,33 - 4703: 2,27 - 4704: 2,29 - 4705: 5,29 - 4706: 4,28 - 4707: 4,28 - 4708: 4,30 - 4886: 46,15 - 4887: 46,17 - 4888: 46,17 - 4889: 48,17 - 4890: 49,17 - 4891: 49,17 - 4892: 48,17 - 4985: 3,-5 - 4986: 3,-5 - 4987: 2,-6 - 5066: 15,38 + 3584: 29,6 + 3586: 46,-10 + 3587: 48,-10 + 3590: 46,-10 + 3593: 18,-9 + 3594: 22,-9 + 3782: 12,-36 + 3783: 12,-34 + 3784: 12,-32 + 3785: 12,-30 + 3786: 12,-28 + 3787: 12,-26 + 3788: 12,-24 + 3789: 12,-22 + 3790: 12,-20 + 3791: 12,-18 + 3792: 12,-18 + 3793: 11,-19 + 3794: 12,-19 + 3850: 6,-21 + 3851: 5,-19 + 3885: 9,-35 + 3886: 7,-35 + 3887: 8,-35 + 3953: 15,-40 + 3954: 16,-40 + 4104: 5,-5 + 4105: 7,-5 + 4106: 10,-5 + 4107: 11,-2 + 4162: 9,-8 + 4163: 10,-8 + 4164: 10,-9 + 4165: 10,-9 + 4166: 9,-9 + 4167: 9,-9 + 4168: 12,-9 + 4169: 11,-8 + 4170: 11,-9 + 4200: -1,6 + 4208: -8,6 + 4209: -11,7 + 4266: 1,11 + 4267: 2,10 + 4268: 1,8 + 4269: 1,6 + 4270: 2,4 + 4271: 0,2 + 4272: 2,0 + 4273: 1,-3 + 4274: 2,-5 + 4275: 1,-6 + 4276: 1,4 + 4277: 2,7 + 4289: -2,48 + 4290: -2,50 + 4346: -44,43 + 4347: -44,43 + 4441: -31,31 + 4442: -31,30 + 4443: -29,30 + 4444: -32,33 + 4445: -31,33 + 4446: -31,30 + 4447: -29,30 + 4450: -27,31 + 4451: -27,32 + 4595: -41,-1 + 4596: -42,-2 + 4597: -40,-1 + 4598: -40,2 + 4599: -37,2 + 4600: -36,2 + 4601: -36,4 + 4602: -35,4 + 4608: -39,10 + 4609: -36,10 + 4610: -35,10 + 4611: -37,10 + 4612: -38,10 + 4613: -36,11 + 4614: -41,10 + 4615: -41,9 + 4616: -42,9 + 4646: 1,13 + 4647: 3,13 + 4648: 5,14 + 4649: 5,14 + 4650: 3,15 + 4651: 2,15 + 4663: 3,16 + 4664: 3,16 + 4665: 4,17 + 4666: 4,18 + 4667: 3,18 + 4678: 6,28 + 4679: 7,28 + 4680: 7,29 + 4681: 6,29 + 4682: 6,30 + 4683: 3,31 + 4684: 3,33 + 4685: 2,33 + 4686: 2,27 + 4687: 2,29 + 4688: 5,29 + 4689: 4,28 + 4690: 4,28 + 4691: 4,30 + 4869: 46,15 + 4870: 46,17 + 4871: 46,17 + 4872: 48,17 + 4873: 49,17 + 4874: 49,17 + 4875: 48,17 + 4968: 3,-5 + 4969: 3,-5 + 4970: 2,-6 + 5049: 15,38 - node: cleanable: True angle: -1.5707963267948966 rad color: '#A461065E' id: DirtLight decals: - 5285: -41,22 - 5286: -42,23 - 5287: -41,23 + 5260: -41,22 + 5261: -42,23 + 5262: -41,23 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 5180: 46,-11 - 5181: 45,-11 - 5182: 46,-13 - 5183: 47,-14 - 5184: 48,-12 - 5185: 48,-12 - 5186: 48,-14 - 5187: 47,-14 - 5188: 49,-15 - 5189: 49,-8 - 5190: 48,-8 + 5163: 46,-11 + 5164: 45,-11 + 5165: 46,-13 + 5166: 47,-14 + 5167: 48,-12 + 5168: 48,-12 + 5169: 48,-14 + 5170: 47,-14 + 5171: 49,-15 + 5172: 49,-8 + 5173: 48,-8 - node: cleanable: True color: '#83543273' id: DirtMedium decals: - 3601: 28,-14 - 3607: 48,-10 - 3608: 37,-9 - 3611: 11,-9 - 3612: 9,-9 - 3736: -10,-42 - 3737: -10,-37 - 3738: -10,-34 - 3739: -8,-33 - 3740: -14,-36 - 3741: -13,-33 - 3742: -12,-37 - 3743: -13,-36 - 3744: -12,-34 - 3745: -13,-34 - 3746: -13,-36 - 3747: -13,-37 - 3811: 11,-19 - 3812: 11,-18 - 3813: 12,-18 - 3814: 12,-20 - 3815: 12,-22 - 3816: 12,-25 - 3817: 12,-28 - 3818: 12,-30 - 3819: 12,-32 - 3820: 12,-34 - 3821: 12,-36 - 3868: 7,-21 - 3869: 7,-21 - 3884: 11,-37 - 3885: 11,-35 - 3886: 11,-32 - 3887: 11,-29 - 3888: 11,-26 - 3889: 11,-24 - 3890: 7,-31 - 3891: 6,-31 - 3892: 5,-35 - 3893: 6,-34 - 3894: 7,-34 - 3895: 6,-35 - 3896: 7,-35 - 3897: 6,-35 - 3898: 8,-34 - 3899: 10,-34 - 3900: 10,-35 - 3933: 17,-37 - 3934: 17,-36 - 3935: 17,-35 - 3936: 17,-35 - 3937: 17,-37 - 3938: 18,-37 - 3939: 18,-35 - 3940: 18,-34 - 3941: 18,-36 - 3942: 18,-37 - 3963: 17,-36 - 3964: 17,-36 - 3965: 18,-35 - 3971: 15,-40 - 3972: 15,-40 - 4079: 11,3 - 4080: 10,2 - 4081: 11,1 - 4082: 11,1 - 4083: 12,2 - 4084: 12,2 - 4085: 12,2 - 4086: 10,1 - 4087: 10,1 - 4124: 5,-1 - 4125: 8,2 - 4126: 8,-1 - 4127: 9,-5 - 4128: 6,-5 - 4129: 11,-5 - 4217: -3,5 - 4218: -4,6 - 4219: -2,5 - 4307: -7,50 - 4308: -7,47 - 4309: -8,50 - 4310: -9,47 - 4311: -9,46 - 4312: -14,45 - 4313: -16,45 - 4314: -19,47 - 4315: -19,49 - 4316: -17,53 - 4317: -15,54 - 4318: -13,54 - 4319: -11,55 - 4320: -10,57 - 4321: -10,58 - 4322: -9,55 - 4323: -9,55 - 4324: -9,55 - 4325: -10,56 - 4326: -12,59 - 4327: -12,59 - 4328: -7,48 - 4329: -7,48 - 4330: -7,50 - 4331: -7,50 - 4364: -44,43 - 4365: -44,43 - 4468: -27,33 - 4469: -27,30 - 4470: -33,25 - 4471: -33,24 - 4472: -33,22 - 4473: -33,20 - 4474: -33,17 - 4475: -36,13 - 4476: -43,13 - 4477: -48,14 - 4478: -50,14 - 4479: -46,14 - 4480: -45,14 - 4481: -45,14 - 4482: -46,15 - 4483: -48,15 - 4484: -49,13 - 4485: -42,14 - 4486: -39,15 - 4487: -38,15 - 4488: -36,15 - 4489: -39,17 - 4490: -38,17 - 4491: -38,18 - 4492: -39,16 - 4493: -38,18 - 4494: -39,19 - 4495: -38,17 - 4535: -41,26 - 4536: -42,25 - 4537: -42,25 - 4538: -41,25 - 4539: -38,28 - 4540: -38,29 - 4541: -38,28 - 4542: -40,29 - 4543: -40,29 - 4544: -39,27 - 4545: -39,25 - 4546: -38,23 - 4547: -39,21 - 4548: -39,20 - 4549: -39,19 - 4550: -41,18 - 4551: -40,17 - 4552: -40,18 - 4553: -39,17 - 4554: -38,18 - 4555: -38,15 - 4556: -39,15 - 4557: -38,14 - 4558: -37,15 - 4559: -36,14 - 4560: -36,15 - 4561: -36,16 - 4562: -36,16 - 4563: -36,16 - 4620: -36,2 - 4621: -36,3 - 4622: -35,4 - 4623: -38,6 - 4624: -38,7 - 4685: 3,17 - 4686: 4,17 - 4687: 3,18 - 4688: 3,18 - 4689: 3,17 - 4690: 4,27 - 4691: 2,27 - 4692: 2,31 - 4693: 7,30 - 4694: 6,30 - 4738: -3,67 - 4739: -3,67 - 4740: -2,68 - 4741: 0,68 - 4742: 0,70 - 4743: 0,74 - 4744: 2,76 - 4745: 3,76 - 4746: 5,76 - 4747: 5,75 - 4748: 5,74 - 4814: 32,54 - 4815: 31,54 - 4816: 40,47 - 4817: 44,43 - 4818: 42,43 - 4830: 47,36 - 4831: 47,37 - 4832: 47,36 - 4833: 47,37 - 4834: 47,37 - 4835: 45,37 - 4836: 45,35 - 4837: 43,36 - 4838: 42,37 - 4839: 41,37 - 4840: 41,40 - 4841: 41,40 - 4842: 39,37 - 4843: 39,36 - 4844: 36,38 - 4845: 34,38 - 4846: 32,38 - 4847: 29,37 - 4848: 30,36 - 4849: 30,38 - 4850: 31,38 - 4851: 31,38 - 4852: 31,38 - 4853: 28,26 - 4854: 27,25 - 4855: 27,25 - 4856: 29,29 - 4857: 30,27 - 4893: 46,15 - 4894: 48,15 - 4895: 46,16 - 4896: 46,17 - 4897: 46,16 - 4898: 34,5 - 4899: 34,5 - 4900: 35,5 - 4901: 34,3 - 4902: 34,3 - 4903: 34,1 - 4988: 2,-6 - 4989: 1,-5 - 4990: 0,-1 - 4991: 1,0 - 4992: 0,0 - 4993: -2,1 - 4994: -2,0 - 4995: 1,3 - 4996: 1,9 - 4997: -2,6 - 4998: -6,0 - 4999: -8,-2 - 5000: -10,-2 - 5001: -11,-1 - 5002: -7,-1 - 5003: -6,-1 - 5004: -4,-1 - 5005: -5,-1 - 5006: -5,0 - 5007: -8,3 - 5008: -9,3 - 5009: -9,3 - 5010: -7,3 - 5011: -4,6 - 5012: 7,4 - 5013: 6,5 - 5014: 6,7 - 5015: 10,10 - 5016: 10,8 - 5017: 10,5 - 5018: 8,5 - 5019: 9,5 - 5020: 13,9 - 5021: 14,8 - 5022: 14,8 - 5023: 14,9 - 5024: 13,10 - 5025: 14,9 - 5026: 15,10 - 5027: 15,9 - 5028: 13,10 - 5029: 15,10 - 5030: 14,10 - 5031: 13,9 - 5067: 14,38 - 5068: 15,38 - 5069: 15,38 + 3585: 28,-14 + 3591: 48,-10 + 3592: 37,-9 + 3595: 11,-9 + 3596: 9,-9 + 3720: -10,-42 + 3721: -10,-37 + 3722: -10,-34 + 3723: -8,-33 + 3724: -14,-36 + 3725: -13,-33 + 3726: -12,-37 + 3727: -13,-36 + 3728: -12,-34 + 3729: -13,-34 + 3730: -13,-36 + 3731: -13,-37 + 3795: 11,-19 + 3796: 11,-18 + 3797: 12,-18 + 3798: 12,-20 + 3799: 12,-22 + 3800: 12,-25 + 3801: 12,-28 + 3802: 12,-30 + 3803: 12,-32 + 3804: 12,-34 + 3805: 12,-36 + 3852: 7,-21 + 3853: 7,-21 + 3868: 11,-37 + 3869: 11,-35 + 3870: 11,-32 + 3871: 11,-29 + 3872: 11,-26 + 3873: 11,-24 + 3874: 7,-31 + 3875: 6,-31 + 3876: 5,-35 + 3877: 6,-34 + 3878: 7,-34 + 3879: 6,-35 + 3880: 7,-35 + 3881: 6,-35 + 3882: 8,-34 + 3883: 10,-34 + 3884: 10,-35 + 3917: 17,-37 + 3918: 17,-36 + 3919: 17,-35 + 3920: 17,-35 + 3921: 17,-37 + 3922: 18,-37 + 3923: 18,-35 + 3924: 18,-34 + 3925: 18,-36 + 3926: 18,-37 + 3947: 17,-36 + 3948: 17,-36 + 3949: 18,-35 + 3955: 15,-40 + 3956: 15,-40 + 4063: 11,3 + 4064: 10,2 + 4065: 11,1 + 4066: 11,1 + 4067: 12,2 + 4068: 12,2 + 4069: 12,2 + 4070: 10,1 + 4071: 10,1 + 4108: 5,-1 + 4109: 8,2 + 4110: 8,-1 + 4111: 9,-5 + 4112: 6,-5 + 4113: 11,-5 + 4201: -3,5 + 4202: -4,6 + 4203: -2,5 + 4291: -7,50 + 4292: -7,47 + 4293: -8,50 + 4294: -9,47 + 4295: -9,46 + 4296: -14,45 + 4297: -16,45 + 4298: -19,47 + 4299: -19,49 + 4300: -17,53 + 4301: -15,54 + 4302: -13,54 + 4303: -11,55 + 4304: -10,57 + 4305: -10,58 + 4306: -9,55 + 4307: -9,55 + 4308: -9,55 + 4309: -10,56 + 4310: -12,59 + 4311: -12,59 + 4312: -7,48 + 4313: -7,48 + 4314: -7,50 + 4315: -7,50 + 4348: -44,43 + 4349: -44,43 + 4452: -27,33 + 4453: -27,30 + 4454: -33,25 + 4455: -33,24 + 4456: -33,22 + 4457: -33,20 + 4458: -33,17 + 4459: -36,13 + 4460: -43,13 + 4461: -48,14 + 4462: -50,14 + 4463: -46,14 + 4464: -45,14 + 4465: -45,14 + 4466: -46,15 + 4467: -48,15 + 4468: -49,13 + 4469: -42,14 + 4470: -39,15 + 4471: -38,15 + 4472: -36,15 + 4473: -39,17 + 4474: -38,17 + 4475: -38,18 + 4476: -39,16 + 4477: -38,18 + 4478: -39,19 + 4479: -38,17 + 4518: -41,26 + 4519: -42,25 + 4520: -42,25 + 4521: -41,25 + 4522: -38,28 + 4523: -38,29 + 4524: -38,28 + 4525: -40,29 + 4526: -40,29 + 4527: -39,27 + 4528: -39,25 + 4529: -38,23 + 4530: -39,21 + 4531: -39,20 + 4532: -39,19 + 4533: -41,18 + 4534: -40,17 + 4535: -40,18 + 4536: -39,17 + 4537: -38,18 + 4538: -38,15 + 4539: -39,15 + 4540: -38,14 + 4541: -37,15 + 4542: -36,14 + 4543: -36,15 + 4544: -36,16 + 4545: -36,16 + 4546: -36,16 + 4603: -36,2 + 4604: -36,3 + 4605: -35,4 + 4606: -38,6 + 4607: -38,7 + 4668: 3,17 + 4669: 4,17 + 4670: 3,18 + 4671: 3,18 + 4672: 3,17 + 4673: 4,27 + 4674: 2,27 + 4675: 2,31 + 4676: 7,30 + 4677: 6,30 + 4721: -3,67 + 4722: -3,67 + 4723: -2,68 + 4724: 0,68 + 4725: 0,70 + 4726: 0,74 + 4727: 2,76 + 4728: 3,76 + 4729: 5,76 + 4730: 5,75 + 4731: 5,74 + 4797: 32,54 + 4798: 31,54 + 4799: 40,47 + 4800: 44,43 + 4801: 42,43 + 4813: 47,36 + 4814: 47,37 + 4815: 47,36 + 4816: 47,37 + 4817: 47,37 + 4818: 45,37 + 4819: 45,35 + 4820: 43,36 + 4821: 42,37 + 4822: 41,37 + 4823: 41,40 + 4824: 41,40 + 4825: 39,37 + 4826: 39,36 + 4827: 36,38 + 4828: 34,38 + 4829: 32,38 + 4830: 29,37 + 4831: 30,36 + 4832: 30,38 + 4833: 31,38 + 4834: 31,38 + 4835: 31,38 + 4836: 28,26 + 4837: 27,25 + 4838: 27,25 + 4839: 29,29 + 4840: 30,27 + 4876: 46,15 + 4877: 48,15 + 4878: 46,16 + 4879: 46,17 + 4880: 46,16 + 4881: 34,5 + 4882: 34,5 + 4883: 35,5 + 4884: 34,3 + 4885: 34,3 + 4886: 34,1 + 4971: 2,-6 + 4972: 1,-5 + 4973: 0,-1 + 4974: 1,0 + 4975: 0,0 + 4976: -2,1 + 4977: -2,0 + 4978: 1,3 + 4979: 1,9 + 4980: -2,6 + 4981: -6,0 + 4982: -8,-2 + 4983: -10,-2 + 4984: -11,-1 + 4985: -7,-1 + 4986: -6,-1 + 4987: -4,-1 + 4988: -5,-1 + 4989: -5,0 + 4990: -8,3 + 4991: -9,3 + 4992: -9,3 + 4993: -7,3 + 4994: -4,6 + 4995: 7,4 + 4996: 6,5 + 4997: 6,7 + 4998: 10,10 + 4999: 10,8 + 5000: 10,5 + 5001: 8,5 + 5002: 9,5 + 5003: 13,9 + 5004: 14,8 + 5005: 14,8 + 5006: 14,9 + 5007: 13,10 + 5008: 14,9 + 5009: 15,10 + 5010: 15,9 + 5011: 13,10 + 5012: 15,10 + 5013: 14,10 + 5014: 13,9 + 5050: 14,38 + 5051: 15,38 + 5052: 15,38 - node: cleanable: True angle: -1.5707963267948966 rad color: '#A461065E' id: DirtMedium decals: - 5276: -43,27 - 5277: -43,28 - 5278: -46,28 - 5279: -46,27 - 5280: -41,24 - 5281: -40,21 - 5282: -41,27 - 5283: -41,23 - 5284: -41,22 + 5251: -43,27 + 5252: -43,28 + 5253: -46,28 + 5254: -46,27 + 5255: -41,24 + 5256: -40,21 + 5257: -41,27 + 5258: -41,23 + 5259: -41,22 - node: cleanable: True angle: -1.5707963267948966 rad color: '#A4610696' id: DirtMedium decals: - 5272: -42,22 - 5273: -43,24 - 5274: -42,25 - 5275: -42,28 + 5247: -42,22 + 5248: -43,24 + 5249: -42,25 + 5250: -42,28 - node: color: '#80C71FA4' id: Flowersbr1 decals: - 5087: -45.480713,39.888554 + 5070: -45.480713,39.888554 - node: color: '#80C71FA4' id: Flowersbr2 decals: - 5089: -47.82387,40.787373 + 5072: -47.82387,40.787373 - node: color: '#80C71FAE' id: Flowerspv2 decals: - 2423: 22.31159,21.239965 + 2408: 22.31159,21.239965 - node: color: '#80C71FAE' id: Flowerspv3 decals: - 2422: 22.119907,20.303352 + 2407: 22.119907,20.303352 - node: color: '#80C71FA4' id: Flowersy1 decals: - 5084: -45.40703,40.65476 - 5086: -46.468082,40.168514 + 5067: -45.40703,40.65476 + 5069: -46.468082,40.168514 - node: color: '#80C71FAE' id: Flowersy2 decals: - 2419: 21.097595,20.409784 - 2424: 21.012402,21.21868 - 2425: 22.780151,20.0692 + 2404: 21.097595,20.409784 + 2409: 21.012402,21.21868 + 2410: 22.780151,20.0692 - node: color: '#80C71FA4' id: Flowersy3 decals: - 5088: -46.61545,40.787373 + 5071: -46.61545,40.787373 - node: color: '#80C71FAE' id: Flowersy3 decals: - 2418: 22.013416,21.53798 - 2420: 26.379543,16.769766 - 2426: 21.928225,20.32464 + 2403: 22.013416,21.53798 + 2405: 26.379543,16.769766 + 2411: 21.928225,20.32464 - node: color: '#80C71FA4' id: Flowersy4 decals: - 5085: -47.750187,39.991695 + 5068: -47.750187,39.991695 - node: color: '#80C71FAE' id: Flowersy4 decals: - 2421: 27.061085,17.45094 + 2406: 27.061085,17.45094 - node: color: '#18A2D50C' id: FullTileOverlayGreyscale @@ -5345,193 +5345,193 @@ entities: color: '#80C71FAB' id: Grassa1 decals: - 2414: 20.991104,21.857279 - 2416: 26.975891,16.94006 + 2399: 20.991104,21.857279 + 2401: 26.975891,16.94006 - node: color: '#80C71FB4' id: Grassa1 decals: - 2439: 20.92721,20.19692 + 2424: 20.92721,20.19692 - node: color: '#80C71FA4' id: Grassa2 decals: - 5071: -47.73545,40.050636 - 5075: -47.764923,40.698963 - 5077: -46.24703,40.743168 - 5078: -46.084923,39.918022 + 5054: -47.73545,40.050636 + 5058: -47.764923,40.698963 + 5060: -46.24703,40.743168 + 5061: -46.084923,39.918022 - node: color: '#80C71FB4' id: Grassa2 decals: - 2440: 22.865343,21.921139 - 2441: 26.358244,16.94006 + 2425: 22.865343,21.921139 + 2426: 26.358244,16.94006 - node: color: '#80C71F95' id: Grassa3 decals: - 2435: 22.247696,20.388498 + 2420: 22.247696,20.388498 - node: color: '#80C71FA4' id: Grassa3 decals: - 5072: -45.421764,40.669495 + 5055: -45.421764,40.669495 - node: color: '#80C71FA4' id: Grassa4 decals: - 5073: -45.40703,39.918022 + 5056: -45.40703,39.918022 - node: color: '#80C71FAB' id: Grassa4 decals: - 2413: 21.885628,21.303825 + 2398: 21.885628,21.303825 - node: color: '#80C71FB4' id: Grassa4 decals: - 2436: 21.992119,21.3464 - 2442: 27.124979,17.599947 + 2421: 21.992119,21.3464 + 2427: 27.124979,17.599947 - node: color: '#80C71FA4' id: Grassa5 decals: - 5074: -46.60071,39.873817 + 5057: -46.60071,39.873817 - node: color: '#80C71FAB' id: Grassa5 decals: - 2415: 26.209158,17.685093 - 2417: 21.566154,21.814705 + 2400: 26.209158,17.685093 + 2402: 21.566154,21.814705 - node: color: '#80C71FB4' id: Grassa5 decals: - 2437: 21.523558,20.409784 - 2438: 20.756824,21.835993 + 2422: 21.523558,20.409784 + 2423: 20.756824,21.835993 - node: color: '#80C71FA4' id: Grassb2 decals: - 5095: -46.541767,41.02313 - 5097: -44.994396,39.829613 + 5078: -46.541767,41.02313 + 5080: -44.994396,39.829613 - node: color: '#80C71FAB' id: Grassb2 decals: - 2409: 27.188873,17.578661 - 2410: 20.92721,20.111773 - 2411: 23.057028,20.239492 + 2394: 27.188873,17.578661 + 2395: 20.92721,20.111773 + 2396: 23.057028,20.239492 - node: color: '#80C71FAB' id: Grassb3 decals: - 2407: 21.821733,20.154345 - 2408: 26.954594,16.897486 + 2392: 21.821733,20.154345 + 2393: 26.954594,16.897486 - node: color: '#80C71FA4' id: Grassb4 decals: - 5091: -45.392292,40.65476 - 5094: -47.88282,40.743168 - 5096: -47.853344,39.991695 - 5098: -45.30387,40.919987 + 5074: -45.392292,40.65476 + 5077: -47.88282,40.743168 + 5079: -47.853344,39.991695 + 5081: -45.30387,40.919987 - node: color: '#80C71F95' id: Grassc1 decals: - 2432: 27.061085,17.770239 + 2417: 27.061085,17.770239 - node: color: '#80C71FA4' id: Grassc1 decals: - 5093: -46.52703,40.301125 + 5076: -46.52703,40.301125 - node: color: '#FFFFFF7F' id: Grassc1 decals: - 2361: 32.165768,40.007343 + 2346: 32.165768,40.007343 - node: color: '#80C71F95' id: Grassc2 decals: - 2431: 26.081367,17.770239 + 2416: 26.081367,17.770239 - node: color: '#80C71FA4' id: Grassc2 decals: - 5076: -46.29124,40.640026 + 5059: -46.29124,40.640026 - node: color: '#FFFFFF7F' id: Grassc2 decals: - 2360: 32.108974,40.943954 + 2345: 32.108974,40.943954 - node: color: '#80C71F95' id: Grassc3 decals: - 2430: 26.52863,16.897486 + 2415: 26.52863,16.897486 - node: color: '#80C71FA4' id: Grassc3 decals: - 5090: -47.70598,40.0359 + 5073: -47.70598,40.0359 - node: color: '#FFFFFF7F' id: Grassc3 decals: - 2358: 28.90005,40.85881 + 2343: 28.90005,40.85881 - node: color: '#80C71F95' id: Grassc4 decals: - 2427: 21.054998,20.45236 + 2412: 21.054998,20.45236 - node: color: '#FFFFFF7F' id: Grassc4 decals: - 2359: 28.87165,40.035725 + 2344: 28.87165,40.035725 - node: color: '#FFFFFFEF' id: Grassd1 decals: - 2364: 32.13737,39.978962 + 2349: 32.13737,39.978962 - node: color: '#FFFFFFEF' id: Grassd2 decals: - 2362: 28.90005,40.049915 + 2347: 28.90005,40.049915 - node: color: '#80C71FA4' id: Grassd3 decals: - 5092: -45.30387,39.976963 + 5075: -45.30387,39.976963 - node: color: '#FFFFFFEF' id: Grassd3 decals: - 2363: 28.942644,41.057484 + 2348: 28.942644,41.057484 - node: color: '#80C71F95' id: Grasse1 decals: - 2433: 26.379543,17.025208 - 2434: 21.331875,20.494932 + 2418: 26.379543,17.025208 + 2419: 21.331875,20.494932 - node: color: '#FFFFFFEF' id: Grasse1 decals: - 2365: 32.15157,40.943954 + 2350: 32.15157,40.943954 - node: color: '#80C71F95' id: Grasse2 decals: - 2428: 22.375484,21.729559 + 2413: 22.375484,21.729559 - node: color: '#80C71F95' id: Grasse3 decals: - 2429: 22.65236,20.175632 + 2414: 22.65236,20.175632 - node: color: '#5A5A6015' id: HalfTileOverlayGreyscale @@ -5543,8 +5543,8 @@ entities: color: '#D4D4D426' id: HalfTileOverlayGreyscale decals: - 5160: 19,-12 - 5161: 18,-12 + 5143: 19,-12 + 5144: 18,-12 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 @@ -5576,8 +5576,8 @@ entities: color: '#D4D4D40C' id: HalfTileOverlayGreyscale180 decals: - 5162: 18,-12 - 5163: 19,-12 + 5145: 18,-12 + 5146: 19,-12 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -5649,20 +5649,20 @@ entities: decals: 2042: -40,1 2043: -40,5 - 5233: -42,24 - 5234: -42,22 + 5212: -42,24 + 5213: -42,22 - node: angle: -1.5707963267948966 rad color: '#52B4E996' id: LoadingAreaGreyscale decals: - 2324: 28,6 + 2309: 28,6 - node: angle: 1.5707963267948966 rad color: '#52B4E996' id: LoadingAreaGreyscale decals: - 2323: 28,3 + 2308: 28,3 - node: color: '#334E6DC8' id: MiniTileCheckerAOverlay @@ -5683,7 +5683,7 @@ entities: 1996: 5,46 1997: 5,47 1998: 4,47 - 5106: 19,-14 + 5089: 19,-14 - node: color: '#52B4E996' id: MiniTileCheckerAOverlay @@ -5870,8 +5870,8 @@ entities: 228: 5,68 229: 6,68 230: 7,68 - 2382: -2,67 - 2383: 1,68 + 2367: -2,67 + 2368: 1,68 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale @@ -6268,8 +6268,8 @@ entities: 278: 24,38 1981: 0,49 1982: 0,48 - 5058: 14,38 - 5059: 15,38 + 5041: 14,38 + 5042: 15,38 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 @@ -6319,42 +6319,42 @@ entities: color: '#FFFFFFFF' id: Rock03 decals: - 2399: 22.524572,21.835993 + 2384: 22.524572,21.835993 - node: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 2325: -4,14 + 2310: -4,14 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 2326: -3,14 + 2311: -3,14 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 2327: -2,14 + 2312: -2,14 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 2328: -1,14 + 2313: -1,14 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 2329: 0,14 + 2314: 0,14 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 2330: 1,14 + 2315: 1,14 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 2331: 2,14 + 2316: 2,14 - node: angle: 1.5707963267948966 rad color: '#A46105C0' @@ -6400,9 +6400,9 @@ entities: 2039: -36,3 2040: -42,-4 2041: -41,-4 - 2392: -20,-13 - 2393: -21,-13 - 5070: -40,12 + 2377: -20,-13 + 2378: -21,-13 + 5053: -40,12 - node: color: '#52B4E996' id: StandClearGreyscale @@ -6418,21 +6418,21 @@ entities: 2012: 14,-24 2013: 18,-11 2014: 19,-11 - 5168: 18,-13 - 5169: 19,-13 + 5151: 18,-13 + 5152: 19,-13 - node: color: '#A4610696' id: StandClearGreyscale decals: - 5245: -44,27 - 5246: -44,28 + 5224: -44,27 + 5225: -44,28 - node: color: '#D381C9FF' id: StandClearGreyscale decals: - 5176: -16,35 - 5177: -15,35 - 5178: -14,35 + 5159: -16,35 + 5160: -15,35 + 5161: -14,35 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 @@ -6480,34 +6480,34 @@ entities: id: WarnCornerNE decals: 1709: 8,-39 - 2368: -22,-16 - 5174: -14,35 + 2353: -22,-16 + 5157: -14,35 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: 1708: 5,-39 - 2367: -24,-16 - 5179: -16,35 - 5198: 13,-32 - 5206: 25,31 + 2352: -24,-16 + 5162: -16,35 + 5181: 13,-32 + 5189: 25,31 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: 1074: -14,32 1707: 8,-42 - 2366: -22,-18 + 2351: -22,-18 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: 1073: -16,32 1706: 5,-42 - 2369: -24,-18 - 5195: -7,-18 - 5197: 13,-34 - 5207: 27,34 + 2354: -24,-18 + 5178: -7,-18 + 5180: 13,-34 + 5190: 27,34 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE @@ -6522,7 +6522,7 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 2337: 19,-33 + 2322: 19,-33 - node: color: '#FFFFFFFF' id: WarnLineE @@ -6555,21 +6555,21 @@ entities: 2065: -41,-6 2066: -41,-7 2067: -41,-8 - 2370: -22,-17 - 5108: 20,-12 - 5109: 20,-13 - 5200: 23,34 - 5201: 23,33 - 5202: 23,32 - 5203: 23,31 - 5247: -45,27 - 5248: -45,28 + 2355: -22,-17 + 5091: 20,-12 + 5092: 20,-13 + 5183: 23,34 + 5184: 23,33 + 5185: 23,32 + 5186: 23,31 + 5226: -45,27 + 5227: -45,28 - node: color: '#FFA500FF' id: WarnLineN decals: - 5192: -28,-29 - 5193: 26,-29 + 5175: -28,-29 + 5176: 26,-29 - node: color: '#FFFFFFFF' id: WarnLineN @@ -6580,12 +6580,12 @@ entities: 1111: -6,32 1699: 6,-42 1700: 7,-42 - 2338: 18,-33 - 2345: 17,-33 - 2373: -23,-18 - 5196: -6,-18 - 5208: -29,49 - 5209: -28,49 + 2323: 18,-33 + 2330: 17,-33 + 2358: -23,-18 + 5179: -6,-18 + 5191: -29,49 + 5192: -28,49 - node: color: '#FFFFFFFF' id: WarnLineS @@ -6606,25 +6606,25 @@ entities: 2069: -42,-6 2070: -42,-7 2071: -42,-8 - 2332: 19,-35 - 2333: 19,-34 - 2334: 19,-36 - 2335: 19,-37 - 2336: 19,-38 - 2372: -24,-17 - 5110: 17,-13 - 5111: 17,-12 - 5199: 13,-33 - 5229: -43,27 - 5230: -43,28 - 5249: -46,28 - 5250: -46,27 + 2317: 19,-35 + 2318: 19,-34 + 2319: 19,-36 + 2320: 19,-37 + 2321: 19,-38 + 2357: -24,-17 + 5093: 17,-13 + 5094: 17,-12 + 5182: 13,-33 + 5208: -43,27 + 5209: -43,28 + 5228: -46,28 + 5229: -46,27 - node: color: '#FFA500FF' id: WarnLineW decals: - 5191: -28,-29 - 5194: 26,-29 + 5174: -28,-29 + 5177: 26,-29 - node: color: '#FFFFFFFF' id: WarnLineW @@ -6635,16 +6635,16 @@ entities: 1216: -9,18 1217: -8,18 1703: 6,-39 - 2371: -23,-16 - 5175: -15,35 - 5204: 27,31 - 5205: 26,31 + 2356: -23,-16 + 5158: -15,35 + 5187: 27,31 + 5188: 26,31 - node: color: '#E7B795FF' id: WoodTrimThinCornerNe decals: - 2243: 43,51 - 2260: 46,48 + 2228: 43,51 + 2245: 46,48 - node: color: '#FFD381FF' id: WoodTrimThinCornerNe @@ -6660,9 +6660,9 @@ entities: color: '#E7B795FF' id: WoodTrimThinCornerNw decals: - 2244: 41,51 - 2249: 40,49 - 2261: 45,48 + 2229: 41,51 + 2234: 40,49 + 2246: 45,48 - node: color: '#FFD381FF' id: WoodTrimThinCornerNw @@ -6678,7 +6678,7 @@ entities: color: '#E7B795FF' id: WoodTrimThinCornerSe decals: - 2258: 46,46 + 2243: 46,46 - node: color: '#FFD381FF' id: WoodTrimThinCornerSe @@ -6688,12 +6688,12 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 2294: 14,56 + 2279: 14,56 - node: color: '#E7B795FF' id: WoodTrimThinCornerSw decals: - 2252: 40,46 + 2237: 40,46 - node: color: '#FFD381FF' id: WoodTrimThinCornerSw @@ -6704,12 +6704,12 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 2293: 7,56 + 2278: 7,56 - node: color: '#E7B795FF' id: WoodTrimThinInnerNe decals: - 2248: 43,46 + 2233: 43,46 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe @@ -6719,8 +6719,8 @@ entities: color: '#E7B795FF' id: WoodTrimThinInnerNw decals: - 2247: 41,49 - 2263: 45,46 + 2232: 41,49 + 2248: 45,46 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw @@ -6745,11 +6745,11 @@ entities: color: '#E7B795FF' id: WoodTrimThinLineE decals: - 2239: 43,47 - 2240: 43,48 - 2241: 43,49 - 2242: 43,50 - 2259: 46,47 + 2224: 43,47 + 2225: 43,48 + 2226: 43,49 + 2227: 43,50 + 2244: 46,47 - node: color: '#FFD381FF' id: WoodTrimThinLineE @@ -6774,8 +6774,8 @@ entities: color: '#E7B795FF' id: WoodTrimThinLineN decals: - 2245: 42,51 - 2264: 44,46 + 2230: 42,51 + 2249: 44,46 - node: color: '#FFD381FF' id: WoodTrimThinLineN @@ -6806,11 +6806,11 @@ entities: color: '#E7B795FF' id: WoodTrimThinLineS decals: - 2253: 41,46 - 2254: 42,46 - 2255: 43,46 - 2256: 44,46 - 2257: 45,46 + 2238: 41,46 + 2239: 42,46 + 2240: 43,46 + 2241: 44,46 + 2242: 45,46 - node: color: '#FFD381FF' id: WoodTrimThinLineS @@ -6827,20 +6827,20 @@ entities: 472: 4,74 473: 5,74 474: 6,74 - 2287: 8,56 - 2288: 9,56 - 2289: 10,56 - 2290: 11,56 - 2291: 12,56 - 2292: 13,56 + 2272: 8,56 + 2273: 9,56 + 2274: 10,56 + 2275: 11,56 + 2276: 12,56 + 2277: 13,56 - node: color: '#E7B795FF' id: WoodTrimThinLineW decals: - 2246: 41,50 - 2250: 40,48 - 2251: 40,47 - 2262: 45,47 + 2231: 41,50 + 2235: 40,48 + 2236: 40,47 + 2247: 45,47 - node: color: '#FFD381FF' id: WoodTrimThinLineW @@ -6865,17 +6865,17 @@ entities: color: '#80C71F76' id: grasssnowa2 decals: - 5101: -45.348083,39.888554 + 5084: -45.348083,39.888554 - node: color: '#80C71F76' id: grasssnowb1 decals: - 5100: -45.952293,40.610558 + 5083: -45.952293,40.610558 - node: color: '#80C71F76' id: grasssnowc1 decals: - 5099: -47.55861,40.00643 + 5082: -47.55861,40.00643 type: DecalGrid - version: 2 data: @@ -7396,12 +7396,16 @@ entities: 0: 65535 -12,4: 0: 32767 + 2: 32768 -12,6: 0: 52428 + 2: 8736 -12,5: 0: 32768 + 2: 19660 -12,7: 0: 8 + 2: 3814 -11,4: 0: 65535 -11,5: @@ -8573,26 +8577,10 @@ entities: - type: RadiationGridResistance - id: Aspid type: BecomesStation - - joints: - docking21483: !type:WeldJoint - bodyB: 8756 - bodyA: 1 - id: docking21483 - localAnchorB: -5,0.5 - localAnchorA: 38,3.5 - damping: 791.6226 - stiffness: 7105.589 - docking21482: !type:WeldJoint - bodyB: 8756 - bodyA: 1 - id: docking21482 - localAnchorB: -5,-1.5 - localAnchorA: 38,1.5 - damping: 791.6226 - stiffness: 7105.589 + - joints: {} type: Joint - - nextUpdate: 0 - type: SpreaderGrid + - type: SpreaderGrid + - type: GridPathfinding - uid: 6526 components: - type: MetaData @@ -8768,26 +8756,10 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance - - joints: - docking21483: !type:WeldJoint - bodyB: 8756 - bodyA: 1 - id: docking21483 - localAnchorB: -5,0.5 - localAnchorA: 38,3.5 - damping: 791.6226 - stiffness: 7105.589 - docking21482: !type:WeldJoint - bodyB: 8756 - bodyA: 1 - id: docking21482 - localAnchorB: -5,-1.5 - localAnchorA: 38,1.5 - damping: 791.6226 - stiffness: 7105.589 + - joints: {} type: Joint - - nextUpdate: 0 - type: SpreaderGrid + - type: SpreaderGrid + - type: GridPathfinding - proto: AcousticGuitarInstrument entities: - uid: 9102 @@ -8802,8 +8774,6 @@ entities: - pos: 22.399736,-23.44135 parent: 1 type: Transform - - nextSound: 1111.2782265 - type: EmitSoundOnCollide - uid: 13453 components: - pos: -46.782776,46.69757 @@ -10811,17 +10781,11 @@ entities: - pos: -13.5,-38.5 parent: 1 type: Transform - - registeredSinks: - DoorStatus: [] - type: DeviceLinkSource - uid: 7111 components: - pos: -13.5,-42.5 parent: 1 type: Transform - - registeredSinks: - DoorStatus: [] - type: DeviceLinkSource - proto: AirlockExternalGlassCargoLocked entities: - uid: 6636 @@ -10874,9 +10838,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 10149 type: DeviceLinkSource - uid: 2250 components: @@ -10897,9 +10858,6 @@ entities: - DoorStatus: AutoClose - DoorStatus: DoorBolt - DoorStatus: Close - registeredSinks: - DoorStatus: - - 932 type: DeviceLinkSource - uid: 10150 components: @@ -11073,9 +11031,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 1694 type: DeviceLinkSource - proto: AirlockFreezerKitchenHydroLocked entities: @@ -11525,9 +11480,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 6359 type: DeviceLinkSource - proto: AirlockMaintCargoLocked entities: @@ -12506,7 +12458,7 @@ entities: - pos: -22.5,-24.5 parent: 1 type: Transform -- proto: AMEController +- proto: AmeController entities: - uid: 9144 components: @@ -13894,13 +13846,6 @@ entities: - links: - 9404 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9404 - type: SignalReceiver - proto: BlastDoorBridgeOpen entities: - uid: 4282 @@ -14034,49 +13979,33 @@ entities: - pos: -44.5,5.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9363 - type: SignalReceiver + - links: + - 9363 + type: DeviceLinkSink - uid: 110 components: - pos: -44.5,1.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9363 - type: SignalReceiver + - links: + - 9363 + type: DeviceLinkSink - uid: 286 components: - pos: -41.5,1.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9363 - type: SignalReceiver + - links: + - 9363 + type: DeviceLinkSink - uid: 287 components: - pos: -41.5,5.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9363 - type: SignalReceiver + - links: + - 9363 + type: DeviceLinkSink - uid: 1048 components: - pos: -6.5,27.5 @@ -14085,13 +14014,6 @@ entities: - links: - 8572 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8572 - type: SignalReceiver - uid: 2813 components: - pos: -11.5,-26.5 @@ -14103,13 +14025,6 @@ entities: - links: - 8738 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8738 - type: SignalReceiver - uid: 2814 components: - pos: -11.5,-27.5 @@ -14121,13 +14036,6 @@ entities: - links: - 8738 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8738 - type: SignalReceiver - uid: 2821 components: - pos: -11.5,-28.5 @@ -14139,13 +14047,6 @@ entities: - links: - 8738 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8738 - type: SignalReceiver - uid: 2822 components: - pos: -11.5,-29.5 @@ -14157,61 +14058,38 @@ entities: - links: - 8738 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8738 - type: SignalReceiver - uid: 3050 components: - pos: -0.5,-42.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8749 - type: SignalReceiver + - links: + - 8749 + type: DeviceLinkSink - uid: 3051 components: - pos: -1.5,-48.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8750 - type: SignalReceiver + - links: + - 8750 + type: DeviceLinkSink - uid: 3052 components: - pos: -0.5,-48.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8750 - type: SignalReceiver + - links: + - 8750 + type: DeviceLinkSink - uid: 3053 components: - pos: 0.5,-48.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8750 - type: SignalReceiver + - links: + - 8750 + type: DeviceLinkSink - uid: 3066 components: - pos: 19.5,-38.5 @@ -14220,13 +14098,9 @@ entities: - SecondsUntilStateChange: -59889.773 state: Closing type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17649 - type: SignalReceiver + - links: + - 17649 + type: DeviceLinkSink - uid: 4205 components: - pos: 14.5,-23.5 @@ -14235,13 +14109,9 @@ entities: - SecondsUntilStateChange: -59912.445 state: Closing type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17648 - type: SignalReceiver + - links: + - 17648 + type: DeviceLinkSink - proto: BlastDoorWindowsOpen entities: - uid: 18360 @@ -14314,8 +14184,6 @@ entities: - pos: 16.457653,27.693125 parent: 1 type: Transform - - nextSound: 397.7167552 - type: EmitSoundOnCollide - proto: Bola entities: - uid: 8195 @@ -14541,8 +14409,6 @@ entities: type: MetaData - parent: 7683 type: Transform - - nextSound: 223.5037006 - type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -14552,8 +14418,6 @@ entities: type: MetaData - parent: 7683 type: Transform - - nextSound: 223.9165887 - type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -14890,8 +14754,6 @@ entities: - pos: -42.603355,21.659529 parent: 1 type: Transform - - nextSound: 1432.4179368 - type: EmitSoundOnCollide - proto: Bucket entities: - uid: 9006 @@ -14920,29 +14782,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 168 components: - pos: 48.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2002 components: - pos: 47.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2003 components: - pos: 48.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2037 components: - pos: 51.5,-14.5 @@ -14950,29 +14804,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2038 components: - pos: 48.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2039 components: - pos: 49.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2052 components: - pos: 45.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2057 components: - pos: 50.5,-14.5 @@ -14980,8 +14826,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2059 components: - pos: 50.5,-7.5 @@ -14989,15 +14833,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2060 components: - pos: 46.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6000 components: - pos: -29.5,-17.5 @@ -15005,8 +14845,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6022 components: - pos: -18.5,-31.5 @@ -15014,43 +14852,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6521 components: - pos: 48.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6525 components: - pos: 48.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6546 components: - pos: -27.5,-27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6547 components: - pos: 26.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6770 components: - pos: 26.5,-27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7422 components: - pos: 26.5,-25.5 @@ -15058,50 +14884,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7652 components: - pos: -27.5,-28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7661 components: - pos: 26.5,-28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7662 components: - pos: 26.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7938 components: - pos: -42.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7939 components: - pos: -42.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7940 components: - pos: -42.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7941 components: - pos: -43.5,22.5 @@ -15109,8 +14921,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7942 components: - pos: -44.5,22.5 @@ -15118,8 +14928,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7943 components: - pos: -45.5,22.5 @@ -15127,8 +14935,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7944 components: - pos: -45.5,21.5 @@ -15136,8 +14942,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8009 components: - pos: -45.5,20.5 @@ -15145,8 +14949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8140 components: - pos: -43.5,24.5 @@ -15154,8 +14956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8141 components: - pos: -44.5,24.5 @@ -15163,8 +14963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8142 components: - pos: -45.5,24.5 @@ -15172,78 +14970,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8143 components: - pos: -42.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8144 components: - pos: -43.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8146 components: - pos: -44.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8151 components: - pos: -45.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8152 components: - pos: -45.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8156 components: - pos: -42.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8157 components: - pos: -42.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8158 components: - pos: -41.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8159 components: - pos: -40.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8160 components: - pos: -39.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8830 components: - pos: 1.5,-5.5 @@ -15251,22 +15027,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8831 components: - pos: 1.5,-4.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8832 components: - pos: 1.5,-3.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8833 components: - pos: 1.5,-2.5 @@ -15274,15 +15044,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8834 components: - pos: 1.5,-1.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8835 components: - pos: 1.5,-0.5 @@ -15290,22 +15056,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8836 components: - pos: 1.5,0.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8837 components: - pos: 0.5,0.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8838 components: - pos: 0.5,1.5 @@ -15313,43 +15073,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8839 components: - pos: 0.5,2.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8840 components: - pos: 0.5,3.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8841 components: - pos: -0.5,3.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8842 components: - pos: -1.5,3.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8843 components: - pos: -1.5,2.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8844 components: - pos: -1.5,1.5 @@ -15357,22 +15105,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8845 components: - pos: -1.5,0.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8846 components: - pos: -2.5,0.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8847 components: - pos: -2.5,-0.5 @@ -15380,15 +15122,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8848 components: - pos: -2.5,-1.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8849 components: - pos: -2.5,-2.5 @@ -15396,22 +15134,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8850 components: - pos: -2.5,-3.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8851 components: - pos: -2.5,-4.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8852 components: - pos: -2.5,-5.5 @@ -15419,29 +15151,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8853 components: - pos: -1.5,-5.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8854 components: - pos: -0.5,-5.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8855 components: - pos: 0.5,-5.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8856 components: - pos: 1.5,-5.5 @@ -15449,15 +15173,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9718 components: - pos: -9.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9737 components: - pos: -22.5,-19.5 @@ -15465,78 +15185,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9738 components: - pos: -22.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9739 components: - pos: -21.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9740 components: - pos: -20.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9741 components: - pos: -20.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9742 components: - pos: -20.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9743 components: - pos: -20.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9744 components: - pos: -23.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9745 components: - pos: -23.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9746 components: - pos: -23.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9747 components: - pos: -23.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9748 components: - pos: -22.5,-20.5 @@ -15544,8 +15242,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9749 components: - pos: -22.5,-21.5 @@ -15553,8 +15249,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9750 components: - pos: -22.5,-22.5 @@ -15562,22 +15256,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9751 components: - pos: -22.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9752 components: - pos: -21.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9753 components: - pos: -20.5,-20.5 @@ -15585,29 +15273,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9754 components: - pos: -20.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9755 components: - pos: -20.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9756 components: - pos: -20.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9757 components: - pos: -20.5,-24.5 @@ -15615,22 +15295,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9758 components: - pos: -23.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9759 components: - pos: -24.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9760 components: - pos: -24.5,-21.5 @@ -15638,8 +15312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9761 components: - pos: -24.5,-22.5 @@ -15647,15 +15319,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9762 components: - pos: -24.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9763 components: - pos: -24.5,-24.5 @@ -15663,8 +15331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9776 components: - pos: -31.5,-13.5 @@ -15672,15 +15338,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9777 components: - pos: -31.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9778 components: - pos: -31.5,-15.5 @@ -15688,8 +15350,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9779 components: - pos: -31.5,-16.5 @@ -15697,8 +15357,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9780 components: - pos: -30.5,-16.5 @@ -15706,8 +15364,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9781 components: - pos: -29.5,-16.5 @@ -15715,8 +15371,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9782 components: - pos: -28.5,-16.5 @@ -15724,15 +15378,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9783 components: - pos: -27.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9784 components: - pos: -26.5,-16.5 @@ -15740,8 +15390,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9785 components: - pos: -25.5,-16.5 @@ -15749,8 +15397,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9786 components: - pos: -25.5,-17.5 @@ -15758,8 +15404,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9787 components: - pos: -25.5,-18.5 @@ -15767,8 +15411,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9788 components: - pos: -29.5,-15.5 @@ -15776,8 +15418,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9789 components: - pos: -29.5,-14.5 @@ -15785,8 +15425,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9790 components: - pos: -28.5,-14.5 @@ -15794,8 +15432,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9791 components: - pos: -27.5,-14.5 @@ -15803,8 +15439,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9792 components: - pos: -27.5,-13.5 @@ -15812,8 +15446,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9793 components: - pos: -27.5,-12.5 @@ -15821,8 +15453,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9794 components: - pos: -27.5,-11.5 @@ -15830,8 +15460,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9795 components: - pos: -32.5,-16.5 @@ -15839,8 +15467,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9796 components: - pos: -33.5,-16.5 @@ -15848,8 +15474,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9797 components: - pos: -34.5,-16.5 @@ -15857,8 +15481,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9798 components: - pos: -35.5,-16.5 @@ -15866,8 +15488,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9799 components: - pos: -35.5,-15.5 @@ -15875,8 +15495,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9800 components: - pos: -35.5,-14.5 @@ -15884,8 +15502,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9801 components: - pos: -35.5,-13.5 @@ -15893,8 +15509,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9802 components: - pos: -35.5,-12.5 @@ -15902,8 +15516,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9803 components: - pos: -35.5,-11.5 @@ -15911,8 +15523,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9804 components: - pos: -35.5,-10.5 @@ -15920,8 +15530,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9805 components: - pos: -35.5,-9.5 @@ -15929,8 +15537,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9806 components: - pos: -35.5,-8.5 @@ -15938,8 +15544,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9807 components: - pos: -35.5,-7.5 @@ -15947,8 +15551,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9808 components: - pos: -36.5,-11.5 @@ -15956,8 +15558,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9809 components: - pos: -37.5,-11.5 @@ -15965,29 +15565,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9810 components: - pos: -38.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9811 components: - pos: -39.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9812 components: - pos: -40.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9813 components: - pos: -40.5,-10.5 @@ -15995,8 +15587,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9814 components: - pos: -40.5,-9.5 @@ -16004,15 +15594,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9818 components: - pos: -44.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9819 components: - pos: -45.5,-9.5 @@ -16020,15 +15606,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9820 components: - pos: -46.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9821 components: - pos: -47.5,-9.5 @@ -16036,8 +15618,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9822 components: - pos: -48.5,-9.5 @@ -16045,8 +15625,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9823 components: - pos: -49.5,-9.5 @@ -16054,8 +15632,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9824 components: - pos: -50.5,-9.5 @@ -16063,8 +15639,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9825 components: - pos: -51.5,-9.5 @@ -16072,8 +15646,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9826 components: - pos: -52.5,-9.5 @@ -16081,8 +15653,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9827 components: - pos: -49.5,-10.5 @@ -16090,8 +15660,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9828 components: - pos: -49.5,-11.5 @@ -16099,8 +15667,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9829 components: - pos: -47.5,-10.5 @@ -16108,8 +15674,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9830 components: - pos: -47.5,-11.5 @@ -16117,8 +15681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9831 components: - pos: -50.5,-8.5 @@ -16126,8 +15688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9832 components: - pos: -50.5,-7.5 @@ -16135,8 +15695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9833 components: - pos: -51.5,-7.5 @@ -16144,8 +15702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9834 components: - pos: -52.5,-7.5 @@ -16153,8 +15709,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9835 components: - pos: -49.5,-7.5 @@ -16162,22 +15716,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9836 components: - pos: -48.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9837 components: - pos: -47.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9838 components: - pos: -46.5,-7.5 @@ -16185,15 +15733,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9839 components: - pos: -45.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9840 components: - pos: -45.5,-8.5 @@ -16201,8 +15745,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9990 components: - pos: -29.5,-18.5 @@ -16210,8 +15752,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9991 components: - pos: -29.5,-19.5 @@ -16219,8 +15759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9992 components: - pos: -29.5,-20.5 @@ -16228,8 +15766,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9993 components: - pos: -29.5,-21.5 @@ -16237,8 +15773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9994 components: - pos: -29.5,-22.5 @@ -16246,8 +15780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9995 components: - pos: -29.5,-23.5 @@ -16255,8 +15787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9996 components: - pos: -30.5,-23.5 @@ -16264,8 +15794,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9997 components: - pos: -31.5,-23.5 @@ -16273,8 +15801,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9998 components: - pos: -31.5,-22.5 @@ -16282,8 +15808,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9999 components: - pos: -31.5,-21.5 @@ -16291,8 +15815,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10000 components: - pos: -31.5,-20.5 @@ -16300,8 +15822,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10001 components: - pos: -31.5,-19.5 @@ -16309,29 +15829,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10002 components: - pos: -32.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10003 components: - pos: -33.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10004 components: - pos: -34.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10005 components: - pos: -28.5,-22.5 @@ -16339,8 +15851,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10006 components: - pos: -27.5,-22.5 @@ -16348,8 +15858,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10007 components: - pos: -26.5,-22.5 @@ -16357,8 +15865,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10008 components: - pos: -29.5,-24.5 @@ -16366,8 +15872,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10009 components: - pos: -29.5,-25.5 @@ -16375,8 +15879,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10010 components: - pos: -29.5,-26.5 @@ -16384,8 +15886,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10011 components: - pos: -28.5,-26.5 @@ -16393,8 +15893,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10012 components: - pos: -27.5,-26.5 @@ -16402,8 +15900,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10013 components: - pos: -26.5,-26.5 @@ -16411,8 +15907,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10014 components: - pos: -25.5,-26.5 @@ -16420,8 +15914,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10015 components: - pos: -24.5,-26.5 @@ -16429,8 +15921,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10016 components: - pos: -23.5,-26.5 @@ -16438,8 +15928,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10017 components: - pos: -22.5,-26.5 @@ -16447,8 +15935,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10018 components: - pos: -21.5,-26.5 @@ -16456,8 +15942,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10019 components: - pos: -20.5,-26.5 @@ -16465,8 +15949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10020 components: - pos: -20.5,-27.5 @@ -16474,8 +15956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10021 components: - pos: -20.5,-28.5 @@ -16483,8 +15963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10022 components: - pos: -20.5,-29.5 @@ -16492,8 +15970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10023 components: - pos: -20.5,-30.5 @@ -16501,8 +15977,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10024 components: - pos: -20.5,-31.5 @@ -16510,8 +15984,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10025 components: - pos: -19.5,-31.5 @@ -16519,22 +15991,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10026 components: - pos: -19.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10027 components: - pos: -19.5,-33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10028 components: - pos: -19.5,-34.5 @@ -16542,8 +16008,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10029 components: - pos: -19.5,-35.5 @@ -16551,57 +16015,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10030 components: - pos: -19.5,-36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10031 components: - pos: -19.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10032 components: - pos: -18.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10033 components: - pos: -17.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10034 components: - pos: -16.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10035 components: - pos: -16.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10036 components: - pos: -16.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10037 components: - pos: -16.5,-21.5 @@ -16609,8 +16057,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10038 components: - pos: -16.5,-22.5 @@ -16618,8 +16064,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10039 components: - pos: -16.5,-23.5 @@ -16627,8 +16071,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10040 components: - pos: -16.5,-24.5 @@ -16636,8 +16078,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10041 components: - pos: -17.5,-24.5 @@ -16645,8 +16085,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10042 components: - pos: -18.5,-24.5 @@ -16654,8 +16092,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10043 components: - pos: -18.5,-25.5 @@ -16663,8 +16099,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10044 components: - pos: -18.5,-26.5 @@ -16672,8 +16106,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10045 components: - pos: -18.5,-27.5 @@ -16681,8 +16113,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10046 components: - pos: -18.5,-28.5 @@ -16690,8 +16120,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10047 components: - pos: -18.5,-29.5 @@ -16699,8 +16127,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10049 components: - pos: -17.5,-31.5 @@ -16708,8 +16134,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10050 components: - pos: -16.5,-31.5 @@ -16717,8 +16141,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10051 components: - pos: -16.5,-32.5 @@ -16726,8 +16148,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10052 components: - pos: -16.5,-33.5 @@ -16735,8 +16155,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10053 components: - pos: -16.5,-34.5 @@ -16744,8 +16162,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10054 components: - pos: -16.5,-35.5 @@ -16753,8 +16169,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10055 components: - pos: -16.5,-36.5 @@ -16762,8 +16176,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10056 components: - pos: -16.5,-37.5 @@ -16771,8 +16183,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10057 components: - pos: -16.5,-38.5 @@ -16780,22 +16190,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10058 components: - pos: -16.5,-39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10059 components: - pos: -16.5,-40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10164 components: - pos: 29.5,-14.5 @@ -16803,57 +16207,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10165 components: - pos: 29.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10166 components: - pos: 29.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10167 components: - pos: 29.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10168 components: - pos: 28.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10169 components: - pos: 27.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10170 components: - pos: 26.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10171 components: - pos: 30.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10172 components: - pos: 29.5,-15.5 @@ -16861,8 +16249,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10173 components: - pos: 28.5,-15.5 @@ -16870,8 +16256,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10174 components: - pos: 27.5,-15.5 @@ -16879,8 +16263,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10175 components: - pos: 26.5,-15.5 @@ -16888,8 +16270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10176 components: - pos: 25.5,-15.5 @@ -16897,8 +16277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10177 components: - pos: 24.5,-15.5 @@ -16906,8 +16284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10178 components: - pos: 24.5,-14.5 @@ -16915,8 +16291,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10179 components: - pos: 24.5,-13.5 @@ -16924,8 +16298,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10180 components: - pos: 24.5,-12.5 @@ -16933,8 +16305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10181 components: - pos: 24.5,-16.5 @@ -16942,8 +16312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10182 components: - pos: 24.5,-17.5 @@ -16951,8 +16319,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10183 components: - pos: 24.5,-18.5 @@ -16960,8 +16326,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10184 components: - pos: 24.5,-19.5 @@ -16969,8 +16333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10185 components: - pos: 24.5,-20.5 @@ -16978,8 +16340,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10186 components: - pos: 24.5,-21.5 @@ -16987,8 +16347,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10187 components: - pos: 24.5,-22.5 @@ -16996,8 +16354,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10188 components: - pos: 24.5,-23.5 @@ -17005,8 +16361,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10189 components: - pos: 24.5,-24.5 @@ -17014,22 +16368,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10190 components: - pos: 23.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10191 components: - pos: 22.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10192 components: - pos: 22.5,-25.5 @@ -17037,8 +16385,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10193 components: - pos: 22.5,-26.5 @@ -17046,8 +16392,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10194 components: - pos: 22.5,-27.5 @@ -17055,8 +16399,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10195 components: - pos: 21.5,-27.5 @@ -17064,8 +16406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10196 components: - pos: 21.5,-28.5 @@ -17073,8 +16413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10197 components: - pos: 21.5,-29.5 @@ -17082,8 +16420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10198 components: - pos: 20.5,-29.5 @@ -17091,8 +16427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10199 components: - pos: 19.5,-29.5 @@ -17100,8 +16434,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10200 components: - pos: 18.5,-29.5 @@ -17109,8 +16441,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10201 components: - pos: 17.5,-29.5 @@ -17118,8 +16448,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10202 components: - pos: 16.5,-29.5 @@ -17127,8 +16455,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10203 components: - pos: 15.5,-29.5 @@ -17136,8 +16462,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10204 components: - pos: 15.5,-30.5 @@ -17145,8 +16469,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10205 components: - pos: 15.5,-31.5 @@ -17154,8 +16476,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10206 components: - pos: 15.5,-32.5 @@ -17163,8 +16483,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10207 components: - pos: 15.5,-33.5 @@ -17172,8 +16490,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10208 components: - pos: 15.5,-34.5 @@ -17181,8 +16497,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10209 components: - pos: 15.5,-35.5 @@ -17190,57 +16504,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10210 components: - pos: 16.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10211 components: - pos: 17.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10212 components: - pos: 18.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10213 components: - pos: 19.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10214 components: - pos: 19.5,-35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10215 components: - pos: 19.5,-36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10216 components: - pos: 19.5,-37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10217 components: - pos: 19.5,-38.5 @@ -17248,43 +16546,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10218 components: - pos: 15.5,-36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10219 components: - pos: 15.5,-37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10220 components: - pos: 15.5,-38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10221 components: - pos: 15.5,-39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10222 components: - pos: 15.5,-40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10223 components: - pos: 30.5,-15.5 @@ -17292,8 +16578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10224 components: - pos: 31.5,-15.5 @@ -17301,8 +16585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10225 components: - pos: 32.5,-15.5 @@ -17310,8 +16592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10226 components: - pos: 32.5,-14.5 @@ -17319,8 +16599,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10227 components: - pos: 32.5,-13.5 @@ -17328,8 +16606,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10228 components: - pos: 32.5,-12.5 @@ -17337,8 +16613,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10229 components: - pos: 32.5,-11.5 @@ -17346,8 +16620,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10230 components: - pos: 33.5,-11.5 @@ -17355,8 +16627,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10231 components: - pos: 34.5,-11.5 @@ -17364,8 +16634,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10232 components: - pos: 35.5,-11.5 @@ -17373,8 +16641,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10233 components: - pos: 36.5,-11.5 @@ -17382,8 +16648,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10234 components: - pos: 37.5,-11.5 @@ -17391,8 +16655,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10235 components: - pos: 38.5,-11.5 @@ -17400,8 +16662,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10236 components: - pos: 39.5,-11.5 @@ -17409,8 +16669,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10237 components: - pos: 30.5,-16.5 @@ -17418,8 +16676,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10238 components: - pos: 30.5,-17.5 @@ -17427,8 +16683,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10239 components: - pos: 30.5,-18.5 @@ -17436,8 +16690,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10240 components: - pos: 30.5,-19.5 @@ -17445,8 +16697,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10241 components: - pos: 30.5,-20.5 @@ -17454,8 +16704,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10242 components: - pos: 30.5,-21.5 @@ -17463,8 +16711,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10243 components: - pos: 30.5,-22.5 @@ -17472,8 +16718,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10244 components: - pos: 30.5,-23.5 @@ -17481,8 +16725,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10245 components: - pos: 30.5,-24.5 @@ -17490,15 +16732,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10246 components: - pos: 29.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10247 components: - pos: 28.5,-19.5 @@ -17506,8 +16744,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10248 components: - pos: 27.5,-19.5 @@ -17515,8 +16751,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10249 components: - pos: 26.5,-19.5 @@ -17524,8 +16758,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10250 components: - pos: 29.5,-24.5 @@ -17533,8 +16765,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10251 components: - pos: 28.5,-24.5 @@ -17542,8 +16772,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10252 components: - pos: 27.5,-24.5 @@ -17551,8 +16779,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10253 components: - pos: 26.5,-24.5 @@ -17560,8 +16786,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10254 components: - pos: 25.5,-24.5 @@ -17569,8 +16793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10255 components: - pos: 31.5,-20.5 @@ -17578,15 +16800,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10256 components: - pos: 32.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10257 components: - pos: 33.5,-20.5 @@ -17594,15 +16812,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10258 components: - pos: 34.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10259 components: - pos: 35.5,-20.5 @@ -17610,8 +16824,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10261 components: - pos: 37.5,-13.5 @@ -17619,8 +16831,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10262 components: - pos: 37.5,-14.5 @@ -17628,8 +16838,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10263 components: - pos: 37.5,-15.5 @@ -17637,22 +16845,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10264 components: - pos: 37.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10265 components: - pos: 37.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10266 components: - pos: 36.5,-15.5 @@ -17660,22 +16862,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10267 components: - pos: 35.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10268 components: - pos: 34.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10269 components: - pos: 34.5,-18.5 @@ -17683,8 +16879,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10270 components: - pos: 31.5,-24.5 @@ -17692,15 +16886,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10271 components: - pos: 32.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10309 components: - pos: -41.5,7.5 @@ -17708,22 +16898,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10310 components: - pos: -42.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10311 components: - pos: -43.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10312 components: - pos: -44.5,7.5 @@ -17731,8 +16915,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10313 components: - pos: -44.5,8.5 @@ -17740,8 +16922,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10314 components: - pos: -44.5,9.5 @@ -17749,127 +16929,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10315 components: - pos: -43.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10316 components: - pos: -43.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10317 components: - pos: -43.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10318 components: - pos: -42.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10319 components: - pos: -40.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10320 components: - pos: -39.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10321 components: - pos: -38.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10322 components: - pos: -37.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10323 components: - pos: -36.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10324 components: - pos: -35.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10325 components: - pos: -34.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10326 components: - pos: -33.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10327 components: - pos: -33.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10328 components: - pos: -33.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10329 components: - pos: -33.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10330 components: - pos: -34.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10331 components: - pos: -35.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10332 components: - pos: -36.5,4.5 @@ -17877,218 +17021,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10333 components: - pos: -37.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10334 components: - pos: -38.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10335 components: - pos: -39.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10336 components: - pos: -40.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10337 components: - pos: -40.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10338 components: - pos: -40.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10339 components: - pos: -40.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10340 components: - pos: -40.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10341 components: - pos: -40.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10342 components: - pos: -40.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10343 components: - pos: -40.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10344 components: - pos: -40.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10345 components: - pos: -40.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10346 components: - pos: -40.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10347 components: - pos: -40.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10348 components: - pos: -40.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10349 components: - pos: -40.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10350 components: - pos: -40.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10351 components: - pos: -39.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10352 components: - pos: -38.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10353 components: - pos: -37.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10354 components: - pos: -36.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10355 components: - pos: -35.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10356 components: - pos: -34.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10357 components: - pos: -38.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10358 components: - pos: -37.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10359 components: - pos: -36.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10360 components: - pos: -35.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10361 components: - pos: -34.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10362 components: - pos: -39.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10363 components: - pos: -41.5,2.5 @@ -18096,8 +17178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10364 components: - pos: -42.5,2.5 @@ -18105,8 +17185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10365 components: - pos: -43.5,2.5 @@ -18114,8 +17192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10366 components: - pos: -42.5,4.5 @@ -18123,8 +17199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10367 components: - pos: -43.5,4.5 @@ -18132,8 +17206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10368 components: - pos: -41.5,4.5 @@ -18141,106 +17213,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10369 components: - pos: -41.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10370 components: - pos: -42.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10371 components: - pos: -43.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10372 components: - pos: -41.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10373 components: - pos: -42.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10374 components: - pos: -43.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10375 components: - pos: -34.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10376 components: - pos: -34.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10377 components: - pos: -34.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10378 components: - pos: -34.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10379 components: - pos: -39.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10380 components: - pos: -39.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10381 components: - pos: -39.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10382 components: - pos: -39.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10443 components: - pos: 16.5,-21.5 @@ -18248,15 +17290,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10444 components: - pos: 17.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10445 components: - pos: 17.5,-20.5 @@ -18264,8 +17302,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10446 components: - pos: 18.5,-20.5 @@ -18273,36 +17309,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10447 components: - pos: 17.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10448 components: - pos: 17.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10449 components: - pos: 17.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10450 components: - pos: 17.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10451 components: - pos: 17.5,-26.5 @@ -18310,8 +17336,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10452 components: - pos: 18.5,-26.5 @@ -18319,15 +17343,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10453 components: - pos: 18.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10454 components: - pos: 19.5,-23.5 @@ -18335,8 +17355,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10455 components: - pos: 19.5,-22.5 @@ -18344,8 +17362,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10456 components: - pos: 19.5,-24.5 @@ -18353,15 +17369,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10457 components: - pos: 16.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10470 components: - pos: 5.5,-31.5 @@ -18369,8 +17381,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10471 components: - pos: 5.5,-30.5 @@ -18378,15 +17388,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10472 components: - pos: 5.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10473 components: - pos: 5.5,-28.5 @@ -18394,8 +17400,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10474 components: - pos: 6.5,-28.5 @@ -18403,8 +17407,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10475 components: - pos: 7.5,-28.5 @@ -18412,8 +17414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10476 components: - pos: 8.5,-28.5 @@ -18421,15 +17421,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10477 components: - pos: 8.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10478 components: - pos: 8.5,-30.5 @@ -18437,8 +17433,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10479 components: - pos: 7.5,-30.5 @@ -18446,50 +17440,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10480 components: - pos: 7.5,-31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10481 components: - pos: 7.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10482 components: - pos: 7.5,-33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10483 components: - pos: 7.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10484 components: - pos: 7.5,-35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10485 components: - pos: 7.5,-36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10486 components: - pos: 7.5,-37.5 @@ -18497,8 +17477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10487 components: - pos: 7.5,-38.5 @@ -18506,8 +17484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10488 components: - pos: 7.5,-39.5 @@ -18515,8 +17491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10489 components: - pos: 7.5,-40.5 @@ -18524,176 +17498,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10490 components: - pos: 6.5,-36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10491 components: - pos: 5.5,-36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10492 components: - pos: 4.5,-36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10493 components: - pos: 4.5,-37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10494 components: - pos: 4.5,-38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10495 components: - pos: 4.5,-39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10496 components: - pos: 4.5,-40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10497 components: - pos: 4.5,-41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10498 components: - pos: 8.5,-36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10499 components: - pos: 9.5,-36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10500 components: - pos: 9.5,-37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10501 components: - pos: 9.5,-38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10502 components: - pos: 9.5,-39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10503 components: - pos: 9.5,-40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10504 components: - pos: 9.5,-41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10505 components: - pos: 8.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10506 components: - pos: 9.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10507 components: - pos: 10.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10508 components: - pos: 11.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10509 components: - pos: 12.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10510 components: - pos: 12.5,-35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10511 components: - pos: 12.5,-36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10512 components: - pos: 12.5,-37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10513 components: - pos: 12.5,-38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10514 components: - pos: 12.5,-39.5 @@ -18701,8 +17625,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10515 components: - pos: 12.5,-40.5 @@ -18710,8 +17632,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10516 components: - pos: 12.5,-41.5 @@ -18719,8 +17639,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10517 components: - pos: 12.5,-42.5 @@ -18728,8 +17646,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10518 components: - pos: 12.5,-43.5 @@ -18737,8 +17653,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10519 components: - pos: 12.5,-44.5 @@ -18746,8 +17660,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10520 components: - pos: 12.5,-45.5 @@ -18755,8 +17667,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10521 components: - pos: 12.5,-46.5 @@ -18764,8 +17674,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10522 components: - pos: 12.5,-47.5 @@ -18773,64 +17681,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10523 components: - pos: 13.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10524 components: - pos: 13.5,-33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10525 components: - pos: 13.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10526 components: - pos: 13.5,-31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10527 components: - pos: 13.5,-30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10528 components: - pos: 13.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10529 components: - pos: 12.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10530 components: - pos: 11.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10531 components: - pos: 10.5,-29.5 @@ -18838,71 +17728,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10532 components: - pos: 9.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10533 components: - pos: 5.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10534 components: - pos: 4.5,-30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10535 components: - pos: 4.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10536 components: - pos: 4.5,-28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10537 components: - pos: 5.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10538 components: - pos: 5.5,-33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10539 components: - pos: 5.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10540 components: - pos: 6.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10549 components: - pos: 10.5,-19.5 @@ -18910,155 +17780,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10550 components: - pos: 10.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10551 components: - pos: 10.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10552 components: - pos: 10.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10553 components: - pos: 10.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10554 components: - pos: 10.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10555 components: - pos: 10.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10556 components: - pos: 10.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10557 components: - pos: 11.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10558 components: - pos: 12.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10559 components: - pos: 13.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10560 components: - pos: 13.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10561 components: - pos: 13.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10562 components: - pos: 13.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10563 components: - pos: 13.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10564 components: - pos: 13.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10565 components: - pos: 13.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10566 components: - pos: 12.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10567 components: - pos: 12.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10568 components: - pos: 12.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10569 components: - pos: 11.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10570 components: - pos: 10.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10571 components: - pos: 10.5,-19.5 @@ -19066,169 +17892,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10572 components: - pos: 9.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10573 components: - pos: 8.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10574 components: - pos: 7.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10575 components: - pos: 6.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10576 components: - pos: 5.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10577 components: - pos: 4.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10578 components: - pos: 4.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10579 components: - pos: 4.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10580 components: - pos: 5.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10581 components: - pos: 6.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10582 components: - pos: 7.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10583 components: - pos: 7.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10584 components: - pos: 9.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10585 components: - pos: 8.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10586 components: - pos: 7.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10587 components: - pos: 6.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10588 components: - pos: 5.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10589 components: - pos: 4.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10590 components: - pos: 4.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10591 components: - pos: 4.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10592 components: - pos: 5.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10593 components: - pos: 6.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10594 components: - pos: 7.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10596 components: - pos: 6.5,-16.5 @@ -19236,211 +18014,151 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10597 components: - pos: 6.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10598 components: - pos: 6.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10599 components: - pos: 6.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10600 components: - pos: 6.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10601 components: - pos: 6.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10602 components: - pos: 5.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10603 components: - pos: 4.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10604 components: - pos: 3.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10605 components: - pos: 2.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10606 components: - pos: 1.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10607 components: - pos: 0.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10608 components: - pos: 7.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10609 components: - pos: 8.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10610 components: - pos: 9.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10611 components: - pos: 10.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10612 components: - pos: 11.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10613 components: - pos: 12.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10614 components: - pos: 13.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10615 components: - pos: 13.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10616 components: - pos: 13.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10617 components: - pos: 13.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10618 components: - pos: 12.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10619 components: - pos: 11.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10620 components: - pos: 10.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10621 components: - pos: 9.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10622 components: - pos: 8.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10623 components: - pos: 7.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10624 components: - pos: 6.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10625 components: - pos: 5.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10626 components: - pos: 4.5,-15.5 @@ -19448,8 +18166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10627 components: - pos: 3.5,-15.5 @@ -19457,8 +18173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10628 components: - pos: 2.5,-15.5 @@ -19466,8 +18180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10629 components: - pos: 1.5,-15.5 @@ -19475,8 +18187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10630 components: - pos: 0.5,-15.5 @@ -19484,78 +18194,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10648 components: - pos: 21.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10649 components: - pos: 22.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10651 components: - pos: 20.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10652 components: - pos: 19.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10653 components: - pos: 19.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10654 components: - pos: 19.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10655 components: - pos: 19.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10656 components: - pos: 19.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10657 components: - pos: 19.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10658 components: - pos: 19.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10659 components: - pos: 19.5,-18.5 @@ -19563,8 +18251,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10660 components: - pos: 18.5,-18.5 @@ -19572,29 +18258,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10661 components: - pos: 20.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10665 components: - pos: 18.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10666 components: - pos: 17.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10724 components: - pos: -11.5,-38.5 @@ -19602,36 +18280,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10725 components: - pos: -11.5,-37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10726 components: - pos: -12.5,-37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10727 components: - pos: -13.5,-37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10728 components: - pos: -13.5,-38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10729 components: - pos: -13.5,-39.5 @@ -19639,8 +18307,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10730 components: - pos: -13.5,-40.5 @@ -19648,8 +18314,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10731 components: - pos: -13.5,-41.5 @@ -19657,8 +18321,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10732 components: - pos: -13.5,-42.5 @@ -19666,8 +18328,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10733 components: - pos: -13.5,-43.5 @@ -19675,8 +18335,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10734 components: - pos: -13.5,-44.5 @@ -19684,8 +18342,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10735 components: - pos: -13.5,-45.5 @@ -19693,8 +18349,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10736 components: - pos: -13.5,-46.5 @@ -19702,8 +18356,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10737 components: - pos: -13.5,-47.5 @@ -19711,8 +18363,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10738 components: - pos: -12.5,-47.5 @@ -19720,8 +18370,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10739 components: - pos: -11.5,-47.5 @@ -19729,8 +18377,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10740 components: - pos: -10.5,-47.5 @@ -19738,8 +18384,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10741 components: - pos: -9.5,-47.5 @@ -19747,8 +18391,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10742 components: - pos: -8.5,-47.5 @@ -19756,8 +18398,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10743 components: - pos: -7.5,-47.5 @@ -19765,8 +18405,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10744 components: - pos: -6.5,-47.5 @@ -19774,8 +18412,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10745 components: - pos: -5.5,-47.5 @@ -19783,8 +18419,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10746 components: - pos: -4.5,-47.5 @@ -19792,8 +18426,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10747 components: - pos: -3.5,-47.5 @@ -19801,8 +18433,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10748 components: - pos: -10.5,-38.5 @@ -19810,8 +18440,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10749 components: - pos: -9.5,-38.5 @@ -19819,8 +18447,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10750 components: - pos: -8.5,-38.5 @@ -19828,8 +18454,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10751 components: - pos: -7.5,-38.5 @@ -19837,8 +18461,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10752 components: - pos: -6.5,-38.5 @@ -19846,8 +18468,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10753 components: - pos: -5.5,-38.5 @@ -19855,8 +18475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10754 components: - pos: -4.5,-38.5 @@ -19864,8 +18482,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10755 components: - pos: -4.5,-39.5 @@ -19873,8 +18489,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10756 components: - pos: -4.5,-40.5 @@ -19882,8 +18496,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10757 components: - pos: -4.5,-41.5 @@ -19891,8 +18503,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10758 components: - pos: -4.5,-37.5 @@ -19900,8 +18510,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10759 components: - pos: -4.5,-36.5 @@ -19909,8 +18517,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10760 components: - pos: -4.5,-35.5 @@ -19918,8 +18524,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10761 components: - pos: -4.5,-34.5 @@ -19927,8 +18531,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10762 components: - pos: -4.5,-33.5 @@ -19936,8 +18538,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10763 components: - pos: -4.5,-32.5 @@ -19945,8 +18545,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10764 components: - pos: -4.5,-31.5 @@ -19954,8 +18552,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10765 components: - pos: -4.5,-30.5 @@ -19963,8 +18559,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10766 components: - pos: -4.5,-29.5 @@ -19972,8 +18566,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10767 components: - pos: -4.5,-28.5 @@ -19981,8 +18573,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10768 components: - pos: -4.5,-27.5 @@ -19990,8 +18580,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10769 components: - pos: -4.5,-26.5 @@ -19999,8 +18587,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10770 components: - pos: -4.5,-25.5 @@ -20008,8 +18594,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10771 components: - pos: -4.5,-24.5 @@ -20017,8 +18601,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10772 components: - pos: -4.5,-23.5 @@ -20026,8 +18608,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10773 components: - pos: -4.5,-22.5 @@ -20035,8 +18615,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10774 components: - pos: -4.5,-21.5 @@ -20044,8 +18622,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10775 components: - pos: -4.5,-20.5 @@ -20053,8 +18629,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10776 components: - pos: -4.5,-19.5 @@ -20062,8 +18636,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10777 components: - pos: -4.5,-18.5 @@ -20071,8 +18643,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10778 components: - pos: -3.5,-18.5 @@ -20080,8 +18650,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10779 components: - pos: -2.5,-18.5 @@ -20089,8 +18657,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10780 components: - pos: -1.5,-18.5 @@ -20098,8 +18664,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10781 components: - pos: -0.5,-18.5 @@ -20107,8 +18671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10782 components: - pos: 0.5,-18.5 @@ -20116,8 +18678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10783 components: - pos: 1.5,-18.5 @@ -20125,8 +18685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10784 components: - pos: 1.5,-19.5 @@ -20134,8 +18692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10785 components: - pos: 1.5,-20.5 @@ -20143,8 +18699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10786 components: - pos: 1.5,-21.5 @@ -20152,8 +18706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10787 components: - pos: 1.5,-22.5 @@ -20161,8 +18713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10788 components: - pos: 1.5,-23.5 @@ -20170,8 +18720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10789 components: - pos: 1.5,-24.5 @@ -20179,8 +18727,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10790 components: - pos: 1.5,-25.5 @@ -20188,8 +18734,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10791 components: - pos: 1.5,-26.5 @@ -20197,8 +18741,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10792 components: - pos: 1.5,-27.5 @@ -20206,8 +18748,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10793 components: - pos: 1.5,-28.5 @@ -20215,8 +18755,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10794 components: - pos: 1.5,-29.5 @@ -20224,8 +18762,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10795 components: - pos: 1.5,-30.5 @@ -20233,8 +18769,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10796 components: - pos: 1.5,-31.5 @@ -20242,8 +18776,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10797 components: - pos: 1.5,-32.5 @@ -20251,8 +18783,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10798 components: - pos: 1.5,-33.5 @@ -20260,8 +18790,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10799 components: - pos: 1.5,-34.5 @@ -20269,8 +18797,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10800 components: - pos: 1.5,-35.5 @@ -20278,8 +18804,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10801 components: - pos: 1.5,-36.5 @@ -20287,8 +18811,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10802 components: - pos: 1.5,-37.5 @@ -20296,8 +18818,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10803 components: - pos: 1.5,-38.5 @@ -20305,8 +18825,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10804 components: - pos: 1.5,-39.5 @@ -20314,8 +18832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10805 components: - pos: 1.5,-40.5 @@ -20323,8 +18839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10806 components: - pos: 1.5,-41.5 @@ -20332,8 +18846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10807 components: - pos: 1.5,-42.5 @@ -20341,8 +18853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10808 components: - pos: -4.5,-39.5 @@ -20350,8 +18860,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10809 components: - pos: -4.5,-41.5 @@ -20359,8 +18867,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10810 components: - pos: -4.5,-40.5 @@ -20368,50 +18874,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10811 components: - pos: -11.5,-36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10812 components: - pos: -11.5,-35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10813 components: - pos: -11.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10814 components: - pos: -11.5,-33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10815 components: - pos: -11.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10816 components: - pos: -11.5,-31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10817 components: - pos: -11.5,-30.5 @@ -20419,36 +18911,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10818 components: - pos: -11.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10819 components: - pos: -11.5,-28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10820 components: - pos: -11.5,-27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10821 components: - pos: -11.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10822 components: - pos: -11.5,-25.5 @@ -20456,36 +18938,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10823 components: - pos: -11.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10824 components: - pos: -11.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10825 components: - pos: -11.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10826 components: - pos: -11.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10827 components: - pos: -7.5,-16.5 @@ -20493,50 +18965,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10828 components: - pos: -7.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10829 components: - pos: -7.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10830 components: - pos: -7.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10831 components: - pos: -7.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10832 components: - pos: -7.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10833 components: - pos: -6.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10834 components: - pos: -5.5,-15.5 @@ -20544,8 +19002,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10835 components: - pos: -4.5,-15.5 @@ -20553,8 +19009,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10836 components: - pos: -3.5,-15.5 @@ -20562,8 +19016,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10837 components: - pos: -2.5,-15.5 @@ -20571,8 +19023,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10838 components: - pos: -1.5,-15.5 @@ -20580,225 +19030,161 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10839 components: - pos: -6.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10840 components: - pos: -5.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10841 components: - pos: -4.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10842 components: - pos: -3.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10843 components: - pos: -2.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10844 components: - pos: -1.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10845 components: - pos: -8.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10846 components: - pos: -9.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10847 components: - pos: -10.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10848 components: - pos: -11.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10849 components: - pos: -12.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10850 components: - pos: -13.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10851 components: - pos: -14.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10852 components: - pos: -14.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10853 components: - pos: -14.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10854 components: - pos: -14.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10855 components: - pos: -13.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10856 components: - pos: -12.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10857 components: - pos: -11.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10858 components: - pos: -10.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10859 components: - pos: -9.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10860 components: - pos: -8.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10861 components: - pos: -12.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10862 components: - pos: -12.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10863 components: - pos: -12.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10864 components: - pos: -12.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10865 components: - pos: -13.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10866 components: - pos: -14.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10867 components: - pos: -11.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10868 components: - pos: -10.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10971 components: - pos: -24.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10992 components: - pos: 44.5,-6.5 @@ -20806,267 +19192,191 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10993 components: - pos: 45.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10994 components: - pos: 46.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10995 components: - pos: 47.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10996 components: - pos: 48.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10997 components: - pos: 49.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10998 components: - pos: 49.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11001 components: - pos: 49.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11002 components: - pos: 49.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11005 components: - pos: 48.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11006 components: - pos: 47.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11007 components: - pos: 46.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11008 components: - pos: 45.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11009 components: - pos: 44.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11010 components: - pos: 43.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11011 components: - pos: 42.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11012 components: - pos: 41.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11013 components: - pos: 40.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11014 components: - pos: 39.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11015 components: - pos: 38.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11016 components: - pos: 37.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11017 components: - pos: 36.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11018 components: - pos: 35.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11019 components: - pos: 34.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11020 components: - pos: 33.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11021 components: - pos: 33.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11022 components: - pos: 33.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11023 components: - pos: 34.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11024 components: - pos: 35.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11025 components: - pos: 36.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11026 components: - pos: 37.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11027 components: - pos: 38.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11028 components: - pos: 39.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11029 components: - pos: 40.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11030 components: - pos: 41.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11031 components: - pos: 42.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11032 components: - pos: 43.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11033 components: - pos: 44.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11110 components: - pos: 23.5,-3.5 @@ -21074,64 +19384,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11111 components: - pos: 22.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11112 components: - pos: 21.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11113 components: - pos: 20.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11114 components: - pos: 19.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11115 components: - pos: 18.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11116 components: - pos: 17.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11117 components: - pos: 16.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11118 components: - pos: 18.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11119 components: - pos: 18.5,-1.5 @@ -21139,8 +19431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11120 components: - pos: 18.5,-0.5 @@ -21148,8 +19438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11121 components: - pos: 18.5,0.5 @@ -21157,15 +19445,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11122 components: - pos: 18.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11123 components: - pos: 18.5,2.5 @@ -21173,246 +19457,176 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11124 components: - pos: 18.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11125 components: - pos: 18.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11126 components: - pos: 19.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11127 components: - pos: 19.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11128 components: - pos: 19.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11129 components: - pos: 19.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11130 components: - pos: 19.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11131 components: - pos: 20.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11132 components: - pos: 21.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11133 components: - pos: 22.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11134 components: - pos: 23.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11135 components: - pos: 24.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11136 components: - pos: 25.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11137 components: - pos: 26.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11138 components: - pos: 27.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11139 components: - pos: 28.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11140 components: - pos: 29.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11141 components: - pos: 30.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11142 components: - pos: 31.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11143 components: - pos: 31.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11144 components: - pos: 31.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11145 components: - pos: 31.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11146 components: - pos: 31.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11147 components: - pos: 31.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11148 components: - pos: 31.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11149 components: - pos: 31.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11150 components: - pos: 31.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11151 components: - pos: 31.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11152 components: - pos: 31.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11153 components: - pos: 32.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11154 components: - pos: 33.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11155 components: - pos: 34.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11156 components: - pos: 25.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11157 components: - pos: 25.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11158 components: - pos: 25.5,-6.5 @@ -21420,127 +19634,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11159 components: - pos: 25.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11160 components: - pos: 25.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11161 components: - pos: 25.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11162 components: - pos: 24.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11163 components: - pos: 25.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11164 components: - pos: 25.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11165 components: - pos: 25.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11166 components: - pos: 25.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11167 components: - pos: 26.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11168 components: - pos: 27.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11169 components: - pos: 27.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11170 components: - pos: 27.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11171 components: - pos: 27.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11172 components: - pos: 27.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11173 components: - pos: 27.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11174 components: - pos: 27.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11175 components: - pos: 26.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11176 components: - pos: 22.5,5.5 @@ -21548,71 +19726,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11177 components: - pos: 23.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11178 components: - pos: 24.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11179 components: - pos: 25.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11180 components: - pos: 25.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11181 components: - pos: 25.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11182 components: - pos: 25.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11183 components: - pos: 24.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11184 components: - pos: 23.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11185 components: - pos: 22.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11186 components: - pos: 21.5,2.5 @@ -21620,8 +19778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11187 components: - pos: 21.5,3.5 @@ -21629,8 +19785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11188 components: - pos: 21.5,4.5 @@ -21638,8 +19792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11189 components: - pos: 21.5,5.5 @@ -21647,8 +19799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11190 components: - pos: 21.5,6.5 @@ -21656,8 +19806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11191 components: - pos: 21.5,7.5 @@ -21665,8 +19813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11192 components: - pos: 21.5,8.5 @@ -21674,8 +19820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11193 components: - pos: 20.5,8.5 @@ -21683,8 +19827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11194 components: - pos: 19.5,8.5 @@ -21692,8 +19834,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11195 components: - pos: 18.5,8.5 @@ -21701,8 +19841,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11196 components: - pos: 18.5,9.5 @@ -21710,8 +19848,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11197 components: - pos: 18.5,10.5 @@ -21719,8 +19855,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11198 components: - pos: 18.5,11.5 @@ -21728,8 +19862,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11199 components: - pos: 21.5,1.5 @@ -21737,211 +19869,151 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11200 components: - pos: 23.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11201 components: - pos: 23.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11202 components: - pos: 23.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11203 components: - pos: 23.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11204 components: - pos: 23.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11205 components: - pos: 24.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11206 components: - pos: 25.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11207 components: - pos: 26.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11208 components: - pos: 27.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11209 components: - pos: 28.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11210 components: - pos: 29.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11211 components: - pos: 30.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11212 components: - pos: 31.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11213 components: - pos: 32.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11214 components: - pos: 32.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11215 components: - pos: 32.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11216 components: - pos: 32.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11218 components: - pos: 32.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11219 components: - pos: 32.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11220 components: - pos: 32.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11221 components: - pos: 33.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11222 components: - pos: 34.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11223 components: - pos: 31.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11224 components: - pos: 30.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11225 components: - pos: 29.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11226 components: - pos: 28.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11227 components: - pos: 27.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11228 components: - pos: 26.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11229 components: - pos: 25.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11230 components: - pos: 26.5,4.5 @@ -21949,8 +20021,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11231 components: - pos: 26.5,6.5 @@ -21958,8 +20028,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11232 components: - pos: 26.5,5.5 @@ -21967,22 +20035,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11233 components: - pos: 24.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11234 components: - pos: 23.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11245 components: - pos: 16.5,9.5 @@ -21990,253 +20052,181 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11246 components: - pos: 15.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11247 components: - pos: 14.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11248 components: - pos: 13.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11249 components: - pos: 12.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11250 components: - pos: 11.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11251 components: - pos: 10.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11252 components: - pos: 9.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11253 components: - pos: 8.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11254 components: - pos: 7.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11255 components: - pos: 6.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11256 components: - pos: 5.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11257 components: - pos: 5.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11258 components: - pos: 5.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11259 components: - pos: 6.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11260 components: - pos: 7.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11261 components: - pos: 8.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11262 components: - pos: 9.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11263 components: - pos: 10.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11264 components: - pos: 11.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11265 components: - pos: 11.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11266 components: - pos: 11.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11267 components: - pos: 11.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11268 components: - pos: 11.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11269 components: - pos: 11.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11270 components: - pos: 11.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11271 components: - pos: 11.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11272 components: - pos: 10.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11273 components: - pos: 9.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11274 components: - pos: 8.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11275 components: - pos: 7.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11276 components: - pos: 6.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11277 components: - pos: 5.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11278 components: - pos: 5.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11279 components: - pos: 5.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11280 components: - pos: 5.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11289 components: - pos: 13.5,-1.5 @@ -22244,8 +20234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11290 components: - pos: 14.5,-1.5 @@ -22253,8 +20241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11291 components: - pos: 14.5,-0.5 @@ -22262,8 +20248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11292 components: - pos: 14.5,0.5 @@ -22271,8 +20255,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11293 components: - pos: 14.5,1.5 @@ -22280,8 +20262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11294 components: - pos: 14.5,2.5 @@ -22289,8 +20269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11295 components: - pos: 14.5,3.5 @@ -22298,8 +20276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11296 components: - pos: 14.5,4.5 @@ -22307,8 +20283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11297 components: - pos: 14.5,5.5 @@ -22316,8 +20290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11298 components: - pos: 14.5,6.5 @@ -22325,8 +20297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11299 components: - pos: 15.5,6.5 @@ -22334,8 +20304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11300 components: - pos: 16.5,6.5 @@ -22343,8 +20311,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11301 components: - pos: 17.5,6.5 @@ -22352,8 +20318,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11302 components: - pos: 18.5,6.5 @@ -22361,8 +20325,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11303 components: - pos: 14.5,-2.5 @@ -22370,8 +20332,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11304 components: - pos: 14.5,-3.5 @@ -22379,8 +20339,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11305 components: - pos: 14.5,-4.5 @@ -22388,8 +20346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11306 components: - pos: 15.5,-1.5 @@ -22397,232 +20353,166 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11307 components: - pos: 12.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11308 components: - pos: 11.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11309 components: - pos: 10.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11310 components: - pos: 9.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11311 components: - pos: 8.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11312 components: - pos: 7.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11313 components: - pos: 6.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11314 components: - pos: 5.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11315 components: - pos: 5.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11316 components: - pos: 5.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11317 components: - pos: 5.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11318 components: - pos: 5.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11319 components: - pos: 6.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11320 components: - pos: 7.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11321 components: - pos: 8.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11322 components: - pos: 8.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11323 components: - pos: 8.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11324 components: - pos: 8.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11325 components: - pos: 11.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11326 components: - pos: 11.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11327 components: - pos: 11.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11328 components: - pos: 11.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11329 components: - pos: 11.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11330 components: - pos: 11.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11331 components: - pos: 10.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11332 components: - pos: 9.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11333 components: - pos: 8.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11334 components: - pos: 7.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11335 components: - pos: 6.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11336 components: - pos: 5.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11337 components: - pos: 5.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11338 components: - pos: 5.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11425 components: - pos: 6.5,75.5 @@ -22630,50 +20520,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11426 components: - pos: 6.5,74.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11427 components: - pos: 6.5,73.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11428 components: - pos: 6.5,72.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11429 components: - pos: 6.5,71.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11430 components: - pos: 6.5,70.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11431 components: - pos: 7.5,74.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11432 components: - pos: 8.5,74.5 @@ -22681,8 +20557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11433 components: - pos: 8.5,73.5 @@ -22690,8 +20564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11434 components: - pos: 8.5,72.5 @@ -22699,36 +20571,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11435 components: - pos: 5.5,74.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11436 components: - pos: 4.5,74.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11437 components: - pos: 3.5,74.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11438 components: - pos: 2.5,74.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11439 components: - pos: 1.5,74.5 @@ -22736,8 +20598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11440 components: - pos: 2.5,75.5 @@ -22745,8 +20605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11441 components: - pos: 3.5,75.5 @@ -22754,8 +20612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11442 components: - pos: 1.5,73.5 @@ -22763,8 +20619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11443 components: - pos: 1.5,72.5 @@ -22772,8 +20626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11444 components: - pos: 1.5,71.5 @@ -22781,8 +20633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11445 components: - pos: 1.5,70.5 @@ -22790,8 +20640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11446 components: - pos: 1.5,69.5 @@ -22799,8 +20647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11447 components: - pos: 2.5,69.5 @@ -22808,8 +20654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11448 components: - pos: 3.5,69.5 @@ -22817,8 +20661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11449 components: - pos: 4.5,69.5 @@ -22826,8 +20668,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11450 components: - pos: 5.5,69.5 @@ -22835,8 +20675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11451 components: - pos: 6.5,69.5 @@ -22844,8 +20682,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11452 components: - pos: 7.5,69.5 @@ -22853,8 +20689,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11453 components: - pos: 8.5,69.5 @@ -22862,8 +20696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11454 components: - pos: 8.5,70.5 @@ -22871,8 +20703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11455 components: - pos: 8.5,71.5 @@ -22880,225 +20710,161 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11456 components: - pos: 8.5,68.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11457 components: - pos: 9.5,68.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11458 components: - pos: 10.5,68.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11459 components: - pos: 11.5,68.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11460 components: - pos: 12.5,68.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11461 components: - pos: 12.5,69.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11462 components: - pos: 12.5,70.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11463 components: - pos: 12.5,67.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11464 components: - pos: 12.5,66.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11465 components: - pos: 7.5,68.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11466 components: - pos: 6.5,68.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11467 components: - pos: 5.5,68.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11468 components: - pos: 4.5,68.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11469 components: - pos: 3.5,68.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11470 components: - pos: 2.5,68.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11471 components: - pos: 1.5,68.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11472 components: - pos: 0.5,68.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11473 components: - pos: -0.5,68.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11474 components: - pos: -1.5,68.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11475 components: - pos: -1.5,69.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11476 components: - pos: -1.5,70.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11477 components: - pos: -1.5,71.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11478 components: - pos: -1.5,72.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11479 components: - pos: -1.5,73.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11480 components: - pos: -1.5,74.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11481 components: - pos: 0.5,69.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11482 components: - pos: 0.5,70.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11483 components: - pos: 0.5,71.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11484 components: - pos: 0.5,72.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11485 components: - pos: 0.5,73.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11486 components: - pos: 0.5,74.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11487 components: - pos: -3.5,75.5 @@ -23106,281 +20872,201 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11488 components: - pos: -3.5,76.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11489 components: - pos: 0.5,77.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11490 components: - pos: 1.5,77.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11491 components: - pos: 2.5,77.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11492 components: - pos: 3.5,77.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11493 components: - pos: 4.5,77.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11494 components: - pos: 5.5,77.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11495 components: - pos: -0.5,77.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11496 components: - pos: -1.5,77.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11497 components: - pos: -2.5,77.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11498 components: - pos: -3.5,77.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11499 components: - pos: 7.5,76.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11500 components: - pos: 6.5,77.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11501 components: - pos: -4.5,77.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11502 components: - pos: -5.5,77.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11503 components: - pos: -6.5,77.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11504 components: - pos: -7.5,77.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11505 components: - pos: -8.5,77.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11506 components: - pos: -5.5,78.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11507 components: - pos: -5.5,79.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11508 components: - pos: -5.5,80.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11509 components: - pos: -5.5,81.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11510 components: - pos: -5.5,82.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11511 components: - pos: 4.5,78.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11512 components: - pos: 4.5,79.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11513 components: - pos: 4.5,80.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11514 components: - pos: 4.5,81.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11515 components: - pos: 4.5,82.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11516 components: - pos: 3.5,81.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11517 components: - pos: 2.5,81.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11518 components: - pos: 1.5,81.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11519 components: - pos: 0.5,81.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11520 components: - pos: -0.5,81.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11521 components: - pos: -1.5,81.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11522 components: - pos: -2.5,81.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11523 components: - pos: -3.5,81.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11524 components: - pos: -4.5,81.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11525 components: - pos: -0.5,82.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11526 components: - pos: -0.5,83.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11527 components: - pos: -0.5,84.5 @@ -23388,8 +21074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11528 components: - pos: -1.5,84.5 @@ -23397,8 +21081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11529 components: - pos: -2.5,84.5 @@ -23406,8 +21088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11530 components: - pos: -3.5,84.5 @@ -23415,8 +21095,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11531 components: - pos: 0.5,84.5 @@ -23424,8 +21102,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11532 components: - pos: 1.5,84.5 @@ -23433,8 +21109,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11533 components: - pos: 2.5,84.5 @@ -23442,8 +21116,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11534 components: - pos: -4.5,74.5 @@ -23451,71 +21123,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11535 components: - pos: -5.5,74.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11536 components: - pos: -6.5,74.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11537 components: - pos: -7.5,74.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11538 components: - pos: -8.5,74.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11539 components: - pos: -8.5,73.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11540 components: - pos: -8.5,72.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11541 components: - pos: -8.5,71.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11542 components: - pos: -8.5,70.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11543 components: - pos: -8.5,69.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11544 components: - pos: -9.5,69.5 @@ -23523,8 +21175,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11545 components: - pos: -10.5,69.5 @@ -23532,8 +21182,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11546 components: - pos: -10.5,70.5 @@ -23541,36 +21189,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11547 components: - pos: -7.5,72.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11548 components: - pos: -6.5,72.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11549 components: - pos: -5.5,72.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11550 components: - pos: -5.5,73.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11611 components: - pos: -30.5,57.5 @@ -23578,8 +21216,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11612 components: - pos: -30.5,56.5 @@ -23587,8 +21223,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11613 components: - pos: -31.5,56.5 @@ -23596,8 +21230,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11614 components: - pos: -32.5,56.5 @@ -23605,8 +21237,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11615 components: - pos: -33.5,56.5 @@ -23614,22 +21244,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11616 components: - pos: -34.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11617 components: - pos: -35.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11618 components: - pos: -35.5,55.5 @@ -23637,8 +21261,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11619 components: - pos: -35.5,54.5 @@ -23646,8 +21268,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11620 components: - pos: -35.5,53.5 @@ -23655,8 +21275,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11621 components: - pos: -35.5,52.5 @@ -23664,15 +21282,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11622 components: - pos: -34.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11623 components: - pos: -33.5,52.5 @@ -23680,15 +21294,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11624 components: - pos: -32.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11625 components: - pos: -31.5,52.5 @@ -23696,8 +21306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11626 components: - pos: -30.5,52.5 @@ -23705,8 +21313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11627 components: - pos: -29.5,52.5 @@ -23714,15 +21320,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11628 components: - pos: -28.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11629 components: - pos: -27.5,52.5 @@ -23730,15 +21332,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11630 components: - pos: -27.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11631 components: - pos: -27.5,54.5 @@ -23746,15 +21344,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11632 components: - pos: -27.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11633 components: - pos: -27.5,56.5 @@ -23762,8 +21356,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11634 components: - pos: -28.5,56.5 @@ -23771,8 +21363,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11635 components: - pos: -29.5,56.5 @@ -23780,8 +21370,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11636 components: - pos: -27.5,57.5 @@ -23789,8 +21377,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11637 components: - pos: -26.5,57.5 @@ -23798,8 +21384,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11638 components: - pos: -25.5,57.5 @@ -23807,8 +21391,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11639 components: - pos: -24.5,57.5 @@ -23816,8 +21398,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11640 components: - pos: -24.5,56.5 @@ -23825,8 +21405,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11641 components: - pos: -24.5,55.5 @@ -23834,8 +21412,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11642 components: - pos: -24.5,54.5 @@ -23843,15 +21419,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11643 components: - pos: -24.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11644 components: - pos: -24.5,52.5 @@ -23859,8 +21431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11645 components: - pos: -24.5,51.5 @@ -23868,8 +21438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11646 components: - pos: -36.5,52.5 @@ -23877,8 +21445,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11647 components: - pos: -37.5,52.5 @@ -23886,8 +21452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11648 components: - pos: -38.5,52.5 @@ -23895,8 +21459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11649 components: - pos: -38.5,53.5 @@ -23904,8 +21466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11650 components: - pos: -38.5,54.5 @@ -23913,8 +21473,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11651 components: - pos: -38.5,55.5 @@ -23922,22 +21480,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11652 components: - pos: -42.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11653 components: - pos: -43.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11654 components: - pos: -43.5,45.5 @@ -23945,8 +21497,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11655 components: - pos: -43.5,46.5 @@ -23954,8 +21504,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11656 components: - pos: -43.5,47.5 @@ -23963,8 +21511,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11657 components: - pos: -43.5,48.5 @@ -23972,8 +21518,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11658 components: - pos: -43.5,49.5 @@ -23981,8 +21525,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11659 components: - pos: -43.5,50.5 @@ -23990,8 +21532,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11660 components: - pos: -43.5,51.5 @@ -23999,8 +21539,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11661 components: - pos: -42.5,51.5 @@ -24008,8 +21546,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11662 components: - pos: -41.5,51.5 @@ -24017,8 +21553,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11663 components: - pos: -44.5,48.5 @@ -24026,8 +21560,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11665 components: - pos: -46.5,48.5 @@ -24035,8 +21567,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11666 components: - pos: -47.5,48.5 @@ -24044,120 +21574,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11667 components: - pos: -42.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11668 components: - pos: -43.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11669 components: - pos: -44.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11670 components: - pos: -45.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11671 components: - pos: -46.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11672 components: - pos: -47.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11673 components: - pos: -48.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11674 components: - pos: -49.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11675 components: - pos: -49.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11676 components: - pos: -49.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11677 components: - pos: -49.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11678 components: - pos: -49.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11679 components: - pos: -49.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11680 components: - pos: -49.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11681 components: - pos: -49.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11682 components: - pos: -49.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11683 components: - pos: -49.5,34.5 @@ -24165,22 +21661,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11684 components: - pos: -50.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11685 components: - pos: -51.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11686 components: - pos: -52.5,38.5 @@ -24188,22 +21678,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11687 components: - pos: -50.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11688 components: - pos: -51.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11689 components: - pos: -52.5,36.5 @@ -24211,29 +21695,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11690 components: - pos: -48.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11691 components: - pos: -47.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11692 components: - pos: -47.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11693 components: - pos: -47.5,34.5 @@ -24241,267 +21717,191 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11694 components: - pos: -46.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11695 components: - pos: -45.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11696 components: - pos: -44.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11697 components: - pos: -43.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11698 components: - pos: -42.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11699 components: - pos: -41.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11700 components: - pos: -40.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11701 components: - pos: -39.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11702 components: - pos: -38.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11703 components: - pos: -37.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11704 components: - pos: -36.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11705 components: - pos: -35.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11706 components: - pos: -34.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11707 components: - pos: -34.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11708 components: - pos: -34.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11709 components: - pos: -35.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11710 components: - pos: -36.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11711 components: - pos: -37.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11712 components: - pos: -38.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11713 components: - pos: -39.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11714 components: - pos: -40.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11715 components: - pos: -41.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11716 components: - pos: -42.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11717 components: - pos: -42.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11718 components: - pos: -42.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11719 components: - pos: -42.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11720 components: - pos: -42.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11721 components: - pos: -33.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11722 components: - pos: -32.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11723 components: - pos: -31.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11724 components: - pos: -30.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11725 components: - pos: -29.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11726 components: - pos: -28.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11727 components: - pos: -27.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11728 components: - pos: -26.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11729 components: - pos: -25.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11730 components: - pos: -24.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11731 components: - pos: -24.5,49.5 @@ -24509,190 +21909,136 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11732 components: - pos: -24.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11733 components: - pos: -24.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11734 components: - pos: -25.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11735 components: - pos: -26.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11736 components: - pos: -27.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11737 components: - pos: -28.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11738 components: - pos: -29.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11739 components: - pos: -30.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11740 components: - pos: -31.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11741 components: - pos: -32.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11742 components: - pos: -33.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11743 components: - pos: -34.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11744 components: - pos: -35.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11745 components: - pos: -35.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11746 components: - pos: -36.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11747 components: - pos: -37.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11748 components: - pos: -38.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11749 components: - pos: -32.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11750 components: - pos: -30.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11751 components: - pos: -30.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11752 components: - pos: -30.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11753 components: - pos: -30.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11754 components: - pos: -30.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11755 components: - pos: -29.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11756 components: - pos: -28.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11757 components: - pos: -27.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11758 components: - pos: -26.5,42.5 @@ -24700,8 +22046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11759 components: - pos: -26.5,43.5 @@ -24709,8 +22053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11760 components: - pos: -26.5,44.5 @@ -24718,8 +22060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11761 components: - pos: -30.5,41.5 @@ -24727,8 +22067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11762 components: - pos: -31.5,41.5 @@ -24736,8 +22074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11763 components: - pos: -32.5,41.5 @@ -24745,8 +22081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11764 components: - pos: -34.5,41.5 @@ -24754,8 +22088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11765 components: - pos: -35.5,41.5 @@ -24763,64 +22095,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11766 components: - pos: -31.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11767 components: - pos: -32.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11768 components: - pos: -33.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11769 components: - pos: -34.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11770 components: - pos: -35.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11771 components: - pos: -36.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11772 components: - pos: -37.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11773 components: - pos: -38.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11774 components: - pos: -39.5,43.5 @@ -24828,8 +22142,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11775 components: - pos: -39.5,42.5 @@ -24837,50 +22149,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11776 components: - pos: -35.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11777 components: - pos: -35.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11778 components: - pos: -35.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11779 components: - pos: -36.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11780 components: - pos: -37.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11781 components: - pos: -38.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11782 components: - pos: -39.5,45.5 @@ -24888,8 +22186,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11783 components: - pos: -39.5,46.5 @@ -24897,8 +22193,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11784 components: - pos: -20.5,50.5 @@ -24906,218 +22200,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11785 components: - pos: -19.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11786 components: - pos: -18.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11787 components: - pos: -17.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11788 components: - pos: -16.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11789 components: - pos: -16.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11790 components: - pos: -16.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11791 components: - pos: -16.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11792 components: - pos: -16.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11793 components: - pos: -16.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11794 components: - pos: -16.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11795 components: - pos: -15.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11796 components: - pos: -14.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11797 components: - pos: -13.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11798 components: - pos: -12.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11799 components: - pos: -12.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11800 components: - pos: -12.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11801 components: - pos: -12.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11802 components: - pos: -12.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11803 components: - pos: -12.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11804 components: - pos: -12.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11805 components: - pos: -12.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11806 components: - pos: -12.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11807 components: - pos: -12.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11808 components: - pos: -12.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11809 components: - pos: -12.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11810 components: - pos: -12.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11811 components: - pos: -12.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11812 components: - pos: -12.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11813 components: - pos: -12.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11814 components: - pos: -12.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11815 components: - pos: -12.5,39.5 @@ -25125,8 +22357,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11816 components: - pos: -13.5,39.5 @@ -25134,71 +22364,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11817 components: - pos: -13.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11818 components: - pos: -14.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11819 components: - pos: -15.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11820 components: - pos: -16.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11821 components: - pos: -17.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11822 components: - pos: -17.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11823 components: - pos: -17.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11824 components: - pos: -17.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11825 components: - pos: -17.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11826 components: - pos: -17.5,39.5 @@ -25206,8 +22416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11827 components: - pos: -18.5,39.5 @@ -25215,8 +22423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11828 components: - pos: -19.5,39.5 @@ -25224,8 +22430,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11829 components: - pos: -16.5,39.5 @@ -25233,8 +22437,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11830 components: - pos: -15.5,39.5 @@ -25242,64 +22444,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11831 components: - pos: -18.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11832 components: - pos: -19.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11833 components: - pos: -19.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11834 components: - pos: -19.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11835 components: - pos: -19.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11836 components: - pos: -19.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11837 components: - pos: -19.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11838 components: - pos: -19.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11864 components: - pos: -7.5,56.5 @@ -25307,197 +22491,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11865 components: - pos: -8.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11866 components: - pos: -9.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11867 components: - pos: -10.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11868 components: - pos: -10.5,57.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11869 components: - pos: -10.5,58.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11870 components: - pos: -10.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11871 components: - pos: -11.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11872 components: - pos: -12.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11873 components: - pos: -13.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11874 components: - pos: -14.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11875 components: - pos: -15.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11876 components: - pos: -16.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11877 components: - pos: -9.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11878 components: - pos: -8.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11879 components: - pos: -7.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11880 components: - pos: -6.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11881 components: - pos: -5.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11882 components: - pos: -5.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11883 components: - pos: -5.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11884 components: - pos: -5.5,62.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11885 components: - pos: -5.5,63.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11886 components: - pos: -5.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11887 components: - pos: -6.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11888 components: - pos: -7.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11889 components: - pos: -8.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11890 components: - pos: -8.5,63.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11891 components: - pos: -8.5,62.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11892 components: - pos: -8.5,61.5 @@ -25505,8 +22633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11893 components: - pos: -9.5,61.5 @@ -25514,8 +22640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11894 components: - pos: -7.5,60.5 @@ -25523,302 +22647,216 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11895 components: - pos: -6.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11896 components: - pos: -5.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11897 components: - pos: -5.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11898 components: - pos: -5.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11899 components: - pos: -5.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11900 components: - pos: -5.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11901 components: - pos: -4.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11902 components: - pos: -3.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11903 components: - pos: -2.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11904 components: - pos: -1.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11905 components: - pos: -3.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11906 components: - pos: -3.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11907 components: - pos: -3.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11908 components: - pos: -3.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11909 components: - pos: -1.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11910 components: - pos: -1.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11911 components: - pos: -1.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11912 components: - pos: -1.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11913 components: - pos: -1.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11914 components: - pos: -1.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11915 components: - pos: -2.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11916 components: - pos: -3.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11917 components: - pos: -4.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11918 components: - pos: -5.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11919 components: - pos: -6.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11920 components: - pos: -7.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11921 components: - pos: -8.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11922 components: - pos: -9.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11923 components: - pos: -9.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11924 components: - pos: -9.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11925 components: - pos: -9.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11926 components: - pos: -9.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11927 components: - pos: -9.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11928 components: - pos: -9.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11929 components: - pos: -9.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11930 components: - pos: -9.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11932 components: - pos: -9.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11933 components: - pos: -9.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11934 components: - pos: -9.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11935 components: - pos: -9.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11936 components: - pos: -9.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11937 components: - pos: -9.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11938 components: - pos: -9.5,39.5 @@ -25826,8 +22864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11939 components: - pos: -10.5,39.5 @@ -25835,64 +22871,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11940 components: - pos: -6.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11941 components: - pos: -6.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11942 components: - pos: -6.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11943 components: - pos: -6.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11944 components: - pos: -6.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11945 components: - pos: -6.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11946 components: - pos: -6.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11947 components: - pos: -6.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11948 components: - pos: -6.5,39.5 @@ -25900,8 +22918,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11949 components: - pos: -7.5,39.5 @@ -25909,8 +22925,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11950 components: - pos: -3.5,39.5 @@ -25918,57 +22932,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11951 components: - pos: -3.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11952 components: - pos: -3.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11953 components: - pos: -3.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11954 components: - pos: -3.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11955 components: - pos: -3.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11956 components: - pos: -3.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11957 components: - pos: -3.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11958 components: - pos: -3.5,47.5 @@ -25976,8 +22974,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11959 components: - pos: -4.5,47.5 @@ -25985,29 +22981,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11960 components: - pos: -23.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11961 components: - pos: -22.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11962 components: - pos: -22.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11963 components: - pos: -21.5,52.5 @@ -26015,8 +23003,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11964 components: - pos: -21.5,51.5 @@ -26024,8 +23010,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11965 components: - pos: -21.5,53.5 @@ -26033,8 +23017,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11966 components: - pos: -21.5,54.5 @@ -26042,8 +23024,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11967 components: - pos: -21.5,55.5 @@ -26051,8 +23031,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11968 components: - pos: -21.5,56.5 @@ -26060,8 +23038,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11969 components: - pos: -21.5,57.5 @@ -26069,8 +23045,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11970 components: - pos: -20.5,57.5 @@ -26078,8 +23052,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11971 components: - pos: -19.5,57.5 @@ -26087,8 +23059,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11972 components: - pos: -19.5,58.5 @@ -26096,8 +23066,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11973 components: - pos: -19.5,59.5 @@ -26105,8 +23073,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11974 components: - pos: -19.5,60.5 @@ -26114,8 +23080,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11975 components: - pos: -19.5,61.5 @@ -26123,8 +23087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11976 components: - pos: -19.5,62.5 @@ -26132,8 +23094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11977 components: - pos: -18.5,62.5 @@ -26141,8 +23101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11978 components: - pos: -17.5,62.5 @@ -26150,8 +23108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11979 components: - pos: -16.5,62.5 @@ -26159,8 +23115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11980 components: - pos: -15.5,62.5 @@ -26168,8 +23122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11981 components: - pos: -14.5,62.5 @@ -26177,8 +23129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11982 components: - pos: -13.5,62.5 @@ -26186,8 +23136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11983 components: - pos: -13.5,63.5 @@ -26195,8 +23143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11984 components: - pos: -13.5,64.5 @@ -26204,8 +23150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11985 components: - pos: -13.5,65.5 @@ -26213,8 +23157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11986 components: - pos: -13.5,66.5 @@ -26222,8 +23164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11987 components: - pos: -13.5,67.5 @@ -26231,8 +23171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11988 components: - pos: -13.5,68.5 @@ -26240,8 +23178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11989 components: - pos: -13.5,69.5 @@ -26249,8 +23185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11990 components: - pos: -13.5,70.5 @@ -26258,8 +23192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11991 components: - pos: -12.5,67.5 @@ -26267,8 +23199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11992 components: - pos: -11.5,67.5 @@ -26276,8 +23206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11993 components: - pos: -10.5,67.5 @@ -26285,8 +23213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11994 components: - pos: -9.5,67.5 @@ -26294,8 +23220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11995 components: - pos: -8.5,67.5 @@ -26303,8 +23227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11996 components: - pos: -7.5,67.5 @@ -26312,8 +23234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11997 components: - pos: -6.5,67.5 @@ -26321,8 +23241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11998 components: - pos: -5.5,67.5 @@ -26330,8 +23248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11999 components: - pos: -4.5,67.5 @@ -26339,8 +23255,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12000 components: - pos: -4.5,68.5 @@ -26348,8 +23262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12001 components: - pos: -4.5,69.5 @@ -26357,8 +23269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12002 components: - pos: -4.5,70.5 @@ -26366,8 +23276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12003 components: - pos: -3.5,70.5 @@ -26375,85 +23283,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12004 components: - pos: -1.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12005 components: - pos: -1.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12006 components: - pos: -1.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12007 components: - pos: -1.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12008 components: - pos: -1.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12009 components: - pos: -1.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12010 components: - pos: -1.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12011 components: - pos: -1.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12012 components: - pos: -22.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12013 components: - pos: -21.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12014 components: - pos: -21.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12015 components: - pos: -21.5,44.5 @@ -26461,8 +23345,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12016 components: - pos: -21.5,43.5 @@ -26470,8 +23352,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12017 components: - pos: -21.5,42.5 @@ -26479,8 +23359,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12018 components: - pos: -21.5,41.5 @@ -26488,8 +23366,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12019 components: - pos: -21.5,40.5 @@ -26497,8 +23373,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12060 components: - pos: -12.5,32.5 @@ -26506,43 +23380,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12061 components: - pos: -11.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12062 components: - pos: -10.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12063 components: - pos: -9.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12064 components: - pos: -9.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12065 components: - pos: -8.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12066 components: - pos: -7.5,33.5 @@ -26550,8 +23412,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12067 components: - pos: -6.5,33.5 @@ -26559,15 +23419,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12068 components: - pos: -6.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12069 components: - pos: -6.5,31.5 @@ -26575,8 +23431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12070 components: - pos: -6.5,30.5 @@ -26584,8 +23438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12071 components: - pos: -6.5,29.5 @@ -26593,8 +23445,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12072 components: - pos: -6.5,28.5 @@ -26602,8 +23452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12073 components: - pos: -6.5,27.5 @@ -26611,106 +23459,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12074 components: - pos: -9.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12075 components: - pos: -9.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12076 components: - pos: -9.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12077 components: - pos: -9.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12078 components: - pos: -9.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12079 components: - pos: -10.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12080 components: - pos: -11.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12081 components: - pos: -11.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12082 components: - pos: -11.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12083 components: - pos: -11.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12084 components: - pos: -11.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12085 components: - pos: -11.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12086 components: - pos: -11.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12087 components: - pos: -10.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12088 components: - pos: -20.5,31.5 @@ -26718,8 +23536,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12089 components: - pos: -20.5,30.5 @@ -26727,8 +23543,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12090 components: - pos: -20.5,29.5 @@ -26736,36 +23550,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12091 components: - pos: -20.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12092 components: - pos: -20.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12093 components: - pos: -20.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12094 components: - pos: -20.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12095 components: - pos: -20.5,35.5 @@ -26773,281 +23577,201 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12096 components: - pos: -20.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12097 components: - pos: -21.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12098 components: - pos: -22.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12099 components: - pos: -23.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12101 components: - pos: -25.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12102 components: - pos: -26.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12103 components: - pos: -27.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12104 components: - pos: -28.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12105 components: - pos: -19.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12106 components: - pos: -18.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12107 components: - pos: -17.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12108 components: - pos: -16.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12109 components: - pos: -15.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12110 components: - pos: -14.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12111 components: - pos: -13.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12112 components: - pos: -12.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12113 components: - pos: -11.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12114 components: - pos: -10.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12115 components: - pos: -9.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12116 components: - pos: -8.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12117 components: - pos: -7.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12118 components: - pos: -6.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12119 components: - pos: -5.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12120 components: - pos: -4.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12121 components: - pos: -3.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12122 components: - pos: -2.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12123 components: - pos: -19.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12124 components: - pos: -18.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12125 components: - pos: -17.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12126 components: - pos: -16.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12127 components: - pos: -15.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12128 components: - pos: -14.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12129 components: - pos: -14.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12130 components: - pos: -14.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12131 components: - pos: -14.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12132 components: - pos: -14.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12133 components: - pos: -14.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12134 components: - pos: -14.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12135 components: - pos: -14.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12136 components: - pos: -17.5,26.5 @@ -27055,323 +23779,231 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12137 components: - pos: -17.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12138 components: - pos: -17.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12139 components: - pos: -16.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12140 components: - pos: -15.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12141 components: - pos: -14.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12142 components: - pos: -13.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12143 components: - pos: -12.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12144 components: - pos: -11.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12145 components: - pos: -10.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12146 components: - pos: -10.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12147 components: - pos: -10.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12148 components: - pos: -10.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12149 components: - pos: -11.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12150 components: - pos: -11.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12151 components: - pos: -11.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12152 components: - pos: -11.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12153 components: - pos: -18.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12154 components: - pos: -19.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12155 components: - pos: -20.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12156 components: - pos: -20.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12157 components: - pos: -20.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12158 components: - pos: -20.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12159 components: - pos: -20.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12160 components: - pos: -20.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12161 components: - pos: -20.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12162 components: - pos: -20.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12163 components: - pos: -19.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12164 components: - pos: -18.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12165 components: - pos: -17.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12166 components: - pos: -16.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12167 components: - pos: -15.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12168 components: - pos: -14.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12169 components: - pos: -16.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12170 components: - pos: -16.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12171 components: - pos: -16.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12172 components: - pos: -16.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12173 components: - pos: -21.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12174 components: - pos: -22.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12175 components: - pos: -23.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12176 components: - pos: -24.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12177 components: - pos: -25.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12178 components: - pos: -24.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12179 components: - pos: -24.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12180 components: - pos: -24.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12181 components: - pos: -24.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12182 components: - pos: -20.5,27.5 @@ -27379,8 +24011,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12183 components: - pos: -21.5,27.5 @@ -27388,8 +24018,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12184 components: - pos: -22.5,27.5 @@ -27397,8 +24025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12185 components: - pos: -23.5,27.5 @@ -27406,8 +24032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12186 components: - pos: -23.5,28.5 @@ -27415,8 +24039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12187 components: - pos: -23.5,29.5 @@ -27424,8 +24046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12188 components: - pos: -23.5,30.5 @@ -27433,8 +24053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12189 components: - pos: -23.5,31.5 @@ -27442,8 +24060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12190 components: - pos: -23.5,32.5 @@ -27451,8 +24067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12191 components: - pos: -23.5,33.5 @@ -27460,8 +24074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12192 components: - pos: -23.5,34.5 @@ -27469,15 +24081,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12193 components: - pos: -23.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12194 components: - pos: -23.5,26.5 @@ -27485,8 +24093,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12195 components: - pos: -23.5,25.5 @@ -27494,8 +24100,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12196 components: - pos: -24.5,25.5 @@ -27503,8 +24107,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12197 components: - pos: -25.5,25.5 @@ -27512,8 +24114,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12198 components: - pos: -26.5,25.5 @@ -27521,8 +24121,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12199 components: - pos: -27.5,25.5 @@ -27530,8 +24128,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12200 components: - pos: -27.5,24.5 @@ -27539,8 +24135,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12201 components: - pos: -27.5,23.5 @@ -27548,8 +24142,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12202 components: - pos: -27.5,22.5 @@ -27557,8 +24149,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12203 components: - pos: -27.5,21.5 @@ -27566,8 +24156,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12204 components: - pos: -27.5,20.5 @@ -27575,8 +24163,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12205 components: - pos: -27.5,19.5 @@ -27584,8 +24170,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12206 components: - pos: -27.5,18.5 @@ -27593,8 +24177,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12207 components: - pos: -27.5,17.5 @@ -27602,8 +24184,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12208 components: - pos: -26.5,17.5 @@ -27611,8 +24191,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12209 components: - pos: -25.5,17.5 @@ -27620,8 +24198,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12210 components: - pos: -28.5,23.5 @@ -27629,8 +24205,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12211 components: - pos: -25.5,32.5 @@ -27638,176 +24212,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12212 components: - pos: -26.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12213 components: - pos: -27.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12214 components: - pos: -28.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12215 components: - pos: -28.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12216 components: - pos: -29.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12217 components: - pos: -30.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12218 components: - pos: -30.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12219 components: - pos: -30.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12220 components: - pos: -30.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12221 components: - pos: -30.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12222 components: - pos: -30.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12223 components: - pos: -30.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12224 components: - pos: -30.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12225 components: - pos: -30.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12226 components: - pos: -30.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12227 components: - pos: -30.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12228 components: - pos: -30.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12229 components: - pos: -30.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12230 components: - pos: -30.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12231 components: - pos: -30.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12232 components: - pos: -30.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12233 components: - pos: -30.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12234 components: - pos: -27.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12235 components: - pos: -27.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12246 components: - pos: -8.5,23.5 @@ -27815,57 +24339,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12247 components: - pos: -7.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12248 components: - pos: -6.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12249 components: - pos: -5.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12250 components: - pos: -4.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12251 components: - pos: -3.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12252 components: - pos: -5.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12253 components: - pos: -5.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12254 components: - pos: -5.5,20.5 @@ -27873,253 +24381,181 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12255 components: - pos: -5.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12256 components: - pos: -5.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12257 components: - pos: -5.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12258 components: - pos: -4.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12259 components: - pos: -3.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12260 components: - pos: -2.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12261 components: - pos: -1.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12262 components: - pos: -1.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12263 components: - pos: -1.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12264 components: - pos: -1.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12265 components: - pos: -1.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12266 components: - pos: -1.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12267 components: - pos: -1.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12268 components: - pos: -1.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12269 components: - pos: -1.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12270 components: - pos: -1.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12271 components: - pos: -1.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12272 components: - pos: -1.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12273 components: - pos: -1.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12274 components: - pos: -1.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12275 components: - pos: -1.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12276 components: - pos: -1.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12277 components: - pos: -5.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12278 components: - pos: -5.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12279 components: - pos: -6.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12280 components: - pos: -7.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12281 components: - pos: -8.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12282 components: - pos: -9.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12283 components: - pos: -10.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12284 components: - pos: -11.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12285 components: - pos: -12.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12286 components: - pos: -4.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12287 components: - pos: -3.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12288 components: - pos: -2.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12289 components: - pos: -1.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12326 components: - pos: -35.5,25.5 @@ -28127,260 +24563,186 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12327 components: - pos: -36.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12328 components: - pos: -37.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12329 components: - pos: -38.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12330 components: - pos: -39.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12331 components: - pos: -40.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12332 components: - pos: -41.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12333 components: - pos: -42.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12337 components: - pos: -38.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12338 components: - pos: -38.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12339 components: - pos: -38.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12340 components: - pos: -38.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12341 components: - pos: -38.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12342 components: - pos: -38.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12343 components: - pos: -38.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12344 components: - pos: -38.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12345 components: - pos: -38.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12346 components: - pos: -38.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12347 components: - pos: -38.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12348 components: - pos: -38.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12349 components: - pos: -38.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12350 components: - pos: -37.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12351 components: - pos: -37.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12352 components: - pos: -37.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12353 components: - pos: -38.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12354 components: - pos: -39.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12355 components: - pos: -40.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12356 components: - pos: -41.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12357 components: - pos: -42.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12358 components: - pos: -43.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12359 components: - pos: -44.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12360 components: - pos: -45.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12361 components: - pos: -46.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12362 components: - pos: -47.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12363 components: - pos: -48.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12364 components: - pos: -49.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12365 components: - pos: -50.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12366 components: - pos: -52.5,15.5 @@ -28388,22 +24750,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12367 components: - pos: -51.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12368 components: - pos: -49.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12369 components: - pos: -49.5,17.5 @@ -28411,15 +24767,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12370 components: - pos: -47.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12371 components: - pos: -47.5,17.5 @@ -28427,36 +24779,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12372 components: - pos: -49.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12373 components: - pos: -49.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12374 components: - pos: -50.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12375 components: - pos: -51.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12376 components: - pos: -52.5,13.5 @@ -28464,36 +24806,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12377 components: - pos: -36.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12378 components: - pos: -35.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12379 components: - pos: -35.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12380 components: - pos: -35.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12381 components: - pos: -35.5,18.5 @@ -28501,8 +24833,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12382 components: - pos: -35.5,19.5 @@ -28510,8 +24840,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12383 components: - pos: -35.5,20.5 @@ -28519,8 +24847,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12384 components: - pos: -35.5,21.5 @@ -28528,8 +24854,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12385 components: - pos: -34.5,21.5 @@ -28537,8 +24861,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12386 components: - pos: -34.5,22.5 @@ -28546,8 +24868,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12387 components: - pos: -34.5,23.5 @@ -28555,8 +24875,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12388 components: - pos: -34.5,24.5 @@ -28564,8 +24882,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12389 components: - pos: -34.5,25.5 @@ -28573,8 +24889,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12390 components: - pos: -34.5,26.5 @@ -28582,8 +24896,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12391 components: - pos: -34.5,27.5 @@ -28591,8 +24903,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12392 components: - pos: -34.5,28.5 @@ -28600,8 +24910,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12393 components: - pos: -34.5,29.5 @@ -28609,8 +24917,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12394 components: - pos: -34.5,30.5 @@ -28618,8 +24924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12395 components: - pos: -34.5,31.5 @@ -28627,8 +24931,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12396 components: - pos: -34.5,32.5 @@ -28636,8 +24938,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12397 components: - pos: -34.5,33.5 @@ -28645,8 +24945,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12398 components: - pos: -35.5,33.5 @@ -28654,8 +24952,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12399 components: - pos: -36.5,33.5 @@ -28663,8 +24959,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12400 components: - pos: -37.5,33.5 @@ -28672,8 +24966,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12401 components: - pos: -38.5,33.5 @@ -28681,8 +24973,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12402 components: - pos: -38.5,34.5 @@ -28690,8 +24980,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12543 components: - pos: 41.5,41.5 @@ -28699,141 +24987,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12544 components: - pos: 41.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12545 components: - pos: 41.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12546 components: - pos: 41.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12547 components: - pos: 42.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12548 components: - pos: 43.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12549 components: - pos: 44.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12550 components: - pos: 44.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12551 components: - pos: 45.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12552 components: - pos: 46.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12553 components: - pos: 47.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12554 components: - pos: 48.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12555 components: - pos: 48.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12556 components: - pos: 48.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12557 components: - pos: 48.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12558 components: - pos: 48.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12559 components: - pos: 48.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12560 components: - pos: 48.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12561 components: - pos: 48.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12562 components: - pos: 48.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12563 components: - pos: 48.5,34.5 @@ -28841,127 +25089,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12564 components: - pos: 47.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12565 components: - pos: 46.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12566 components: - pos: 45.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12567 components: - pos: 44.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12568 components: - pos: 43.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12569 components: - pos: 42.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12570 components: - pos: 41.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12571 components: - pos: 40.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12572 components: - pos: 39.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12573 components: - pos: 38.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12574 components: - pos: 37.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12575 components: - pos: 36.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12576 components: - pos: 35.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12577 components: - pos: 34.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12578 components: - pos: 34.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12579 components: - pos: 34.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12580 components: - pos: 34.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12581 components: - pos: 34.5,40.5 @@ -28969,8 +25181,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12582 components: - pos: 35.5,40.5 @@ -28978,8 +25188,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12583 components: - pos: 36.5,40.5 @@ -28987,8 +25195,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12584 components: - pos: 37.5,40.5 @@ -28996,8 +25202,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12585 components: - pos: 38.5,40.5 @@ -29005,8 +25209,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12586 components: - pos: 39.5,40.5 @@ -29014,8 +25216,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12587 components: - pos: 39.5,41.5 @@ -29023,8 +25223,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12588 components: - pos: 39.5,42.5 @@ -29032,8 +25230,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12589 components: - pos: 39.5,43.5 @@ -29041,8 +25237,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12590 components: - pos: 39.5,44.5 @@ -29050,15 +25244,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12591 components: - pos: 40.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12592 components: - pos: 38.5,44.5 @@ -29066,8 +25256,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12593 components: - pos: 38.5,45.5 @@ -29075,8 +25263,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12594 components: - pos: 38.5,46.5 @@ -29084,8 +25270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12595 components: - pos: 38.5,47.5 @@ -29093,8 +25277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12596 components: - pos: 38.5,48.5 @@ -29102,148 +25284,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12597 components: - pos: 39.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12598 components: - pos: 40.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12599 components: - pos: 41.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12600 components: - pos: 42.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12601 components: - pos: 43.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12602 components: - pos: 42.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12603 components: - pos: 42.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12604 components: - pos: 42.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12605 components: - pos: 43.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12606 components: - pos: 43.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12607 components: - pos: 44.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12608 components: - pos: 45.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12609 components: - pos: 43.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12610 components: - pos: 43.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12611 components: - pos: 43.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12612 components: - pos: 43.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12613 components: - pos: 43.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12614 components: - pos: 43.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12615 components: - pos: 43.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12616 components: - pos: 46.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12617 components: - pos: 46.5,34.5 @@ -29251,15 +25391,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12618 components: - pos: 50.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12619 components: - pos: 51.5,36.5 @@ -29267,8 +25403,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12620 components: - pos: 51.5,38.5 @@ -29276,29 +25410,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12621 components: - pos: 50.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12622 components: - pos: 49.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12623 components: - pos: 49.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12624 components: - pos: 27.5,51.5 @@ -29306,204 +25432,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12625 components: - pos: 27.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12626 components: - pos: 27.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12627 components: - pos: 27.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12628 components: - pos: 27.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12629 components: - pos: 27.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12630 components: - pos: 27.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12631 components: - pos: 27.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12632 components: - pos: 27.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12633 components: - pos: 28.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12634 components: - pos: 29.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12635 components: - pos: 30.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12636 components: - pos: 31.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12637 components: - pos: 32.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12638 components: - pos: 33.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12639 components: - pos: 34.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12640 components: - pos: 34.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12641 components: - pos: 34.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12642 components: - pos: 34.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12643 components: - pos: 34.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12644 components: - pos: 34.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12645 components: - pos: 34.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12646 components: - pos: 33.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12647 components: - pos: 32.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12648 components: - pos: 31.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12649 components: - pos: 30.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12650 components: - pos: 29.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12651 components: - pos: 28.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12652 components: - pos: 31.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12653 components: - pos: 31.5,51.5 @@ -29511,8 +25579,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12654 components: - pos: 32.5,51.5 @@ -29520,8 +25586,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12655 components: - pos: 32.5,52.5 @@ -29529,64 +25593,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12656 components: - pos: 32.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12657 components: - pos: 32.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12658 components: - pos: 32.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12659 components: - pos: 32.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12660 components: - pos: 31.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12661 components: - pos: 30.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12662 components: - pos: 33.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12663 components: - pos: 34.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12664 components: - pos: 33.5,51.5 @@ -29594,8 +25640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12665 components: - pos: 34.5,51.5 @@ -29603,8 +25647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12666 components: - pos: 35.5,51.5 @@ -29612,8 +25654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12667 components: - pos: 36.5,51.5 @@ -29621,8 +25661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12668 components: - pos: 36.5,52.5 @@ -29630,8 +25668,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12669 components: - pos: 36.5,53.5 @@ -29639,8 +25675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12670 components: - pos: 36.5,54.5 @@ -29648,8 +25682,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12671 components: - pos: 36.5,50.5 @@ -29657,8 +25689,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12672 components: - pos: 36.5,49.5 @@ -29666,8 +25696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12673 components: - pos: 36.5,48.5 @@ -29675,8 +25703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12674 components: - pos: 36.5,47.5 @@ -29684,8 +25710,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12675 components: - pos: 36.5,46.5 @@ -29693,8 +25717,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12676 components: - pos: 36.5,45.5 @@ -29702,8 +25724,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12677 components: - pos: 36.5,44.5 @@ -29711,8 +25731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12678 components: - pos: 36.5,43.5 @@ -29720,148 +25738,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12679 components: - pos: 30.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12680 components: - pos: 30.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12681 components: - pos: 30.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12682 components: - pos: 30.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12683 components: - pos: 30.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12684 components: - pos: 29.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12685 components: - pos: 28.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12686 components: - pos: 27.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12687 components: - pos: 26.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12688 components: - pos: 25.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12689 components: - pos: 26.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12690 components: - pos: 25.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12691 components: - pos: 26.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12692 components: - pos: 25.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12693 components: - pos: 25.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12694 components: - pos: 25.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12695 components: - pos: 25.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12696 components: - pos: 25.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12697 components: - pos: 24.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12698 components: - pos: 23.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12699 components: - pos: 22.5,51.5 @@ -29869,8 +25845,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12700 components: - pos: 22.5,52.5 @@ -29878,8 +25852,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12701 components: - pos: 22.5,53.5 @@ -29887,8 +25859,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12702 components: - pos: 22.5,54.5 @@ -29896,8 +25866,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12703 components: - pos: 22.5,55.5 @@ -29905,8 +25873,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12704 components: - pos: 22.5,56.5 @@ -29914,8 +25880,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12705 components: - pos: 22.5,57.5 @@ -29923,8 +25887,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12706 components: - pos: 23.5,57.5 @@ -29932,8 +25894,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12707 components: - pos: 24.5,57.5 @@ -29941,8 +25901,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12708 components: - pos: 25.5,57.5 @@ -29950,8 +25908,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12709 components: - pos: 26.5,57.5 @@ -29959,8 +25915,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12710 components: - pos: 27.5,57.5 @@ -29968,8 +25922,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12711 components: - pos: 28.5,57.5 @@ -29977,8 +25929,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12712 components: - pos: 28.5,56.5 @@ -29986,8 +25936,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12713 components: - pos: 28.5,55.5 @@ -29995,8 +25943,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12714 components: - pos: 28.5,54.5 @@ -30004,8 +25950,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12715 components: - pos: 28.5,53.5 @@ -30013,8 +25957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12716 components: - pos: 28.5,52.5 @@ -30022,8 +25964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12717 components: - pos: 29.5,52.5 @@ -30031,8 +25971,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12718 components: - pos: 29.5,51.5 @@ -30040,8 +25978,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12719 components: - pos: 30.5,51.5 @@ -30049,8 +25985,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12720 components: - pos: 24.5,42.5 @@ -30058,57 +25992,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12721 components: - pos: 23.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12722 components: - pos: 22.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12723 components: - pos: 21.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12724 components: - pos: 20.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12725 components: - pos: 19.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12726 components: - pos: 18.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12727 components: - pos: 17.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12728 components: - pos: 25.5,42.5 @@ -30116,8 +26034,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12729 components: - pos: 25.5,43.5 @@ -30125,8 +26041,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12730 components: - pos: 25.5,44.5 @@ -30134,8 +26048,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12731 components: - pos: 25.5,45.5 @@ -30143,8 +26055,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12732 components: - pos: 24.5,45.5 @@ -30152,8 +26062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12733 components: - pos: 23.5,45.5 @@ -30161,8 +26069,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12734 components: - pos: 22.5,45.5 @@ -30170,8 +26076,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12735 components: - pos: 22.5,46.5 @@ -30179,8 +26083,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12736 components: - pos: 22.5,47.5 @@ -30188,8 +26090,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12737 components: - pos: 22.5,48.5 @@ -30197,8 +26097,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12738 components: - pos: 22.5,49.5 @@ -30206,8 +26104,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12739 components: - pos: 21.5,49.5 @@ -30215,8 +26111,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12740 components: - pos: 20.5,49.5 @@ -30224,8 +26118,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12741 components: - pos: 19.5,49.5 @@ -30233,8 +26125,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12742 components: - pos: 18.5,49.5 @@ -30242,8 +26132,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12743 components: - pos: 17.5,49.5 @@ -30251,8 +26139,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12744 components: - pos: 16.5,49.5 @@ -30260,8 +26146,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12745 components: - pos: 16.5,50.5 @@ -30269,8 +26153,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12746 components: - pos: 16.5,51.5 @@ -30278,8 +26160,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12747 components: - pos: 16.5,52.5 @@ -30287,15 +26167,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12748 components: - pos: 17.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12749 components: - pos: 18.5,52.5 @@ -30303,8 +26179,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12750 components: - pos: 19.5,52.5 @@ -30312,8 +26186,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12751 components: - pos: 20.5,52.5 @@ -30321,8 +26193,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12752 components: - pos: 20.5,53.5 @@ -30330,8 +26200,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12753 components: - pos: 15.5,50.5 @@ -30339,8 +26207,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12754 components: - pos: 15.5,49.5 @@ -30348,99 +26214,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12755 components: - pos: 15.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12756 components: - pos: 15.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12757 components: - pos: 15.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12758 components: - pos: 15.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12759 components: - pos: 15.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12760 components: - pos: 15.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12761 components: - pos: 15.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12762 components: - pos: 15.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12763 components: - pos: 15.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12764 components: - pos: 16.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12765 components: - pos: 17.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12766 components: - pos: 18.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12767 components: - pos: 19.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12768 components: - pos: 20.5,45.5 @@ -30448,8 +26286,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12769 components: - pos: 21.5,45.5 @@ -30457,64 +26293,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12770 components: - pos: 14.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12771 components: - pos: 13.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12772 components: - pos: 12.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12773 components: - pos: 11.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12774 components: - pos: 14.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12775 components: - pos: 13.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12776 components: - pos: 12.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12777 components: - pos: 11.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12778 components: - pos: 14.5,50.5 @@ -30522,8 +26340,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12779 components: - pos: 13.5,50.5 @@ -30531,8 +26347,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12780 components: - pos: 12.5,50.5 @@ -30540,8 +26354,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12781 components: - pos: 11.5,50.5 @@ -30549,8 +26361,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12782 components: - pos: 10.5,50.5 @@ -30558,8 +26368,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12783 components: - pos: 9.5,50.5 @@ -30567,8 +26375,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12784 components: - pos: 9.5,49.5 @@ -30576,8 +26382,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12785 components: - pos: 9.5,48.5 @@ -30585,8 +26389,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12786 components: - pos: 9.5,47.5 @@ -30594,8 +26396,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12787 components: - pos: 9.5,46.5 @@ -30603,8 +26403,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12788 components: - pos: 9.5,45.5 @@ -30612,8 +26410,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12789 components: - pos: 9.5,44.5 @@ -30621,8 +26417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12790 components: - pos: 9.5,43.5 @@ -30630,8 +26424,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12791 components: - pos: 9.5,42.5 @@ -30639,8 +26431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12792 components: - pos: 9.5,41.5 @@ -30648,8 +26438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12793 components: - pos: 8.5,41.5 @@ -30657,8 +26445,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12794 components: - pos: 7.5,41.5 @@ -30666,8 +26452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12795 components: - pos: 6.5,41.5 @@ -30675,8 +26459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12796 components: - pos: 5.5,41.5 @@ -30684,8 +26466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12797 components: - pos: 4.5,41.5 @@ -30693,8 +26473,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12798 components: - pos: 3.5,41.5 @@ -30702,8 +26480,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12799 components: - pos: 2.5,41.5 @@ -30711,8 +26487,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12800 components: - pos: 6.5,46.5 @@ -30720,134 +26494,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12801 components: - pos: 5.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12802 components: - pos: 4.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12803 components: - pos: 3.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12804 components: - pos: 2.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12805 components: - pos: 1.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12806 components: - pos: 0.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12807 components: - pos: 0.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12808 components: - pos: 0.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12809 components: - pos: 0.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12810 components: - pos: 0.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12811 components: - pos: 0.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12812 components: - pos: 0.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12813 components: - pos: 0.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12814 components: - pos: 0.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12815 components: - pos: 0.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12816 components: - pos: 0.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12817 components: - pos: 5.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12818 components: - pos: 5.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12819 components: - pos: 5.5,49.5 @@ -30855,8 +26591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12826 components: - pos: 36.5,55.5 @@ -30864,8 +26598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12827 components: - pos: 37.5,54.5 @@ -30873,8 +26605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12828 components: - pos: 37.5,55.5 @@ -30882,8 +26612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12829 components: - pos: 37.5,56.5 @@ -30891,8 +26619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12830 components: - pos: 37.5,57.5 @@ -30900,8 +26626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12831 components: - pos: 37.5,58.5 @@ -30909,8 +26633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12832 components: - pos: 37.5,59.5 @@ -30918,8 +26640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12833 components: - pos: 37.5,60.5 @@ -30927,246 +26647,176 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12834 components: - pos: 17.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12835 components: - pos: 17.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12836 components: - pos: 17.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12837 components: - pos: 17.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12838 components: - pos: 16.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12839 components: - pos: 15.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12840 components: - pos: 15.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12841 components: - pos: 13.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12842 components: - pos: 12.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12843 components: - pos: 11.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12844 components: - pos: 10.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12845 components: - pos: 9.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12846 components: - pos: 8.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12847 components: - pos: 7.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12848 components: - pos: 6.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12849 components: - pos: 5.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12850 components: - pos: 4.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12851 components: - pos: 3.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12852 components: - pos: 2.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12853 components: - pos: 1.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12854 components: - pos: 0.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12855 components: - pos: -8.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12856 components: - pos: 18.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12857 components: - pos: 19.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12858 components: - pos: 20.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12859 components: - pos: 21.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12860 components: - pos: 22.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12861 components: - pos: 23.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12923 components: - pos: 2.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12924 components: - pos: 3.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12925 components: - pos: 4.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12926 components: - pos: 5.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12927 components: - pos: 6.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12928 components: - pos: 7.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12929 components: - pos: 8.5,31.5 @@ -31174,190 +26824,136 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12930 components: - pos: 9.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12931 components: - pos: 10.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12932 components: - pos: 11.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12933 components: - pos: 12.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12934 components: - pos: 13.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12935 components: - pos: 14.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12936 components: - pos: 15.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12937 components: - pos: 16.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12938 components: - pos: 16.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12939 components: - pos: 16.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12940 components: - pos: 16.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12941 components: - pos: 2.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12942 components: - pos: 2.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12943 components: - pos: 2.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12944 components: - pos: 5.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12945 components: - pos: 5.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12946 components: - pos: 5.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12947 components: - pos: 10.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12948 components: - pos: 10.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12949 components: - pos: 10.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12950 components: - pos: 4.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12951 components: - pos: 4.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12952 components: - pos: 4.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12953 components: - pos: 4.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12954 components: - pos: 10.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12955 components: - pos: 6.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12956 components: - pos: 5.5,26.5 @@ -31365,267 +26961,191 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12957 components: - pos: 6.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12958 components: - pos: 6.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12959 components: - pos: 6.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12960 components: - pos: 6.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12961 components: - pos: 6.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12962 components: - pos: 7.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12963 components: - pos: 8.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12964 components: - pos: 9.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12965 components: - pos: 9.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12966 components: - pos: 5.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12967 components: - pos: 4.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12968 components: - pos: 3.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12969 components: - pos: 2.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12970 components: - pos: 2.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12971 components: - pos: 2.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12972 components: - pos: 3.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12973 components: - pos: 3.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12974 components: - pos: 3.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12975 components: - pos: 3.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12976 components: - pos: 10.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12977 components: - pos: 10.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12978 components: - pos: 10.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12979 components: - pos: 10.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12980 components: - pos: 10.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12981 components: - pos: 10.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12982 components: - pos: 9.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12983 components: - pos: 8.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12984 components: - pos: 7.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12985 components: - pos: 6.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12986 components: - pos: 11.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12987 components: - pos: 12.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12988 components: - pos: 12.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12989 components: - pos: 12.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12990 components: - pos: 12.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12991 components: - pos: 12.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12992 components: - pos: 12.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12993 components: - pos: 11.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12994 components: - pos: 17.5,19.5 @@ -31633,288 +27153,206 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12995 components: - pos: 16.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12996 components: - pos: 15.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12997 components: - pos: 14.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12998 components: - pos: 13.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12999 components: - pos: 12.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13000 components: - pos: 11.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13001 components: - pos: 10.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13002 components: - pos: 9.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13003 components: - pos: 8.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13004 components: - pos: 7.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13005 components: - pos: 6.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13006 components: - pos: 6.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13007 components: - pos: 5.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13008 components: - pos: 4.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13009 components: - pos: 3.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13010 components: - pos: 2.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13011 components: - pos: 1.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13012 components: - pos: 4.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13013 components: - pos: 4.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13014 components: - pos: 4.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13015 components: - pos: 3.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13016 components: - pos: 2.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13017 components: - pos: 1.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13018 components: - pos: 0.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13019 components: - pos: 5.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13020 components: - pos: 6.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13021 components: - pos: 7.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13022 components: - pos: 8.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13023 components: - pos: 9.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13024 components: - pos: 10.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13025 components: - pos: 11.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13026 components: - pos: 12.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13027 components: - pos: 13.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13028 components: - pos: 14.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13029 components: - pos: 15.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13030 components: - pos: 16.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13031 components: - pos: 17.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13032 components: - pos: 18.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13033 components: - pos: 19.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13034 components: - pos: 19.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13035 components: - pos: 19.5,17.5 @@ -31922,8 +27360,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13036 components: - pos: 19.5,18.5 @@ -31931,8 +27367,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13037 components: - pos: 19.5,19.5 @@ -31940,15 +27374,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13038 components: - pos: 18.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13039 components: - pos: 20.5,30.5 @@ -31956,141 +27386,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13040 components: - pos: 20.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13041 components: - pos: 20.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13042 components: - pos: 20.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13043 components: - pos: 20.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13044 components: - pos: 19.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13045 components: - pos: 21.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13046 components: - pos: 20.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13047 components: - pos: 20.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13048 components: - pos: 20.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13049 components: - pos: 20.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13050 components: - pos: 21.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13051 components: - pos: 22.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13053 components: - pos: 18.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13054 components: - pos: 18.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13055 components: - pos: 17.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13056 components: - pos: 16.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13057 components: - pos: 15.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13058 components: - pos: 14.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13059 components: - pos: 23.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13060 components: - pos: 24.5,27.5 @@ -32098,8 +27488,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13061 components: - pos: 24.5,28.5 @@ -32107,8 +27495,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13062 components: - pos: 24.5,29.5 @@ -32116,85 +27502,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13063 components: - pos: 24.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13064 components: - pos: 24.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13065 components: - pos: 24.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13066 components: - pos: 24.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13067 components: - pos: 24.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13068 components: - pos: 25.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13069 components: - pos: 26.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13070 components: - pos: 27.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13071 components: - pos: 27.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13072 components: - pos: 27.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13073 components: - pos: 27.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13074 components: - pos: 24.5,23.5 @@ -32202,8 +27564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13075 components: - pos: 24.5,24.5 @@ -32211,8 +27571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13076 components: - pos: 24.5,25.5 @@ -32220,8 +27578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13077 components: - pos: 25.5,25.5 @@ -32229,652 +27585,466 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13078 components: - pos: 26.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13079 components: - pos: 27.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13080 components: - pos: 28.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13081 components: - pos: 29.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13082 components: - pos: 30.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13083 components: - pos: 31.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13084 components: - pos: 32.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13085 components: - pos: 32.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13086 components: - pos: 32.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13087 components: - pos: 32.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13088 components: - pos: 32.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13089 components: - pos: 32.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13090 components: - pos: 32.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13091 components: - pos: 32.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13092 components: - pos: 32.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13093 components: - pos: 32.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13094 components: - pos: 32.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13095 components: - pos: 32.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13096 components: - pos: 32.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13097 components: - pos: 32.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13098 components: - pos: 32.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13099 components: - pos: 32.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13100 components: - pos: 32.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13101 components: - pos: 32.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13102 components: - pos: 32.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13103 components: - pos: 32.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13104 components: - pos: 32.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13105 components: - pos: 32.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13106 components: - pos: 31.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13107 components: - pos: 30.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13108 components: - pos: 29.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13109 components: - pos: 28.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13110 components: - pos: 27.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13111 components: - pos: 26.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13112 components: - pos: 25.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13113 components: - pos: 24.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13114 components: - pos: 23.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13115 components: - pos: 22.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13116 components: - pos: 21.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13117 components: - pos: 23.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13118 components: - pos: 23.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13119 components: - pos: 23.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13120 components: - pos: 23.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13121 components: - pos: 23.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13122 components: - pos: 23.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13123 components: - pos: 24.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13124 components: - pos: 24.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13125 components: - pos: 24.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13126 components: - pos: 24.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13127 components: - pos: 25.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13128 components: - pos: 26.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13129 components: - pos: 27.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13130 components: - pos: 27.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13131 components: - pos: 28.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13132 components: - pos: 29.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13133 components: - pos: 30.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13134 components: - pos: 31.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13135 components: - pos: 29.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13136 components: - pos: 29.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13137 components: - pos: 29.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13138 components: - pos: 29.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13139 components: - pos: 30.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13140 components: - pos: 31.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13186 components: - pos: 11.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13187 components: - pos: 11.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13188 components: - pos: 11.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13189 components: - pos: 10.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13190 components: - pos: 9.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13191 components: - pos: 8.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13192 components: - pos: 7.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13193 components: - pos: 6.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13194 components: - pos: 5.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13195 components: - pos: 4.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13208 components: - pos: 1.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13209 components: - pos: 0.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13210 components: - pos: 0.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13211 components: - pos: 0.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13212 components: - pos: 0.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13213 components: - pos: 0.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13214 components: - pos: 0.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13215 components: - pos: 0.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13216 components: - pos: 0.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13217 components: - pos: 0.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13218 components: - pos: 0.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13219 components: - pos: 0.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13220 components: - pos: 0.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13221 components: - pos: 0.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13222 components: - pos: 0.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13223 components: - pos: 0.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13224 components: - pos: 0.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13225 components: - pos: 15.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13226 components: - pos: 15.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13227 components: - pos: 15.5,22.5 @@ -32882,8 +28052,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13228 components: - pos: 14.5,22.5 @@ -32891,15 +28059,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13229 components: - pos: 14.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13230 components: - pos: 14.5,24.5 @@ -32907,8 +28071,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13231 components: - pos: 15.5,24.5 @@ -32916,8 +28078,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13232 components: - pos: 16.5,24.5 @@ -32925,8 +28085,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13234 components: - pos: 16.5,22.5 @@ -32934,8 +28092,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13235 components: - pos: 17.5,22.5 @@ -32943,36 +28099,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13236 components: - pos: 28.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13237 components: - pos: 28.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13238 components: - pos: 28.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13239 components: - pos: 28.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13240 components: - pos: 23.5,24.5 @@ -32980,8 +28126,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13241 components: - pos: 22.5,24.5 @@ -32989,8 +28133,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13242 components: - pos: 21.5,24.5 @@ -32998,8 +28140,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13243 components: - pos: 20.5,24.5 @@ -33007,8 +28147,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13244 components: - pos: 19.5,24.5 @@ -33016,169 +28154,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13245 components: - pos: 24.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13246 components: - pos: 25.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13247 components: - pos: 27.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13248 components: - pos: 27.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13249 components: - pos: 33.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13250 components: - pos: 34.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13251 components: - pos: 35.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13252 components: - pos: 36.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13253 components: - pos: 37.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13254 components: - pos: 38.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13255 components: - pos: 39.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13256 components: - pos: 40.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13257 components: - pos: 41.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13258 components: - pos: 42.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13259 components: - pos: 43.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13260 components: - pos: 44.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13261 components: - pos: 45.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13262 components: - pos: 46.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13263 components: - pos: 47.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13264 components: - pos: 48.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13265 components: - pos: 49.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13266 components: - pos: 49.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13267 components: - pos: 50.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13268 components: - pos: 51.5,15.5 @@ -33186,22 +28276,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13269 components: - pos: 48.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13270 components: - pos: 48.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13271 components: - pos: 48.5,17.5 @@ -33209,22 +28293,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13272 components: - pos: 46.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13273 components: - pos: 46.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13274 components: - pos: 46.5,17.5 @@ -33232,22 +28310,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13275 components: - pos: 49.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13276 components: - pos: 50.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13277 components: - pos: 51.5,13.5 @@ -33255,155 +28327,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13278 components: - pos: 46.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13279 components: - pos: 46.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13280 components: - pos: -33.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13281 components: - pos: -32.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13282 components: - pos: -32.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13283 components: - pos: -32.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13284 components: - pos: -32.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13285 components: - pos: -32.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13286 components: - pos: -32.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13287 components: - pos: -32.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13288 components: - pos: -32.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13289 components: - pos: -32.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13290 components: - pos: -32.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13291 components: - pos: -32.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13292 components: - pos: -32.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13293 components: - pos: -32.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13294 components: - pos: -32.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13295 components: - pos: -32.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13296 components: - pos: -32.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13297 components: - pos: -32.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13298 components: - pos: -32.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13534 components: - pos: -21.5,-1.5 @@ -33411,8 +28439,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13535 components: - pos: -21.5,-2.5 @@ -33420,15 +28446,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13536 components: - pos: -22.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13537 components: - pos: -23.5,-2.5 @@ -33436,8 +28458,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13538 components: - pos: -24.5,-2.5 @@ -33445,8 +28465,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13539 components: - pos: -25.5,-2.5 @@ -33454,8 +28472,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13540 components: - pos: -20.5,-2.5 @@ -33463,8 +28479,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13541 components: - pos: -19.5,-2.5 @@ -33472,8 +28486,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13542 components: - pos: -19.5,-3.5 @@ -33481,8 +28493,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13543 components: - pos: -19.5,-4.5 @@ -33490,8 +28500,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13544 components: - pos: -19.5,-5.5 @@ -33499,8 +28507,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13545 components: - pos: -20.5,-5.5 @@ -33508,8 +28514,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13546 components: - pos: -21.5,-5.5 @@ -33517,8 +28521,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13547 components: - pos: -22.5,-5.5 @@ -33526,8 +28528,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13548 components: - pos: -23.5,-5.5 @@ -33535,8 +28535,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13549 components: - pos: -24.5,-5.5 @@ -33544,8 +28542,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13550 components: - pos: -25.5,-5.5 @@ -33553,8 +28549,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13551 components: - pos: -26.5,-5.5 @@ -33562,8 +28556,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13552 components: - pos: -27.5,-5.5 @@ -33571,8 +28563,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13553 components: - pos: -27.5,-4.5 @@ -33580,8 +28570,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13554 components: - pos: -27.5,-3.5 @@ -33589,8 +28577,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13555 components: - pos: -27.5,-2.5 @@ -33598,8 +28584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13556 components: - pos: -27.5,-1.5 @@ -33607,8 +28591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13557 components: - pos: -27.5,-0.5 @@ -33616,8 +28598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13558 components: - pos: -27.5,0.5 @@ -33625,8 +28605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13559 components: - pos: -27.5,1.5 @@ -33634,8 +28612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13560 components: - pos: -28.5,1.5 @@ -33643,323 +28619,231 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13561 components: - pos: -29.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13562 components: - pos: -30.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13563 components: - pos: -30.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13564 components: - pos: -30.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13565 components: - pos: -30.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13566 components: - pos: -30.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13567 components: - pos: -30.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13568 components: - pos: -30.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13569 components: - pos: -30.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13570 components: - pos: -30.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13571 components: - pos: -30.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13572 components: - pos: -30.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13573 components: - pos: -30.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13574 components: - pos: -29.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13575 components: - pos: -28.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13576 components: - pos: -27.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13577 components: - pos: -26.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13578 components: - pos: -26.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13579 components: - pos: -25.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13580 components: - pos: -24.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13581 components: - pos: -23.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13582 components: - pos: -22.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13583 components: - pos: -21.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13584 components: - pos: -20.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13585 components: - pos: -19.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13586 components: - pos: -18.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13587 components: - pos: -17.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13588 components: - pos: -16.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13589 components: - pos: -16.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13590 components: - pos: -16.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13591 components: - pos: -16.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13592 components: - pos: -16.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13593 components: - pos: -16.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13594 components: - pos: -16.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13595 components: - pos: -17.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13596 components: - pos: -18.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13597 components: - pos: -19.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13598 components: - pos: -20.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13599 components: - pos: -21.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13600 components: - pos: -22.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13601 components: - pos: -23.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13602 components: - pos: -24.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13603 components: - pos: -28.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13604 components: - pos: -31.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13605 components: - pos: -32.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13606 components: - pos: -19.5,-1.5 @@ -33967,8 +28851,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13607 components: - pos: -19.5,-0.5 @@ -33976,8 +28858,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13608 components: - pos: -19.5,0.5 @@ -33985,8 +28865,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13609 components: - pos: -19.5,1.5 @@ -33994,8 +28872,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13610 components: - pos: -19.5,2.5 @@ -34003,8 +28879,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13611 components: - pos: -19.5,3.5 @@ -34012,8 +28886,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13612 components: - pos: -19.5,4.5 @@ -34021,8 +28893,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13613 components: - pos: -19.5,5.5 @@ -34030,8 +28900,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13614 components: - pos: -19.5,6.5 @@ -34039,8 +28907,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13615 components: - pos: -19.5,7.5 @@ -34048,8 +28914,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13616 components: - pos: -18.5,7.5 @@ -34057,8 +28921,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13617 components: - pos: -17.5,7.5 @@ -34066,8 +28928,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13618 components: - pos: -16.5,7.5 @@ -34075,8 +28935,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13619 components: - pos: -15.5,7.5 @@ -34084,8 +28942,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13620 components: - pos: -15.5,8.5 @@ -34093,8 +28949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13621 components: - pos: -15.5,9.5 @@ -34102,8 +28956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13622 components: - pos: -15.5,10.5 @@ -34111,8 +28963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13623 components: - pos: -15.5,11.5 @@ -34120,8 +28970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13624 components: - pos: -21.5,8.5 @@ -34129,330 +28977,236 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13625 components: - pos: -22.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13626 components: - pos: -23.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13627 components: - pos: -24.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13628 components: - pos: -25.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13629 components: - pos: -26.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13630 components: - pos: -27.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13631 components: - pos: -28.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13632 components: - pos: -24.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13633 components: - pos: -24.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13634 components: - pos: -24.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13635 components: - pos: -24.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13636 components: - pos: -24.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13637 components: - pos: -24.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13638 components: - pos: -24.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13639 components: - pos: -24.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13640 components: - pos: -24.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13641 components: - pos: -24.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13642 components: - pos: -23.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13643 components: - pos: -22.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13644 components: - pos: -22.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13645 components: - pos: -22.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13646 components: - pos: -23.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13647 components: - pos: -24.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13648 components: - pos: -25.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13649 components: - pos: -26.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13650 components: - pos: -27.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13651 components: - pos: -28.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13652 components: - pos: -29.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13653 components: - pos: -30.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13654 components: - pos: -30.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13655 components: - pos: -30.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13656 components: - pos: -30.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13657 components: - pos: -30.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13658 components: - pos: -30.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13659 components: - pos: -30.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13660 components: - pos: -30.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13661 components: - pos: -21.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13662 components: - pos: -20.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13663 components: - pos: -19.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13664 components: - pos: -18.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13665 components: - pos: -17.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13666 components: - pos: -16.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13667 components: - pos: -15.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13668 components: - pos: -14.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13669 components: - pos: -13.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13670 components: - pos: -12.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13671 components: - pos: -11.5,5.5 @@ -34460,302 +29214,216 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13672 components: - pos: -11.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13673 components: - pos: -11.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13674 components: - pos: -11.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13675 components: - pos: -11.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13676 components: - pos: -11.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13677 components: - pos: -11.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13678 components: - pos: -11.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13679 components: - pos: -11.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13680 components: - pos: -11.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13681 components: - pos: -11.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13682 components: - pos: -11.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13683 components: - pos: -12.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13684 components: - pos: -13.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13685 components: - pos: -14.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13686 components: - pos: -15.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13687 components: - pos: -16.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13688 components: - pos: -17.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13689 components: - pos: -12.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13690 components: - pos: -13.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13691 components: - pos: -14.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13692 components: - pos: -15.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13693 components: - pos: -16.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13694 components: - pos: -17.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13695 components: - pos: -12.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13696 components: - pos: -13.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13697 components: - pos: -14.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13698 components: - pos: -15.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13699 components: - pos: -16.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13700 components: - pos: -17.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13701 components: - pos: -10.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13702 components: - pos: -9.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13703 components: - pos: -9.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13704 components: - pos: -9.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13705 components: - pos: -9.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13706 components: - pos: -9.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13707 components: - pos: -8.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13708 components: - pos: -8.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13709 components: - pos: -8.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13710 components: - pos: -8.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13711 components: - pos: -9.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13712 components: - pos: -10.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13713 components: - pos: -11.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13714 components: - pos: -12.5,11.5 @@ -34763,8 +29431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13715 components: - pos: -13.5,11.5 @@ -34772,8 +29438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13716 components: - pos: -13.5,10.5 @@ -34781,953 +29445,681 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13717 components: - pos: -7.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13718 components: - pos: -6.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13719 components: - pos: -8.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13720 components: - pos: -7.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13721 components: - pos: -6.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13722 components: - pos: -5.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13723 components: - pos: -4.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13724 components: - pos: -4.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13725 components: - pos: -4.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13726 components: - pos: -4.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13727 components: - pos: -4.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13728 components: - pos: -4.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13729 components: - pos: -4.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13730 components: - pos: -4.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13731 components: - pos: -3.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13732 components: - pos: -2.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13733 components: - pos: -1.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13734 components: - pos: -0.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13735 components: - pos: 0.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13736 components: - pos: 1.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13737 components: - pos: 2.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13738 components: - pos: 2.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13739 components: - pos: 2.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13740 components: - pos: 2.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13741 components: - pos: 2.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13742 components: - pos: 2.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13743 components: - pos: 2.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13744 components: - pos: 2.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13745 components: - pos: 2.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13746 components: - pos: 2.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13747 components: - pos: 2.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13748 components: - pos: 2.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13749 components: - pos: 2.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13750 components: - pos: 2.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13751 components: - pos: 2.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13752 components: - pos: 2.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13753 components: - pos: 2.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13754 components: - pos: 2.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13755 components: - pos: 2.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13756 components: - pos: 2.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13757 components: - pos: 1.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13758 components: - pos: 0.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13759 components: - pos: -0.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13760 components: - pos: -1.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13761 components: - pos: -2.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13762 components: - pos: -3.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13763 components: - pos: -4.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13764 components: - pos: -5.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13765 components: - pos: -6.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13766 components: - pos: -7.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13767 components: - pos: -8.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13768 components: - pos: -9.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13769 components: - pos: -10.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13770 components: - pos: -11.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13771 components: - pos: -12.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13772 components: - pos: -13.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13773 components: - pos: -14.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13774 components: - pos: -3.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13775 components: - pos: -3.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13776 components: - pos: -3.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13777 components: - pos: -3.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13778 components: - pos: -4.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13779 components: - pos: -5.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13780 components: - pos: -6.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13781 components: - pos: -7.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13782 components: - pos: -8.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13783 components: - pos: -9.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13784 components: - pos: -10.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13785 components: - pos: -2.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13786 components: - pos: -1.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13787 components: - pos: -0.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13788 components: - pos: 0.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13789 components: - pos: 1.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13790 components: - pos: -3.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13791 components: - pos: -3.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13792 components: - pos: -3.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13793 components: - pos: -3.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13794 components: - pos: -3.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13795 components: - pos: -3.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13796 components: - pos: -3.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13797 components: - pos: -3.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13798 components: - pos: -2.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13799 components: - pos: -1.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13800 components: - pos: -0.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13801 components: - pos: 0.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13802 components: - pos: 1.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13803 components: - pos: -8.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13804 components: - pos: -8.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13805 components: - pos: -8.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13806 components: - pos: -8.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13807 components: - pos: -8.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13808 components: - pos: -8.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13809 components: - pos: -8.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13810 components: - pos: -2.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13811 components: - pos: -1.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13812 components: - pos: -0.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13813 components: - pos: 0.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13814 components: - pos: 1.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13815 components: - pos: -3.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13816 components: - pos: -2.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13817 components: - pos: -1.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13818 components: - pos: -0.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13819 components: - pos: 0.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13820 components: - pos: 1.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13821 components: - pos: -3.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13822 components: - pos: -3.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13823 components: - pos: -4.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13824 components: - pos: -5.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13825 components: - pos: -6.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13826 components: - pos: -7.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13827 components: - pos: -8.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13828 components: - pos: -9.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13829 components: - pos: -10.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13830 components: - pos: -2.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13831 components: - pos: -1.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13832 components: - pos: -0.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13833 components: - pos: 0.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13834 components: - pos: 1.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13835 components: - pos: 2.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13836 components: - pos: 3.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13837 components: - pos: 4.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13838 components: - pos: 5.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13839 components: - pos: 6.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13840 components: - pos: 7.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13841 components: - pos: 8.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13842 components: - pos: 9.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13843 components: - pos: 10.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13844 components: - pos: 11.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13845 components: - pos: 12.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13846 components: - pos: 13.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13847 components: - pos: 14.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13848 components: - pos: 15.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13849 components: - pos: 16.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13850 components: - pos: 17.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13851 components: - pos: 18.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13887 components: - pos: 10.5,62.5 @@ -35735,8 +30127,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13888 components: - pos: 10.5,63.5 @@ -35744,8 +30134,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13889 components: - pos: 9.5,63.5 @@ -35753,8 +30141,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13890 components: - pos: 8.5,63.5 @@ -35762,8 +30148,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13891 components: - pos: 7.5,63.5 @@ -35771,8 +30155,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13892 components: - pos: 7.5,64.5 @@ -35780,435 +30162,311 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13893 components: - pos: 7.5,65.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13894 components: - pos: 7.5,66.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13895 components: - pos: 10.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13896 components: - pos: 9.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13897 components: - pos: 8.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13898 components: - pos: 7.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13899 components: - pos: 7.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13900 components: - pos: 6.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13901 components: - pos: 5.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13902 components: - pos: 4.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13903 components: - pos: 3.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13904 components: - pos: 2.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13905 components: - pos: 2.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13906 components: - pos: 2.5,62.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13907 components: - pos: 2.5,63.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13908 components: - pos: 1.5,63.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13909 components: - pos: 0.5,63.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13910 components: - pos: 0.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13911 components: - pos: 0.5,65.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13912 components: - pos: 0.5,66.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13913 components: - pos: 1.5,66.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13914 components: - pos: 2.5,66.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13915 components: - pos: 3.5,66.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13916 components: - pos: 4.5,66.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13917 components: - pos: 5.5,66.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13918 components: - pos: 6.5,66.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13919 components: - pos: 0.5,62.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13920 components: - pos: 0.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13921 components: - pos: 0.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13922 components: - pos: 0.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13923 components: - pos: 0.5,58.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13924 components: - pos: 0.5,57.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13925 components: - pos: 0.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13926 components: - pos: 0.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13927 components: - pos: 0.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13928 components: - pos: 0.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13929 components: - pos: 0.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13930 components: - pos: 1.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13931 components: - pos: 2.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13932 components: - pos: 3.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13933 components: - pos: 4.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13934 components: - pos: 5.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13935 components: - pos: 6.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13936 components: - pos: 7.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13937 components: - pos: 8.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13938 components: - pos: 9.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13939 components: - pos: 10.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13940 components: - pos: 11.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13941 components: - pos: 12.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13942 components: - pos: 13.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13943 components: - pos: 14.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13944 components: - pos: 14.5,57.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13945 components: - pos: 14.5,58.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13946 components: - pos: 14.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13947 components: - pos: 14.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13948 components: - pos: 14.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13949 components: - pos: 13.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13950 components: - pos: 12.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13951 components: - pos: 11.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13952 components: - pos: 10.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13953 components: - pos: 15.5,58.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13954 components: - pos: 16.5,58.5 @@ -36216,8 +30474,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13955 components: - pos: 17.5,58.5 @@ -36225,8 +30481,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13956 components: - pos: 18.5,58.5 @@ -36234,8 +30488,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13957 components: - pos: 18.5,59.5 @@ -36243,8 +30495,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13958 components: - pos: 18.5,60.5 @@ -36252,8 +30502,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13959 components: - pos: 18.5,61.5 @@ -36261,8 +30509,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13960 components: - pos: 18.5,62.5 @@ -36270,8 +30516,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13961 components: - pos: 18.5,63.5 @@ -36279,8 +30523,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13962 components: - pos: 17.5,63.5 @@ -36288,8 +30530,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13963 components: - pos: 16.5,63.5 @@ -36297,8 +30537,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13964 components: - pos: 15.5,63.5 @@ -36306,8 +30544,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13965 components: - pos: 14.5,63.5 @@ -36315,8 +30551,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13966 components: - pos: 13.5,63.5 @@ -36324,8 +30558,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13967 components: - pos: 12.5,63.5 @@ -36333,8 +30565,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13968 components: - pos: 11.5,63.5 @@ -36342,127 +30572,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13969 components: - pos: 14.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13970 components: - pos: 14.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13971 components: - pos: 14.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13972 components: - pos: 14.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13973 components: - pos: 13.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13974 components: - pos: 12.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13975 components: - pos: 11.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13976 components: - pos: 10.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13977 components: - pos: 9.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13978 components: - pos: 8.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13979 components: - pos: 7.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13980 components: - pos: 6.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13981 components: - pos: 5.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13982 components: - pos: 4.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13983 components: - pos: 4.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13984 components: - pos: 4.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13985 components: - pos: 4.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13986 components: - pos: 19.5,58.5 @@ -36470,8 +30664,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13987 components: - pos: 19.5,57.5 @@ -36479,8 +30671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13988 components: - pos: 19.5,56.5 @@ -36488,8 +30678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13989 components: - pos: 18.5,56.5 @@ -36497,8 +30685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13990 components: - pos: 17.5,56.5 @@ -36506,8 +30692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13991 components: - pos: 16.5,56.5 @@ -36515,8 +30699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13992 components: - pos: 16.5,55.5 @@ -36524,8 +30706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13993 components: - pos: 16.5,54.5 @@ -36533,15 +30713,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14446 components: - pos: 32.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15386 components: - pos: -35.5,8.5 @@ -36549,92 +30725,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15387 components: - pos: -35.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15388 components: - pos: -35.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15389 components: - pos: -45.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15390 components: - pos: -45.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15391 components: - pos: -35.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15392 components: - pos: -35.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15393 components: - pos: -36.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15394 components: - pos: -37.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15395 components: - pos: -38.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15396 components: - pos: -39.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15397 components: - pos: -40.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15398 components: - pos: -34.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 15399 components: - pos: -33.5,10.5 @@ -36642,8 +30792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16385 components: - pos: -12.5,-43.5 @@ -36651,8 +30799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16386 components: - pos: -11.5,-43.5 @@ -36660,8 +30806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16387 components: - pos: -10.5,-43.5 @@ -36669,8 +30813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16388 components: - pos: 11.5,-43.5 @@ -36678,8 +30820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16389 components: - pos: 10.5,-43.5 @@ -36687,8 +30827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16390 components: - pos: 9.5,-43.5 @@ -36696,57 +30834,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17312 components: - pos: 5.5,80.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 17313 components: - pos: 6.5,80.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 17315 components: - pos: -6.5,80.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 17316 components: - pos: -6.5,80.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 17317 components: - pos: -7.5,80.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 17328 components: - pos: 43.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18064 components: - pos: 16.5,-40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18066 components: - pos: 21.5,-30.5 @@ -36754,57 +30876,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18069 components: - pos: -17.5,-40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18072 components: - pos: -35.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18073 components: - pos: -36.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18074 components: - pos: -36.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18075 components: - pos: -36.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18094 components: - pos: -44.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18132 components: - pos: 14.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18133 components: - pos: -33.5,41.5 @@ -36812,8 +30918,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18134 components: - pos: -23.5,57.5 @@ -36821,8 +30925,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18135 components: - pos: -22.5,57.5 @@ -36830,22 +30932,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18197 components: - pos: 34.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18198 components: - pos: 34.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18199 components: - pos: 35.5,3.5 @@ -36853,8 +30949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18200 components: - pos: 36.5,3.5 @@ -36862,15 +30956,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18201 components: - pos: 34.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18202 components: - pos: 35.5,1.5 @@ -36878,8 +30968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18203 components: - pos: 36.5,1.5 @@ -36887,29 +30975,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18204 components: - pos: 34.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18259 components: - pos: 35.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18260 components: - pos: 36.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18318 components: - pos: -19.5,63.5 @@ -36917,15 +30997,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18319 components: - pos: -19.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18467 components: - pos: 16.5,-10.5 @@ -36933,29 +31009,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18468 components: - pos: 16.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18469 components: - pos: 17.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18470 components: - pos: 18.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - proto: CableApcStack entities: - uid: 1766 @@ -36963,15 +31031,11 @@ entities: - pos: -42.50212,21.737055 parent: 1 type: Transform - - nextSound: 3203.4095693 - type: EmitSoundOnCollide - uid: 7462 components: - pos: 22.493486,-23.113226 parent: 1 type: Transform - - nextSound: 1127.0789323 - type: EmitSoundOnCollide - uid: 8668 components: - pos: -6.657152,21.752699 @@ -37023,8 +31087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 177 components: - pos: -43.5,72.5 @@ -37032,8 +31094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 179 components: - pos: -45.5,72.5 @@ -37041,22 +31101,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1224 components: - pos: -20.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 1990 components: - pos: 22.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 2048 components: - pos: -40.5,72.5 @@ -37064,8 +31118,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3249 components: - pos: -35.5,74.5 @@ -37073,8 +31125,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3460 components: - pos: 13.5,-40.5 @@ -37082,8 +31132,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3566 components: - pos: 38.5,-11.5 @@ -37091,15 +31139,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3805 components: - pos: 15.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 3833 components: - pos: 5.5,-28.5 @@ -37107,8 +31151,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3834 components: - pos: 7.5,-28.5 @@ -37116,8 +31158,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4595 components: - pos: -6.5,-70.5 @@ -37125,8 +31165,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4596 components: - pos: -6.5,-69.5 @@ -37134,8 +31172,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4597 components: - pos: -6.5,-68.5 @@ -37143,8 +31179,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4598 components: - pos: -6.5,-67.5 @@ -37152,8 +31186,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4599 components: - pos: -6.5,-66.5 @@ -37161,8 +31193,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4600 components: - pos: -6.5,-65.5 @@ -37170,8 +31200,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4601 components: - pos: -6.5,-64.5 @@ -37179,8 +31207,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4602 components: - pos: -8.5,-70.5 @@ -37188,8 +31214,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4603 components: - pos: -8.5,-69.5 @@ -37197,8 +31221,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4604 components: - pos: -8.5,-68.5 @@ -37206,8 +31228,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4605 components: - pos: -8.5,-67.5 @@ -37215,8 +31235,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4606 components: - pos: -8.5,-66.5 @@ -37224,8 +31242,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4607 components: - pos: -8.5,-65.5 @@ -37233,8 +31249,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4608 components: - pos: -8.5,-64.5 @@ -37242,8 +31256,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4609 components: - pos: -7.5,-64.5 @@ -37251,8 +31263,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4610 components: - pos: -7.5,-63.5 @@ -37260,8 +31270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4611 components: - pos: -7.5,-62.5 @@ -37269,8 +31277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4612 components: - pos: -7.5,-61.5 @@ -37278,8 +31284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4613 components: - pos: -7.5,-60.5 @@ -37287,8 +31291,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4614 components: - pos: -7.5,-59.5 @@ -37296,8 +31298,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4615 components: - pos: -7.5,-58.5 @@ -37305,8 +31305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4616 components: - pos: -7.5,-57.5 @@ -37314,8 +31312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4617 components: - pos: -7.5,-56.5 @@ -37323,8 +31319,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4618 components: - pos: -7.5,-55.5 @@ -37332,8 +31326,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4619 components: - pos: -7.5,-54.5 @@ -37341,8 +31333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4620 components: - pos: -8.5,-54.5 @@ -37350,8 +31340,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4621 components: - pos: -9.5,-54.5 @@ -37359,8 +31347,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4622 components: - pos: -9.5,-53.5 @@ -37368,8 +31354,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4623 components: - pos: -9.5,-52.5 @@ -37377,8 +31361,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4624 components: - pos: -9.5,-51.5 @@ -37386,8 +31368,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4625 components: - pos: -9.5,-50.5 @@ -37395,8 +31375,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4626 components: - pos: -9.5,-49.5 @@ -37404,8 +31382,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4627 components: - pos: -9.5,-48.5 @@ -37413,8 +31389,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4628 components: - pos: -9.5,-47.5 @@ -37422,8 +31396,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4629 components: - pos: -10.5,-47.5 @@ -37431,8 +31403,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4630 components: - pos: -11.5,-47.5 @@ -37440,8 +31410,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4631 components: - pos: -12.5,-47.5 @@ -37449,8 +31417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4632 components: - pos: -13.5,-47.5 @@ -37458,8 +31424,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4633 components: - pos: -14.5,-47.5 @@ -37467,8 +31431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4634 components: - pos: -15.5,-47.5 @@ -37476,8 +31438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4635 components: - pos: -15.5,-46.5 @@ -37485,8 +31445,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4636 components: - pos: -15.5,-45.5 @@ -37494,8 +31452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4637 components: - pos: -15.5,-44.5 @@ -37503,8 +31459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4638 components: - pos: -15.5,-43.5 @@ -37512,8 +31466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4639 components: - pos: -10.5,-51.5 @@ -37521,8 +31473,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4640 components: - pos: -11.5,-51.5 @@ -37530,8 +31480,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4641 components: - pos: -11.5,-50.5 @@ -37539,8 +31487,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4642 components: - pos: -12.5,-50.5 @@ -37548,8 +31494,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4643 components: - pos: -12.5,-49.5 @@ -37557,8 +31501,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4644 components: - pos: -10.5,-53.5 @@ -37566,8 +31508,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4645 components: - pos: -10.5,-54.5 @@ -37575,8 +31515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4646 components: - pos: -10.5,-55.5 @@ -37584,8 +31522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4647 components: - pos: -10.5,-56.5 @@ -37593,8 +31529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4648 components: - pos: -9.5,-56.5 @@ -37602,8 +31536,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4649 components: - pos: -9.5,-57.5 @@ -37611,8 +31543,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4650 components: - pos: -9.5,-58.5 @@ -37620,8 +31550,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4651 components: - pos: -9.5,-59.5 @@ -37629,8 +31557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4652 components: - pos: -8.5,-59.5 @@ -37638,8 +31564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4653 components: - pos: -8.5,-60.5 @@ -37647,8 +31571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4654 components: - pos: -8.5,-61.5 @@ -37656,8 +31578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4655 components: - pos: -8.5,-62.5 @@ -37665,8 +31585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4656 components: - pos: -6.5,-62.5 @@ -37674,8 +31592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4657 components: - pos: -5.5,-62.5 @@ -37683,8 +31599,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4658 components: - pos: -5.5,-61.5 @@ -37692,8 +31606,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4659 components: - pos: -5.5,-60.5 @@ -37701,8 +31613,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4660 components: - pos: -5.5,-59.5 @@ -37710,8 +31620,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4661 components: - pos: -4.5,-59.5 @@ -37719,8 +31627,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4662 components: - pos: -4.5,-58.5 @@ -37728,8 +31634,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4663 components: - pos: -4.5,-57.5 @@ -37737,8 +31641,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4664 components: - pos: -4.5,-56.5 @@ -37746,8 +31648,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4665 components: - pos: -4.5,-55.5 @@ -37755,8 +31655,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4666 components: - pos: -4.5,-54.5 @@ -37764,8 +31662,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4667 components: - pos: -4.5,-53.5 @@ -37773,8 +31669,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4668 components: - pos: 3.5,-53.5 @@ -37782,8 +31676,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4669 components: - pos: 3.5,-54.5 @@ -37791,8 +31683,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4670 components: - pos: 3.5,-55.5 @@ -37800,8 +31690,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4671 components: - pos: 3.5,-56.5 @@ -37809,8 +31697,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4672 components: - pos: 3.5,-57.5 @@ -37818,8 +31704,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4673 components: - pos: 3.5,-58.5 @@ -37827,8 +31711,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4674 components: - pos: 3.5,-59.5 @@ -37836,8 +31718,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4675 components: - pos: 4.5,-59.5 @@ -37845,8 +31725,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4676 components: - pos: 4.5,-60.5 @@ -37854,8 +31732,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4677 components: - pos: 4.5,-61.5 @@ -37863,8 +31739,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4678 components: - pos: 4.5,-62.5 @@ -37872,8 +31746,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4679 components: - pos: 5.5,-62.5 @@ -37881,8 +31753,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4680 components: - pos: 6.5,-64.5 @@ -37890,8 +31760,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4681 components: - pos: 6.5,-63.5 @@ -37899,8 +31767,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4682 components: - pos: 6.5,-62.5 @@ -37908,8 +31774,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4683 components: - pos: 6.5,-61.5 @@ -37917,8 +31781,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4684 components: - pos: 6.5,-60.5 @@ -37926,8 +31788,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4685 components: - pos: 6.5,-59.5 @@ -37935,8 +31795,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4686 components: - pos: 6.5,-58.5 @@ -37944,8 +31802,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4687 components: - pos: 6.5,-57.5 @@ -37953,8 +31809,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4688 components: - pos: 6.5,-56.5 @@ -37962,8 +31816,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4689 components: - pos: 6.5,-55.5 @@ -37971,8 +31823,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4690 components: - pos: 6.5,-54.5 @@ -37980,8 +31830,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4691 components: - pos: -8.5,-47.5 @@ -37989,8 +31837,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4692 components: - pos: -7.5,-47.5 @@ -37998,8 +31844,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4693 components: - pos: -6.5,-47.5 @@ -38007,8 +31851,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4694 components: - pos: -5.5,-47.5 @@ -38016,8 +31858,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4695 components: - pos: -4.5,-47.5 @@ -38025,8 +31865,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4696 components: - pos: -3.5,-47.5 @@ -38034,8 +31872,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4697 components: - pos: -3.5,-48.5 @@ -38043,8 +31879,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4698 components: - pos: -3.5,-49.5 @@ -38052,8 +31886,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4704 components: - pos: 2.5,-49.5 @@ -38061,8 +31893,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4705 components: - pos: 2.5,-48.5 @@ -38070,8 +31900,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4706 components: - pos: 2.5,-47.5 @@ -38079,8 +31907,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4707 components: - pos: 3.5,-47.5 @@ -38088,8 +31914,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4708 components: - pos: 4.5,-47.5 @@ -38097,8 +31921,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4709 components: - pos: 5.5,-47.5 @@ -38106,8 +31928,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4710 components: - pos: 6.5,-47.5 @@ -38115,8 +31935,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4711 components: - pos: 7.5,-47.5 @@ -38124,8 +31942,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4712 components: - pos: 8.5,-47.5 @@ -38133,8 +31949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4713 components: - pos: 8.5,-48.5 @@ -38142,8 +31956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4714 components: - pos: 8.5,-49.5 @@ -38151,8 +31963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4715 components: - pos: 8.5,-50.5 @@ -38160,8 +31970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4716 components: - pos: 8.5,-51.5 @@ -38169,8 +31977,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4717 components: - pos: 8.5,-52.5 @@ -38178,8 +31984,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4718 components: - pos: 8.5,-53.5 @@ -38187,8 +31991,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4719 components: - pos: 8.5,-54.5 @@ -38196,8 +31998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4720 components: - pos: 7.5,-54.5 @@ -38205,8 +32005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4721 components: - pos: 9.5,-53.5 @@ -38214,8 +32012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4722 components: - pos: 9.5,-54.5 @@ -38223,8 +32019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4723 components: - pos: 9.5,-55.5 @@ -38232,8 +32026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4724 components: - pos: 9.5,-56.5 @@ -38241,8 +32033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4725 components: - pos: 8.5,-56.5 @@ -38250,8 +32040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4726 components: - pos: 8.5,-57.5 @@ -38259,8 +32047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4727 components: - pos: 8.5,-58.5 @@ -38268,8 +32054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4728 components: - pos: 8.5,-59.5 @@ -38277,8 +32061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4729 components: - pos: 7.5,-59.5 @@ -38286,8 +32068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4730 components: - pos: 7.5,-60.5 @@ -38295,8 +32075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4731 components: - pos: 7.5,-61.5 @@ -38304,8 +32082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4732 components: - pos: 7.5,-62.5 @@ -38313,8 +32089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4733 components: - pos: 9.5,-51.5 @@ -38322,8 +32096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4734 components: - pos: 10.5,-51.5 @@ -38331,8 +32103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4735 components: - pos: 10.5,-50.5 @@ -38340,8 +32110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4736 components: - pos: 11.5,-50.5 @@ -38349,8 +32117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4737 components: - pos: 11.5,-49.5 @@ -38358,8 +32124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4738 components: - pos: 13.5,-47.5 @@ -38367,8 +32131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4739 components: - pos: 14.5,-47.5 @@ -38376,8 +32138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4740 components: - pos: 14.5,-46.5 @@ -38385,8 +32145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4741 components: - pos: 14.5,-45.5 @@ -38394,8 +32152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4742 components: - pos: 14.5,-44.5 @@ -38403,8 +32159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4743 components: - pos: 14.5,-43.5 @@ -38412,8 +32166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4744 components: - pos: 12.5,-47.5 @@ -38421,8 +32173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4745 components: - pos: 12.5,-46.5 @@ -38430,8 +32180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4746 components: - pos: 12.5,-45.5 @@ -38439,8 +32187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4747 components: - pos: 12.5,-44.5 @@ -38448,8 +32194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4748 components: - pos: 12.5,-43.5 @@ -38457,8 +32201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4749 components: - pos: 12.5,-42.5 @@ -38466,8 +32208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4750 components: - pos: 12.5,-41.5 @@ -38475,8 +32215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4751 components: - pos: 12.5,-40.5 @@ -38484,8 +32222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4752 components: - pos: 12.5,-39.5 @@ -38493,106 +32229,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4753 components: - pos: 12.5,-38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4754 components: - pos: 12.5,-37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4755 components: - pos: 11.5,-37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4756 components: - pos: 11.5,-36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4757 components: - pos: 11.5,-35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4758 components: - pos: 14.5,-35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4759 components: - pos: 13.5,-35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4760 components: - pos: 13.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4761 components: - pos: 13.5,-33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4762 components: - pos: 13.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4763 components: - pos: 7.5,-33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4764 components: - pos: 7.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4765 components: - pos: 7.5,-35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4766 components: - pos: 7.5,-36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4767 components: - pos: 7.5,-37.5 @@ -38600,8 +32306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4768 components: - pos: 7.5,-38.5 @@ -38609,8 +32313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4769 components: - pos: 7.5,-39.5 @@ -38618,8 +32320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4770 components: - pos: 7.5,-40.5 @@ -38627,8 +32327,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4771 components: - pos: 6.5,-40.5 @@ -38636,8 +32334,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4772 components: - pos: 6.5,-39.5 @@ -38645,22 +32341,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4773 components: - pos: 7.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4774 components: - pos: 7.5,-31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4775 components: - pos: 7.5,-30.5 @@ -38668,8 +32358,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4776 components: - pos: 6.5,-30.5 @@ -38677,8 +32365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4777 components: - pos: 5.5,-30.5 @@ -38686,8 +32372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4778 components: - pos: 8.5,-30.5 @@ -38695,43 +32379,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4783 components: - pos: 5.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4784 components: - pos: 6.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4785 components: - pos: 7.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4786 components: - pos: 8.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4787 components: - pos: 9.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4788 components: - pos: 10.5,-29.5 @@ -38739,190 +32411,136 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4789 components: - pos: 11.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4790 components: - pos: 12.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4791 components: - pos: 12.5,-28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4792 components: - pos: 12.5,-27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4793 components: - pos: 12.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4794 components: - pos: 12.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4795 components: - pos: 12.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4796 components: - pos: 12.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4797 components: - pos: 12.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4798 components: - pos: 12.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4799 components: - pos: 12.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4800 components: - pos: 12.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4801 components: - pos: 12.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4802 components: - pos: 12.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4803 components: - pos: 12.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4804 components: - pos: 12.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4805 components: - pos: 12.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4806 components: - pos: 12.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4807 components: - pos: 12.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4808 components: - pos: 11.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4809 components: - pos: 10.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4810 components: - pos: 9.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4811 components: - pos: 8.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4812 components: - pos: 7.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4813 components: - pos: 6.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4814 components: - pos: 5.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4815 components: - pos: 4.5,-15.5 @@ -38930,8 +32548,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4816 components: - pos: 3.5,-15.5 @@ -38939,8 +32555,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4817 components: - pos: 2.5,-15.5 @@ -38948,8 +32562,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4818 components: - pos: 1.5,-15.5 @@ -38957,8 +32569,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4819 components: - pos: 0.5,-15.5 @@ -38966,8 +32576,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4820 components: - pos: -0.5,-15.5 @@ -38975,8 +32583,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4821 components: - pos: -1.5,-15.5 @@ -38984,8 +32590,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4822 components: - pos: -2.5,-15.5 @@ -38993,8 +32597,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4823 components: - pos: -3.5,-15.5 @@ -39002,8 +32604,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4824 components: - pos: -4.5,-15.5 @@ -39011,8 +32611,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4825 components: - pos: -5.5,-15.5 @@ -39020,120 +32618,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4826 components: - pos: -6.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4827 components: - pos: -7.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4828 components: - pos: -8.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4829 components: - pos: -9.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4830 components: - pos: -10.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4831 components: - pos: -11.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4832 components: - pos: -12.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4833 components: - pos: -12.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4834 components: - pos: -12.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4835 components: - pos: -12.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4836 components: - pos: -12.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4837 components: - pos: -12.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4838 components: - pos: -12.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4839 components: - pos: -12.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4840 components: - pos: -12.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4841 components: - pos: -12.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4842 components: - pos: -12.5,-25.5 @@ -39141,8 +32705,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4843 components: - pos: -13.5,-25.5 @@ -39150,36 +32712,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4844 components: - pos: -12.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4845 components: - pos: -12.5,-27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4846 components: - pos: -12.5,-28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4847 components: - pos: -12.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4848 components: - pos: -12.5,-30.5 @@ -39187,8 +32739,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4849 components: - pos: -13.5,-30.5 @@ -39196,64 +32746,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4850 components: - pos: -12.5,-31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4851 components: - pos: -12.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4852 components: - pos: -12.5,-33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4853 components: - pos: -12.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4854 components: - pos: -12.5,-35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4855 components: - pos: -12.5,-36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4856 components: - pos: -13.5,-36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4857 components: - pos: -14.5,-36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4858 components: - pos: -15.5,-36.5 @@ -39261,8 +32793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4859 components: - pos: -16.5,-36.5 @@ -39270,8 +32800,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4860 components: - pos: -16.5,-35.5 @@ -39279,8 +32807,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4861 components: - pos: -16.5,-34.5 @@ -39288,8 +32814,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4862 components: - pos: -16.5,-33.5 @@ -39297,8 +32821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4863 components: - pos: -16.5,-32.5 @@ -39306,8 +32828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4864 components: - pos: -16.5,-31.5 @@ -39315,8 +32835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4865 components: - pos: -17.5,-31.5 @@ -39324,8 +32842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4866 components: - pos: -18.5,-31.5 @@ -39333,8 +32849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4867 components: - pos: -18.5,-30.5 @@ -39342,8 +32856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4868 components: - pos: -18.5,-29.5 @@ -39351,8 +32863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4869 components: - pos: -18.5,-28.5 @@ -39360,8 +32870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4870 components: - pos: -18.5,-27.5 @@ -39369,8 +32877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4871 components: - pos: -18.5,-26.5 @@ -39378,8 +32884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4872 components: - pos: -18.5,-25.5 @@ -39387,8 +32891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4873 components: - pos: -18.5,-24.5 @@ -39396,8 +32898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4874 components: - pos: -19.5,-31.5 @@ -39405,8 +32905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4875 components: - pos: -20.5,-31.5 @@ -39414,8 +32912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4876 components: - pos: -17.5,-24.5 @@ -39423,8 +32919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4877 components: - pos: -16.5,-24.5 @@ -39432,8 +32926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4878 components: - pos: -16.5,-23.5 @@ -39441,8 +32933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4879 components: - pos: -16.5,-22.5 @@ -39450,8 +32940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4880 components: - pos: -16.5,-21.5 @@ -39459,155 +32947,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4881 components: - pos: -16.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4882 components: - pos: -16.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4883 components: - pos: -16.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4884 components: - pos: -16.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4885 components: - pos: -16.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4886 components: - pos: -16.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4887 components: - pos: -16.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4888 components: - pos: -16.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4889 components: - pos: -16.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4890 components: - pos: -16.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4891 components: - pos: -16.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4892 components: - pos: -16.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4893 components: - pos: -12.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4894 components: - pos: -12.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4895 components: - pos: -12.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4896 components: - pos: -12.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4897 components: - pos: -12.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4898 components: - pos: -12.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4899 components: - pos: -13.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4900 components: - pos: -14.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4901 components: - pos: -15.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4902 components: - pos: -20.5,-30.5 @@ -39615,8 +33059,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4903 components: - pos: -20.5,-29.5 @@ -39624,8 +33066,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4904 components: - pos: -20.5,-28.5 @@ -39633,8 +33073,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4905 components: - pos: -20.5,-27.5 @@ -39642,8 +33080,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4906 components: - pos: -20.5,-26.5 @@ -39651,8 +33087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4907 components: - pos: -21.5,-26.5 @@ -39660,8 +33094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4908 components: - pos: -22.5,-26.5 @@ -39669,8 +33101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4909 components: - pos: -23.5,-26.5 @@ -39678,8 +33108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4910 components: - pos: -24.5,-26.5 @@ -39687,8 +33115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4911 components: - pos: -25.5,-26.5 @@ -39696,8 +33122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4912 components: - pos: -26.5,-26.5 @@ -39705,8 +33129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4913 components: - pos: -27.5,-26.5 @@ -39714,8 +33136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4914 components: - pos: -28.5,-26.5 @@ -39723,8 +33143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4915 components: - pos: -29.5,-26.5 @@ -39732,8 +33150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4916 components: - pos: -29.5,-25.5 @@ -39741,8 +33157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4917 components: - pos: -29.5,-24.5 @@ -39750,8 +33164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4918 components: - pos: -29.5,-23.5 @@ -39759,8 +33171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4919 components: - pos: -29.5,-22.5 @@ -39768,8 +33178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4920 components: - pos: -29.5,-21.5 @@ -39777,8 +33185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4921 components: - pos: -29.5,-20.5 @@ -39786,8 +33192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4922 components: - pos: -29.5,-19.5 @@ -39795,8 +33199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4923 components: - pos: -29.5,-18.5 @@ -39804,8 +33206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4924 components: - pos: -29.5,-17.5 @@ -39813,8 +33213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4925 components: - pos: -29.5,-16.5 @@ -39822,8 +33220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4926 components: - pos: -28.5,-16.5 @@ -39831,15 +33227,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4927 components: - pos: -27.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4928 components: - pos: -26.5,-16.5 @@ -39847,8 +33239,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4929 components: - pos: -25.5,-16.5 @@ -39856,15 +33246,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4930 components: - pos: -25.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4932 components: - pos: -3.5,74.5 @@ -39872,8 +33258,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4933 components: - pos: -3.5,73.5 @@ -39881,8 +33265,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4934 components: - pos: -3.5,72.5 @@ -39890,15 +33272,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4935 components: - pos: -3.5,71.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4936 components: - pos: -3.5,70.5 @@ -39906,8 +33284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4937 components: - pos: -4.5,70.5 @@ -39915,8 +33291,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4938 components: - pos: -4.5,69.5 @@ -39924,8 +33298,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4939 components: - pos: -4.5,68.5 @@ -39933,8 +33305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4940 components: - pos: -4.5,67.5 @@ -39942,29 +33312,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4941 components: - pos: -3.5,67.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4942 components: - pos: -2.5,67.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4943 components: - pos: -1.5,67.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4944 components: - pos: -5.5,67.5 @@ -39972,8 +33334,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4945 components: - pos: -6.5,67.5 @@ -39981,8 +33341,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4946 components: - pos: -7.5,67.5 @@ -39990,8 +33348,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4947 components: - pos: -8.5,67.5 @@ -39999,8 +33355,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4948 components: - pos: -9.5,67.5 @@ -40008,8 +33362,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4949 components: - pos: -10.5,67.5 @@ -40017,8 +33369,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4950 components: - pos: -11.5,67.5 @@ -40026,8 +33376,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4951 components: - pos: -12.5,67.5 @@ -40035,8 +33383,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4952 components: - pos: -13.5,67.5 @@ -40044,8 +33390,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4953 components: - pos: -13.5,66.5 @@ -40053,8 +33397,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4954 components: - pos: -13.5,65.5 @@ -40062,8 +33404,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4955 components: - pos: -13.5,64.5 @@ -40071,8 +33411,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4956 components: - pos: -13.5,63.5 @@ -40080,8 +33418,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4957 components: - pos: -13.5,62.5 @@ -40089,8 +33425,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4958 components: - pos: -14.5,62.5 @@ -40098,8 +33432,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4959 components: - pos: -15.5,62.5 @@ -40107,8 +33439,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4960 components: - pos: -16.5,62.5 @@ -40116,8 +33446,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4961 components: - pos: -17.5,62.5 @@ -40125,8 +33453,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4962 components: - pos: -18.5,62.5 @@ -40134,8 +33460,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4963 components: - pos: -19.5,62.5 @@ -40143,8 +33467,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4964 components: - pos: -19.5,61.5 @@ -40152,8 +33474,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4965 components: - pos: -19.5,60.5 @@ -40161,8 +33481,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4966 components: - pos: -19.5,59.5 @@ -40170,8 +33488,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4967 components: - pos: -19.5,58.5 @@ -40179,8 +33495,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4968 components: - pos: -19.5,57.5 @@ -40188,8 +33502,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4969 components: - pos: -20.5,57.5 @@ -40197,8 +33509,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4970 components: - pos: -21.5,57.5 @@ -40206,8 +33516,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4971 components: - pos: -21.5,56.5 @@ -40215,8 +33523,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4972 components: - pos: -21.5,55.5 @@ -40224,8 +33530,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4973 components: - pos: -21.5,54.5 @@ -40233,8 +33537,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4974 components: - pos: -21.5,53.5 @@ -40242,8 +33544,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4975 components: - pos: -21.5,52.5 @@ -40251,8 +33551,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4976 components: - pos: -21.5,51.5 @@ -40260,50 +33558,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4977 components: - pos: -21.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4978 components: - pos: -21.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4979 components: - pos: -21.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4980 components: - pos: -21.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4981 components: - pos: -21.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4982 components: - pos: -21.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4983 components: - pos: -21.5,44.5 @@ -40311,8 +33595,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4984 components: - pos: -21.5,43.5 @@ -40320,8 +33602,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4985 components: - pos: -21.5,42.5 @@ -40329,8 +33609,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4986 components: - pos: -21.5,41.5 @@ -40338,8 +33616,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4987 components: - pos: -21.5,40.5 @@ -40347,36 +33623,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4988 components: - pos: -21.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4989 components: - pos: -21.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4990 components: - pos: -21.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4991 components: - pos: -21.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4992 components: - pos: -22.5,57.5 @@ -40384,8 +33650,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4993 components: - pos: -23.5,57.5 @@ -40393,8 +33657,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4994 components: - pos: -24.5,57.5 @@ -40402,8 +33664,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4995 components: - pos: -24.5,56.5 @@ -40411,8 +33671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4996 components: - pos: -24.5,55.5 @@ -40420,8 +33678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4997 components: - pos: -24.5,54.5 @@ -40429,15 +33685,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4998 components: - pos: -24.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 4999 components: - pos: -24.5,52.5 @@ -40445,8 +33697,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5000 components: - pos: -24.5,51.5 @@ -40454,8 +33704,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5001 components: - pos: -24.5,50.5 @@ -40463,85 +33711,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5002 components: - pos: -0.5,67.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5003 components: - pos: 0.5,67.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5004 components: - pos: 1.5,67.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5005 components: - pos: 2.5,67.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5006 components: - pos: 3.5,67.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5007 components: - pos: 4.5,67.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5008 components: - pos: 5.5,67.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5009 components: - pos: 6.5,67.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5010 components: - pos: 7.5,67.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5011 components: - pos: 7.5,66.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5012 components: - pos: 7.5,65.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5013 components: - pos: 7.5,64.5 @@ -40549,8 +33773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5014 components: - pos: 7.5,63.5 @@ -40558,8 +33780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5015 components: - pos: 8.5,63.5 @@ -40567,8 +33787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5016 components: - pos: 9.5,63.5 @@ -40576,8 +33794,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5017 components: - pos: 10.5,63.5 @@ -40585,8 +33801,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5018 components: - pos: 11.5,63.5 @@ -40594,8 +33808,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5019 components: - pos: 12.5,63.5 @@ -40603,8 +33815,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5020 components: - pos: 13.5,63.5 @@ -40612,8 +33822,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5021 components: - pos: 14.5,63.5 @@ -40621,8 +33829,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5022 components: - pos: 15.5,63.5 @@ -40630,8 +33836,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5023 components: - pos: 16.5,63.5 @@ -40639,8 +33843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5024 components: - pos: 17.5,63.5 @@ -40648,8 +33850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5025 components: - pos: 18.5,63.5 @@ -40657,8 +33857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5026 components: - pos: 18.5,62.5 @@ -40666,8 +33864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5027 components: - pos: 18.5,61.5 @@ -40675,8 +33871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5028 components: - pos: 18.5,60.5 @@ -40684,8 +33878,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5029 components: - pos: 18.5,59.5 @@ -40693,8 +33885,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5030 components: - pos: 18.5,58.5 @@ -40702,8 +33892,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5031 components: - pos: 19.5,58.5 @@ -40711,8 +33899,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5032 components: - pos: 19.5,57.5 @@ -40720,8 +33906,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5033 components: - pos: 19.5,56.5 @@ -40729,8 +33913,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5034 components: - pos: 18.5,56.5 @@ -40738,8 +33920,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5035 components: - pos: 17.5,56.5 @@ -40747,8 +33927,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5036 components: - pos: 16.5,56.5 @@ -40756,8 +33934,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5037 components: - pos: 20.5,56.5 @@ -40765,8 +33941,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5038 components: - pos: 21.5,56.5 @@ -40774,8 +33948,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5039 components: - pos: 22.5,56.5 @@ -40783,8 +33955,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5040 components: - pos: 22.5,55.5 @@ -40792,8 +33962,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5041 components: - pos: 22.5,54.5 @@ -40801,8 +33969,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5042 components: - pos: 22.5,53.5 @@ -40810,8 +33976,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5043 components: - pos: 22.5,52.5 @@ -40819,8 +33983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5044 components: - pos: 22.5,51.5 @@ -40828,8 +33990,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5045 components: - pos: 22.5,50.5 @@ -40837,8 +33997,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5046 components: - pos: 22.5,49.5 @@ -40846,8 +34004,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5047 components: - pos: 22.5,48.5 @@ -40855,8 +34011,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5048 components: - pos: 22.5,47.5 @@ -40864,8 +34018,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5049 components: - pos: 22.5,46.5 @@ -40873,8 +34025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5050 components: - pos: 22.5,45.5 @@ -40882,8 +34032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5051 components: - pos: 23.5,45.5 @@ -40891,8 +34039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5052 components: - pos: 24.5,45.5 @@ -40900,8 +34046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5053 components: - pos: 25.5,45.5 @@ -40909,8 +34053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5054 components: - pos: 25.5,44.5 @@ -40918,8 +34060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5055 components: - pos: 25.5,43.5 @@ -40927,8 +34067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5056 components: - pos: 25.5,42.5 @@ -40936,8 +34074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5057 components: - pos: 25.5,41.5 @@ -40945,8 +34081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5058 components: - pos: 25.5,40.5 @@ -40954,36 +34088,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5059 components: - pos: 25.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5060 components: - pos: 25.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5061 components: - pos: 25.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5062 components: - pos: 25.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5063 components: - pos: 16.5,55.5 @@ -40991,8 +34115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5064 components: - pos: 16.5,54.5 @@ -41000,8 +34122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5065 components: - pos: 16.5,53.5 @@ -41009,8 +34129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5066 components: - pos: 16.5,52.5 @@ -41018,8 +34136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5067 components: - pos: 16.5,52.5 @@ -41027,15 +34143,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5068 components: - pos: 17.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5069 components: - pos: 18.5,52.5 @@ -41043,8 +34155,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5070 components: - pos: 19.5,52.5 @@ -41052,8 +34162,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5071 components: - pos: 20.5,52.5 @@ -41061,8 +34169,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5072 components: - pos: 20.5,53.5 @@ -41070,8 +34176,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5073 components: - pos: 20.5,54.5 @@ -41079,743 +34183,531 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5074 components: - pos: -20.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5075 components: - pos: -19.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5076 components: - pos: -18.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5077 components: - pos: -17.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5078 components: - pos: -16.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5079 components: - pos: -15.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5080 components: - pos: -14.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5081 components: - pos: -13.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5082 components: - pos: -12.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5083 components: - pos: -11.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5084 components: - pos: -10.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5085 components: - pos: -9.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5086 components: - pos: -8.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5087 components: - pos: -7.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5088 components: - pos: -6.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5089 components: - pos: -5.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5090 components: - pos: -4.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5091 components: - pos: -3.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5092 components: - pos: -2.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5093 components: - pos: -1.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5094 components: - pos: -0.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5095 components: - pos: 0.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5096 components: - pos: 1.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5097 components: - pos: 2.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5098 components: - pos: 3.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5099 components: - pos: 4.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5100 components: - pos: 5.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5101 components: - pos: 6.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5102 components: - pos: 7.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5103 components: - pos: 8.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5104 components: - pos: 9.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5105 components: - pos: 10.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5106 components: - pos: 11.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5107 components: - pos: 12.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5108 components: - pos: 13.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5109 components: - pos: 14.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5110 components: - pos: 15.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5111 components: - pos: 16.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5112 components: - pos: 17.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5113 components: - pos: 18.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5114 components: - pos: 19.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5115 components: - pos: 20.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5116 components: - pos: 21.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5117 components: - pos: 22.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5118 components: - pos: 23.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5119 components: - pos: 24.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5120 components: - pos: -1.5,66.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5121 components: - pos: -1.5,65.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5122 components: - pos: -1.5,64.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5123 components: - pos: -1.5,63.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5124 components: - pos: -1.5,62.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5125 components: - pos: -1.5,61.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5126 components: - pos: -1.5,60.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5127 components: - pos: -1.5,59.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5128 components: - pos: -1.5,58.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5129 components: - pos: -1.5,57.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5130 components: - pos: -1.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5131 components: - pos: -1.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5132 components: - pos: -1.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5133 components: - pos: -1.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5134 components: - pos: -1.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5135 components: - pos: -1.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5136 components: - pos: -1.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5137 components: - pos: -1.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5138 components: - pos: -1.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5139 components: - pos: -1.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5140 components: - pos: -1.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5141 components: - pos: -1.5,45.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5142 components: - pos: -1.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5143 components: - pos: -1.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5144 components: - pos: -1.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5145 components: - pos: -1.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5146 components: - pos: -1.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5147 components: - pos: -1.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5148 components: - pos: -1.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5149 components: - pos: -1.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5150 components: - pos: 0.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5151 components: - pos: 0.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5152 components: - pos: 0.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5153 components: - pos: 0.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5154 components: - pos: 0.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5155 components: - pos: 0.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5156 components: - pos: 0.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5157 components: - pos: 0.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5158 components: - pos: 0.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5159 components: - pos: 0.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5160 components: - pos: 0.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5161 components: - pos: 0.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5162 components: - pos: 0.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5163 components: - pos: 0.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5164 components: - pos: 0.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5165 components: - pos: 0.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5166 components: - pos: 0.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5167 components: - pos: 0.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5168 components: - pos: 0.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5169 components: - pos: 0.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5170 components: - pos: 0.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5171 components: - pos: 0.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5172 components: - pos: 0.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5173 components: - pos: 25.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5174 components: - pos: 24.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5175 components: - pos: 24.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5176 components: - pos: 24.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5177 components: - pos: 24.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5178 components: - pos: 24.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5179 components: - pos: 24.5,29.5 @@ -41823,8 +34715,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5180 components: - pos: 24.5,28.5 @@ -41832,8 +34722,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5181 components: - pos: 24.5,27.5 @@ -41841,8 +34729,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5182 components: - pos: 24.5,26.5 @@ -41850,8 +34736,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5183 components: - pos: 24.5,25.5 @@ -41859,8 +34743,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5184 components: - pos: 24.5,24.5 @@ -41868,8 +34750,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5185 components: - pos: 23.5,24.5 @@ -41877,8 +34757,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5186 components: - pos: 22.5,24.5 @@ -41886,8 +34764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5187 components: - pos: 21.5,24.5 @@ -41895,8 +34771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5188 components: - pos: 20.5,24.5 @@ -41904,8 +34778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5189 components: - pos: 19.5,24.5 @@ -41913,8 +34785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5190 components: - pos: 19.5,23.5 @@ -41922,8 +34792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5191 components: - pos: 19.5,22.5 @@ -41931,8 +34799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5192 components: - pos: 19.5,21.5 @@ -41940,8 +34806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5193 components: - pos: 19.5,20.5 @@ -41949,8 +34813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5194 components: - pos: 19.5,19.5 @@ -41958,8 +34820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5195 components: - pos: 19.5,18.5 @@ -41967,8 +34827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5196 components: - pos: 19.5,17.5 @@ -41976,36 +34834,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5197 components: - pos: 19.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5198 components: - pos: 19.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5199 components: - pos: 19.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5200 components: - pos: 19.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5201 components: - pos: 18.5,22.5 @@ -42013,8 +34861,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5202 components: - pos: 17.5,22.5 @@ -42022,8 +34868,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5203 components: - pos: 16.5,22.5 @@ -42031,8 +34875,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5204 components: - pos: 15.5,22.5 @@ -42040,8 +34882,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5205 components: - pos: 14.5,22.5 @@ -42049,15 +34889,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5206 components: - pos: 14.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5207 components: - pos: 14.5,24.5 @@ -42065,582 +34901,416 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5208 components: - pos: 14.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5209 components: - pos: 15.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5210 components: - pos: 16.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5211 components: - pos: 18.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5212 components: - pos: 17.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5213 components: - pos: 16.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5214 components: - pos: 15.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5215 components: - pos: 14.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5216 components: - pos: 13.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5217 components: - pos: 12.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5218 components: - pos: 11.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5219 components: - pos: 10.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5220 components: - pos: 9.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5221 components: - pos: 8.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5222 components: - pos: 7.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5223 components: - pos: 6.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5224 components: - pos: 5.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5225 components: - pos: 4.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5226 components: - pos: 3.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5227 components: - pos: 2.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5228 components: - pos: 1.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5229 components: - pos: 26.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5230 components: - pos: 27.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5231 components: - pos: 28.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5232 components: - pos: 29.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5233 components: - pos: 30.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5234 components: - pos: 31.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5235 components: - pos: 32.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5236 components: - pos: 32.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5237 components: - pos: 32.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5238 components: - pos: 32.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5239 components: - pos: 32.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5240 components: - pos: 32.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5241 components: - pos: 32.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5242 components: - pos: 32.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5243 components: - pos: 32.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5244 components: - pos: 32.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5245 components: - pos: 32.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5246 components: - pos: 32.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5247 components: - pos: 32.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5248 components: - pos: 32.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5249 components: - pos: 32.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5250 components: - pos: 32.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5251 components: - pos: 32.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5252 components: - pos: 32.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5253 components: - pos: 32.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5254 components: - pos: 32.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5255 components: - pos: 32.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5256 components: - pos: 32.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5257 components: - pos: 32.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5258 components: - pos: 32.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5259 components: - pos: 32.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5260 components: - pos: 32.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5261 components: - pos: 32.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5262 components: - pos: 32.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5263 components: - pos: 32.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5264 components: - pos: 32.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5265 components: - pos: 31.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5266 components: - pos: 31.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5267 components: - pos: 31.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5268 components: - pos: 31.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5269 components: - pos: 31.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5270 components: - pos: 31.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5271 components: - pos: 31.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5272 components: - pos: 18.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5273 components: - pos: 31.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5274 components: - pos: 32.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5275 components: - pos: 32.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5276 components: - pos: 32.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5277 components: - pos: 32.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5278 components: - pos: 32.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5279 components: - pos: 32.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5280 components: - pos: 32.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5281 components: - pos: 32.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5282 components: - pos: 32.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5283 components: - pos: 32.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5284 components: - pos: 32.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5285 components: - pos: 33.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5286 components: - pos: 34.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5287 components: - pos: 35.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5288 components: - pos: 36.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5289 components: - pos: 37.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5290 components: - pos: 18.5,11.5 @@ -42648,8 +35318,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5291 components: - pos: 18.5,10.5 @@ -42657,8 +35325,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5292 components: - pos: 18.5,9.5 @@ -42666,8 +35332,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5293 components: - pos: 18.5,8.5 @@ -42675,8 +35339,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5294 components: - pos: 18.5,7.5 @@ -42684,8 +35346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5295 components: - pos: 18.5,6.5 @@ -42693,8 +35353,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5296 components: - pos: 17.5,6.5 @@ -42702,8 +35360,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5297 components: - pos: 16.5,6.5 @@ -42711,8 +35367,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5298 components: - pos: 15.5,6.5 @@ -42720,8 +35374,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5299 components: - pos: 14.5,5.5 @@ -42729,8 +35381,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5300 components: - pos: 14.5,4.5 @@ -42738,8 +35388,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5301 components: - pos: 14.5,3.5 @@ -42747,8 +35395,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5302 components: - pos: 14.5,2.5 @@ -42756,8 +35402,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5303 components: - pos: 14.5,1.5 @@ -42765,8 +35409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5304 components: - pos: 14.5,0.5 @@ -42774,8 +35416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5305 components: - pos: 14.5,-0.5 @@ -42783,8 +35423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5306 components: - pos: 14.5,6.5 @@ -42792,8 +35430,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5307 components: - pos: 14.5,-1.5 @@ -42801,8 +35437,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5308 components: - pos: 14.5,-2.5 @@ -42810,8 +35444,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5309 components: - pos: 14.5,-3.5 @@ -42819,8 +35451,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5310 components: - pos: 14.5,-4.5 @@ -42828,22 +35458,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5311 components: - pos: 14.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5312 components: - pos: 14.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5313 components: - pos: 15.5,-1.5 @@ -42851,8 +35475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5314 components: - pos: 16.5,-1.5 @@ -42860,8 +35482,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5315 components: - pos: 17.5,-1.5 @@ -42869,8 +35489,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5316 components: - pos: 18.5,-1.5 @@ -42878,8 +35496,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5317 components: - pos: 18.5,-0.5 @@ -42887,8 +35503,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5318 components: - pos: 18.5,0.5 @@ -42896,15 +35510,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5319 components: - pos: 18.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5320 components: - pos: 18.5,2.5 @@ -42912,8 +35522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5321 components: - pos: 18.5,3.5 @@ -42921,8 +35529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5322 components: - pos: 18.5,4.5 @@ -42930,1079 +35536,771 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5323 components: - pos: 17.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5324 components: - pos: 31.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5325 components: - pos: 30.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5326 components: - pos: 29.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5327 components: - pos: 28.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5328 components: - pos: 27.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5329 components: - pos: 26.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5330 components: - pos: 25.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5331 components: - pos: 24.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5332 components: - pos: 23.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5333 components: - pos: 22.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5334 components: - pos: 21.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5335 components: - pos: 20.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5336 components: - pos: 19.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5337 components: - pos: 18.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5338 components: - pos: 17.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5339 components: - pos: 16.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5340 components: - pos: 15.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5341 components: - pos: 14.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5342 components: - pos: 13.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5343 components: - pos: 12.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5344 components: - pos: 11.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5345 components: - pos: 11.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5346 components: - pos: 11.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5347 components: - pos: 11.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5349 components: - pos: 13.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5350 components: - pos: 10.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5351 components: - pos: 9.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5352 components: - pos: 8.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5353 components: - pos: 7.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5354 components: - pos: 6.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5355 components: - pos: 5.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5356 components: - pos: 4.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5357 components: - pos: 3.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5358 components: - pos: 2.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5359 components: - pos: 1.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5360 components: - pos: 0.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5361 components: - pos: -0.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5362 components: - pos: -1.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5363 components: - pos: -2.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5364 components: - pos: -3.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5365 components: - pos: -4.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5366 components: - pos: -5.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5367 components: - pos: -6.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5368 components: - pos: -7.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5369 components: - pos: -8.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5370 components: - pos: -9.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5371 components: - pos: -10.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5372 components: - pos: -11.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5373 components: - pos: -17.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5374 components: - pos: -18.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5375 components: - pos: -19.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5376 components: - pos: -20.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5377 components: - pos: -21.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5378 components: - pos: -22.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5379 components: - pos: -23.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5380 components: - pos: -24.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5381 components: - pos: -25.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5382 components: - pos: -26.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5383 components: - pos: -27.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5384 components: - pos: -28.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5385 components: - pos: -29.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5386 components: - pos: -30.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5387 components: - pos: -31.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5388 components: - pos: -32.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5389 components: - pos: -32.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5391 components: - pos: -32.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5392 components: - pos: -32.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5393 components: - pos: -32.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5394 components: - pos: -32.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5395 components: - pos: -32.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5396 components: - pos: -32.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5397 components: - pos: -32.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5398 components: - pos: -32.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5399 components: - pos: -32.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5400 components: - pos: -32.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5401 components: - pos: -32.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5402 components: - pos: -32.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5403 components: - pos: -32.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5404 components: - pos: -32.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5405 components: - pos: -32.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5406 components: - pos: -32.5,8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5407 components: - pos: -32.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5408 components: - pos: -32.5,10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5409 components: - pos: -32.5,11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5410 components: - pos: -32.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5411 components: - pos: -32.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5412 components: - pos: -31.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5413 components: - pos: -30.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5414 components: - pos: -29.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5415 components: - pos: -28.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5416 components: - pos: -27.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5417 components: - pos: -26.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5418 components: - pos: -25.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5419 components: - pos: -24.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5420 components: - pos: -23.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5421 components: - pos: -22.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5422 components: - pos: -21.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5423 components: - pos: -20.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5424 components: - pos: -19.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5425 components: - pos: -18.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5426 components: - pos: -17.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5427 components: - pos: -16.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5428 components: - pos: -15.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5429 components: - pos: -14.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5430 components: - pos: -13.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5431 components: - pos: -12.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5432 components: - pos: -11.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5433 components: - pos: -10.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5434 components: - pos: -9.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5435 components: - pos: -8.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5436 components: - pos: -7.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5437 components: - pos: -6.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5438 components: - pos: -5.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5439 components: - pos: -4.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5440 components: - pos: -3.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5441 components: - pos: -2.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5442 components: - pos: -1.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5443 components: - pos: -0.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5444 components: - pos: -30.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5445 components: - pos: -30.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5446 components: - pos: -30.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5447 components: - pos: -30.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5448 components: - pos: -30.5,18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5449 components: - pos: -30.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5450 components: - pos: -30.5,20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5451 components: - pos: -30.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5452 components: - pos: -30.5,22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5453 components: - pos: -30.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5454 components: - pos: -30.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5455 components: - pos: -30.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5456 components: - pos: -30.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5457 components: - pos: -30.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5458 components: - pos: -30.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5459 components: - pos: -30.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5460 components: - pos: -30.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5461 components: - pos: -30.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5462 components: - pos: -30.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5463 components: - pos: -30.5,33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5464 components: - pos: -30.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5465 components: - pos: -30.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5466 components: - pos: -30.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5467 components: - pos: -29.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5468 components: - pos: -28.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5469 components: - pos: -27.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5470 components: - pos: -26.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5471 components: - pos: -25.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5472 components: - pos: -24.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5473 components: - pos: -23.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5474 components: - pos: -22.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5475 components: - pos: -26.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5476 components: - pos: -26.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5477 components: - pos: -26.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5478 components: - pos: -26.5,-5.5 @@ -44010,8 +36308,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5479 components: - pos: -25.5,-5.5 @@ -44019,8 +36315,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5480 components: - pos: -24.5,-5.5 @@ -44028,8 +36322,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5481 components: - pos: -23.5,-5.5 @@ -44037,8 +36329,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5482 components: - pos: -22.5,-5.5 @@ -44046,8 +36336,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5483 components: - pos: -21.5,-5.5 @@ -44055,8 +36343,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5484 components: - pos: -20.5,-5.5 @@ -44064,8 +36350,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5485 components: - pos: -19.5,-5.5 @@ -44073,8 +36357,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5486 components: - pos: -19.5,-4.5 @@ -44082,8 +36364,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5487 components: - pos: -19.5,-3.5 @@ -44091,8 +36371,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5488 components: - pos: -19.5,-2.5 @@ -44100,8 +36378,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5489 components: - pos: -19.5,-1.5 @@ -44109,8 +36385,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5490 components: - pos: -19.5,-0.5 @@ -44118,8 +36392,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5491 components: - pos: -19.5,0.5 @@ -44127,8 +36399,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5492 components: - pos: -19.5,1.5 @@ -44136,8 +36406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5493 components: - pos: -19.5,2.5 @@ -44145,8 +36413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5494 components: - pos: -19.5,3.5 @@ -44154,8 +36420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5495 components: - pos: -19.5,4.5 @@ -44163,8 +36427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5496 components: - pos: -19.5,5.5 @@ -44172,8 +36434,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5497 components: - pos: -19.5,6.5 @@ -44181,8 +36441,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5498 components: - pos: -19.5,7.5 @@ -44190,8 +36448,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5499 components: - pos: -18.5,7.5 @@ -44199,8 +36455,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5500 components: - pos: -17.5,7.5 @@ -44208,8 +36462,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5501 components: - pos: -16.5,7.5 @@ -44217,8 +36469,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5502 components: - pos: -15.5,7.5 @@ -44226,8 +36476,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5503 components: - pos: -15.5,8.5 @@ -44235,8 +36483,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5504 components: - pos: -15.5,9.5 @@ -44244,8 +36490,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5505 components: - pos: -15.5,10.5 @@ -44253,8 +36497,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5506 components: - pos: -15.5,11.5 @@ -44262,15 +36504,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5507 components: - pos: -15.5,12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5508 components: - pos: -20.5,-2.5 @@ -44278,8 +36516,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5509 components: - pos: -21.5,-2.5 @@ -44287,15 +36523,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5510 components: - pos: -22.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5511 components: - pos: -23.5,-2.5 @@ -44303,8 +36535,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5512 components: - pos: -24.5,-2.5 @@ -44312,8 +36542,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5513 components: - pos: -25.5,-2.5 @@ -44321,8 +36549,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5514 components: - pos: -25.5,-1.5 @@ -44330,22 +36556,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5515 components: - pos: -25.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5516 components: - pos: -23.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5517 components: - pos: -23.5,34.5 @@ -44353,8 +36573,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5518 components: - pos: -23.5,33.5 @@ -44362,8 +36580,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5519 components: - pos: -23.5,32.5 @@ -44371,8 +36587,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5520 components: - pos: -23.5,31.5 @@ -44380,8 +36594,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5521 components: - pos: -23.5,30.5 @@ -44389,8 +36601,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5522 components: - pos: -23.5,29.5 @@ -44398,8 +36608,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5523 components: - pos: -23.5,28.5 @@ -44407,8 +36615,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5524 components: - pos: -23.5,27.5 @@ -44416,8 +36622,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5525 components: - pos: -23.5,26.5 @@ -44425,8 +36629,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5526 components: - pos: -23.5,25.5 @@ -44434,8 +36636,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5527 components: - pos: -22.5,27.5 @@ -44443,8 +36643,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5528 components: - pos: -21.5,27.5 @@ -44452,8 +36650,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5529 components: - pos: -20.5,27.5 @@ -44461,8 +36657,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5536 components: - pos: -21.5,29.5 @@ -44470,8 +36664,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5537 components: - pos: -21.5,30.5 @@ -44479,8 +36671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5538 components: - pos: -24.5,25.5 @@ -44488,8 +36678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5539 components: - pos: -25.5,25.5 @@ -44497,8 +36685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5540 components: - pos: -26.5,25.5 @@ -44506,8 +36692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5541 components: - pos: -27.5,25.5 @@ -44515,8 +36699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5542 components: - pos: -27.5,24.5 @@ -44524,8 +36706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5543 components: - pos: -27.5,23.5 @@ -44533,8 +36713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5544 components: - pos: -27.5,22.5 @@ -44542,8 +36720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5545 components: - pos: -27.5,21.5 @@ -44551,8 +36727,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5546 components: - pos: -27.5,20.5 @@ -44560,8 +36734,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5547 components: - pos: -27.5,19.5 @@ -44569,8 +36741,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5548 components: - pos: -27.5,18.5 @@ -44578,8 +36748,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5549 components: - pos: -27.5,17.5 @@ -44587,8 +36755,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5550 components: - pos: -26.5,17.5 @@ -44596,8 +36762,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5551 components: - pos: -25.5,17.5 @@ -44605,22 +36769,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5552 components: - pos: -25.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5553 components: - pos: -25.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5557 components: - pos: -28.5,23.5 @@ -44628,15 +36786,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5558 components: - pos: -29.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5559 components: - pos: 39.5,-11.5 @@ -44644,8 +36798,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5560 components: - pos: 37.5,-11.5 @@ -44653,8 +36805,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5561 components: - pos: 36.5,-11.5 @@ -44662,8 +36812,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5562 components: - pos: 35.5,-11.5 @@ -44671,8 +36819,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5563 components: - pos: 34.5,-11.5 @@ -44680,8 +36826,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5564 components: - pos: 33.5,-11.5 @@ -44689,8 +36833,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5565 components: - pos: 32.5,-11.5 @@ -44698,8 +36840,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5566 components: - pos: 32.5,-12.5 @@ -44707,8 +36847,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5567 components: - pos: 32.5,-13.5 @@ -44716,8 +36854,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5568 components: - pos: 32.5,-14.5 @@ -44725,8 +36861,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5569 components: - pos: 32.5,-15.5 @@ -44734,8 +36868,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5570 components: - pos: 31.5,-15.5 @@ -44743,8 +36875,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5571 components: - pos: 30.5,-15.5 @@ -44752,8 +36882,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5572 components: - pos: 30.5,-16.5 @@ -44761,8 +36889,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5573 components: - pos: 30.5,-17.5 @@ -44770,8 +36896,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5574 components: - pos: 30.5,-18.5 @@ -44779,8 +36903,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5575 components: - pos: 30.5,-19.5 @@ -44788,8 +36910,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5576 components: - pos: 30.5,-20.5 @@ -44797,8 +36917,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5577 components: - pos: 30.5,-21.5 @@ -44806,8 +36924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5578 components: - pos: 30.5,-22.5 @@ -44815,8 +36931,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5579 components: - pos: 30.5,-23.5 @@ -44824,8 +36938,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5580 components: - pos: 30.5,-24.5 @@ -44833,15 +36945,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5581 components: - pos: 29.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5582 components: - pos: 28.5,-19.5 @@ -44849,8 +36957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5583 components: - pos: 27.5,-19.5 @@ -44858,8 +36964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5584 components: - pos: 26.5,-19.5 @@ -44867,64 +36971,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5585 components: - pos: 26.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5586 components: - pos: 11.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5587 components: - pos: 10.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5588 components: - pos: 9.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5589 components: - pos: 8.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5590 components: - pos: 13.5,-31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5591 components: - pos: 13.5,-30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5592 components: - pos: 13.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5593 components: - pos: 15.5,-35.5 @@ -44932,8 +37018,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5595 components: - pos: 15.5,-29.5 @@ -44941,8 +37025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5596 components: - pos: 15.5,-30.5 @@ -44950,8 +37032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5599 components: - pos: 15.5,-33.5 @@ -44959,8 +37039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5600 components: - pos: 16.5,-29.5 @@ -44968,8 +37046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5601 components: - pos: 17.5,-29.5 @@ -44977,8 +37053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5602 components: - pos: 18.5,-29.5 @@ -44986,8 +37060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5603 components: - pos: 19.5,-29.5 @@ -44995,8 +37067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5604 components: - pos: 20.5,-29.5 @@ -45004,8 +37074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5605 components: - pos: 21.5,-29.5 @@ -45013,8 +37081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5606 components: - pos: 21.5,-28.5 @@ -45022,8 +37088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5607 components: - pos: 21.5,-27.5 @@ -45031,8 +37095,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5608 components: - pos: 22.5,-27.5 @@ -45040,8 +37102,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5609 components: - pos: 22.5,-26.5 @@ -45049,8 +37109,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5610 components: - pos: 22.5,-25.5 @@ -45058,22 +37116,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5611 components: - pos: 22.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5612 components: - pos: 23.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5613 components: - pos: 24.5,-24.5 @@ -45081,8 +37133,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5614 components: - pos: 25.5,-24.5 @@ -45090,8 +37140,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5615 components: - pos: 26.5,-24.5 @@ -45099,8 +37147,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5616 components: - pos: 27.5,-24.5 @@ -45108,8 +37154,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5617 components: - pos: 28.5,-24.5 @@ -45117,8 +37161,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5618 components: - pos: 29.5,-24.5 @@ -45126,8 +37168,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5706 components: - pos: -32.5,74.5 @@ -45135,15 +37175,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5936 components: - pos: -25.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5955 components: - pos: -20.5,29.5 @@ -45151,8 +37187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5957 components: - pos: 5.5,-64.5 @@ -45160,8 +37194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5958 components: - pos: 5.5,-65.5 @@ -45169,8 +37201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5959 components: - pos: 5.5,-66.5 @@ -45178,8 +37208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5960 components: - pos: 5.5,-67.5 @@ -45187,8 +37215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5961 components: - pos: 5.5,-68.5 @@ -45196,8 +37222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5962 components: - pos: 5.5,-69.5 @@ -45205,8 +37229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5963 components: - pos: 5.5,-70.5 @@ -45214,8 +37236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5964 components: - pos: 7.5,-70.5 @@ -45223,8 +37243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5965 components: - pos: 7.5,-69.5 @@ -45232,8 +37250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5966 components: - pos: 7.5,-68.5 @@ -45241,8 +37257,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5967 components: - pos: 7.5,-67.5 @@ -45250,8 +37264,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5968 components: - pos: 7.5,-66.5 @@ -45259,8 +37271,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5969 components: - pos: 7.5,-65.5 @@ -45268,8 +37278,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5970 components: - pos: 7.5,-64.5 @@ -45277,8 +37285,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5971 components: - pos: -30.5,-16.5 @@ -45286,8 +37292,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5972 components: - pos: -31.5,-16.5 @@ -45295,8 +37299,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5973 components: - pos: -32.5,-16.5 @@ -45304,8 +37306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5974 components: - pos: -33.5,-16.5 @@ -45313,8 +37313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5975 components: - pos: -34.5,-16.5 @@ -45322,8 +37320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5976 components: - pos: -35.5,-16.5 @@ -45331,8 +37327,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5977 components: - pos: -35.5,-15.5 @@ -45340,8 +37334,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5978 components: - pos: -35.5,-14.5 @@ -45349,8 +37341,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5979 components: - pos: -35.5,-13.5 @@ -45358,8 +37348,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5980 components: - pos: -35.5,-12.5 @@ -45367,8 +37355,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5981 components: - pos: -35.5,-11.5 @@ -45376,8 +37362,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5982 components: - pos: -35.5,-10.5 @@ -45385,8 +37369,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5983 components: - pos: -35.5,-9.5 @@ -45394,8 +37376,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5984 components: - pos: -35.5,-8.5 @@ -45403,8 +37383,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5985 components: - pos: -35.5,-7.5 @@ -45412,57 +37390,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5986 components: - pos: -34.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 5987 components: - pos: -33.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6036 components: - pos: 14.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6037 components: - pos: 14.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6046 components: - pos: 39.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6047 components: - pos: 39.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6048 components: - pos: 38.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6076 components: - pos: 15.5,-34.5 @@ -45470,8 +37432,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6079 components: - pos: 15.5,-31.5 @@ -45479,8 +37439,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6080 components: - pos: 15.5,-32.5 @@ -45488,15 +37446,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6102 components: - pos: 25.5,34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6408 components: - pos: 7.5,-16.5 @@ -45504,29 +37458,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6409 components: - pos: 7.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6410 components: - pos: 8.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6411 components: - pos: 8.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6440 components: - pos: -27.5,-5.5 @@ -45534,8 +37480,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6441 components: - pos: -27.5,-4.5 @@ -45543,8 +37487,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6442 components: - pos: -27.5,-3.5 @@ -45552,8 +37494,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6443 components: - pos: -27.5,-2.5 @@ -45561,8 +37501,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6444 components: - pos: -27.5,-1.5 @@ -45570,8 +37508,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6445 components: - pos: -27.5,-0.5 @@ -45579,8 +37515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6446 components: - pos: -27.5,0.5 @@ -45588,8 +37522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6447 components: - pos: -27.5,1.5 @@ -45597,8 +37529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6448 components: - pos: -28.5,1.5 @@ -45606,36 +37536,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6449 components: - pos: -29.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6450 components: - pos: -30.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6451 components: - pos: -31.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6500 components: - pos: 9.5,-28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6519 components: - pos: -44.5,74.5 @@ -45643,8 +37563,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6520 components: - pos: -42.5,74.5 @@ -45652,8 +37570,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6527 components: - pos: -46.5,72.5 @@ -45661,8 +37577,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6529 components: - pos: -40.5,74.5 @@ -45670,8 +37584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6539 components: - pos: -45.5,74.5 @@ -45679,8 +37591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6540 components: - pos: -47.5,74.5 @@ -45688,8 +37598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6541 components: - pos: -46.5,74.5 @@ -45697,8 +37605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6548 components: - pos: -36.5,74.5 @@ -45706,8 +37612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6572 components: - pos: -41.5,74.5 @@ -45715,8 +37619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6573 components: - pos: -47.5,72.5 @@ -45724,8 +37626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6574 components: - pos: -43.5,74.5 @@ -45733,8 +37633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6576 components: - pos: 6.5,-28.5 @@ -45742,8 +37640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6577 components: - pos: 8.5,-28.5 @@ -45751,8 +37647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6579 components: - pos: 6.5,-27.5 @@ -45760,8 +37654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6580 components: - pos: 7.5,-27.5 @@ -45769,8 +37661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6708 components: - pos: -35.5,21.5 @@ -45778,8 +37668,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6709 components: - pos: -35.5,20.5 @@ -45787,8 +37675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6710 components: - pos: -35.5,19.5 @@ -45796,71 +37682,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6711 components: - pos: -32.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6712 components: - pos: -33.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6726 components: - pos: -34.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6727 components: - pos: -35.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6728 components: - pos: -33.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6729 components: - pos: -35.5,14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6730 components: - pos: -35.5,15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6731 components: - pos: -35.5,16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6732 components: - pos: -35.5,17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6733 components: - pos: -35.5,18.5 @@ -45868,8 +37734,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6734 components: - pos: -34.5,21.5 @@ -45877,8 +37741,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6738 components: - pos: -34.5,22.5 @@ -45886,8 +37748,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6739 components: - pos: -34.5,23.5 @@ -45895,8 +37755,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6740 components: - pos: -34.5,24.5 @@ -45904,8 +37762,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6741 components: - pos: -34.5,25.5 @@ -45913,8 +37769,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6742 components: - pos: -34.5,26.5 @@ -45922,8 +37776,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6743 components: - pos: -34.5,27.5 @@ -45931,8 +37783,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6744 components: - pos: -34.5,28.5 @@ -45940,8 +37790,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6745 components: - pos: -34.5,29.5 @@ -45949,8 +37797,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6746 components: - pos: -34.5,30.5 @@ -45958,8 +37804,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6747 components: - pos: -34.5,31.5 @@ -45967,8 +37811,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6748 components: - pos: -34.5,32.5 @@ -45976,8 +37818,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6749 components: - pos: -34.5,33.5 @@ -45985,8 +37825,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6750 components: - pos: -35.5,33.5 @@ -45994,8 +37832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6751 components: - pos: -36.5,33.5 @@ -46003,8 +37839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6752 components: - pos: -37.5,33.5 @@ -46012,8 +37846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6753 components: - pos: -38.5,33.5 @@ -46021,8 +37853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6754 components: - pos: -38.5,34.5 @@ -46030,71 +37860,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6755 components: - pos: -38.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6756 components: - pos: -38.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6757 components: - pos: -37.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6758 components: - pos: -36.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6759 components: - pos: -35.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6760 components: - pos: -34.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6761 components: - pos: -33.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6762 components: - pos: -32.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6763 components: - pos: -31.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 6767 components: - pos: -41.5,72.5 @@ -46102,8 +37912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6768 components: - pos: -42.5,72.5 @@ -46111,8 +37919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7209 components: - pos: 21.5,49.5 @@ -46120,8 +37926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7210 components: - pos: 20.5,49.5 @@ -46129,8 +37933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7211 components: - pos: 19.5,49.5 @@ -46138,8 +37940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7212 components: - pos: 18.5,49.5 @@ -46147,8 +37947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7213 components: - pos: 17.5,49.5 @@ -46156,8 +37954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7214 components: - pos: 16.5,49.5 @@ -46165,8 +37961,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7215 components: - pos: 16.5,50.5 @@ -46174,8 +37968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7216 components: - pos: 16.5,51.5 @@ -46183,8 +37975,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7217 components: - pos: 15.5,50.5 @@ -46192,8 +37982,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7218 components: - pos: 14.5,50.5 @@ -46201,8 +37989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7219 components: - pos: 13.5,50.5 @@ -46210,8 +37996,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7220 components: - pos: 12.5,50.5 @@ -46219,8 +38003,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7221 components: - pos: 11.5,50.5 @@ -46228,8 +38010,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7222 components: - pos: 10.5,50.5 @@ -46237,8 +38017,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7223 components: - pos: 9.5,50.5 @@ -46246,8 +38024,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7224 components: - pos: 9.5,49.5 @@ -46255,8 +38031,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7225 components: - pos: 9.5,48.5 @@ -46264,8 +38038,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7226 components: - pos: 9.5,47.5 @@ -46273,8 +38045,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7227 components: - pos: 9.5,46.5 @@ -46282,8 +38052,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7228 components: - pos: 9.5,45.5 @@ -46291,8 +38059,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7229 components: - pos: 9.5,44.5 @@ -46300,8 +38066,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7230 components: - pos: 9.5,43.5 @@ -46309,8 +38073,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7231 components: - pos: 9.5,42.5 @@ -46318,8 +38080,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7232 components: - pos: 9.5,41.5 @@ -46327,8 +38087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7233 components: - pos: 8.5,41.5 @@ -46336,8 +38094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7234 components: - pos: 7.5,41.5 @@ -46345,8 +38101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7235 components: - pos: 6.5,41.5 @@ -46354,8 +38108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7236 components: - pos: 5.5,41.5 @@ -46363,8 +38115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7237 components: - pos: 4.5,41.5 @@ -46372,8 +38122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7238 components: - pos: 3.5,41.5 @@ -46381,8 +38129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7239 components: - pos: 2.5,41.5 @@ -46390,29 +38136,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7240 components: - pos: 1.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7241 components: - pos: 0.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7242 components: - pos: -0.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7294 components: - pos: 29.5,-15.5 @@ -46420,8 +38158,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7295 components: - pos: 28.5,-15.5 @@ -46429,8 +38165,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7296 components: - pos: 27.5,-15.5 @@ -46438,8 +38172,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7297 components: - pos: 26.5,-15.5 @@ -46447,8 +38179,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7298 components: - pos: 25.5,-15.5 @@ -46456,8 +38186,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7299 components: - pos: 24.5,-15.5 @@ -46465,8 +38193,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7300 components: - pos: 24.5,-14.5 @@ -46474,8 +38200,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7301 components: - pos: 24.5,-23.5 @@ -46483,8 +38207,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7322 components: - pos: 24.5,-16.5 @@ -46492,8 +38214,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7323 components: - pos: 24.5,-17.5 @@ -46501,8 +38221,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7324 components: - pos: 24.5,-18.5 @@ -46510,8 +38228,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7325 components: - pos: 24.5,-19.5 @@ -46519,8 +38235,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7326 components: - pos: 24.5,-20.5 @@ -46528,8 +38242,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7327 components: - pos: 24.5,-21.5 @@ -46537,8 +38249,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7328 components: - pos: 24.5,-22.5 @@ -46546,15 +38256,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7336 components: - pos: -31.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7337 components: - pos: 24.5,-13.5 @@ -46562,8 +38268,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7338 components: - pos: 24.5,-12.5 @@ -46571,8 +38275,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7339 components: - pos: 24.5,-11.5 @@ -46580,15 +38282,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7340 components: - pos: 24.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7341 components: - pos: 36.5,54.5 @@ -46596,43 +38294,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7347 components: - pos: 33.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7348 components: - pos: 34.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7349 components: - pos: 34.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7350 components: - pos: 34.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7351 components: - pos: 34.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 7352 components: - pos: 34.5,40.5 @@ -46640,8 +38326,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7353 components: - pos: 34.5,41.5 @@ -46649,8 +38333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7354 components: - pos: 35.5,41.5 @@ -46658,8 +38340,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7355 components: - pos: 36.5,41.5 @@ -46667,8 +38347,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7356 components: - pos: 36.5,42.5 @@ -46676,8 +38354,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7357 components: - pos: 36.5,43.5 @@ -46685,8 +38361,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7358 components: - pos: 36.5,44.5 @@ -46694,8 +38368,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7359 components: - pos: 36.5,45.5 @@ -46703,8 +38375,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7360 components: - pos: 36.5,46.5 @@ -46712,8 +38382,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7361 components: - pos: 36.5,47.5 @@ -46721,8 +38389,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7362 components: - pos: 36.5,48.5 @@ -46730,8 +38396,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7363 components: - pos: 36.5,49.5 @@ -46739,8 +38403,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7364 components: - pos: 36.5,50.5 @@ -46748,8 +38410,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7365 components: - pos: 36.5,51.5 @@ -46757,8 +38417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7366 components: - pos: 35.5,51.5 @@ -46766,8 +38424,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7367 components: - pos: 34.5,51.5 @@ -46775,8 +38431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7368 components: - pos: 33.5,51.5 @@ -46784,8 +38438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7369 components: - pos: 32.5,51.5 @@ -46793,8 +38445,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7370 components: - pos: 31.5,51.5 @@ -46802,8 +38452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7371 components: - pos: 30.5,51.5 @@ -46811,8 +38459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7372 components: - pos: 29.5,51.5 @@ -46820,8 +38466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7373 components: - pos: 29.5,52.5 @@ -46829,8 +38473,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7374 components: - pos: 28.5,52.5 @@ -46838,8 +38480,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7375 components: - pos: 28.5,53.5 @@ -46847,8 +38487,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7376 components: - pos: 28.5,54.5 @@ -46856,8 +38494,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7377 components: - pos: 28.5,55.5 @@ -46865,8 +38501,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7378 components: - pos: 28.5,56.5 @@ -46874,8 +38508,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7379 components: - pos: 28.5,57.5 @@ -46883,8 +38515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7380 components: - pos: 27.5,57.5 @@ -46892,8 +38522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7381 components: - pos: 26.5,57.5 @@ -46901,8 +38529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7382 components: - pos: 25.5,57.5 @@ -46910,8 +38536,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7383 components: - pos: 24.5,57.5 @@ -46919,8 +38543,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7384 components: - pos: 23.5,57.5 @@ -46928,8 +38550,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7385 components: - pos: 22.5,57.5 @@ -46937,8 +38557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7546 components: - pos: 37.5,60.5 @@ -46946,8 +38564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7547 components: - pos: 37.5,59.5 @@ -46955,8 +38571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7548 components: - pos: 37.5,58.5 @@ -46964,8 +38578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7549 components: - pos: 37.5,57.5 @@ -46973,8 +38585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7550 components: - pos: 37.5,56.5 @@ -46982,8 +38592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7551 components: - pos: 37.5,55.5 @@ -46991,8 +38599,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7552 components: - pos: 36.5,69.5 @@ -47000,8 +38606,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7553 components: - pos: 35.5,69.5 @@ -47009,8 +38613,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7554 components: - pos: 35.5,70.5 @@ -47018,8 +38620,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7555 components: - pos: 34.5,70.5 @@ -47027,8 +38627,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7556 components: - pos: 33.5,70.5 @@ -47036,8 +38634,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7557 components: - pos: 32.5,70.5 @@ -47045,8 +38641,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7558 components: - pos: 31.5,70.5 @@ -47054,8 +38648,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7559 components: - pos: 30.5,70.5 @@ -47063,8 +38655,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7560 components: - pos: 29.5,70.5 @@ -47072,8 +38662,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7561 components: - pos: 28.5,70.5 @@ -47081,8 +38669,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7562 components: - pos: 35.5,68.5 @@ -47090,8 +38676,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7563 components: - pos: 34.5,68.5 @@ -47099,8 +38683,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7564 components: - pos: 33.5,68.5 @@ -47108,8 +38690,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7565 components: - pos: 32.5,68.5 @@ -47117,8 +38697,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7566 components: - pos: 31.5,68.5 @@ -47126,8 +38704,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7567 components: - pos: 30.5,68.5 @@ -47135,8 +38711,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7568 components: - pos: 29.5,68.5 @@ -47144,8 +38718,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7569 components: - pos: 28.5,68.5 @@ -47153,8 +38725,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7570 components: - pos: 38.5,69.5 @@ -47162,8 +38732,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7571 components: - pos: 39.5,69.5 @@ -47171,8 +38739,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7572 components: - pos: 39.5,70.5 @@ -47180,8 +38746,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7573 components: - pos: 40.5,70.5 @@ -47189,8 +38753,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7574 components: - pos: 41.5,70.5 @@ -47198,8 +38760,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7575 components: - pos: 42.5,70.5 @@ -47207,8 +38767,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7576 components: - pos: 43.5,70.5 @@ -47216,8 +38774,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7577 components: - pos: 44.5,70.5 @@ -47225,8 +38781,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7578 components: - pos: 45.5,70.5 @@ -47234,8 +38788,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7579 components: - pos: 46.5,70.5 @@ -47243,8 +38795,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7580 components: - pos: 39.5,68.5 @@ -47252,8 +38802,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7581 components: - pos: 40.5,68.5 @@ -47261,8 +38809,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7582 components: - pos: 41.5,68.5 @@ -47270,8 +38816,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7583 components: - pos: 42.5,68.5 @@ -47279,8 +38823,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7584 components: - pos: 43.5,68.5 @@ -47288,8 +38830,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7585 components: - pos: 44.5,68.5 @@ -47297,8 +38837,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7586 components: - pos: 45.5,68.5 @@ -47306,8 +38844,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7587 components: - pos: 46.5,68.5 @@ -47315,8 +38851,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7588 components: - pos: 38.5,73.5 @@ -47324,8 +38858,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7589 components: - pos: 39.5,73.5 @@ -47333,8 +38865,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7590 components: - pos: 39.5,72.5 @@ -47342,8 +38872,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7591 components: - pos: 40.5,72.5 @@ -47351,8 +38879,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7592 components: - pos: 41.5,72.5 @@ -47360,8 +38886,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7593 components: - pos: 42.5,72.5 @@ -47369,8 +38893,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7594 components: - pos: 43.5,72.5 @@ -47378,8 +38900,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7595 components: - pos: 44.5,72.5 @@ -47387,8 +38907,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7596 components: - pos: 45.5,72.5 @@ -47396,8 +38914,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7597 components: - pos: 46.5,72.5 @@ -47405,8 +38921,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7598 components: - pos: 39.5,74.5 @@ -47414,8 +38928,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7599 components: - pos: 40.5,74.5 @@ -47423,8 +38935,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7600 components: - pos: 41.5,74.5 @@ -47432,8 +38942,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7601 components: - pos: 42.5,74.5 @@ -47441,8 +38949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7602 components: - pos: 43.5,74.5 @@ -47450,8 +38956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7603 components: - pos: 44.5,74.5 @@ -47459,8 +38963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7604 components: - pos: 45.5,74.5 @@ -47468,8 +38970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7605 components: - pos: 46.5,74.5 @@ -47477,8 +38977,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7606 components: - pos: 36.5,73.5 @@ -47486,8 +38984,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7607 components: - pos: 35.5,73.5 @@ -47495,8 +38991,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7608 components: - pos: 35.5,74.5 @@ -47504,8 +38998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7609 components: - pos: 34.5,74.5 @@ -47513,8 +39005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7610 components: - pos: 33.5,74.5 @@ -47522,8 +39012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7611 components: - pos: 32.5,74.5 @@ -47531,8 +39019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7612 components: - pos: 31.5,74.5 @@ -47540,8 +39026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7613 components: - pos: 30.5,74.5 @@ -47549,8 +39033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7614 components: - pos: 29.5,74.5 @@ -47558,8 +39040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7615 components: - pos: 28.5,74.5 @@ -47567,8 +39047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7616 components: - pos: 35.5,72.5 @@ -47576,8 +39054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7617 components: - pos: 34.5,72.5 @@ -47585,8 +39061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7618 components: - pos: 33.5,72.5 @@ -47594,8 +39068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7619 components: - pos: 32.5,72.5 @@ -47603,8 +39075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7620 components: - pos: 31.5,72.5 @@ -47612,8 +39082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7621 components: - pos: 30.5,72.5 @@ -47621,8 +39089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7622 components: - pos: 29.5,72.5 @@ -47630,8 +39096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7623 components: - pos: 28.5,72.5 @@ -47639,8 +39103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7830 components: - pos: -37.5,73.5 @@ -47648,8 +39110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7831 components: - pos: -39.5,73.5 @@ -47657,8 +39117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7832 components: - pos: -39.5,69.5 @@ -47666,8 +39124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7833 components: - pos: -37.5,69.5 @@ -47675,8 +39131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7834 components: - pos: -36.5,69.5 @@ -47684,8 +39138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7835 components: - pos: -36.5,73.5 @@ -47693,8 +39145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7836 components: - pos: -40.5,73.5 @@ -47702,8 +39152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7837 components: - pos: -40.5,69.5 @@ -47711,8 +39159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7838 components: - pos: -40.5,68.5 @@ -47720,8 +39166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7839 components: - pos: -41.5,68.5 @@ -47729,8 +39173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7840 components: - pos: -42.5,68.5 @@ -47738,8 +39180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7841 components: - pos: -43.5,68.5 @@ -47747,8 +39187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7842 components: - pos: -44.5,68.5 @@ -47756,8 +39194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7843 components: - pos: -45.5,68.5 @@ -47765,8 +39201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7844 components: - pos: -46.5,68.5 @@ -47774,8 +39208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7845 components: - pos: -47.5,68.5 @@ -47783,8 +39215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7846 components: - pos: -40.5,70.5 @@ -47792,8 +39222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7847 components: - pos: -41.5,70.5 @@ -47801,8 +39229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7848 components: - pos: -42.5,70.5 @@ -47810,8 +39236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7849 components: - pos: -43.5,70.5 @@ -47819,8 +39243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7850 components: - pos: -44.5,70.5 @@ -47828,8 +39250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7851 components: - pos: -45.5,70.5 @@ -47837,8 +39257,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7852 components: - pos: -46.5,70.5 @@ -47846,8 +39264,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7853 components: - pos: -47.5,70.5 @@ -47855,8 +39271,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7854 components: - pos: -36.5,70.5 @@ -47864,8 +39278,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7855 components: - pos: -35.5,70.5 @@ -47873,8 +39285,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7856 components: - pos: -34.5,70.5 @@ -47882,8 +39292,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7857 components: - pos: -33.5,70.5 @@ -47891,8 +39299,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7858 components: - pos: -32.5,70.5 @@ -47900,8 +39306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7859 components: - pos: -31.5,70.5 @@ -47909,8 +39313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7860 components: - pos: -30.5,70.5 @@ -47918,8 +39320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7861 components: - pos: -29.5,70.5 @@ -47927,8 +39327,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7862 components: - pos: -36.5,68.5 @@ -47936,8 +39334,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7863 components: - pos: -35.5,68.5 @@ -47945,8 +39341,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7864 components: - pos: -34.5,68.5 @@ -47954,8 +39348,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7865 components: - pos: -33.5,68.5 @@ -47963,8 +39355,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7866 components: - pos: -32.5,68.5 @@ -47972,8 +39362,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7867 components: - pos: -31.5,68.5 @@ -47981,8 +39369,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7868 components: - pos: -30.5,68.5 @@ -47990,8 +39376,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7869 components: - pos: -29.5,68.5 @@ -47999,8 +39383,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7871 components: - pos: -38.5,59.5 @@ -48008,8 +39390,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7872 components: - pos: -38.5,58.5 @@ -48017,8 +39397,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7873 components: - pos: -38.5,57.5 @@ -48026,8 +39404,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7874 components: - pos: -38.5,56.5 @@ -48035,8 +39411,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7875 components: - pos: -38.5,55.5 @@ -48044,8 +39418,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7883 components: - pos: -35.5,72.5 @@ -48053,8 +39425,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7896 components: - pos: -34.5,74.5 @@ -48062,8 +39432,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7897 components: - pos: -30.5,74.5 @@ -48071,8 +39439,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7903 components: - pos: -31.5,74.5 @@ -48080,8 +39446,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7904 components: - pos: -33.5,74.5 @@ -48089,8 +39453,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7905 components: - pos: -29.5,74.5 @@ -48098,8 +39460,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7906 components: - pos: -36.5,72.5 @@ -48107,8 +39467,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7907 components: - pos: -34.5,72.5 @@ -48116,8 +39474,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7908 components: - pos: -33.5,72.5 @@ -48125,8 +39481,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7909 components: - pos: -32.5,72.5 @@ -48134,8 +39488,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7910 components: - pos: -31.5,72.5 @@ -48143,8 +39495,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7911 components: - pos: -30.5,72.5 @@ -48152,8 +39502,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7912 components: - pos: -29.5,72.5 @@ -48161,8 +39509,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8012 components: - pos: -25.5,57.5 @@ -48170,8 +39516,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8013 components: - pos: -26.5,57.5 @@ -48179,8 +39523,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8014 components: - pos: -27.5,57.5 @@ -48188,8 +39530,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8015 components: - pos: -27.5,56.5 @@ -48197,15 +39537,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8016 components: - pos: -27.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8017 components: - pos: -27.5,54.5 @@ -48213,15 +39549,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8018 components: - pos: -27.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8019 components: - pos: -27.5,52.5 @@ -48229,15 +39561,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8020 components: - pos: -28.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8021 components: - pos: -29.5,52.5 @@ -48245,8 +39573,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8022 components: - pos: -30.5,52.5 @@ -48254,8 +39580,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8023 components: - pos: -31.5,52.5 @@ -48263,15 +39587,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8024 components: - pos: -32.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8025 components: - pos: -33.5,52.5 @@ -48279,15 +39599,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8026 components: - pos: -34.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8027 components: - pos: -35.5,52.5 @@ -48295,8 +39611,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8028 components: - pos: -36.5,52.5 @@ -48304,8 +39618,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8029 components: - pos: -37.5,52.5 @@ -48313,8 +39625,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8030 components: - pos: -38.5,52.5 @@ -48322,8 +39632,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8031 components: - pos: -39.5,52.5 @@ -48331,8 +39639,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8032 components: - pos: -40.5,52.5 @@ -48340,8 +39646,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8033 components: - pos: -40.5,51.5 @@ -48349,8 +39653,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8034 components: - pos: -41.5,51.5 @@ -48358,8 +39660,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8035 components: - pos: -42.5,51.5 @@ -48367,8 +39667,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8036 components: - pos: -43.5,51.5 @@ -48376,8 +39674,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8037 components: - pos: -43.5,50.5 @@ -48385,8 +39681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8038 components: - pos: -43.5,49.5 @@ -48394,8 +39688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8039 components: - pos: -43.5,48.5 @@ -48403,8 +39695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8040 components: - pos: -43.5,47.5 @@ -48412,8 +39702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8041 components: - pos: -43.5,46.5 @@ -48421,8 +39709,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8042 components: - pos: -43.5,45.5 @@ -48430,99 +39716,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8043 components: - pos: -43.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8044 components: - pos: -43.5,43.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8045 components: - pos: -43.5,42.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8046 components: - pos: -43.5,41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8047 components: - pos: -43.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8048 components: - pos: -43.5,39.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8049 components: - pos: -43.5,38.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8050 components: - pos: -43.5,37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8051 components: - pos: -43.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8052 components: - pos: -42.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8053 components: - pos: -41.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8054 components: - pos: -40.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8055 components: - pos: -39.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8057 components: - pos: -39.5,55.5 @@ -48530,8 +39788,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8058 components: - pos: -39.5,54.5 @@ -48539,8 +39795,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8059 components: - pos: -39.5,53.5 @@ -48548,29 +39802,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8821 components: - pos: 0.5,-5.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8822 components: - pos: -0.5,-5.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8823 components: - pos: -1.5,-5.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8824 components: - pos: -2.5,-5.5 @@ -48578,57 +39824,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9727 components: - pos: -17.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9728 components: - pos: -18.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9729 components: - pos: -19.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9730 components: - pos: -20.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9731 components: - pos: -21.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9732 components: - pos: -22.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9733 components: - pos: -23.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10144 components: - pos: 36.5,52.5 @@ -48636,8 +39866,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10147 components: - pos: 36.5,53.5 @@ -48645,15 +39873,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10541 components: - pos: 7.5,-41.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10542 components: - pos: 7.5,-42.5 @@ -48661,8 +39885,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10543 components: - pos: 6.5,-42.5 @@ -48670,8 +39892,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10544 components: - pos: 5.5,-42.5 @@ -48679,106 +39899,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10663 components: - pos: 15.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10871 components: - pos: 27.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13141 components: - pos: 20.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13142 components: - pos: 21.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13143 components: - pos: 22.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13144 components: - pos: 23.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13145 components: - pos: 24.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13146 components: - pos: 25.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13147 components: - pos: 26.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13148 components: - pos: 27.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13149 components: - pos: 28.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13150 components: - pos: 29.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13151 components: - pos: 30.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13152 components: - pos: 31.5,13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13178 components: - pos: -25.5,-17.5 @@ -48786,8 +39976,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13179 components: - pos: -25.5,-18.5 @@ -48795,8 +39983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14045 components: - pos: 36.5,55.5 @@ -48804,36 +39990,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14634 components: - pos: -32.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 16380 components: - pos: 15.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18454 components: - pos: 22.5,-12.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18455 components: - pos: 22.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18456 components: - pos: 16.5,-10.5 @@ -48841,57 +40017,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18458 components: - pos: 16.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18459 components: - pos: 16.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18460 components: - pos: 17.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18461 components: - pos: 18.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18462 components: - pos: 19.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18463 components: - pos: 20.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18464 components: - pos: 21.5,-13.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - proto: CableHVStack entities: - uid: 9124 @@ -48906,8 +40066,6 @@ entities: - pos: 18.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 8825 components: - pos: -2.5,-5.5 @@ -48915,29 +40073,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8826 components: - pos: -1.5,-5.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8827 components: - pos: -0.5,-5.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8828 components: - pos: 0.5,-5.5 parent: 8756 type: Transform - - fixtures: {} - type: Fixtures - uid: 8829 components: - pos: 1.5,-5.5 @@ -48945,36 +40095,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9079 components: - pos: 8.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9294 components: - pos: 17.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9734 components: - pos: -23.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9735 components: - pos: -22.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9736 components: - pos: -22.5,-19.5 @@ -48982,15 +40122,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9765 components: - pos: -25.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9766 components: - pos: -25.5,-16.5 @@ -48998,8 +40134,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9767 components: - pos: -26.5,-16.5 @@ -49007,15 +40141,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9768 components: - pos: -27.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9769 components: - pos: -28.5,-16.5 @@ -49023,8 +40153,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9770 components: - pos: -29.5,-16.5 @@ -49032,8 +40160,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9771 components: - pos: -30.5,-16.5 @@ -49041,8 +40167,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9772 components: - pos: -31.5,-16.5 @@ -49050,8 +40174,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9773 components: - pos: -31.5,-15.5 @@ -49059,15 +40181,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 9774 components: - pos: -31.5,-14.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 9775 components: - pos: -31.5,-13.5 @@ -49075,22 +40193,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10124 components: - pos: -24.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10152 components: - pos: 26.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10153 components: - pos: 26.5,-19.5 @@ -49098,8 +40210,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10154 components: - pos: 27.5,-19.5 @@ -49107,8 +40217,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10155 components: - pos: 28.5,-19.5 @@ -49116,15 +40224,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10156 components: - pos: 29.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10157 components: - pos: 30.5,-19.5 @@ -49132,8 +40236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10158 components: - pos: 30.5,-18.5 @@ -49141,8 +40243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10159 components: - pos: 30.5,-17.5 @@ -49150,8 +40250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10160 components: - pos: 30.5,-16.5 @@ -49159,8 +40257,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10161 components: - pos: 30.5,-15.5 @@ -49168,8 +40264,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10162 components: - pos: 29.5,-15.5 @@ -49177,8 +40271,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10163 components: - pos: 29.5,-14.5 @@ -49186,8 +40278,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10272 components: - pos: -32.5,-16.5 @@ -49195,8 +40285,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10273 components: - pos: -33.5,-16.5 @@ -49204,8 +40292,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10274 components: - pos: -34.5,-16.5 @@ -49213,8 +40299,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10275 components: - pos: -35.5,-16.5 @@ -49222,8 +40306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10276 components: - pos: -35.5,-15.5 @@ -49231,8 +40313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10277 components: - pos: -35.5,-14.5 @@ -49240,8 +40320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10278 components: - pos: -35.5,-13.5 @@ -49249,8 +40327,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10279 components: - pos: -35.5,-12.5 @@ -49258,8 +40334,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10280 components: - pos: -35.5,-11.5 @@ -49267,8 +40341,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10281 components: - pos: -35.5,-10.5 @@ -49276,8 +40348,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10282 components: - pos: -35.5,-9.5 @@ -49285,8 +40355,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10283 components: - pos: -36.5,-9.5 @@ -49294,8 +40362,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10284 components: - pos: -37.5,-9.5 @@ -49303,8 +40369,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10285 components: - pos: -38.5,-9.5 @@ -49312,8 +40376,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10286 components: - pos: -39.5,-9.5 @@ -49321,8 +40383,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10287 components: - pos: -40.5,-9.5 @@ -49330,141 +40390,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10288 components: - pos: -40.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10289 components: - pos: -40.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10290 components: - pos: -40.5,-6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10291 components: - pos: -40.5,-5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10292 components: - pos: -40.5,-4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10293 components: - pos: -40.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10294 components: - pos: -40.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10295 components: - pos: -40.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10296 components: - pos: -40.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10297 components: - pos: -39.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10298 components: - pos: -39.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10299 components: - pos: -39.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10300 components: - pos: -39.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10301 components: - pos: -39.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10302 components: - pos: -39.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10303 components: - pos: -39.5,5.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10304 components: - pos: -39.5,6.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10305 components: - pos: -39.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10306 components: - pos: -40.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10307 components: - pos: -41.5,7.5 @@ -49472,8 +40492,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10386 components: - pos: 30.5,-20.5 @@ -49481,8 +40499,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10387 components: - pos: 30.5,-21.5 @@ -49490,8 +40506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10388 components: - pos: 30.5,-22.5 @@ -49499,8 +40513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10389 components: - pos: 30.5,-23.5 @@ -49508,8 +40520,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10390 components: - pos: 30.5,-24.5 @@ -49517,8 +40527,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10391 components: - pos: 29.5,-24.5 @@ -49526,8 +40534,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10392 components: - pos: 28.5,-24.5 @@ -49535,8 +40541,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10393 components: - pos: 27.5,-24.5 @@ -49544,8 +40548,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10394 components: - pos: 26.5,-24.5 @@ -49553,8 +40555,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10395 components: - pos: 25.5,-24.5 @@ -49562,8 +40562,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10396 components: - pos: 24.5,-24.5 @@ -49571,22 +40569,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10397 components: - pos: 23.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10398 components: - pos: 22.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10399 components: - pos: 22.5,-25.5 @@ -49594,8 +40586,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10400 components: - pos: 22.5,-26.5 @@ -49603,8 +40593,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10401 components: - pos: 22.5,-27.5 @@ -49612,8 +40600,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10402 components: - pos: 21.5,-27.5 @@ -49621,8 +40607,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10403 components: - pos: 21.5,-28.5 @@ -49630,8 +40614,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10404 components: - pos: 21.5,-29.5 @@ -49639,8 +40621,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10405 components: - pos: 20.5,-29.5 @@ -49648,8 +40628,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10406 components: - pos: 19.5,-29.5 @@ -49657,8 +40635,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10407 components: - pos: 18.5,-29.5 @@ -49666,8 +40642,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10408 components: - pos: 17.5,-29.5 @@ -49675,8 +40649,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10409 components: - pos: 16.5,-29.5 @@ -49684,8 +40656,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10410 components: - pos: 15.5,-29.5 @@ -49693,8 +40663,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10411 components: - pos: 15.5,-30.5 @@ -49702,8 +40670,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10412 components: - pos: 15.5,-31.5 @@ -49711,8 +40677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10413 components: - pos: 15.5,-32.5 @@ -49720,8 +40684,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10414 components: - pos: 15.5,-33.5 @@ -49729,8 +40691,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10415 components: - pos: 15.5,-34.5 @@ -49738,176 +40698,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10416 components: - pos: 8.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10418 components: - pos: 13.5,-35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10419 components: - pos: 13.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10420 components: - pos: 13.5,-33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10421 components: - pos: 13.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10422 components: - pos: 13.5,-31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10423 components: - pos: 13.5,-30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10424 components: - pos: 13.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10425 components: - pos: 12.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10426 components: - pos: 12.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10427 components: - pos: 12.5,-28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10428 components: - pos: 12.5,-27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10429 components: - pos: 12.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10430 components: - pos: 12.5,-25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10431 components: - pos: 12.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10432 components: - pos: 12.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10433 components: - pos: 12.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10434 components: - pos: 12.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10435 components: - pos: 12.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10436 components: - pos: 13.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10437 components: - pos: 14.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10438 components: - pos: 15.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10439 components: - pos: 16.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10440 components: - pos: 16.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10441 components: - pos: 16.5,-21.5 @@ -49915,78 +40825,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10459 components: - pos: 12.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10460 components: - pos: 11.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10461 components: - pos: 10.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10462 components: - pos: 9.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10463 components: - pos: 8.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10464 components: - pos: 7.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10465 components: - pos: 6.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10466 components: - pos: 5.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10467 components: - pos: 5.5,-33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10468 components: - pos: 5.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10469 components: - pos: 5.5,-31.5 @@ -49994,22 +40882,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10546 components: - pos: 11.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10547 components: - pos: 10.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10548 components: - pos: 10.5,-19.5 @@ -50017,8 +40899,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10631 components: - pos: 28.5,-15.5 @@ -50026,8 +40906,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10632 components: - pos: 27.5,-15.5 @@ -50035,8 +40913,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10633 components: - pos: 26.5,-15.5 @@ -50044,8 +40920,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10634 components: - pos: 25.5,-15.5 @@ -50053,8 +40927,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10635 components: - pos: 24.5,-15.5 @@ -50062,8 +40934,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10636 components: - pos: 24.5,-14.5 @@ -50071,8 +40941,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10637 components: - pos: 24.5,-13.5 @@ -50080,8 +40948,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10638 components: - pos: 24.5,-12.5 @@ -50089,8 +40955,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10639 components: - pos: 24.5,-11.5 @@ -50098,29 +40962,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10640 components: - pos: 24.5,-10.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10641 components: - pos: 24.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10662 components: - pos: 19.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10664 components: - pos: 22.5,-10.5 @@ -50128,57 +40984,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10667 components: - pos: 7.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10668 components: - pos: 7.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10669 components: - pos: 7.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10670 components: - pos: 8.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10671 components: - pos: 9.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10672 components: - pos: 6.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10673 components: - pos: 6.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10674 components: - pos: 6.5,-16.5 @@ -50186,15 +41026,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10675 components: - pos: 7.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10676 components: - pos: 7.5,-16.5 @@ -50202,29 +41038,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10677 components: - pos: 7.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10678 components: - pos: 6.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10679 components: - pos: 5.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10680 components: - pos: 4.5,-15.5 @@ -50232,8 +41060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10681 components: - pos: 3.5,-15.5 @@ -50241,8 +41067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10682 components: - pos: 2.5,-15.5 @@ -50250,8 +41074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10683 components: - pos: 1.5,-15.5 @@ -50259,8 +41081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10684 components: - pos: 0.5,-15.5 @@ -50268,8 +41088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10685 components: - pos: -0.5,-15.5 @@ -50277,8 +41095,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10686 components: - pos: -1.5,-15.5 @@ -50286,8 +41102,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10687 components: - pos: -2.5,-15.5 @@ -50295,8 +41109,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10688 components: - pos: -3.5,-15.5 @@ -50304,8 +41116,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10689 components: - pos: -4.5,-15.5 @@ -50313,8 +41123,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10690 components: - pos: -5.5,-15.5 @@ -50322,120 +41130,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10691 components: - pos: -6.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10692 components: - pos: -7.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10694 components: - pos: -8.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10695 components: - pos: -9.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10696 components: - pos: -10.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10697 components: - pos: -11.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10698 components: - pos: -12.5,-15.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10699 components: - pos: -12.5,-16.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10700 components: - pos: -12.5,-17.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10701 components: - pos: -12.5,-18.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10702 components: - pos: -12.5,-19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10703 components: - pos: -12.5,-20.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10704 components: - pos: -12.5,-21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10705 components: - pos: -12.5,-22.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10706 components: - pos: -12.5,-23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10707 components: - pos: -12.5,-24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10708 components: - pos: -12.5,-25.5 @@ -50443,36 +41217,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10709 components: - pos: -12.5,-26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10710 components: - pos: -12.5,-27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10711 components: - pos: -12.5,-28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10712 components: - pos: -12.5,-29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10713 components: - pos: -12.5,-30.5 @@ -50480,64 +41244,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10714 components: - pos: -12.5,-31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10715 components: - pos: -12.5,-32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10716 components: - pos: -12.5,-33.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10717 components: - pos: -12.5,-34.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10718 components: - pos: -12.5,-35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10719 components: - pos: -12.5,-36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10720 components: - pos: -12.5,-37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10721 components: - pos: -11.5,-37.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10722 components: - pos: -11.5,-38.5 @@ -50545,155 +41291,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10968 components: - pos: 25.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10969 components: - pos: 26.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10970 components: - pos: 27.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10972 components: - pos: 29.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10973 components: - pos: 30.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10974 components: - pos: 31.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10975 components: - pos: 32.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10976 components: - pos: 33.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10977 components: - pos: 34.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10978 components: - pos: 35.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10979 components: - pos: 36.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10980 components: - pos: 37.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10981 components: - pos: 38.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10982 components: - pos: 39.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10983 components: - pos: 40.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10984 components: - pos: 41.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10985 components: - pos: 42.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10986 components: - pos: 43.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10987 components: - pos: 44.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10988 components: - pos: 44.5,-8.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10989 components: - pos: 44.5,-7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 10990 components: - pos: 44.5,-6.5 @@ -50701,15 +41403,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11084 components: - pos: 17.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11085 components: - pos: 18.5,4.5 @@ -50717,8 +41415,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11086 components: - pos: 18.5,3.5 @@ -50726,8 +41422,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11087 components: - pos: 18.5,2.5 @@ -50735,15 +41429,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11088 components: - pos: 18.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11089 components: - pos: 18.5,0.5 @@ -50751,8 +41441,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11090 components: - pos: 19.5,0.5 @@ -50760,8 +41448,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11091 components: - pos: 20.5,0.5 @@ -50769,8 +41455,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11092 components: - pos: 21.5,0.5 @@ -50778,8 +41462,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11093 components: - pos: 21.5,1.5 @@ -50787,8 +41469,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11094 components: - pos: 21.5,2.5 @@ -50796,8 +41476,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11095 components: - pos: 21.5,3.5 @@ -50805,8 +41483,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11096 components: - pos: 21.5,4.5 @@ -50814,8 +41490,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11097 components: - pos: 21.5,5.5 @@ -50823,8 +41497,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11098 components: - pos: 22.5,5.5 @@ -50832,8 +41504,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11099 components: - pos: 22.5,0.5 @@ -50841,64 +41511,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11100 components: - pos: 23.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11101 components: - pos: 24.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11102 components: - pos: 25.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11103 components: - pos: 25.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11104 components: - pos: 25.5,-1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11105 components: - pos: 25.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11106 components: - pos: 25.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11107 components: - pos: 24.5,-3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11108 components: - pos: 23.5,-3.5 @@ -50906,8 +41558,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11236 components: - pos: 16.5,9.5 @@ -50915,15 +41565,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11237 components: - pos: 17.5,9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11238 components: - pos: 18.5,9.5 @@ -50931,8 +41577,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11239 components: - pos: 18.5,8.5 @@ -50940,8 +41584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11240 components: - pos: 19.5,8.5 @@ -50949,8 +41591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11241 components: - pos: 20.5,8.5 @@ -50958,8 +41598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11242 components: - pos: 21.5,8.5 @@ -50967,8 +41605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11243 components: - pos: 21.5,7.5 @@ -50976,8 +41612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11244 components: - pos: 21.5,6.5 @@ -50985,8 +41619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11282 components: - pos: 13.5,-1.5 @@ -50994,8 +41626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11283 components: - pos: 14.5,-1.5 @@ -51003,8 +41633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11284 components: - pos: 15.5,-1.5 @@ -51012,8 +41640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11285 components: - pos: 16.5,-1.5 @@ -51021,8 +41647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11286 components: - pos: 17.5,-1.5 @@ -51030,8 +41654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11287 components: - pos: 18.5,-1.5 @@ -51039,8 +41661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11288 components: - pos: 18.5,-0.5 @@ -51048,8 +41668,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11378 components: - pos: -4.5,74.5 @@ -51057,8 +41675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11379 components: - pos: -3.5,74.5 @@ -51066,8 +41682,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11380 components: - pos: -3.5,75.5 @@ -51075,50 +41689,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11381 components: - pos: -3.5,76.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11382 components: - pos: -4.5,76.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11383 components: - pos: -5.5,76.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11384 components: - pos: -6.5,76.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11385 components: - pos: -7.5,76.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11386 components: - pos: -8.5,76.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11387 components: - pos: -9.5,76.5 @@ -51126,8 +41726,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11388 components: - pos: -9.5,77.5 @@ -51135,8 +41733,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11389 components: - pos: -9.5,78.5 @@ -51144,8 +41740,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11390 components: - pos: -8.5,78.5 @@ -51153,8 +41747,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11391 components: - pos: -8.5,79.5 @@ -51162,8 +41754,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11392 components: - pos: -8.5,80.5 @@ -51171,8 +41761,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11393 components: - pos: -8.5,81.5 @@ -51180,8 +41768,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11394 components: - pos: -7.5,81.5 @@ -51189,8 +41775,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11395 components: - pos: -7.5,82.5 @@ -51198,8 +41782,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11396 components: - pos: -7.5,83.5 @@ -51207,8 +41789,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11397 components: - pos: -6.5,83.5 @@ -51216,8 +41796,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11398 components: - pos: -5.5,83.5 @@ -51225,8 +41803,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11399 components: - pos: -4.5,83.5 @@ -51234,8 +41810,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11400 components: - pos: -4.5,84.5 @@ -51243,8 +41817,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11401 components: - pos: -3.5,84.5 @@ -51252,8 +41824,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11402 components: - pos: -2.5,84.5 @@ -51261,8 +41831,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11403 components: - pos: -1.5,84.5 @@ -51270,8 +41838,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11404 components: - pos: -0.5,84.5 @@ -51279,8 +41845,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11405 components: - pos: 0.5,84.5 @@ -51288,8 +41852,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11406 components: - pos: 1.5,84.5 @@ -51297,8 +41859,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11407 components: - pos: 2.5,84.5 @@ -51306,8 +41866,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11408 components: - pos: 3.5,84.5 @@ -51315,8 +41873,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11409 components: - pos: 3.5,83.5 @@ -51324,8 +41880,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11410 components: - pos: 4.5,83.5 @@ -51333,8 +41887,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11411 components: - pos: 5.5,83.5 @@ -51342,8 +41894,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11412 components: - pos: 6.5,83.5 @@ -51351,8 +41901,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11413 components: - pos: 6.5,82.5 @@ -51360,8 +41908,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11414 components: - pos: 6.5,81.5 @@ -51369,8 +41915,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11415 components: - pos: 7.5,81.5 @@ -51378,8 +41922,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11416 components: - pos: 7.5,80.5 @@ -51387,8 +41929,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11417 components: - pos: 7.5,79.5 @@ -51396,8 +41936,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11418 components: - pos: 7.5,78.5 @@ -51405,8 +41943,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11419 components: - pos: 8.5,78.5 @@ -51414,8 +41950,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11420 components: - pos: 8.5,77.5 @@ -51423,8 +41957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11421 components: - pos: 8.5,76.5 @@ -51432,8 +41964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11422 components: - pos: 8.5,75.5 @@ -51441,8 +41971,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11423 components: - pos: 7.5,75.5 @@ -51450,8 +41978,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11424 components: - pos: 6.5,75.5 @@ -51459,8 +41985,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11553 components: - pos: -24.5,50.5 @@ -51468,8 +41992,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11554 components: - pos: -24.5,49.5 @@ -51477,8 +41999,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11555 components: - pos: -24.5,51.5 @@ -51486,8 +42006,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11556 components: - pos: -24.5,52.5 @@ -51495,15 +42013,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11557 components: - pos: -24.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11558 components: - pos: -24.5,54.5 @@ -51511,8 +42025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11559 components: - pos: -24.5,55.5 @@ -51520,8 +42032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11560 components: - pos: -24.5,56.5 @@ -51529,8 +42039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11561 components: - pos: -24.5,57.5 @@ -51538,8 +42046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11562 components: - pos: -23.5,57.5 @@ -51547,8 +42053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11563 components: - pos: -22.5,57.5 @@ -51556,8 +42060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11564 components: - pos: -21.5,57.5 @@ -51565,8 +42067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11565 components: - pos: -21.5,56.5 @@ -51574,8 +42074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11566 components: - pos: -21.5,55.5 @@ -51583,8 +42081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11567 components: - pos: -21.5,54.5 @@ -51592,8 +42088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11568 components: - pos: -21.5,53.5 @@ -51601,8 +42095,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11569 components: - pos: -21.5,52.5 @@ -51610,8 +42102,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11570 components: - pos: -21.5,51.5 @@ -51619,15 +42109,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11571 components: - pos: -21.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11572 components: - pos: -20.5,50.5 @@ -51635,22 +42121,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11574 components: - pos: -42.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11575 components: - pos: -43.5,44.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11576 components: - pos: -43.5,45.5 @@ -51658,8 +42138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11577 components: - pos: -43.5,46.5 @@ -51667,8 +42145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11578 components: - pos: -43.5,47.5 @@ -51676,8 +42152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11579 components: - pos: -43.5,48.5 @@ -51685,8 +42159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11580 components: - pos: -43.5,49.5 @@ -51694,8 +42166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11581 components: - pos: -43.5,50.5 @@ -51703,8 +42173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11582 components: - pos: -43.5,51.5 @@ -51712,8 +42180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11583 components: - pos: -41.5,51.5 @@ -51721,8 +42187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11584 components: - pos: -42.5,51.5 @@ -51730,8 +42194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11585 components: - pos: -40.5,51.5 @@ -51739,8 +42201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11586 components: - pos: -40.5,52.5 @@ -51748,8 +42208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11587 components: - pos: -39.5,52.5 @@ -51757,8 +42215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11588 components: - pos: -38.5,52.5 @@ -51766,8 +42222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11589 components: - pos: -37.5,52.5 @@ -51775,8 +42229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11590 components: - pos: -36.5,52.5 @@ -51784,8 +42236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11591 components: - pos: -35.5,52.5 @@ -51793,15 +42243,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11592 components: - pos: -34.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11593 components: - pos: -33.5,52.5 @@ -51809,15 +42255,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11594 components: - pos: -32.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11595 components: - pos: -31.5,52.5 @@ -51825,8 +42267,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11596 components: - pos: -30.5,52.5 @@ -51834,8 +42274,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11597 components: - pos: -29.5,52.5 @@ -51843,15 +42281,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11598 components: - pos: -28.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11599 components: - pos: -27.5,52.5 @@ -51859,15 +42293,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11600 components: - pos: -27.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11601 components: - pos: -27.5,54.5 @@ -51875,15 +42305,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11602 components: - pos: -27.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11603 components: - pos: -27.5,56.5 @@ -51891,8 +42317,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11604 components: - pos: -27.5,57.5 @@ -51900,8 +42324,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11605 components: - pos: -30.5,57.5 @@ -51909,8 +42331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11606 components: - pos: -30.5,56.5 @@ -51918,8 +42338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11607 components: - pos: -29.5,56.5 @@ -51927,8 +42345,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11608 components: - pos: -26.5,57.5 @@ -51936,8 +42352,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11609 components: - pos: -25.5,57.5 @@ -51945,169 +42359,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11839 components: - pos: -21.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11840 components: - pos: -21.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11841 components: - pos: -20.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11842 components: - pos: -19.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11843 components: - pos: -19.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11844 components: - pos: -19.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11845 components: - pos: -18.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11846 components: - pos: -17.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11847 components: - pos: -16.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11848 components: - pos: -16.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11849 components: - pos: -16.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11850 components: - pos: -16.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11851 components: - pos: -16.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11852 components: - pos: -16.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11853 components: - pos: -16.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11854 components: - pos: -15.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11855 components: - pos: -14.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11856 components: - pos: -13.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11857 components: - pos: -12.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11858 components: - pos: -11.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11859 components: - pos: -10.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11860 components: - pos: -9.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11861 components: - pos: -8.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 11863 components: - pos: -7.5,56.5 @@ -52115,8 +42481,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12020 components: - pos: -28.5,56.5 @@ -52124,8 +42488,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12028 components: - pos: -21.5,30.5 @@ -52133,8 +42495,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12029 components: - pos: -20.5,30.5 @@ -52142,8 +42502,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12030 components: - pos: -20.5,31.5 @@ -52151,8 +42509,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12031 components: - pos: -20.5,29.5 @@ -52160,15 +42516,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12032 components: - pos: -20.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12033 components: - pos: -20.5,27.5 @@ -52176,43 +42528,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12034 components: - pos: -20.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12035 components: - pos: -20.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12036 components: - pos: -19.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12037 components: - pos: -18.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12038 components: - pos: -17.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12039 components: - pos: -17.5,26.5 @@ -52220,78 +42560,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12040 components: - pos: -16.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12041 components: - pos: -15.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12042 components: - pos: -14.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12043 components: - pos: -13.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12044 components: - pos: -12.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12045 components: - pos: -11.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12046 components: - pos: -10.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12047 components: - pos: -10.5,24.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12048 components: - pos: -10.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12049 components: - pos: -9.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12050 components: - pos: -8.5,23.5 @@ -52299,64 +42617,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12051 components: - pos: -10.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12052 components: - pos: -10.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12053 components: - pos: -10.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12054 components: - pos: -10.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12055 components: - pos: -10.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12056 components: - pos: -10.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12057 components: - pos: -10.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12058 components: - pos: -11.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12059 components: - pos: -12.5,32.5 @@ -52364,8 +42664,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12236 components: - pos: -21.5,27.5 @@ -52373,8 +42671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12237 components: - pos: -22.5,27.5 @@ -52382,8 +42678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12238 components: - pos: -23.5,27.5 @@ -52391,8 +42685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12239 components: - pos: -23.5,28.5 @@ -52400,8 +42692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12240 components: - pos: -23.5,29.5 @@ -52409,8 +42699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12241 components: - pos: -23.5,30.5 @@ -52418,8 +42706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12242 components: - pos: -23.5,31.5 @@ -52427,8 +42713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12243 components: - pos: -23.5,32.5 @@ -52436,15 +42720,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12244 components: - pos: -24.5,32.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12245 components: - pos: -25.5,32.5 @@ -52452,8 +42732,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12290 components: - pos: -23.5,33.5 @@ -52461,8 +42739,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12291 components: - pos: -23.5,34.5 @@ -52470,127 +42746,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12292 components: - pos: -23.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12293 components: - pos: -23.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12295 components: - pos: -25.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12296 components: - pos: -26.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12297 components: - pos: -27.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12298 components: - pos: -28.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12299 components: - pos: -29.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12300 components: - pos: -30.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12301 components: - pos: -31.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12302 components: - pos: -32.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12303 components: - pos: -33.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12304 components: - pos: -34.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12305 components: - pos: -35.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12306 components: - pos: -36.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12307 components: - pos: -37.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12308 components: - pos: -38.5,36.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12309 components: - pos: -38.5,35.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12310 components: - pos: -38.5,34.5 @@ -52598,8 +42838,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12311 components: - pos: -38.5,33.5 @@ -52607,8 +42845,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12312 components: - pos: -37.5,33.5 @@ -52616,8 +42852,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12313 components: - pos: -36.5,33.5 @@ -52625,8 +42859,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12314 components: - pos: -35.5,33.5 @@ -52634,8 +42866,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12315 components: - pos: -34.5,33.5 @@ -52643,8 +42873,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12316 components: - pos: -34.5,32.5 @@ -52652,8 +42880,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12317 components: - pos: -34.5,31.5 @@ -52661,8 +42887,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12318 components: - pos: -34.5,30.5 @@ -52670,8 +42894,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12319 components: - pos: -34.5,29.5 @@ -52679,8 +42901,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12320 components: - pos: -34.5,28.5 @@ -52688,8 +42908,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12321 components: - pos: -34.5,27.5 @@ -52697,8 +42915,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12322 components: - pos: -34.5,26.5 @@ -52706,8 +42922,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12323 components: - pos: -34.5,25.5 @@ -52715,8 +42929,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12324 components: - pos: -35.5,25.5 @@ -52724,8 +42936,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12409 components: - pos: 20.5,54.5 @@ -52733,8 +42943,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12410 components: - pos: 20.5,53.5 @@ -52742,8 +42950,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12411 components: - pos: 20.5,52.5 @@ -52751,8 +42957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12412 components: - pos: 19.5,52.5 @@ -52760,8 +42964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12413 components: - pos: 18.5,52.5 @@ -52769,15 +42971,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12414 components: - pos: 17.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12415 components: - pos: 16.5,52.5 @@ -52785,8 +42983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12416 components: - pos: 16.5,53.5 @@ -52794,8 +42990,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12417 components: - pos: 16.5,54.5 @@ -52803,8 +42997,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12418 components: - pos: 16.5,55.5 @@ -52812,8 +43004,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12419 components: - pos: 16.5,56.5 @@ -52821,8 +43011,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12420 components: - pos: 17.5,56.5 @@ -52830,8 +43018,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12421 components: - pos: 18.5,56.5 @@ -52839,8 +43025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12422 components: - pos: 19.5,56.5 @@ -52848,8 +43032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12423 components: - pos: 19.5,57.5 @@ -52857,8 +43039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12424 components: - pos: 19.5,58.5 @@ -52866,8 +43046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12425 components: - pos: 18.5,58.5 @@ -52875,8 +43053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12426 components: - pos: 18.5,59.5 @@ -52884,8 +43060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12427 components: - pos: 18.5,60.5 @@ -52893,8 +43067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12428 components: - pos: 18.5,61.5 @@ -52902,8 +43074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12429 components: - pos: 18.5,62.5 @@ -52911,8 +43081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12430 components: - pos: 18.5,63.5 @@ -52920,8 +43088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12431 components: - pos: 17.5,63.5 @@ -52929,8 +43095,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12432 components: - pos: 16.5,63.5 @@ -52938,8 +43102,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12433 components: - pos: 15.5,63.5 @@ -52947,8 +43109,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12434 components: - pos: 14.5,63.5 @@ -52956,8 +43116,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12435 components: - pos: 13.5,63.5 @@ -52965,8 +43123,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12436 components: - pos: 12.5,63.5 @@ -52974,8 +43130,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12437 components: - pos: 11.5,63.5 @@ -52983,8 +43137,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12438 components: - pos: 10.5,63.5 @@ -52992,8 +43144,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12439 components: - pos: 10.5,62.5 @@ -53001,8 +43151,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12440 components: - pos: 16.5,51.5 @@ -53010,8 +43158,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12441 components: - pos: 16.5,50.5 @@ -53019,8 +43165,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12442 components: - pos: 16.5,49.5 @@ -53028,8 +43172,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12443 components: - pos: 17.5,49.5 @@ -53037,8 +43179,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12444 components: - pos: 18.5,49.5 @@ -53046,8 +43186,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12445 components: - pos: 19.5,49.5 @@ -53055,8 +43193,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12446 components: - pos: 20.5,49.5 @@ -53064,8 +43200,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12447 components: - pos: 21.5,49.5 @@ -53073,8 +43207,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12448 components: - pos: 22.5,49.5 @@ -53082,8 +43214,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12449 components: - pos: 22.5,48.5 @@ -53091,8 +43221,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12450 components: - pos: 22.5,47.5 @@ -53100,8 +43228,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12451 components: - pos: 22.5,46.5 @@ -53109,8 +43235,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12452 components: - pos: 22.5,45.5 @@ -53118,8 +43242,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12453 components: - pos: 23.5,45.5 @@ -53127,8 +43249,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12454 components: - pos: 24.5,45.5 @@ -53136,8 +43256,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12455 components: - pos: 25.5,45.5 @@ -53145,8 +43263,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12456 components: - pos: 25.5,44.5 @@ -53154,8 +43270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12457 components: - pos: 25.5,43.5 @@ -53163,8 +43277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12458 components: - pos: 25.5,42.5 @@ -53172,8 +43284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12459 components: - pos: 24.5,42.5 @@ -53181,8 +43291,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12461 components: - pos: 6.5,46.5 @@ -53190,211 +43298,151 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12462 components: - pos: 5.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12463 components: - pos: 4.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12464 components: - pos: 3.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12465 components: - pos: 2.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12466 components: - pos: 1.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12467 components: - pos: 0.5,46.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12468 components: - pos: 0.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12469 components: - pos: 0.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12470 components: - pos: 0.5,49.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12471 components: - pos: 0.5,50.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12472 components: - pos: 0.5,51.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12473 components: - pos: 0.5,52.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12474 components: - pos: 0.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12475 components: - pos: 1.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12476 components: - pos: 2.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12477 components: - pos: 3.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12478 components: - pos: 4.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12479 components: - pos: 5.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12480 components: - pos: 6.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12481 components: - pos: 7.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12482 components: - pos: 8.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12483 components: - pos: 9.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12484 components: - pos: 10.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12485 components: - pos: 11.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12486 components: - pos: 12.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12487 components: - pos: 13.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12488 components: - pos: 14.5,53.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12489 components: - pos: 5.5,47.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12490 components: - pos: 5.5,48.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12491 components: - pos: 5.5,49.5 @@ -53402,50 +43450,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12492 components: - pos: 14.5,54.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12493 components: - pos: 14.5,55.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12494 components: - pos: 14.5,56.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12495 components: - pos: 14.5,57.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12496 components: - pos: 14.5,58.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12497 components: - pos: 15.5,58.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12498 components: - pos: 16.5,58.5 @@ -53453,8 +43487,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12499 components: - pos: 17.5,58.5 @@ -53462,8 +43494,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12500 components: - pos: 20.5,56.5 @@ -53471,8 +43501,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12501 components: - pos: 21.5,56.5 @@ -53480,8 +43508,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12502 components: - pos: 22.5,56.5 @@ -53489,8 +43515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12503 components: - pos: 22.5,57.5 @@ -53498,8 +43522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12504 components: - pos: 23.5,57.5 @@ -53507,8 +43529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12505 components: - pos: 24.5,57.5 @@ -53516,8 +43536,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12506 components: - pos: 25.5,57.5 @@ -53525,8 +43543,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12507 components: - pos: 26.5,57.5 @@ -53534,8 +43550,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12508 components: - pos: 27.5,57.5 @@ -53543,8 +43557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12509 components: - pos: 28.5,57.5 @@ -53552,8 +43564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12510 components: - pos: 28.5,56.5 @@ -53561,8 +43571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12511 components: - pos: 28.5,55.5 @@ -53570,8 +43578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12512 components: - pos: 28.5,54.5 @@ -53579,8 +43585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12513 components: - pos: 28.5,53.5 @@ -53588,8 +43592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12514 components: - pos: 28.5,52.5 @@ -53597,8 +43599,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12515 components: - pos: 28.5,51.5 @@ -53606,8 +43606,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12516 components: - pos: 27.5,51.5 @@ -53615,8 +43613,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12517 components: - pos: 29.5,52.5 @@ -53624,8 +43620,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12518 components: - pos: 29.5,51.5 @@ -53633,8 +43627,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12519 components: - pos: 30.5,51.5 @@ -53642,8 +43634,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12520 components: - pos: 31.5,51.5 @@ -53651,8 +43641,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12521 components: - pos: 32.5,51.5 @@ -53660,8 +43648,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12522 components: - pos: 33.5,51.5 @@ -53669,8 +43655,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12523 components: - pos: 34.5,51.5 @@ -53678,8 +43662,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12524 components: - pos: 35.5,51.5 @@ -53687,8 +43669,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12525 components: - pos: 36.5,51.5 @@ -53696,8 +43676,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12526 components: - pos: 36.5,50.5 @@ -53705,8 +43683,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12527 components: - pos: 36.5,49.5 @@ -53714,8 +43690,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12528 components: - pos: 36.5,48.5 @@ -53723,8 +43697,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12529 components: - pos: 36.5,47.5 @@ -53732,8 +43704,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12530 components: - pos: 36.5,46.5 @@ -53741,8 +43711,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12531 components: - pos: 36.5,45.5 @@ -53750,8 +43718,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12532 components: - pos: 36.5,44.5 @@ -53759,8 +43725,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12533 components: - pos: 36.5,43.5 @@ -53768,8 +43732,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12534 components: - pos: 36.5,42.5 @@ -53777,8 +43739,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12535 components: - pos: 36.5,41.5 @@ -53786,8 +43746,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12536 components: - pos: 36.5,40.5 @@ -53795,8 +43753,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12537 components: - pos: 37.5,40.5 @@ -53804,8 +43760,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12538 components: - pos: 38.5,40.5 @@ -53813,8 +43767,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12539 components: - pos: 39.5,40.5 @@ -53822,22 +43774,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12540 components: - pos: 40.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12541 components: - pos: 41.5,40.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12542 components: - pos: 41.5,41.5 @@ -53845,29 +43791,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12866 components: - pos: 16.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12867 components: - pos: 15.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12868 components: - pos: 14.5,25.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12869 components: - pos: 14.5,24.5 @@ -53875,15 +43813,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12870 components: - pos: 14.5,23.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12871 components: - pos: 14.5,22.5 @@ -53891,8 +43825,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12872 components: - pos: 15.5,22.5 @@ -53900,8 +43832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12873 components: - pos: 16.5,22.5 @@ -53909,8 +43839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12874 components: - pos: 17.5,22.5 @@ -53918,8 +43846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12875 components: - pos: 18.5,22.5 @@ -53927,8 +43853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12876 components: - pos: 19.5,22.5 @@ -53936,8 +43860,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12877 components: - pos: 19.5,21.5 @@ -53945,8 +43867,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12878 components: - pos: 19.5,20.5 @@ -53954,8 +43874,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12879 components: - pos: 19.5,19.5 @@ -53963,15 +43881,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12880 components: - pos: 18.5,19.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12881 components: - pos: 17.5,19.5 @@ -53979,8 +43893,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12882 components: - pos: 19.5,23.5 @@ -53988,8 +43900,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12883 components: - pos: 19.5,24.5 @@ -53997,8 +43907,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12884 components: - pos: 20.5,24.5 @@ -54006,8 +43914,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12885 components: - pos: 21.5,24.5 @@ -54015,8 +43921,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12886 components: - pos: 22.5,24.5 @@ -54024,8 +43928,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12887 components: - pos: 23.5,24.5 @@ -54033,8 +43935,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12888 components: - pos: 24.5,24.5 @@ -54042,8 +43942,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12889 components: - pos: 24.5,23.5 @@ -54051,8 +43949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12890 components: - pos: 24.5,25.5 @@ -54060,8 +43956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12891 components: - pos: 24.5,26.5 @@ -54069,8 +43963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12892 components: - pos: 24.5,27.5 @@ -54078,50 +43970,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12893 components: - pos: 23.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12894 components: - pos: 22.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12895 components: - pos: 21.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12896 components: - pos: 20.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12897 components: - pos: 20.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12898 components: - pos: 20.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12899 components: - pos: 20.5,30.5 @@ -54129,106 +44007,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12902 components: - pos: 17.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12903 components: - pos: 16.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12904 components: - pos: 15.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12905 components: - pos: 14.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12906 components: - pos: 13.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12907 components: - pos: 12.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12908 components: - pos: 11.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12909 components: - pos: 10.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12910 components: - pos: 9.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12911 components: - pos: 8.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12912 components: - pos: 7.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12913 components: - pos: 6.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12914 components: - pos: 6.5,27.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12915 components: - pos: 6.5,26.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12916 components: - pos: 5.5,26.5 @@ -54236,43 +44084,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12917 components: - pos: 15.5,21.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12918 components: - pos: 10.5,29.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12919 components: - pos: 10.5,30.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12920 components: - pos: 10.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12921 components: - pos: 9.5,31.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 12922 components: - pos: 8.5,31.5 @@ -54280,8 +44116,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13491 components: - pos: -7.5,-16.5 @@ -54289,15 +44123,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13497 components: - pos: -25.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13498 components: - pos: -25.5,-1.5 @@ -54305,8 +44135,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13499 components: - pos: -25.5,-2.5 @@ -54314,8 +44142,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13500 components: - pos: -24.5,-2.5 @@ -54323,8 +44149,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13501 components: - pos: -23.5,-2.5 @@ -54332,15 +44156,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13502 components: - pos: -22.5,-2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13503 components: - pos: -21.5,-2.5 @@ -54348,8 +44168,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13504 components: - pos: -20.5,-2.5 @@ -54357,8 +44175,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13505 components: - pos: -19.5,-2.5 @@ -54366,8 +44182,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13506 components: - pos: -19.5,-1.5 @@ -54375,8 +44189,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13507 components: - pos: -19.5,-0.5 @@ -54384,8 +44196,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13508 components: - pos: -19.5,0.5 @@ -54393,8 +44203,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13509 components: - pos: -19.5,1.5 @@ -54402,8 +44210,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13510 components: - pos: -19.5,2.5 @@ -54411,8 +44217,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13511 components: - pos: -19.5,3.5 @@ -54420,8 +44224,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13512 components: - pos: -19.5,4.5 @@ -54429,8 +44231,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13513 components: - pos: -19.5,5.5 @@ -54438,8 +44238,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13514 components: - pos: -19.5,6.5 @@ -54447,8 +44245,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13515 components: - pos: -19.5,7.5 @@ -54456,8 +44252,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13516 components: - pos: -20.5,7.5 @@ -54465,15 +44259,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13517 components: - pos: -21.5,7.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13518 components: - pos: -21.5,8.5 @@ -54481,99 +44271,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13519 components: - pos: -18.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13520 components: - pos: -17.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13521 components: - pos: -16.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13522 components: - pos: -15.5,-0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13523 components: - pos: -15.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13524 components: - pos: -14.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13525 components: - pos: -13.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13526 components: - pos: -12.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13527 components: - pos: -11.5,0.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13528 components: - pos: -11.5,1.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13529 components: - pos: -11.5,2.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13530 components: - pos: -11.5,3.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13531 components: - pos: -11.5,4.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 13532 components: - pos: -11.5,5.5 @@ -54581,8 +44343,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13533 components: - pos: -21.5,-1.5 @@ -54590,29 +44350,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14379 components: - pos: 28.5,-9.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 17238 components: - pos: 18.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 17239 components: - pos: 19.5,28.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18340 components: - pos: -9.5,74.5 @@ -54620,8 +44372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18341 components: - pos: -9.5,73.5 @@ -54629,8 +44379,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18342 components: - pos: -9.5,72.5 @@ -54638,8 +44386,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18343 components: - pos: -9.5,75.5 @@ -54647,36 +44393,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18451 components: - pos: 20.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18452 components: - pos: 22.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18453 components: - pos: 21.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18465 components: - pos: 16.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18466 components: - pos: 16.5,-10.5 @@ -54684,15 +44420,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18474 components: - pos: 15.5,-11.5 parent: 1 type: Transform - - fixtures: {} - type: Fixtures - uid: 18475 components: - pos: 15.5,-10.5 @@ -54700,8 +44432,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableMVStack entities: - uid: 9125 @@ -54772,8 +44502,6 @@ entities: - pos: 9.689535,34.47762 parent: 1 type: Transform - - nextSound: 410.3326722 - type: EmitSoundOnCollide - proto: CaptainIDCard entities: - uid: 9149 @@ -59555,24 +49283,18 @@ entities: pos: 23.5,-22.5 parent: 1 type: Transform - - nextAttack: 1098.493707 - type: MeleeWeapon - uid: 7421 components: - rot: 3.141592653589793 rad pos: 25.5,-26.5 parent: 1 type: Transform - - nextAttack: 2549.7063638 - type: MeleeWeapon - uid: 7443 components: - rot: -1.5707963267948966 rad pos: 23.5,-23.5 parent: 1 type: Transform - - nextAttack: 1098.9027257 - type: MeleeWeapon - uid: 8288 components: - rot: 1.5707963267948966 rad @@ -60590,8 +50312,6 @@ entities: - pos: 9.522836,34.653053 parent: 1 type: Transform - - nextSound: 375.884542 - type: EmitSoundOnCollide - proto: CloningPodMachineCircuitboard entities: - uid: 6384 @@ -60599,8 +50319,6 @@ entities: - pos: 16.560993,33.373604 parent: 1 type: Transform - - nextSound: 380.0594577 - type: EmitSoundOnCollide - proto: ClosetBase entities: - uid: 9867 @@ -63476,8 +53194,6 @@ entities: - pos: -42.38712,-12.466305 parent: 1 type: Transform - - nextSound: 671.3996034 - type: EmitSoundOnCollide - proto: ClothingBackpackSatchelLeather entities: - uid: 18320 @@ -63516,8 +53232,6 @@ entities: - pos: -39.31486,-19.325691 parent: 1 type: Transform - - nextSound: 682.4405545 - type: EmitSoundOnCollide - proto: ClothingBeltPlant entities: - uid: 4242 @@ -63581,8 +53295,6 @@ entities: - pos: -0.6837692,2.6104674 parent: 8756 type: Transform - - nextSound: 643.3781692 - type: EmitSoundOnCollide - proto: ClothingEyesGlassesMeson entities: - uid: 8082 @@ -63647,8 +53359,6 @@ entities: - pos: 18.631903,31.596643 parent: 1 type: Transform - - nextSound: 3363.1792541 - type: EmitSoundOnCollide - proto: ClothingHandsGlovesLeather entities: - uid: 4235 @@ -63747,8 +53457,6 @@ entities: - pos: 10.540607,19.673868 parent: 1 type: Transform - - nextSound: 3723.120875 - type: EmitSoundOnCollide - proto: ClothingHeadHatPumpkin entities: - uid: 4237 @@ -63812,15 +53520,11 @@ entities: - pos: -19.491697,40.80205 parent: 1 type: Transform - - nextSound: 552.6830059 - type: EmitSoundOnCollide - uid: 7799 components: - pos: -19.335447,40.598927 parent: 1 type: Transform - - nextSound: 553.5325137 - type: EmitSoundOnCollide - proto: ClothingHeadHelmetSyndicate entities: - uid: 13306 @@ -64033,15 +53737,11 @@ entities: - pos: -19.444822,40.4583 parent: 1 type: Transform - - nextSound: 550.6448089 - type: EmitSoundOnCollide - uid: 7714 components: - pos: -19.632322,40.661427 parent: 1 type: Transform - - nextSound: 549.5251859 - type: EmitSoundOnCollide - proto: ClothingOuterCoatInspector entities: - uid: 10937 @@ -64089,8 +53789,6 @@ entities: - pos: -24.647196,-32.421364 parent: 1 type: Transform - - nextSound: 689.5904272 - type: EmitSoundOnCollide - uid: 17750 components: - pos: 20.426132,60.536144 @@ -64117,8 +53815,6 @@ entities: - pos: 25.694765,31.717653 parent: 1 type: Transform - - nextSound: 1129.9305457 - type: EmitSoundOnCollide - uid: 8706 components: - pos: -13.482979,-24.072556 @@ -64131,8 +53827,6 @@ entities: - pos: -42.277744,-12.73193 parent: 1 type: Transform - - nextSound: 674.1995128 - type: EmitSoundOnCollide - proto: ClothingShoesBootsPerformer entities: - uid: 6625 @@ -64256,8 +53950,6 @@ entities: - pos: -0.5118942,2.4542174 parent: 8756 type: Transform - - nextSound: 646.7782025 - type: EmitSoundOnCollide - proto: ClothingUniformJumpsuitSecBlue entities: - uid: 8150 @@ -64816,162 +54508,82 @@ entities: pos: 17.5,-32.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver + - links: + - 4007 + type: DeviceLinkSink - uid: 3994 components: - pos: 19.5,-38.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver + - links: + - 4007 + type: DeviceLinkSink - uid: 3995 components: - pos: 19.5,-39.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver + - links: + - 4007 + type: DeviceLinkSink - uid: 3996 components: - pos: 19.5,-37.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver + - links: + - 4007 + type: DeviceLinkSink - uid: 3997 components: - pos: 19.5,-36.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver + - links: + - 4007 + type: DeviceLinkSink - uid: 3998 components: - pos: 19.5,-35.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver + - links: + - 4007 + type: DeviceLinkSink - uid: 3999 components: - pos: 19.5,-34.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver + - links: + - 4007 + type: DeviceLinkSink - uid: 4000 components: - pos: 19.5,-33.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver + - links: + - 4007 + type: DeviceLinkSink - uid: 4001 components: - pos: 19.5,-32.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver + - links: + - 4007 + type: DeviceLinkSink - uid: 4002 components: - rot: 1.5707963267948966 rad pos: 18.5,-32.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver + - links: + - 4007 + type: DeviceLinkSink - uid: 4110 components: - rot: 1.5707963267948966 rad @@ -65018,204 +54630,108 @@ entities: pos: -44.5,1.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9362 - Forward: - - port: Left - uid: 9362 - Off: - - port: Middle - uid: 9362 - type: SignalReceiver + - links: + - 9362 + type: DeviceLinkSink - uid: 4138 components: - rot: 1.5707963267948966 rad pos: -43.5,1.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9362 - Forward: - - port: Left - uid: 9362 - Off: - - port: Middle - uid: 9362 - type: SignalReceiver + - links: + - 9362 + type: DeviceLinkSink - uid: 4139 components: - rot: 1.5707963267948966 rad pos: -42.5,1.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9362 - Forward: - - port: Left - uid: 9362 - Off: - - port: Middle - uid: 9362 - type: SignalReceiver + - links: + - 9362 + type: DeviceLinkSink - uid: 4140 components: - rot: 1.5707963267948966 rad pos: -41.5,1.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9362 - Forward: - - port: Left - uid: 9362 - Off: - - port: Middle - uid: 9362 - type: SignalReceiver + - links: + - 9362 + type: DeviceLinkSink - uid: 4141 components: - rot: 1.5707963267948966 rad pos: -44.5,5.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9362 - Forward: - - port: Left - uid: 9362 - Off: - - port: Middle - uid: 9362 - type: SignalReceiver + - links: + - 9362 + type: DeviceLinkSink - uid: 4142 components: - rot: 1.5707963267948966 rad pos: -43.5,5.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9362 - Forward: - - port: Left - uid: 9362 - Off: - - port: Middle - uid: 9362 - type: SignalReceiver + - links: + - 9362 + type: DeviceLinkSink - uid: 4143 components: - rot: 1.5707963267948966 rad pos: -42.5,5.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9362 - Forward: - - port: Left - uid: 9362 - Off: - - port: Middle - uid: 9362 - type: SignalReceiver + - links: + - 9362 + type: DeviceLinkSink - uid: 4144 components: - rot: 1.5707963267948966 rad pos: -41.5,5.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9362 - Forward: - - port: Left - uid: 9362 - Off: - - port: Middle - uid: 9362 - type: SignalReceiver + - links: + - 9362 + type: DeviceLinkSink - uid: 4145 components: - rot: 1.5707963267948966 rad pos: -40.5,5.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9362 - Forward: - - port: Left - uid: 9362 - Off: - - port: Middle - uid: 9362 - type: SignalReceiver + - links: + - 9362 + type: DeviceLinkSink - uid: 4146 components: - rot: 1.5707963267948966 rad pos: -37.5,5.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9364 - Forward: - - port: Left - uid: 9364 - Off: - - port: Middle - uid: 9364 - type: SignalReceiver + - links: + - 9364 + type: DeviceLinkSink - uid: 4147 components: - rot: 1.5707963267948966 rad pos: -36.5,5.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9364 - Forward: - - port: Left - uid: 9364 - Off: - - port: Middle - uid: 9364 - type: SignalReceiver + - links: + - 9364 + type: DeviceLinkSink - uid: 4148 components: - rot: 1.5707963267948966 rad pos: -40.5,1.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9362 - Forward: - - port: Left - uid: 9362 - Off: - - port: Middle - uid: 9362 - type: SignalReceiver + - links: + - 9362 + type: DeviceLinkSink - uid: 7818 components: - rot: 1.5707963267948966 rad @@ -66041,91 +55557,51 @@ entities: - pos: -5.772716,20.447916 parent: 1 type: Transform - - nextAttack: 4031.2062843 - type: MeleeWeapon - - nextSound: 4031.4062843 - type: EmitSoundOnCollide - uid: 4565 components: - pos: 4.7110076,20.385416 parent: 1 type: Transform - - nextAttack: 4033.2851545 - type: MeleeWeapon - - nextSound: 4033.4851545 - type: EmitSoundOnCollide - uid: 4566 components: - pos: -6.6414404,-12.133052 parent: 1 type: Transform - - nextAttack: 4052.8530547 - type: MeleeWeapon - - nextSound: 4053.0530547 - type: EmitSoundOnCollide - uid: 4567 components: - pos: 5.5849104,-12.195552 parent: 1 type: Transform - - nextAttack: 4056.0823478 - type: MeleeWeapon - - nextSound: 4056.2823478 - type: EmitSoundOnCollide - uid: 6150 components: - pos: 12.86205,19.48184 parent: 1 type: Transform - - nextAttack: 4036.4374013 - type: MeleeWeapon - - nextSound: 4036.6374013 - type: EmitSoundOnCollide - uid: 6152 components: - pos: 4.2470655,-2.5974627 parent: 1 type: Transform - - nextAttack: 4041.1864912 - type: MeleeWeapon - - nextSound: 4041.3864912 - type: EmitSoundOnCollide - uid: 6153 components: - pos: 11.743292,-5.633137 parent: 1 type: Transform - - nextAttack: 4044.2808961 - type: MeleeWeapon - - nextSound: 4044.4808961 - type: EmitSoundOnCollide - uid: 6154 components: - pos: -6.2473664,5.4515653 parent: 1 type: Transform - - nextAttack: 4048.1100399 - type: MeleeWeapon - - nextSound: 4048.3100399 - type: EmitSoundOnCollide - uid: 6193 components: - pos: -4.4996243,53.44499 parent: 1 type: Transform - - nextAttack: 4023.3133788 - type: MeleeWeapon - - nextSound: 4023.5133788 - type: EmitSoundOnCollide - uid: 7655 components: - pos: 26.62281,3.3925822 parent: 1 type: Transform - - nextAttack: 4085.4978471 - type: MeleeWeapon - - nextSound: 4085.6978471 - type: EmitSoundOnCollide - proto: DiceBag entities: - uid: 7030 @@ -74781,15 +64257,11 @@ entities: - pos: -18.39577,40.731785 parent: 1 type: Transform - - nextSound: 593.0165614 - type: EmitSoundOnCollide - uid: 7771 components: - pos: -18.58327,40.43491 parent: 1 type: Transform - - nextSound: 593.0165614 - type: EmitSoundOnCollide - uid: 8184 components: - pos: -16.611473,49.69518 @@ -75062,8 +64534,6 @@ entities: - pos: -40.490295,77.610565 parent: 1 type: Transform - - nextSound: 570.2859087 - type: EmitSoundOnCollide - proto: FoodFrozenPopsicleBerry entities: - uid: 9848 @@ -75154,8 +64624,6 @@ entities: - pos: 47.521317,74.488594 parent: 1 type: Transform - - nextSound: 659.6528992 - type: EmitSoundOnCollide - proto: FoodMealMilkape entities: - uid: 17747 @@ -101691,8 +91159,6 @@ entities: - pos: -42.37712,26.662056 parent: 1 type: Transform - - nextSound: 3186.1093647 - type: EmitSoundOnCollide - uid: 9388 components: - pos: -43.72039,-2.2772734 @@ -102225,7 +91691,56 @@ entities: - pos: -38.613434,-12.656909 parent: 1 type: Transform -- proto: Intercom +- proto: IntercomAll + entities: + - uid: 18363 + components: + - pos: -7.5,71.5 + parent: 1 + type: Transform +- proto: IntercomCommand + entities: + - uid: 17569 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-25.5 + parent: 1 + type: Transform + - uid: 17582 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,11.5 + parent: 1 + type: Transform + - uid: 17593 + components: + - rot: 3.141592653589793 rad + pos: -24.5,18.5 + parent: 1 + type: Transform + - uid: 17598 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,33.5 + parent: 1 + type: Transform + - uid: 17607 + components: + - pos: -15.5,61.5 + parent: 1 + type: Transform + - uid: 17610 + components: + - pos: 4.5,75.5 + parent: 1 + type: Transform + - uid: 17611 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,81.5 + parent: 1 + type: Transform +- proto: IntercomCommon entities: - uid: 8893 components: @@ -102314,55 +91829,6 @@ entities: pos: 13.5,43.5 parent: 1 type: Transform -- proto: IntercomAll - entities: - - uid: 18363 - components: - - pos: -7.5,71.5 - parent: 1 - type: Transform -- proto: IntercomCommand - entities: - - uid: 17569 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-25.5 - parent: 1 - type: Transform - - uid: 17582 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,11.5 - parent: 1 - type: Transform - - uid: 17593 - components: - - rot: 3.141592653589793 rad - pos: -24.5,18.5 - parent: 1 - type: Transform - - uid: 17598 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,33.5 - parent: 1 - type: Transform - - uid: 17607 - components: - - pos: -15.5,61.5 - parent: 1 - type: Transform - - uid: 17610 - components: - - pos: 4.5,75.5 - parent: 1 - type: Transform - - uid: 17611 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,81.5 - parent: 1 - type: Transform - proto: IntercomEngineering entities: - uid: 17567 @@ -102587,45 +92053,21 @@ entities: - pos: 25.382265,31.514528 parent: 1 type: Transform - - lerpTarget: 1136.1295944 - type: InputMover - - nextAttack: 1136.1295944 - type: MeleeWeapon - - nextSound: 1136.3295944 - type: EmitSoundOnCollide - uid: 4368 components: - pos: 25.476015,31.717653 parent: 1 type: Transform - - lerpTarget: 1136.8638719 - type: InputMover - - nextAttack: 1136.8638719 - type: MeleeWeapon - - nextSound: 1137.0638719 - type: EmitSoundOnCollide - uid: 7829 components: - pos: -41.32702,21.77888 parent: 1 type: Transform - - lerpTarget: 1289.818745 - type: InputMover - - nextAttack: 1289.818745 - type: MeleeWeapon - - nextSound: 1290.018745 - type: EmitSoundOnCollide - uid: 7931 components: - pos: -41.62712,21.537056 parent: 1 type: Transform - - lerpTarget: 3214.4427465 - type: InputMover - - nextAttack: 3214.4427465 - type: MeleeWeapon - - nextSound: 3214.6427465 - type: EmitSoundOnCollide - proto: KitchenMicrowave entities: - uid: 4327 @@ -104000,8 +93442,6 @@ entities: type: MetaData - parent: 7683 type: Transform - - nextSound: 173.0796955 - type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -104013,8 +93453,6 @@ entities: type: MetaData - parent: 7683 type: Transform - - nextSound: 166.3325007 - type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -104026,8 +93464,6 @@ entities: type: MetaData - parent: 7683 type: Transform - - nextSound: 157.6002064 - type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -104498,8 +93934,6 @@ entities: - pos: 9.5,-26.5 parent: 1 type: Transform - - nextSound: 4736.8698506 - type: MaterialReclaimer - proto: MaterialWoodPlank entities: - uid: 18098 @@ -104514,8 +93948,6 @@ entities: - pos: 9.36141,34.82137 parent: 1 type: Transform - - nextSound: 415.8338084 - type: EmitSoundOnCollide - proto: MedicalBed entities: - uid: 4058 @@ -104573,8 +94005,6 @@ entities: - pos: -24.283842,-32.51983 parent: 1 type: Transform - - nextSound: 1308.0121035 - type: EmitSoundOnCollide - proto: MedkitFilled entities: - uid: 8523 @@ -104615,15 +94045,11 @@ entities: - pos: 9.29891,34.524494 parent: 1 type: Transform - - nextSound: 413.0929966 - type: EmitSoundOnCollide - uid: 7765 components: - pos: 9.61141,34.711994 parent: 1 type: Transform - - nextSound: 413.6761214 - type: EmitSoundOnCollide - proto: MicrophoneInstrument entities: - uid: 18256 @@ -104899,73 +94325,41 @@ entities: - pos: 7.40583,-11.399742 parent: 1 type: Transform - - lastUseAttempt: 3271.8018285 - type: NetworkConfigurator - - nextSound: 3272.0018285 - type: EmitSoundOnCollide - uid: 7432 components: - pos: 12.35541,-11.368492 parent: 1 type: Transform - - lastUseAttempt: 3273.9582154 - type: NetworkConfigurator - - nextSound: 3274.1582153 - type: EmitSoundOnCollide - uid: 7433 components: - pos: -11.6948395,-19.44185 parent: 1 type: Transform - - lastUseAttempt: 3278.6395168 - type: NetworkConfigurator - - nextSound: 3278.8395168 - type: EmitSoundOnCollide - uid: 7434 components: - pos: -13.616468,-33.96476 parent: 1 type: Transform - - lastUseAttempt: 3282.5743269 - type: NetworkConfigurator - - nextSound: 3282.7743268 - type: EmitSoundOnCollide - uid: 7435 components: - pos: 8.562072,-32.386993 parent: 1 type: Transform - - lastUseAttempt: 3289.8166357 - type: NetworkConfigurator - - nextSound: 3290.0166357 - type: EmitSoundOnCollide - uid: 7436 components: - pos: -9.608111,27.948849 parent: 1 type: Transform - - lastUseAttempt: 3309.3056352 - type: NetworkConfigurator - - nextSound: 3309.5056352 - type: EmitSoundOnCollide - uid: 7437 components: - pos: -6.7244835,21.503235 parent: 1 type: Transform - - lastUseAttempt: 3313.4132294 - type: NetworkConfigurator - - nextSound: 3313.6132294 - type: EmitSoundOnCollide - uid: 7438 components: - pos: -10.361936,34.69222 parent: 1 type: Transform - - lastUseAttempt: 3317.7694012 - type: NetworkConfigurator - - nextSound: 3317.9694012 - type: EmitSoundOnCollide - proto: NitrogenCanister entities: - uid: 3027 @@ -105458,8 +94852,6 @@ entities: - pos: -42.102123,21.612055 parent: 1 type: Transform - - nextSound: 3208.2768799 - type: EmitSoundOnCollide - uid: 9123 components: - pos: 13.554044,-21.633276 @@ -109312,8 +98704,6 @@ entities: - pos: -42.652122,26.537056 parent: 1 type: Transform - - nextSound: 3182.3109971 - type: EmitSoundOnCollide - uid: 7397 components: - pos: -14.804126,50.394012 @@ -111129,17 +100519,9 @@ entities: - pos: 19.5,-35.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver + - links: + - 4007 + type: DeviceLinkSink - proto: ReinforcedPlasmaWindow entities: - uid: 1834 @@ -114308,10 +103690,6 @@ entities: - pos: -16.450819,5.681794 parent: 1 type: Transform - - nextFire: 2753.552245 - type: Gun - - nextSound: 2753.752245 - type: EmitSoundOnCollide - proto: RiotShield entities: - uid: 7800 @@ -114319,15 +103697,11 @@ entities: - pos: -18.644022,40.739033 parent: 1 type: Transform - - nextSound: 564.1596002 - type: EmitSoundOnCollide - uid: 7801 components: - pos: -18.456522,40.489033 parent: 1 type: Transform - - nextSound: 564.8663498 - type: EmitSoundOnCollide - proto: RitualDagger entities: - uid: 13305 @@ -114443,10 +103817,6 @@ entities: - pos: 22.634111,-23.425726 parent: 1 type: Transform - - nextAttack: 1121.364106 - type: MeleeWeapon - - nextSound: 1121.564106 - type: EmitSoundOnCollide - uid: 8669 components: - pos: -6.6287556,21.412113 @@ -114631,13 +104001,6 @@ entities: - links: - 6627 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6627 - type: SignalReceiver - uid: 1066 components: - pos: -15.5,35.5 @@ -114646,13 +104009,6 @@ entities: - links: - 6627 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6627 - type: SignalReceiver - uid: 1106 components: - pos: -14.5,35.5 @@ -114661,13 +104017,6 @@ entities: - links: - 6627 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6627 - type: SignalReceiver - proto: ShuttersNormalOpen entities: - uid: 5828 @@ -114675,229 +104024,153 @@ entities: - pos: -41.5,-3.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17634 - type: SignalReceiver + - links: + - 17634 + type: DeviceLinkSink - uid: 6653 components: - pos: -40.5,-3.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17634 - type: SignalReceiver + - links: + - 17634 + type: DeviceLinkSink - uid: 7138 components: - pos: -5.5,8.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9001 - type: SignalReceiver + - links: + - 9001 + type: DeviceLinkSink - uid: 7139 components: - pos: -5.5,7.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9001 - type: SignalReceiver + - links: + - 9001 + type: DeviceLinkSink - uid: 7140 components: - pos: -5.5,6.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9001 - type: SignalReceiver + - links: + - 9001 + type: DeviceLinkSink - uid: 7141 components: - pos: -6.5,5.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9001 - type: SignalReceiver + - links: + - 9001 + type: DeviceLinkSink - uid: 7142 components: - pos: -7.5,5.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9001 - type: SignalReceiver + - links: + - 9001 + type: DeviceLinkSink - uid: 7143 components: - pos: -8.5,5.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9001 - type: SignalReceiver + - links: + - 9001 + type: DeviceLinkSink - uid: 7144 components: - pos: 4.5,-0.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 570 - type: SignalReceiver + - links: + - 570 + type: DeviceLinkSink - uid: 7145 components: - pos: 4.5,-1.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 570 - type: SignalReceiver + - links: + - 570 + type: DeviceLinkSink - uid: 7146 components: - pos: 4.5,-2.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 570 - type: SignalReceiver + - links: + - 570 + type: DeviceLinkSink - uid: 7147 components: - pos: 9.5,-5.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 570 - type: SignalReceiver + - links: + - 570 + type: DeviceLinkSink - uid: 7148 components: - pos: 10.5,-5.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 570 - type: SignalReceiver + - links: + - 570 + type: DeviceLinkSink - uid: 7149 components: - pos: 11.5,-5.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 570 - type: SignalReceiver + - links: + - 570 + type: DeviceLinkSink - uid: 8497 components: - pos: 14.5,35.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8571 - type: SignalReceiver + - links: + - 8571 + type: DeviceLinkSink - uid: 8498 components: - pos: 15.5,35.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8571 - type: SignalReceiver + - links: + - 8571 + type: DeviceLinkSink - uid: 8499 components: - pos: 16.5,35.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8571 - type: SignalReceiver + - links: + - 8571 + type: DeviceLinkSink - uid: 8500 components: - pos: 13.5,32.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8571 - type: SignalReceiver + - links: + - 8571 + type: DeviceLinkSink - uid: 8501 components: - pos: 15.5,30.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8571 - type: SignalReceiver + - links: + - 8571 + type: DeviceLinkSink - uid: 8622 components: - pos: -22.5,22.5 @@ -114918,49 +104191,33 @@ entities: - pos: 26.5,3.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17647 - type: SignalReceiver + - links: + - 17647 + type: DeviceLinkSink - uid: 9279 components: - pos: 26.5,4.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17647 - type: SignalReceiver + - links: + - 17647 + type: DeviceLinkSink - uid: 9280 components: - pos: 26.5,5.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17647 - type: SignalReceiver + - links: + - 17647 + type: DeviceLinkSink - uid: 9281 components: - pos: 26.5,6.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17647 - type: SignalReceiver + - links: + - 17647 + type: DeviceLinkSink - uid: 9343 components: - pos: -44.5,9.5 @@ -114991,37 +104248,25 @@ entities: - pos: 8.5,-24.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9170 - type: SignalReceiver + - links: + - 9170 + type: DeviceLinkSink - uid: 17632 components: - pos: 6.5,-27.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9170 - type: SignalReceiver + - links: + - 9170 + type: DeviceLinkSink - uid: 17633 components: - pos: 7.5,-27.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9170 - type: SignalReceiver + - links: + - 9170 + type: DeviceLinkSink - proto: ShuttleConsoleCircuitboard entities: - uid: 4206 @@ -115152,21 +104397,20 @@ entities: pos: 8.5,-5.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7147 - - port: Toggle - uid: 7148 - - port: Toggle - uid: 7149 - - port: Toggle - uid: 7144 - - port: Toggle - uid: 7145 - - port: Toggle - uid: 7146 - type: SignalTransmitter + - linkedPorts: + 7147: + - Pressed: Toggle + 7148: + - Pressed: Toggle + 7149: + - Pressed: Toggle + 7144: + - Pressed: Toggle + 7145: + - Pressed: Toggle + 7146: + - Pressed: Toggle + type: DeviceLinkSource - uid: 6627 components: - rot: 1.5707963267948966 rad @@ -115182,21 +104426,7 @@ entities: - Pressed: Toggle 1065: - Pressed: Toggle - registeredSinks: - Pressed: - - 1066 - - 1106 - - 1065 type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 1066 - - port: Toggle - uid: 1106 - - port: Toggle - uid: 1065 - type: SignalTransmitter - type: ItemCooldown - uid: 7826 components: @@ -115208,10 +104438,6 @@ entities: - Pressed: Toggle 7923: - Pressed: Toggle - registeredSinks: - Pressed: - - 4135 - - 7923 type: DeviceLinkSource - uid: 8571 components: @@ -115219,19 +104445,18 @@ entities: pos: 16.5,33.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 8499 - - port: Toggle - uid: 8498 - - port: Toggle - uid: 8497 - - port: Toggle - uid: 8500 - - port: Toggle - uid: 8501 - type: SignalTransmitter + - linkedPorts: + 8499: + - Pressed: Toggle + 8498: + - Pressed: Toggle + 8497: + - Pressed: Toggle + 8500: + - Pressed: Toggle + 8501: + - Pressed: Toggle + type: DeviceLinkSource - uid: 8572 components: - rot: -1.5707963267948966 rad @@ -115241,15 +104466,7 @@ entities: - linkedPorts: 1048: - Pressed: Toggle - registeredSinks: - Pressed: - - 1048 type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 1048 - type: SignalTransmitter - uid: 8625 components: - rot: 1.5707963267948966 rad @@ -115273,24 +104490,7 @@ entities: - Pressed: Toggle 2822: - Pressed: Toggle - registeredSinks: - Pressed: - - 2813 - - 2814 - - 2821 - - 2822 type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 2813 - - port: Toggle - uid: 2814 - - port: Toggle - uid: 2821 - - port: Toggle - uid: 2822 - type: SignalTransmitter - type: ItemCooldown - uid: 8749 components: @@ -115298,60 +104498,56 @@ entities: pos: -4.5,-37.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 3050 - type: SignalTransmitter + - linkedPorts: + 3050: + - Pressed: Toggle + type: DeviceLinkSource - uid: 8750 components: - pos: -2.5,-48.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 3052 - - port: Toggle - uid: 3051 - - port: Toggle - uid: 3053 - type: SignalTransmitter + - linkedPorts: + 3052: + - Pressed: Toggle + 3051: + - Pressed: Toggle + 3053: + - Pressed: Toggle + type: DeviceLinkSource - uid: 9001 components: - pos: -9.5,9.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7143 - - port: Toggle - uid: 7142 - - port: Toggle - uid: 7141 - - port: Toggle - uid: 7140 - - port: Toggle - uid: 7139 - - port: Toggle - uid: 7138 - type: SignalTransmitter + - linkedPorts: + 7143: + - Pressed: Toggle + 7142: + - Pressed: Toggle + 7141: + - Pressed: Toggle + 7140: + - Pressed: Toggle + 7139: + - Pressed: Toggle + 7138: + - Pressed: Toggle + type: DeviceLinkSource - uid: 9170 components: - rot: 1.5707963267948966 rad pos: 3.5,-24.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 17632 - - port: Toggle - uid: 17633 - - port: Toggle - uid: 17631 - type: SignalTransmitter + - linkedPorts: + 17632: + - Pressed: Toggle + 17633: + - Pressed: Toggle + 17631: + - Pressed: Toggle + type: DeviceLinkSource - uid: 9348 components: - rot: 1.5707963267948966 rad @@ -115364,17 +104560,16 @@ entities: pos: -41.5,3.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 110 - - port: Toggle - uid: 286 - - port: Toggle - uid: 109 - - port: Toggle - uid: 287 - type: SignalTransmitter + - linkedPorts: + 110: + - Pressed: Toggle + 286: + - Pressed: Toggle + 109: + - Pressed: Toggle + 287: + - Pressed: Toggle + type: DeviceLinkSource - uid: 9404 components: - pos: -20.5,-14.5 @@ -115383,44 +104578,34 @@ entities: - linkedPorts: 9406: - Pressed: Toggle - registeredSinks: - Pressed: - - 9406 type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 9406 - type: SignalTransmitter - uid: 17634 components: - rot: 3.141592653589793 rad pos: -39.5,-3.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6653 - - port: Toggle - uid: 5828 - type: SignalTransmitter + - linkedPorts: + 6653: + - Pressed: Toggle + 5828: + - Pressed: Toggle + type: DeviceLinkSource - uid: 17647 components: - pos: 25.5,7.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9281 - - port: Toggle - uid: 9280 - - port: Toggle - uid: 9279 - - port: Toggle - uid: 9278 - type: SignalTransmitter + - linkedPorts: + 9281: + - Pressed: Toggle + 9280: + - Pressed: Toggle + 9279: + - Pressed: Toggle + 9278: + - Pressed: Toggle + type: DeviceLinkSource - uid: 17648 components: - rot: 1.5707963267948966 rad @@ -115429,11 +104614,10 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 4205 - type: SignalTransmitter + - linkedPorts: + 4205: + - Pressed: Toggle + type: DeviceLinkSource - type: ItemCooldown - uid: 17649 components: @@ -115443,11 +104627,10 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 3066 - type: SignalTransmitter + - linkedPorts: + 3066: + - Pressed: Toggle + type: DeviceLinkSource - type: ItemCooldown - proto: SignalButtonBridge entities: @@ -115463,11 +104646,6 @@ entities: - Pressed: Toggle 4304: - Pressed: Toggle - registeredSinks: - Pressed: - - 4302 - - 4303 - - 4304 type: DeviceLinkSource - proto: SignalButtonWindows entities: @@ -118471,8 +107649,6 @@ entities: - pos: -16.575819,5.572419 parent: 1 type: Transform - - nextSound: 2778.592326 - type: EmitSoundOnCollide - proto: Spoon entities: - uid: 17288 @@ -118720,36 +107896,26 @@ entities: - pos: -38.658638,42.44425 parent: 1 type: Transform - - nextSound: 3569.5465411 - type: EmitSoundOnCollide - uid: 6551 components: - pos: -34.521122,33.610306 parent: 1 type: Transform - - nextSound: 3576.5104575 - type: EmitSoundOnCollide - uid: 7545 components: - pos: 23.385082,56.636555 parent: 1 type: Transform - - nextSound: 3614.8449104 - type: EmitSoundOnCollide - uid: 7624 components: - pos: 17.981688,-36.520332 parent: 1 type: Transform - - nextSound: 3597.8214944 - type: EmitSoundOnCollide - uid: 7672 components: - pos: -17.505447,-39.48328 parent: 1 type: Transform - - nextSound: 3587.3353742 - type: EmitSoundOnCollide - proto: Stunbaton entities: - uid: 8187 @@ -122385,10 +111551,6 @@ entities: - pos: -42.546696,26.738258 parent: 1 type: Transform - - nextAttack: 3543.1210858 - type: MeleeWeapon - - nextSound: 3543.3210858 - type: EmitSoundOnCollide - uid: 8067 components: - pos: 7.70034,77.49678 @@ -122478,77 +111640,52 @@ entities: - pos: 18.5,-33.5 parent: 1 type: Transform - - outputs: - Left: - - port: Forward - uid: 3830 - - port: Forward - uid: 4002 - - port: Forward - uid: 4001 - - port: Forward - uid: 4000 - - port: Forward - uid: 3999 - - port: Forward - uid: 3989 - - port: Forward - uid: 3998 - - port: Forward - uid: 3997 - - port: Forward - uid: 3996 - - port: Forward - uid: 3994 - - port: Forward - uid: 3995 - Right: - - port: Reverse - uid: 3830 - - port: Reverse - uid: 4002 - - port: Reverse - uid: 4001 - - port: Reverse - uid: 4000 - - port: Reverse - uid: 3999 - - port: Reverse - uid: 3989 - - port: Reverse - uid: 3998 - - port: Reverse - uid: 3997 - - port: Reverse - uid: 3996 - - port: Reverse - uid: 3994 - - port: Reverse - uid: 3995 - Middle: - - port: Off - uid: 3830 - - port: Off - uid: 4002 - - port: Off - uid: 4001 - - port: Off - uid: 4000 - - port: Off - uid: 3999 - - port: Off - uid: 3989 - - port: Off - uid: 3998 - - port: Off - uid: 3997 - - port: Off - uid: 3996 - - port: Off - uid: 3994 - - port: Off - uid: 3995 - type: SignalTransmitter + - linkedPorts: + 3830: + - Left: Forward + - Right: Reverse + - Middle: Off + 4002: + - Left: Forward + - Right: Reverse + - Middle: Off + 4001: + - Left: Forward + - Right: Reverse + - Middle: Off + 4000: + - Left: Forward + - Right: Reverse + - Middle: Off + 3999: + - Left: Forward + - Right: Reverse + - Middle: Off + 3989: + - Left: Forward + - Right: Reverse + - Middle: Off + 3998: + - Left: Forward + - Right: Reverse + - Middle: Off + 3997: + - Left: Forward + - Right: Reverse + - Middle: Off + 3996: + - Left: Forward + - Right: Reverse + - Middle: Off + 3994: + - Left: Forward + - Right: Reverse + - Middle: Off + 3995: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 7808 components: - pos: -42.5,23.5 @@ -122587,34 +111724,6 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - registeredSinks: - Left: - - 4134 - - 4130 - - 1767 - - 4110 - - 7820 - - 7818 - - 4115 - - 7821 - Right: - - 4134 - - 4130 - - 1767 - - 4110 - - 7820 - - 7818 - - 4115 - - 7821 - Middle: - - 4134 - - 4130 - - 1767 - - 4110 - - 7820 - - 7818 - - 4115 - - 7821 type: DeviceLinkSource - uid: 7918 components: @@ -122654,127 +111763,69 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - registeredSinks: - Left: - - 7821 - - 7820 - - 1767 - - 4134 - - 4115 - - 7818 - - 4110 - - 4130 - Right: - - 7821 - - 7820 - - 1767 - - 4134 - - 4115 - - 7818 - - 4110 - - 4130 - Middle: - - 7821 - - 7820 - - 1767 - - 4134 - - 4115 - - 7818 - - 4110 - - 4130 type: DeviceLinkSource - uid: 9362 components: - pos: -40.5,3.5 parent: 1 type: Transform - - outputs: - Left: - - port: Forward - uid: 4141 - - port: Forward - uid: 4142 - - port: Forward - uid: 4143 - - port: Forward - uid: 4144 - - port: Forward - uid: 4145 - - port: Forward - uid: 4137 - - port: Forward - uid: 4138 - - port: Forward - uid: 4139 - - port: Forward - uid: 4140 - - port: Forward - uid: 4148 - Right: - - port: Reverse - uid: 4141 - - port: Reverse - uid: 4142 - - port: Reverse - uid: 4143 - - port: Reverse - uid: 4144 - - port: Reverse - uid: 4145 - - port: Reverse - uid: 4137 - - port: Reverse - uid: 4138 - - port: Reverse - uid: 4139 - - port: Reverse - uid: 4140 - - port: Reverse - uid: 4148 - Middle: - - port: Off - uid: 4141 - - port: Off - uid: 4142 - - port: Off - uid: 4143 - - port: Off - uid: 4144 - - port: Off - uid: 4145 - - port: Off - uid: 4137 - - port: Off - uid: 4138 - - port: Off - uid: 4139 - - port: Off - uid: 4140 - - port: Off - uid: 4148 - type: SignalTransmitter + - linkedPorts: + 4141: + - Left: Forward + - Right: Reverse + - Middle: Off + 4142: + - Left: Forward + - Right: Reverse + - Middle: Off + 4143: + - Left: Forward + - Right: Reverse + - Middle: Off + 4144: + - Left: Forward + - Right: Reverse + - Middle: Off + 4145: + - Left: Forward + - Right: Reverse + - Middle: Off + 4137: + - Left: Forward + - Right: Reverse + - Middle: Off + 4138: + - Left: Forward + - Right: Reverse + - Middle: Off + 4139: + - Left: Forward + - Right: Reverse + - Middle: Off + 4140: + - Left: Forward + - Right: Reverse + - Middle: Off + 4148: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 9364 components: - pos: -37.5,4.5 parent: 1 type: Transform - - outputs: - Left: - - port: Forward - uid: 4147 - - port: Forward - uid: 4146 - Right: - - port: Reverse - uid: 4147 - - port: Reverse - uid: 4146 - Middle: - - port: Off - uid: 4147 - - port: Off - uid: 4146 - type: SignalTransmitter + - linkedPorts: + 4147: + - Left: Forward + - Right: Reverse + - Middle: Off + 4146: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - proto: UniformPrinter entities: - uid: 2901 @@ -122944,8 +111995,6 @@ entities: - pos: 7.5,22.5 parent: 1 type: Transform - - nextEmpEject: 62.884374 - type: VendingMachine - proto: VendingMachineCigs entities: - uid: 1281 @@ -123303,8 +112352,6 @@ entities: - pos: -19.5,42.5 parent: 1 type: Transform - - nextEmpEject: 538.9758821 - type: VendingMachine - proto: VendingMachineSeeds entities: - uid: 9003 @@ -123387,8 +112434,6 @@ entities: - pos: -39.5,30.5 parent: 1 type: Transform - - nextEmpEject: 3532.2388949 - type: VendingMachine - uid: 8167 components: - flags: SessionSpecific @@ -123462,8 +112507,6 @@ entities: - pos: 21.5,43.5 parent: 1 type: Transform - - nextEmpEject: 2724.2373668 - type: VendingMachine - proto: VendingMachineYouTool entities: - uid: 4182 @@ -134666,12 +123709,6 @@ entities: - pos: -41.696693,21.56326 parent: 1 type: Transform - - nextFire: 3549.1038101 - type: Gun - - nextAttack: 3549.1038101 - type: MeleeWeapon - - nextSound: 3549.3038101 - type: EmitSoundOnCollide - proto: WeaponDisabler entities: - uid: 7396 @@ -134713,10 +123750,6 @@ entities: type: MetaData - parent: 7683 type: Transform - - nextFire: 215.1615452 - type: Gun - - nextSound: 215.3615452 - type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -134726,10 +123759,6 @@ entities: type: MetaData - parent: 7683 type: Transform - - nextFire: 213.8413472 - type: Gun - - nextSound: 214.0413472 - type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -134747,10 +123776,6 @@ entities: - pos: -7.5149508,69.42698 parent: 1 type: Transform - - nextFire: 317.6654638 - type: Gun - - nextSound: 317.8654638 - type: EmitSoundOnCollide - proto: WeaponWaterPistol entities: - uid: 7649 @@ -134758,10 +123783,6 @@ entities: - pos: -23.508644,1.4423954 parent: 1 type: Transform - - nextFire: 348.1162994 - type: Gun - - nextSound: 348.3162994 - type: EmitSoundOnCollide - proto: WelderIndustrial entities: - uid: 4700 @@ -134873,7 +123894,44 @@ entities: pos: -26.5,5.5 parent: 1 type: Transform -- proto: WindoorArmoryLocked +- proto: WindoorHydroponicsLocked + entities: + - uid: 556 + components: + - pos: 11.5,12.5 + parent: 1 + type: Transform + - uid: 557 + components: + - pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 4395 + components: + - pos: 9.5,12.5 + parent: 1 + type: Transform + - uid: 9011 + components: + - rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 9012 + components: + - rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 1 + type: Transform +- proto: WindoorSecure + entities: + - uid: 18336 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,3.5 + parent: 1 + type: Transform +- proto: WindoorSecureArmoryLocked entities: - uid: 4371 components: @@ -134905,7 +123963,7 @@ entities: pos: -10.5,49.5 parent: 1 type: Transform -- proto: WindoorBrigLocked +- proto: WindoorSecureBrigLocked entities: - uid: 8127 components: @@ -134925,7 +123983,26 @@ entities: pos: 13.5,60.5 parent: 1 type: Transform -- proto: WindoorChemistryLocked +- proto: WindoorSecureCargoLocked + entities: + - uid: 9355 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,6.5 + parent: 1 + type: Transform + - uid: 9356 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,7.5 + parent: 1 + type: Transform + - uid: 9357 + components: + - pos: -35.5,12.5 + parent: 1 + type: Transform +- proto: WindoorSecureChemistryLocked entities: - uid: 8537 components: @@ -134951,7 +124028,7 @@ entities: pos: 9.5,23.5 parent: 1 type: Transform -- proto: WindoorCommandLocked +- proto: WindoorSecureCommandLocked entities: - uid: 3784 components: @@ -134965,7 +124042,7 @@ entities: pos: 19.5,-13.5 parent: 1 type: Transform -- proto: WindoorEngineeringLocked +- proto: WindoorSecureEngineeringLocked entities: - uid: 8727 components: @@ -134991,7 +124068,7 @@ entities: pos: 5.5,-12.5 parent: 1 type: Transform -- proto: WindoorHeadOfPersonnelLocked +- proto: WindoorSecureHeadOfPersonnelLocked entities: - uid: 9277 components: @@ -134999,81 +124076,6 @@ entities: pos: 26.5,3.5 parent: 1 type: Transform -- proto: WindoorHydroponicsLocked - entities: - - uid: 556 - components: - - pos: 11.5,12.5 - parent: 1 - type: Transform - - uid: 557 - components: - - pos: 10.5,12.5 - parent: 1 - type: Transform - - uid: 4395 - components: - - pos: 9.5,12.5 - parent: 1 - type: Transform - - uid: 9011 - components: - - rot: 3.141592653589793 rad - pos: 7.5,3.5 - parent: 1 - type: Transform - - uid: 9012 - components: - - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 1 - type: Transform -- proto: WindoorScienceLocked - entities: - - uid: 8603 - components: - - pos: -20.5,35.5 - parent: 1 - type: Transform - - uid: 8654 - components: - - rot: 3.141592653589793 rad - pos: -5.5,20.5 - parent: 1 - type: Transform - - uid: 8655 - components: - - rot: 3.141592653589793 rad - pos: -4.5,20.5 - parent: 1 - type: Transform -- proto: WindoorSecure - entities: - - uid: 18336 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,3.5 - parent: 1 - type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 9355 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,6.5 - parent: 1 - type: Transform - - uid: 9356 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,7.5 - parent: 1 - type: Transform - - uid: 9357 - components: - - pos: -35.5,12.5 - parent: 1 - type: Transform - proto: WindoorSecureJanitorLocked entities: - uid: 4012 @@ -135090,7 +124092,26 @@ entities: pos: -39.5,16.5 parent: 1 type: Transform -- proto: WindoorSecurityLocked +- proto: WindoorSecureScienceLocked + entities: + - uid: 8603 + components: + - pos: -20.5,35.5 + parent: 1 + type: Transform + - uid: 8654 + components: + - rot: 3.141592653589793 rad + pos: -5.5,20.5 + parent: 1 + type: Transform + - uid: 8655 + components: + - rot: 3.141592653589793 rad + pos: -4.5,20.5 + parent: 1 + type: Transform +- proto: WindoorSecureSecurityLocked entities: - uid: 8200 components: diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index 8d7eb363af..cc82989a96 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -369,64 +369,64 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 914: 54,25 - 915: 52,25 - 916: 46,25 - 917: 44,25 - 1024: -51,14 - 2921: 4,-39 - 3407: 53,14 - 3472: 5,-35 + 913: 54,25 + 914: 52,25 + 915: 46,25 + 916: 44,25 + 1023: -51,14 + 2920: 4,-39 + 3386: 53,14 + 3451: 5,-35 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 466: -4,13 - 467: -4,14 - 468: -4,15 - 469: -4,16 - 667: 49,-1 - 810: 41,6 - 1157: -3,-64 - 1158: -3,-71 - 3289: -19,29 - 3291: -4,18 - 3292: -4,19 + 465: -4,13 + 466: -4,14 + 467: -4,15 + 468: -4,16 + 666: 49,-1 + 809: 41,6 + 1156: -3,-64 + 1157: -3,-71 + 3268: -19,29 + 3270: -4,18 + 3271: -4,19 - node: color: '#FFFFFFFF' id: Arrows decals: - 833: -30,36 - 1388: -56,1 - 1824: -9,-21 - 3290: -11,27 + 832: -30,36 + 1387: -56,1 + 1823: -9,-21 + 3269: -11,27 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 666: 49,3 - 859: -62,40 - 1159: 3,-71 - 1160: 3,-64 + 665: 49,3 + 858: -62,40 + 1158: 3,-71 + 1159: 3,-64 - node: color: '#FFFFFFFF' id: ArrowsGreyscale decals: - 679: 23,17 + 678: 23,17 - node: cleanable: True color: '#FFFFFFFF' id: ArrowsGreyscale decals: - 2952: 9,-41 + 2951: 9,-41 - node: cleanable: True color: '#8932B8FF' id: Blasto decals: - 2586: -46.09135,-29.907255 + 2585: -46.09135,-29.907255 - node: color: '#FFFFFFFF' id: Bot @@ -436,1472 +436,1472 @@ entities: 165: 6,-26 202: -2,-45 203: 12,11 - 432: -37,1 - 474: -27,35 - 475: -28,35 - 476: -29,35 - 477: -29,36 - 478: -28,36 - 479: -27,36 - 607: -15,-10 - 608: -32,26 - 675: 22,18 - 676: 22,19 - 677: 20,18 - 678: 20,19 - 811: -9,-38 - 839: -31,34 - 840: -31,35 - 841: -105,17 - 842: -119,17 - 843: -98,17 - 911: 54,26 - 912: 52,26 - 913: 46,26 - 1025: 44,26 - 1155: -4,-69 - 1156: -17,-54 - 1181: -28,2 - 1182: -26,2 - 1339: -52,13 - 1340: -50,13 - 1349: -55,16 - 1350: -56,16 - 1382: -58,-4 - 1383: -57,-4 - 1384: -56,-4 - 1453: 54,8 - 1454: 53,8 - 1455: 52,8 - 1456: 54,10 - 1457: 53,10 - 1458: 52,10 - 1461: 54,12 - 1462: 53,12 - 1463: 52,12 - 1510: 6,-20 - 1628: 30,-23 - 1658: -48,16 - 1659: -47,17 - 1852: -25,-6 - 1961: -19,27 - 1979: -26,32 - 1980: -27,32 - 1981: -28,32 - 1982: -23,32 - 1983: -21,32 - 2115: -33,12 - 2116: -33,14 - 2119: -41,14 - 2135: -40,-6 - 2142: -41,-10 - 2160: -42,-8 - 2170: -57,7 - 2171: -57,14 - 2172: -44,-4 - 2232: -40,-20 - 2314: -11,32 - 2315: -13,32 - 2389: 3,11 - 2390: 3,15 - 2417: -5,21 - 2418: -5,20 - 2497: 17,28 - 2498: 47,14 - 2499: 47,-2 - 2500: 45,-9 - 2501: 19,-21 - 2517: 2,-1 - 2523: 3,-8 - 2527: -20,5 - 2528: -19,5 - 2532: -13,11 - 2541: -42,19 - 2542: -42,20 - 2543: 30,9 - 2544: 36,4 - 2699: 20,16 - 2700: 19,16 - 2935: 4,-35 - 2963: -31,-19 - 2964: -6,-27 - 2965: 3,-28 - 3012: 45,-27 - 3013: 37,-25 - 3014: 32,-21 - 3015: 50,-32 - 3063: 19,26 - 3117: 29,-27 - 3125: 45,10 - 3457: -25,32 - 3458: -29,32 - 3459: -30,32 - 3471: 6,-35 - 3481: 4,-38 - 3482: 6,-38 + 431: -37,1 + 473: -27,35 + 474: -28,35 + 475: -29,35 + 476: -29,36 + 477: -28,36 + 478: -27,36 + 606: -15,-10 + 607: -32,26 + 674: 22,18 + 675: 22,19 + 676: 20,18 + 677: 20,19 + 810: -9,-38 + 838: -31,34 + 839: -31,35 + 840: -105,17 + 841: -119,17 + 842: -98,17 + 910: 54,26 + 911: 52,26 + 912: 46,26 + 1024: 44,26 + 1154: -4,-69 + 1155: -17,-54 + 1180: -28,2 + 1181: -26,2 + 1338: -52,13 + 1339: -50,13 + 1348: -55,16 + 1349: -56,16 + 1381: -58,-4 + 1382: -57,-4 + 1383: -56,-4 + 1452: 54,8 + 1453: 53,8 + 1454: 52,8 + 1455: 54,10 + 1456: 53,10 + 1457: 52,10 + 1460: 54,12 + 1461: 53,12 + 1462: 52,12 + 1509: 6,-20 + 1627: 30,-23 + 1657: -48,16 + 1658: -47,17 + 1851: -25,-6 + 1960: -19,27 + 1978: -26,32 + 1979: -27,32 + 1980: -28,32 + 1981: -23,32 + 1982: -21,32 + 2114: -33,12 + 2115: -33,14 + 2118: -41,14 + 2134: -40,-6 + 2141: -41,-10 + 2159: -42,-8 + 2169: -57,7 + 2170: -57,14 + 2171: -44,-4 + 2231: -40,-20 + 2313: -11,32 + 2314: -13,32 + 2388: 3,11 + 2389: 3,15 + 2416: -5,21 + 2417: -5,20 + 2496: 17,28 + 2497: 47,14 + 2498: 47,-2 + 2499: 45,-9 + 2500: 19,-21 + 2516: 2,-1 + 2522: 3,-8 + 2526: -20,5 + 2527: -19,5 + 2531: -13,11 + 2540: -42,19 + 2541: -42,20 + 2542: 30,9 + 2543: 36,4 + 2698: 20,16 + 2699: 19,16 + 2934: 4,-35 + 2962: -31,-19 + 2963: -6,-27 + 2964: 3,-28 + 3011: 45,-27 + 3012: 37,-25 + 3013: 32,-21 + 3014: 50,-32 + 3062: 19,26 + 3097: 29,-27 + 3105: 45,10 + 3436: -25,32 + 3437: -29,32 + 3438: -30,32 + 3450: 6,-35 + 3460: 4,-38 + 3461: 6,-38 - node: color: '#52B4E996' id: BotGreyscale decals: - 3493: 49,-15 + 3472: 49,-15 - node: color: '#DE3A3AFF' id: BotLeft decals: - 2961: -33,-21 + 2960: -33,-21 - node: color: '#FFFFFFFF' id: BotLeft decals: - 1385: -52,-1 - 1386: -52,-2 - 1387: -52,-3 - 2134: -40,-5 - 2143: -43,-11 - 2186: -32,4 - 2427: 2,28 - 2428: 2,29 - 2429: 6,23 - 2430: 7,23 - 2431: 8,23 - 2933: 4,-37 - 3469: 6,-36 + 1384: -52,-1 + 1385: -52,-2 + 1386: -52,-3 + 2133: -40,-5 + 2142: -43,-11 + 2185: -32,4 + 2426: 2,28 + 2427: 2,29 + 2428: 6,23 + 2429: 7,23 + 2430: 8,23 + 2932: 4,-37 + 3448: 6,-36 - node: color: '#52B4E996' id: BotLeftGreyscale decals: - 3495: 49,-13 + 3474: 49,-13 - node: color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 2563: 39,-6 + 2562: 39,-6 - node: color: '#DE3A3AFF' id: BotRight decals: - 2958: -35,-17 - 2959: -35,-18 - 2960: -35,-19 - 2962: -35,-20 + 2957: -35,-17 + 2958: -35,-18 + 2959: -35,-19 + 2961: -35,-20 - node: color: '#FFFFFFFF' id: BotRight decals: - 2185: -35,5 - 2413: -5,13 - 2414: -5,14 - 2415: -5,15 - 2416: -5,16 - 2419: -5,19 - 2420: -5,18 - 2421: 5,13 - 2934: 4,-36 - 3470: 6,-37 + 2184: -35,5 + 2412: -5,13 + 2413: -5,14 + 2414: -5,15 + 2415: -5,16 + 2418: -5,19 + 2419: -5,18 + 2420: 5,13 + 2933: 4,-36 + 3449: 6,-37 - node: color: '#52B4E996' id: BotRightGreyscale decals: - 3494: 47,-13 + 3473: 47,-13 - node: color: '#FF8FC9FF' id: BotRightGreyscale decals: - 2227: -45,7 + 2226: -45,7 - node: color: '#79150096' id: Box decals: - 2051: -24,-12 - 2052: -24,-13 + 2050: -24,-12 + 2051: -24,-13 - node: color: '#9FED5896' id: Box decals: - 2050: -30,-8 + 2049: -30,-8 - node: color: '#EFB341FF' id: Box decals: - 2048: -30,-13 + 2047: -30,-13 - node: color: '#FFFFFFFF' id: Box decals: - 1733: 53,24 - 1734: 45,24 - 1735: 38,6 - 1736: 38,10 - 2187: -26,0 - 2188: -28,0 + 1732: 53,24 + 1733: 45,24 + 1734: 38,6 + 1735: 38,10 + 2186: -26,0 + 2187: -28,0 - node: color: '#52B4E996' id: BoxGreyscale decals: - 2049: -30,-12 + 2048: -30,-12 - node: color: '#DE3A3A96' id: BoxGreyscale decals: - 1822: -9,-21 + 1821: -9,-21 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 1389: -53,-2 - 1390: -55,-2 - 1391: -57,-2 - 3496: -49,-7 - 3497: -49,-5 - 3498: -49,-3 - 3499: -49,-1 - 3500: -49,3 - 3501: -51,3 - 3502: -53,3 - 3503: -55,3 - 3504: -47,12 - 3505: -49,12 - 3506: -51,12 + 1388: -53,-2 + 1389: -55,-2 + 1390: -57,-2 + 3475: -49,-7 + 3476: -49,-5 + 3477: -49,-3 + 3478: -49,-1 + 3479: -49,3 + 3480: -51,3 + 3481: -53,3 + 3482: -55,3 + 3483: -47,12 + 3484: -49,12 + 3485: -51,12 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 2529: -13,13 - 2538: -19,18 - 3238: 25,1 + 2528: -13,13 + 2537: -19,18 + 3217: 25,1 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 2535: -21,18 - 3239: 21,1 + 2534: -21,18 + 3218: 21,1 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 2530: -13,11 - 2536: -19,17 - 3174: -110,9 - 3185: -115,12 - 3554: 37,17 + 2529: -13,11 + 2535: -19,17 + 3153: -110,9 + 3164: -115,12 + 3531: 37,17 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 2537: -21,17 - 3171: -114,9 - 3190: -109,12 - 3553: 35,17 + 2536: -21,17 + 3150: -114,9 + 3169: -109,12 + 3530: 35,17 - node: color: '#FFFFFFFF' id: BrickTileDarkEndN decals: - 3242: 23,2 + 3221: 23,2 - node: color: '#FFFFFFFF' id: BrickTileDarkEndS decals: - 3236: 21,0 - 3237: 25,0 - 3243: 23,-1 + 3215: 21,0 + 3216: 25,0 + 3222: 23,-1 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 2533: -14,13 - 3182: -114,9 - 3253: 23,1 + 2532: -14,13 + 3161: -114,9 + 3232: 23,1 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 3181: -110,9 - 3254: 23,1 + 3160: -110,9 + 3233: 23,1 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 2534: -14,11 - 3241: 21,1 - 3252: 23,1 + 2533: -14,11 + 3220: 21,1 + 3231: 23,1 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 3240: 25,1 - 3251: 23,1 + 3219: 25,1 + 3230: 23,1 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 2531: -13,12 - 3177: -110,10 - 3178: -114,10 - 3192: -115,13 - 3244: 23,0 - 3555: 37,18 + 2530: -13,12 + 3156: -110,10 + 3157: -114,10 + 3171: -115,13 + 3223: 23,0 + 3532: 37,18 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 2540: -20,18 - 3179: -111,9 - 3180: -113,9 - 3183: -115,10 - 3184: -109,10 - 3186: -111,10 - 3187: -113,10 - 3249: 22,1 - 3250: 24,1 - 3426: 37,15 - 3427: 36,15 - 3428: 35,15 - 3429: 34,15 + 2539: -20,18 + 3158: -111,9 + 3159: -113,9 + 3162: -115,10 + 3163: -109,10 + 3165: -111,10 + 3166: -113,10 + 3228: 22,1 + 3229: 24,1 + 3405: 37,15 + 3406: 36,15 + 3407: 35,15 + 3408: 34,15 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 2539: -20,17 - 3172: -113,9 - 3173: -111,9 - 3188: -111,12 - 3189: -113,12 - 3247: 24,1 - 3248: 22,1 - 3551: 36,17 + 2538: -20,17 + 3151: -113,9 + 3152: -111,9 + 3167: -111,12 + 3168: -113,12 + 3226: 24,1 + 3227: 22,1 + 3529: 36,17 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 3175: -114,10 - 3176: -110,10 - 3191: -109,13 - 3245: 23,0 + 3154: -114,10 + 3155: -110,10 + 3170: -109,13 + 3224: 23,0 - node: color: '#FFFFFFFF' id: BrickTileSteelBox decals: - 1540: -38,24 - 1541: -36,24 - 1542: -34,24 - 1543: -26,24 - 1544: -28,24 - 1545: -30,24 - 3136: -24,24 - 3137: -22,24 - 3138: -20,24 - 3139: -18,24 - 3140: -16,24 - 3141: -40,24 + 1539: -38,24 + 1540: -36,24 + 1541: -34,24 + 1542: -26,24 + 1543: -28,24 + 1544: -30,24 + 3115: -24,24 + 3116: -22,24 + 3117: -20,24 + 3118: -18,24 + 3119: -16,24 + 3120: -40,24 - node: color: '#52B4E996' id: BrickTileSteelCornerNe decals: - 2041: -34,-10 + 2040: -34,-10 + 2199: -20,-5 2200: -20,-5 - 2201: -20,-5 - 3486: 49,-13 + 3465: 49,-13 - node: color: '#9FED5896' id: BrickTileSteelCornerNe decals: - 1671: -3,-26 - 2038: -34,-7 + 1670: -3,-26 + 2037: -34,-7 - node: color: '#D381C996' id: BrickTileSteelCornerNe decals: - 1345: -45,14 - 2060: -50,5 - 2070: -45,0 - 2105: -42,-4 - 2152: -40,12 + 1344: -45,14 + 2059: -50,5 + 2069: -45,0 + 2104: -42,-4 + 2151: -40,12 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNe decals: - 1878: -19,-16 - 2028: -19,-10 - 2029: -19,-13 - 2175: -31,5 - 2896: -8,-45 + 1877: -19,-16 + 2027: -19,-10 + 2028: -19,-13 + 2174: -31,5 + 2895: -8,-45 - node: color: '#52B4E996' id: BrickTileSteelCornerNw decals: - 2040: -35,-10 + 2039: -35,-10 + 2201: -19,-5 2202: -19,-5 - 2203: -19,-5 - 3485: 47,-13 + 3464: 47,-13 - node: color: '#9FED5896' id: BrickTileSteelCornerNw decals: - 1673: -5,-26 - 1674: -8,-27 - 2039: -35,-7 + 1672: -5,-26 + 1673: -8,-27 + 2038: -35,-7 - node: color: '#D381C996' id: BrickTileSteelCornerNw decals: - 1246: -52,5 - 2101: -46,-4 - 2153: -43,12 + 1245: -52,5 + 2100: -46,-4 + 2152: -43,12 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNw decals: - 1879: -21,-16 - 2030: -20,-10 - 2031: -20,-13 - 2176: -35,5 - 2897: -9,-45 + 1878: -21,-16 + 2029: -20,-10 + 2030: -20,-13 + 2175: -35,5 + 2896: -9,-45 - node: color: '#52B4E996' id: BrickTileSteelCornerSe decals: - 2043: -34,-11 + 2042: -34,-11 + 2205: -20,-4 2206: -20,-4 - 2207: -20,-4 - 3487: 49,-15 + 3466: 49,-15 - node: color: '#9FED5896' id: BrickTileSteelCornerSe decals: - 2036: -34,-8 + 2035: -34,-8 - node: color: '#D381C996' id: BrickTileSteelCornerSe decals: - 1369: -52,-7 - 2071: -45,-2 - 2080: -48,-9 - 2108: -42,-9 - 2155: -40,11 - 2174: -44,-11 + 1368: -52,-7 + 2070: -45,-2 + 2079: -48,-9 + 2107: -42,-9 + 2154: -40,11 + 2173: -44,-11 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSe decals: - 1881: -19,-17 - 2034: -19,-14 - 2035: -19,-11 - 2178: -31,4 + 1880: -19,-17 + 2033: -19,-14 + 2034: -19,-11 + 2177: -31,4 - node: color: '#52B4E996' id: BrickTileSteelCornerSw decals: - 2042: -35,-11 + 2041: -35,-11 + 2203: -19,-4 2204: -19,-4 - 2205: -19,-4 - 3484: 47,-15 + 3463: 47,-15 - node: color: '#9FED5896' id: BrickTileSteelCornerSw decals: - 2037: -35,-8 + 2036: -35,-8 - node: color: '#D381C996' id: BrickTileSteelCornerSw decals: - 1359: -58,-3 - 1366: -55,-7 - 1395: -60,1 - 2081: -50,-9 - 2095: -46,-11 - 2154: -43,11 + 1358: -58,-3 + 1365: -55,-7 + 1394: -60,1 + 2080: -50,-9 + 2094: -46,-11 + 2153: -43,11 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSw decals: - 1880: -21,-17 - 2032: -20,-14 - 2033: -20,-11 - 2177: -35,4 + 1879: -21,-17 + 2031: -20,-14 + 2032: -20,-11 + 2176: -35,4 - node: color: '#D381C996' id: BrickTileSteelInnerNe decals: - 1021: -51,14 - 2061: -50,4 - 2067: -48,0 + 1020: -51,14 + 2060: -50,4 + 2066: -48,0 - node: color: '#9FED5896' id: BrickTileSteelInnerNw decals: - 1675: -5,-27 + 1674: -5,-27 - node: color: '#D381C996' id: BrickTileSteelInnerNw decals: - 1020: -51,14 - 1247: -52,4 + 1019: -51,14 + 1246: -52,4 - node: color: '#D381C996' id: BrickTileSteelInnerSe decals: - 2066: -48,2 - 2074: -48,-2 - 2110: -44,-9 + 2065: -48,2 + 2073: -48,-2 + 2109: -44,-9 - node: color: '#D381C996' id: BrickTileSteelInnerSw decals: - 1362: -55,-3 + 1361: -55,-3 - node: color: '#52B4E996' id: BrickTileSteelLineE decals: - 3488: 49,-14 + 3467: 49,-14 - node: color: '#9FED5896' id: BrickTileSteelLineE decals: - 1668: -3,-29 - 1669: -3,-28 - 1670: -3,-27 + 1667: -3,-29 + 1668: -3,-28 + 1669: -3,-27 - node: color: '#D381C996' id: BrickTileSteelLineE decals: - 1370: -52,-6 - 1371: -52,-5 - 1372: -52,-4 - 1373: -52,-3 - 1374: -52,-2 - 1381: -52,-1 - 2075: -48,-4 - 2076: -48,-3 - 2077: -48,-5 - 2078: -48,-7 - 2079: -48,-8 - 2106: -42,-7 - 2107: -42,-8 - 2111: -44,-10 + 1369: -52,-6 + 1370: -52,-5 + 1371: -52,-4 + 1372: -52,-3 + 1373: -52,-2 + 1380: -52,-1 + 2074: -48,-4 + 2075: -48,-3 + 2076: -48,-5 + 2077: -48,-7 + 2078: -48,-8 + 2105: -42,-7 + 2106: -42,-8 + 2110: -44,-10 - node: color: '#DE3A3A96' id: BrickTileSteelLineE decals: - 2898: -8,-46 + 2897: -8,-46 - node: color: '#52B4E996' id: BrickTileSteelLineN decals: - 3489: 48,-13 + 3468: 48,-13 - node: color: '#9FED5896' id: BrickTileSteelLineN decals: - 1672: -4,-26 - 1676: -6,-27 - 1677: -7,-27 + 1671: -4,-26 + 1675: -6,-27 + 1676: -7,-27 - node: color: '#D381C996' id: BrickTileSteelLineN decals: - 1018: -50,14 - 1019: -52,14 - 1248: -53,4 - 1341: -49,14 - 1342: -48,14 - 1343: -47,14 - 1375: -55,-1 - 1376: -57,-1 - 2062: -49,4 - 2063: -48,4 - 2064: -47,4 - 2068: -47,0 - 2069: -46,0 - 2102: -45,-4 - 2103: -44,-4 - 2104: -43,-4 + 1017: -50,14 + 1018: -52,14 + 1247: -53,4 + 1340: -49,14 + 1341: -48,14 + 1342: -47,14 + 1374: -55,-1 + 1375: -57,-1 + 2061: -49,4 + 2062: -48,4 + 2063: -47,4 + 2067: -47,0 + 2068: -46,0 + 2101: -45,-4 + 2102: -44,-4 + 2103: -43,-4 - node: color: '#DE3A3A96' id: BrickTileSteelLineN decals: - 1803: -8,-18 - 1804: -9,-18 - 1811: -6,-18 - 1882: -20,-16 - 2179: -32,5 - 2180: -33,5 - 2181: -34,5 + 1802: -8,-18 + 1803: -9,-18 + 1810: -6,-18 + 1881: -20,-16 + 2178: -32,5 + 2179: -33,5 + 2180: -34,5 - node: color: '#52B4E996' id: BrickTileSteelLineS decals: - 3490: 48,-15 + 3469: 48,-15 - node: color: '#D381C996' id: BrickTileSteelLineS decals: - 1012: -46,11 - 1013: -47,11 - 1014: -48,11 - 1015: -49,11 - 1016: -50,11 - 1017: -52,11 - 1354: -55,2 - 1360: -57,-3 - 1361: -56,-3 - 1367: -54,-7 - 1368: -53,-7 - 1394: -59,1 - 2065: -47,2 - 2072: -46,-2 - 2073: -47,-2 - 2109: -43,-9 - 2156: -41,11 - 2157: -42,11 - 2173: -45,-11 + 1011: -46,11 + 1012: -47,11 + 1013: -48,11 + 1014: -49,11 + 1015: -50,11 + 1016: -52,11 + 1353: -55,2 + 1359: -57,-3 + 1360: -56,-3 + 1366: -54,-7 + 1367: -53,-7 + 1393: -59,1 + 2064: -47,2 + 2071: -46,-2 + 2072: -47,-2 + 2108: -43,-9 + 2155: -41,11 + 2156: -42,11 + 2172: -45,-11 - node: color: '#DE3A3A96' id: BrickTileSteelLineS decals: - 1805: -6,-19 - 1806: -7,-19 - 1807: -8,-19 - 1883: -20,-17 - 2182: -32,4 - 2183: -34,4 + 1804: -6,-19 + 1805: -7,-19 + 1806: -8,-19 + 1882: -20,-17 + 2181: -32,4 + 2182: -34,4 - node: color: '#9FED5896' id: BrickTileSteelLineW decals: - 1666: -8,-29 - 1667: -8,-28 + 1665: -8,-29 + 1666: -8,-28 - node: color: '#D381C996' id: BrickTileSteelLineW decals: - 1363: -55,-4 - 1364: -55,-5 - 1365: -55,-6 - 1392: -58,-2 - 1396: -60,2 - 2082: -50,-8 - 2083: -50,-7 - 2084: -50,-6 - 2085: -50,-5 - 2086: -50,-4 - 2087: -50,-3 - 2088: -50,-2 - 2089: -50,-1 - 2090: -50,0 - 2096: -46,-10 - 2097: -46,-9 - 2098: -46,-8 - 2099: -46,-7 - 2100: -46,-5 - 2224: -45,7 - 2225: -45,8 - 2226: -45,9 + 1362: -55,-4 + 1363: -55,-5 + 1364: -55,-6 + 1391: -58,-2 + 1395: -60,2 + 2081: -50,-8 + 2082: -50,-7 + 2083: -50,-6 + 2084: -50,-5 + 2085: -50,-4 + 2086: -50,-3 + 2087: -50,-2 + 2088: -50,-1 + 2089: -50,0 + 2095: -46,-10 + 2096: -46,-9 + 2097: -46,-8 + 2098: -46,-7 + 2099: -46,-5 + 2223: -45,7 + 2224: -45,8 + 2225: -45,9 - node: color: '#DE3A3A96' id: BrickTileSteelLineW decals: - 2899: -9,-46 + 2898: -9,-46 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 923: 18,12 + 922: 18,12 - node: color: '#334E6DC8' id: BrickTileWhiteBox decals: - 3229: 21,-1 + 3208: 21,-1 - node: color: '#52B4E996' id: BrickTileWhiteBox decals: - 3233: 22,2 + 3212: 22,2 - node: color: '#9FED5896' id: BrickTileWhiteBox decals: - 3231: 22,0 + 3210: 22,0 - node: color: '#A4610696' id: BrickTileWhiteBox decals: - 3235: 25,2 + 3214: 25,2 - node: color: '#D381C996' id: BrickTileWhiteBox decals: - 3234: 21,2 + 3213: 21,2 - node: color: '#D4D4D496' id: BrickTileWhiteBox decals: - 3232: 24,0 + 3211: 24,0 - node: color: '#DE3A3A96' id: BrickTileWhiteBox decals: - 3230: 25,-1 + 3209: 25,-1 - node: color: '#EFB34196' id: BrickTileWhiteBox decals: - 3246: 24,2 + 3225: 24,2 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 2905: 8,-28 - 2926: 5,-39 + 2904: 8,-28 + 2925: 5,-39 - node: color: '#79150096' id: BrickTileWhiteCornerNe decals: - 2217: -41,-20 + 2216: -41,-20 - node: color: '#B02E26FF' id: BrickTileWhiteCornerNe decals: - 2889: -4,-45 + 2888: -4,-45 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 2169: -54,7 + 2168: -54,7 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 1859: -24,-19 + 1858: -24,-19 - node: color: '#EFB34141' id: BrickTileWhiteCornerNe decals: - 2044: -34,-13 + 2043: -34,-13 - node: color: '#EFD54193' id: BrickTileWhiteCornerNe decals: - 3515: 24,21 + 3494: 24,21 - node: color: '#EFD54196' id: BrickTileWhiteCornerNe decals: - 1951: -21,32 - 1973: -25,32 + 1950: -21,32 + 1972: -25,32 - node: color: '#EFD84196' id: BrickTileWhiteCornerNe decals: - 1990: -15,29 + 1989: -15,29 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 870: 40,-28 - 931: 20,14 + 869: 40,-28 + 930: 20,14 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 2906: 3,-28 - 2925: 3,-39 + 2905: 3,-28 + 2924: 3,-39 - node: color: '#79150096' id: BrickTileWhiteCornerNw decals: - 2218: -47,-20 + 2217: -47,-20 - node: color: '#B02E26FF' id: BrickTileWhiteCornerNw decals: - 2892: -6,-45 + 2891: -6,-45 - node: color: '#D381C996' id: BrickTileWhiteCornerNw decals: - 1347: -47,16 - 2168: -56,7 + 1346: -47,16 + 2167: -56,7 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 1858: -31,-19 + 1857: -31,-19 - node: color: '#EFB34141' id: BrickTileWhiteCornerNw decals: - 2045: -35,-13 + 2044: -35,-13 - node: color: '#EFCC4196' id: BrickTileWhiteCornerNw decals: - 2309: -13,32 + 2308: -13,32 - node: color: '#EFD54193' id: BrickTileWhiteCornerNw decals: - 3514: 19,21 + 3493: 19,21 - node: color: '#EFD54196' id: BrickTileWhiteCornerNw decals: - 1952: -23,32 - 1972: -31,32 + 1951: -23,32 + 1971: -31,32 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 868: 38,-28 - 930: 19,14 - 2526: -4,-10 + 867: 38,-28 + 929: 19,14 + 2525: -4,-10 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 2912: 5,-33 - 2918: 8,-30 - 2922: 5,-40 + 2911: 5,-33 + 2917: 8,-30 + 2921: 5,-40 - node: color: '#79150096' id: BrickTileWhiteCornerSe decals: - 2219: -41,-22 + 2218: -41,-22 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 1860: -24,-21 + 1859: -24,-21 - node: color: '#EFB34141' id: BrickTileWhiteCornerSe decals: - 2046: -34,-14 + 2045: -34,-14 - node: color: '#EFD54193' id: BrickTileWhiteCornerSe decals: - 3516: 24,17 + 3495: 24,17 - node: color: '#EFD54196' id: BrickTileWhiteCornerSe decals: - 1949: -15,27 + 1948: -15,27 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 869: 40,-32 - 929: 20,11 + 868: 40,-32 + 928: 20,11 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 2910: 3,-33 - 2924: 3,-40 + 2909: 3,-33 + 2923: 3,-40 - node: color: '#79150096' id: BrickTileWhiteCornerSw decals: - 2220: -47,-22 + 2219: -47,-22 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 1861: -31,-21 + 1860: -31,-21 - node: color: '#EFB34141' id: BrickTileWhiteCornerSw decals: - 2047: -35,-14 + 2046: -35,-14 - node: color: '#EFCC4196' id: BrickTileWhiteCornerSw decals: - 2305: -13,27 - 2325: -5,23 + 2304: -13,27 + 2324: -5,23 - node: color: '#EFD54193' id: BrickTileWhiteCornerSw decals: - 3517: 19,17 + 3496: 19,17 - node: color: '#EFD54196' id: BrickTileWhiteCornerSw decals: - 1954: -23,28 - 1958: -19,27 + 1953: -23,28 + 1957: -19,27 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: - 867: 38,-32 - 928: 19,11 + 866: 38,-32 + 927: 19,11 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 1856: -29,-14 - 1899: -22,-23 + 1855: -29,-14 + 1898: -22,-23 - node: color: '#EFCC4196' id: BrickTileWhiteInnerNe decals: - 2303: -3,23 - 2448: -3,21 + 2302: -3,23 + 2447: -3,21 - node: color: '#EFD84196' id: BrickTileWhiteInnerNe decals: - 1996: -21,29 + 1995: -21,29 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 3027: 43,-17 + 3026: 43,-17 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNw decals: - 1847: -31,-6 - 1857: -25,-14 - 1897: -18,-23 - 1898: -17,-22 + 1846: -31,-6 + 1856: -25,-14 + 1896: -18,-23 + 1897: -17,-22 - node: color: '#EFCC4196' id: BrickTileWhiteInnerNw decals: - 2447: -4,21 + 2446: -4,21 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 2915: 5,-30 + 2914: 5,-30 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 1851: -29,-6 - 2025: -31,-17 + 1850: -29,-6 + 2024: -31,-17 - node: color: '#EFCC4196' id: BrickTileWhiteInnerSe decals: - 2328: -3,23 - 2426: -3,27 + 2327: -3,23 + 2425: -3,27 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 3026: 43,-18 + 3025: 43,-18 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 1850: -25,-6 + 1849: -25,-6 - node: color: '#EFCC4196' id: BrickTileWhiteInnerSw decals: - 2322: -5,27 - 2327: -4,23 + 2321: -5,27 + 2326: -4,23 - node: color: '#EFD54196' id: BrickTileWhiteInnerSw decals: - 1957: -19,28 + 1956: -19,28 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 2913: 5,-32 - 2914: 5,-31 - 2919: 8,-29 + 2912: 5,-32 + 2913: 5,-31 + 2918: 8,-29 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 3032: 45,-25 - 3033: 45,-24 - 3034: 45,-23 - 3035: 45,-21 - 3036: 45,-20 - 3039: 45,-19 - 3040: 45,-18 - 3041: 45,-17 + 3031: 45,-25 + 3032: 45,-24 + 3033: 45,-23 + 3034: 45,-21 + 3035: 45,-20 + 3038: 45,-19 + 3039: 45,-18 + 3040: 45,-17 - node: color: '#B02E26FF' id: BrickTileWhiteLineE decals: - 2890: -4,-46 + 2889: -4,-46 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 964: -33,-21 - 965: -33,-19 - 966: -33,-18 - 967: -33,-16 - 1832: -22,-6 - 1833: -22,-5 - 1872: -24,-20 + 963: -33,-21 + 964: -33,-19 + 965: -33,-18 + 966: -33,-16 + 1831: -22,-6 + 1832: -22,-5 + 1871: -24,-20 - node: color: '#EFCC4196' id: BrickTileWhiteLineE decals: - 2301: -3,24 - 2302: -3,25 + 2300: -3,24 + 2301: -3,25 - node: color: '#EFD54193' id: BrickTileWhiteLineE decals: - 3518: 24,18 - 3519: 24,19 - 3520: 24,20 + 3497: 24,18 + 3498: 24,19 + 3499: 24,20 - node: color: '#EFD54196' id: BrickTileWhiteLineE decals: - 1950: -21,31 + 1949: -21,31 - node: color: '#EFD84196' id: BrickTileWhiteLineE decals: - 1997: -21,30 + 1996: -21,30 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 875: 40,-31 - 876: 40,-30 - 877: 40,-29 - 925: 20,12 - 926: 20,13 - 927: 20,14 + 874: 40,-31 + 875: 40,-30 + 876: 40,-29 + 924: 20,12 + 925: 20,13 + 926: 20,14 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 2902: 4,-28 - 2903: 5,-28 - 2904: 6,-28 - 3478: 7,-38 - 3479: 5,-38 - 3480: 3,-38 + 2901: 4,-28 + 2902: 5,-28 + 2903: 6,-28 + 3457: 7,-38 + 3458: 5,-38 + 3459: 3,-38 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 3016: 38,-17 - 3017: 39,-17 - 3018: 40,-17 - 3019: 41,-17 - 3025: 37,-17 + 3015: 38,-17 + 3016: 39,-17 + 3017: 40,-17 + 3018: 41,-17 + 3024: 37,-17 - node: color: '#79150096' id: BrickTileWhiteLineN decals: - 2213: -42,-20 - 2214: -43,-20 - 2215: -45,-20 - 2216: -46,-20 + 2212: -42,-20 + 2213: -43,-20 + 2214: -45,-20 + 2215: -46,-20 - node: color: '#B02E26FF' id: BrickTileWhiteLineN decals: - 2893: -5,-45 + 2892: -5,-45 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 1348: -46,16 - 2167: -55,7 + 1347: -46,16 + 2166: -55,7 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 1836: -23,-3 - 1837: -24,-3 - 1838: -25,-3 - 1839: -26,-3 - 1840: -28,-3 - 1841: -29,-3 - 1842: -30,-3 - 1853: -26,-14 - 1854: -27,-14 - 1855: -28,-14 - 1868: -25,-19 - 1869: -27,-19 - 1870: -29,-19 - 1871: -30,-19 - 1891: -19,-23 - 1892: -20,-23 - 1893: -21,-23 + 1835: -23,-3 + 1836: -24,-3 + 1837: -25,-3 + 1838: -26,-3 + 1839: -28,-3 + 1840: -29,-3 + 1841: -30,-3 + 1852: -26,-14 + 1853: -27,-14 + 1854: -28,-14 + 1867: -25,-19 + 1868: -27,-19 + 1869: -29,-19 + 1870: -30,-19 + 1890: -19,-23 + 1891: -20,-23 + 1892: -21,-23 - node: color: '#EFB3414A' id: BrickTileWhiteLineN decals: - 3268: 22,5 - 3269: 24,5 + 3247: 22,5 + 3248: 24,5 - node: color: '#EFCC4196' id: BrickTileWhiteLineN decals: - 2296: 2,23 - 2297: 1,23 - 2298: 0,23 - 2299: -1,23 - 2300: -2,23 - 2310: -11,32 + 2295: 2,23 + 2296: 1,23 + 2297: 0,23 + 2298: -1,23 + 2299: -2,23 + 2309: -11,32 - node: color: '#EFD54193' id: BrickTileWhiteLineN decals: - 3526: 20,21 - 3527: 21,21 - 3528: 22,21 - 3529: 23,21 + 3505: 20,21 + 3506: 21,21 + 3507: 22,21 + 3508: 23,21 - node: color: '#EFD54196' id: BrickTileWhiteLineN decals: - 1974: -26,32 - 1975: -27,32 - 1976: -28,32 - 1977: -29,32 - 1978: -30,32 + 1973: -26,32 + 1974: -27,32 + 1975: -28,32 + 1976: -29,32 + 1977: -30,32 - node: color: '#EFD5692E' id: BrickTileWhiteLineN decals: - 2731: 39,-35 - 2732: 40,-35 - 2733: 41,-35 + 2730: 39,-35 + 2731: 40,-35 + 2732: 41,-35 - node: color: '#EFD84196' id: BrickTileWhiteLineN decals: - 1991: -16,29 - 1992: -18,29 - 1993: -17,29 - 1994: -19,29 - 1995: -20,29 + 1990: -16,29 + 1991: -18,29 + 1992: -17,29 + 1993: -19,29 + 1994: -20,29 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 878: 39,-28 + 877: 39,-28 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 2508: 3,-1 - 2509: 2,-1 - 2510: 1,-1 - 2511: -1,-1 - 2512: -2,-1 - 2513: -3,-1 - 2911: 4,-33 - 2916: 6,-30 - 2917: 7,-30 - 2923: 4,-40 - 3475: 7,-35 - 3476: 5,-35 - 3477: 3,-35 + 2507: 3,-1 + 2508: 2,-1 + 2509: 1,-1 + 2510: -1,-1 + 2511: -2,-1 + 2512: -3,-1 + 2910: 4,-33 + 2915: 6,-30 + 2916: 7,-30 + 2922: 4,-40 + 3454: 7,-35 + 3455: 5,-35 + 3456: 3,-35 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 3020: 41,-18 - 3021: 40,-18 - 3022: 39,-18 - 3023: 38,-18 - 3024: 37,-18 + 3019: 41,-18 + 3020: 40,-18 + 3021: 39,-18 + 3022: 38,-18 + 3023: 37,-18 - node: color: '#79150096' id: BrickTileWhiteLineS decals: - 2208: -42,-22 - 2209: -43,-22 - 2210: -44,-22 - 2211: -45,-22 - 2212: -46,-22 + 2207: -42,-22 + 2208: -43,-22 + 2209: -44,-22 + 2210: -45,-22 + 2211: -46,-22 - node: color: '#D381C925' id: BrickTileWhiteLineS decals: - 919: -44,6 + 918: -44,6 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 2163: -54,14 - 2164: -55,14 - 2165: -56,14 - 2166: -57,14 + 2162: -54,14 + 2163: -55,14 + 2164: -56,14 + 2165: -57,14 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1848: -26,-6 - 1849: -28,-6 - 1862: -30,-21 - 1863: -29,-21 - 1864: -28,-21 - 1865: -27,-21 - 1866: -26,-21 - 1867: -25,-21 - 2019: -23,-17 - 2020: -24,-17 - 2021: -25,-17 - 2022: -27,-17 - 2023: -29,-17 - 2024: -30,-17 + 1847: -26,-6 + 1848: -28,-6 + 1861: -30,-21 + 1862: -29,-21 + 1863: -28,-21 + 1864: -27,-21 + 1865: -26,-21 + 1866: -25,-21 + 2018: -23,-17 + 2019: -24,-17 + 2020: -25,-17 + 2021: -27,-17 + 2022: -29,-17 + 2023: -30,-17 - node: color: '#EFCC4196' id: BrickTileWhiteLineS decals: - 2291: 2,23 - 2292: 1,23 - 2293: 0,23 - 2294: -1,23 - 2295: -2,23 - 2304: -11,27 - 2316: -10,27 - 2317: -9,27 - 2318: -8,27 - 2319: -7,27 - 2320: -6,27 - 2422: 1,27 - 2423: 0,27 - 2424: -1,27 - 2425: -2,27 + 2290: 2,23 + 2291: 1,23 + 2292: 0,23 + 2293: -1,23 + 2294: -2,23 + 2303: -11,27 + 2315: -10,27 + 2316: -9,27 + 2317: -8,27 + 2318: -7,27 + 2319: -6,27 + 2421: 1,27 + 2422: 0,27 + 2423: -1,27 + 2424: -2,27 - node: color: '#EFD54193' id: BrickTileWhiteLineS decals: - 3521: 22,17 - 3522: 21,17 - 3523: 20,17 + 3500: 22,17 + 3501: 21,17 + 3502: 20,17 - node: color: '#EFD54196' id: BrickTileWhiteLineS decals: - 1955: -21,28 - 1956: -20,28 - 1959: -17,27 - 1960: -16,27 + 1954: -21,28 + 1955: -20,28 + 1958: -17,27 + 1959: -16,27 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 871: 39,-32 - 902: -3,-9 - 2524: -3,-11 - 2525: -4,-11 + 870: 39,-32 + 901: -3,-9 + 2523: -3,-11 + 2524: -4,-11 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 2907: 3,-29 - 2908: 3,-31 - 2909: 3,-32 + 2906: 3,-29 + 2907: 3,-31 + 2908: 3,-32 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 3028: 43,-19 - 3029: 43,-20 - 3030: 43,-22 - 3031: 43,-23 - 3507: 43,-25 + 3027: 43,-19 + 3028: 43,-20 + 3029: 43,-22 + 3030: 43,-23 + 3486: 43,-25 - node: color: '#B02E26FF' id: BrickTileWhiteLineW decals: - 2891: -6,-46 + 2890: -6,-46 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 1346: -47,15 + 1345: -47,15 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 958: -35,-21 - 959: -35,-20 - 960: -35,-19 - 961: -35,-18 - 962: -35,-17 - 963: -35,-16 - 1846: -31,-5 - 1894: -17,-21 - 1895: -17,-20 - 1896: -17,-19 - 2016: -21,-20 - 2017: -21,-22 + 957: -35,-21 + 958: -35,-20 + 959: -35,-19 + 960: -35,-18 + 961: -35,-17 + 962: -35,-16 + 1845: -31,-5 + 1893: -17,-21 + 1894: -17,-20 + 1895: -17,-19 + 2015: -21,-20 + 2016: -21,-22 - node: color: '#EFCC4196' id: BrickTileWhiteLineW decals: - 2306: -13,29 - 2307: -13,30 - 2308: -13,31 - 2321: -5,26 - 2323: -5,25 - 2324: -5,24 - 2326: -4,22 + 2305: -13,29 + 2306: -13,30 + 2307: -13,31 + 2320: -5,26 + 2322: -5,25 + 2323: -5,24 + 2325: -4,22 - node: color: '#EFD54193' id: BrickTileWhiteLineW decals: - 3524: 19,19 - 3525: 19,20 + 3503: 19,19 + 3504: 19,20 - node: color: '#EFD54196' id: BrickTileWhiteLineW decals: - 1953: -23,29 + 1952: -23,29 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 872: 38,-31 - 873: 38,-30 - 874: 38,-29 - 924: 19,13 + 871: 38,-31 + 872: 38,-30 + 873: 38,-29 + 923: 19,13 - node: color: '#FFFFFFFF' id: Bushb1 decals: - 1062: -5.0759892,-67.511505 + 1061: -5.0759892,-67.511505 - node: color: '#FFFFFFFF' id: Bushb2 decals: - 589: -6.033051,-6.006569 + 588: -6.033051,-6.006569 - node: color: '#FFFFFFFF' id: Bushb3 decals: - 514: -8.918216,35.06559 - 1063: 5.128752,-67.43338 + 513: -8.918216,35.06559 + 1062: 5.128752,-67.43338 - node: color: '#FFFFFFFF' id: Bushe2 decals: - 1072: -4.964998,-66.74588 - 1688: -48.067986,5.0444627 + 1071: -4.964998,-66.74588 + 1687: -48.067986,5.0444627 - node: color: '#FFFFFFFF' id: Bushe3 decals: - 1038: 49.993763,22.959341 + 1037: 49.993763,22.959341 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 1037: 48.900013,22.974966 - 1071: -5.339998,-66.605255 - 1073: 5.097502,-68.605255 - 1689: -46.83361,5.0444627 + 1036: 48.900013,22.974966 + 1070: -5.339998,-66.605255 + 1072: 5.097502,-68.605255 + 1688: -46.83361,5.0444627 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 1686: -46.89611,5.0132127 + 1685: -46.89611,5.0132127 - node: color: '#FFFFFFFF' id: Bushf3 decals: - 1687: -48.14611,4.9663377 + 1686: -48.14611,4.9663377 - node: color: '#FFFFFFFF' id: Bushh1 decals: - 1476: 11.007317,-66.29063 + 1475: 11.007317,-66.29063 - node: color: '#FFFFFFFF' id: Bushh2 decals: - 1477: 11.022942,-68.72813 + 1476: 11.022942,-68.72813 - node: color: '#FFFFFFFF' id: Bushi1 decals: 237: 32.840233,-26.000742 - 465: 8.857405,4.0894966 - 519: -8.808841,36.12809 - 1034: 48.025013,28.959341 - 3549: 28.940447,-35.765743 + 464: 8.857405,4.0894966 + 518: -8.808841,36.12809 + 1033: 48.025013,28.959341 + 3528: 28.940447,-35.765743 - node: color: '#FFFFFFFF' id: Bushi2 decals: - 521: -9.136966,33.87809 - 1471: 11.038567,-68.5875 + 520: -9.136966,33.87809 + 1470: 11.038567,-68.5875 - node: color: '#FFFFFFFF' id: Bushi3 decals: 236: 34.512108,-25.938242 - 463: 12.107405,4.5426216 - 518: -9.121341,33.831215 - 1035: 49.946888,28.959341 - 1090: -0.82901984,-67.68338 - 1470: 10.976067,-67.41563 + 462: 12.107405,4.5426216 + 517: -9.121341,33.831215 + 1034: 49.946888,28.959341 + 1089: -0.82901984,-67.68338 + 1469: 10.976067,-67.41563 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 464: 11.013655,3.2457466 - 1089: 0.8428552,-67.55838 - 1469: 10.991692,-65.86875 + 463: 11.013655,3.2457466 + 1088: 0.8428552,-67.55838 + 1468: 10.991692,-65.86875 - node: color: '#FFFFFFFF' id: Bushj2 decals: 238: 33.887108,-25.969492 - 1075: -5.121248,-68.96463 - 1685: -47.52111,5.1225877 + 1074: -5.121248,-68.96463 + 1684: -47.52111,5.1225877 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 1074: 5.097502,-65.99588 - 1091: -5,-66 + 1073: 5.097502,-65.99588 + 1090: -5,-66 - node: color: '#FFFFFFFF' id: Bushm2 decals: - 1475: 10.991692,-67.525 + 1474: 10.991692,-67.525 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 590: -6.033051,-6.444069 - 1036: 48.978138,29.037466 + 589: -6.033051,-6.444069 + 1035: 48.978138,29.037466 - node: color: '#FFFFFFFF' id: Caution decals: - 511: -7,31 - 1183: -27,-1 - 1823: -9,-21 - 2697: -55,17 + 510: -7,31 + 1182: -27,-1 + 1822: -9,-21 + 2696: -55,17 - node: color: '#DE3A3A96' id: CautionGreyscale decals: - 1825: -7,-18 + 1824: -7,-18 - node: color: '#52B4E996' id: CheckerNESW decals: - 1478: -20,-8 - 1479: -20,-7 - 1480: -19,-7 - 1481: -19,-8 + 1477: -20,-8 + 1478: -20,-7 + 1479: -19,-7 + 1480: -19,-8 - node: color: '#D4D4D428' id: CheckerNESW @@ -1915,60 +1915,60 @@ entities: color: '#D4D4D453' id: CheckerNESW decals: - 1984: -20,30 - 1985: -17,30 - 1986: -16,30 + 1983: -20,30 + 1984: -17,30 + 1985: -16,30 - node: color: '#D4D4D46C' id: CheckerNESW decals: - 1417: 23,-37 - 1418: 23,-38 - 1419: 24,-38 - 1420: 24,-37 - 1421: 25,-37 - 1422: 25,-38 - 1423: 26,-38 - 1424: 26,-37 - 1425: 27,-38 - 1426: 27,-37 - 1427: 27,-36 - 1428: 26,-36 - 1429: 25,-36 - 1430: 24,-36 - 1431: 23,-36 - 1432: 23,-35 - 1433: 24,-35 - 1434: 25,-35 - 1435: 26,-35 - 1436: 26,-34 - 1437: 24,-34 - 1438: 23,-34 - 1439: 25,-34 - 1440: 26,-33 - 1441: 25,-33 - 1442: 24,-33 - 1443: 23,-33 - 1444: 23,-32 - 1445: 24,-32 - 1446: 25,-32 - 1447: 26,-32 - 1448: 26,-31 - 1449: 25,-31 - 1450: 24,-31 - 1451: 23,-31 + 1416: 23,-37 + 1417: 23,-38 + 1418: 24,-38 + 1419: 24,-37 + 1420: 25,-37 + 1421: 25,-38 + 1422: 26,-38 + 1423: 26,-37 + 1424: 27,-38 + 1425: 27,-37 + 1426: 27,-36 + 1427: 26,-36 + 1428: 25,-36 + 1429: 24,-36 + 1430: 23,-36 + 1431: 23,-35 + 1432: 24,-35 + 1433: 25,-35 + 1434: 26,-35 + 1435: 26,-34 + 1436: 24,-34 + 1437: 23,-34 + 1438: 25,-34 + 1439: 26,-33 + 1440: 25,-33 + 1441: 24,-33 + 1442: 23,-33 + 1443: 23,-32 + 1444: 24,-32 + 1445: 25,-32 + 1446: 26,-32 + 1447: 26,-31 + 1448: 25,-31 + 1449: 24,-31 + 1450: 23,-31 - node: color: '#334E6DC8' id: CheckerNWSE decals: - 724: -63,17 - 725: -64,17 - 726: -65,17 - 727: -66,17 - 728: -67,17 - 729: -68,17 - 730: -69,17 - 731: -62,17 + 723: -63,17 + 724: -64,17 + 725: -65,17 + 726: -66,17 + 727: -67,17 + 728: -68,17 + 729: -69,17 + 730: -62,17 - node: color: '#52B4E996' id: CheckerNWSE @@ -1988,112 +1988,112 @@ entities: 252: 34,-13 253: 35,-13 254: 36,-13 - 1989: -20,30 - 2994: 44,-14 - 2995: 44,-13 - 2996: 44,-12 - 2997: 44,-11 - 2998: 44,-10 - 3270: 47,-11 - 3271: 47,-10 - 3272: 47,-9 - 3273: 48,-9 - 3274: 48,-10 - 3275: 48,-11 - 3276: 49,-11 - 3277: 49,-10 - 3278: 49,-9 - 3279: 50,-9 - 3280: 50,-10 - 3281: 50,-11 + 1988: -20,30 + 2993: 44,-14 + 2994: 44,-13 + 2995: 44,-12 + 2996: 44,-11 + 2997: 44,-10 + 3249: 47,-11 + 3250: 47,-10 + 3251: 47,-9 + 3252: 48,-9 + 3253: 48,-10 + 3254: 48,-11 + 3255: 49,-11 + 3256: 49,-10 + 3257: 49,-9 + 3258: 50,-9 + 3259: 50,-10 + 3260: 50,-11 - node: color: '#79150096' id: CheckerNWSE decals: - 1812: -9,-16 - 1813: -8,-16 - 1814: -7,-16 - 1815: -6,-16 + 1811: -9,-16 + 1812: -8,-16 + 1813: -7,-16 + 1814: -6,-16 - node: color: '#A4610696' id: CheckerNWSE decals: - 624: 48,16 - 625: 47,16 - 626: 47,17 - 627: 47,18 - 628: 48,18 - 629: 48,17 - 630: 49,16 - 631: 49,17 - 632: 49,18 - 633: 50,18 - 634: 50,17 - 635: 51,18 - 636: 51,17 - 820: 50,16 - 821: 51,16 + 623: 48,16 + 624: 47,16 + 625: 47,17 + 626: 47,18 + 627: 48,18 + 628: 48,17 + 629: 49,16 + 630: 49,17 + 631: 49,18 + 632: 50,18 + 633: 50,17 + 634: 51,18 + 635: 51,17 + 819: 50,16 + 820: 51,16 - node: color: '#D381C93E' id: CheckerNWSE decals: - 390: -45,2 - 391: -45,3 - 392: -44,3 - 393: -44,2 - 394: -43,2 - 395: -43,3 - 396: -42,3 - 397: -42,2 - 398: -42,4 - 399: -43,4 - 400: -44,4 - 401: -45,4 - 402: -45,5 - 403: -44,5 - 404: -43,5 - 405: -42,5 + 389: -45,2 + 390: -45,3 + 391: -44,3 + 392: -44,2 + 393: -43,2 + 394: -43,3 + 395: -42,3 + 396: -42,2 + 397: -42,4 + 398: -43,4 + 399: -44,4 + 400: -45,4 + 401: -45,5 + 402: -44,5 + 403: -43,5 + 404: -42,5 - node: color: '#D381C996' id: CheckerNWSE decals: - 408: -54,8 - 409: -55,8 - 410: -56,8 - 411: -57,8 - 412: -57,9 - 413: -56,9 - 414: -55,9 - 415: -54,9 - 416: -54,10 - 417: -55,10 - 418: -56,10 - 419: -57,10 - 420: -57,11 - 421: -56,11 - 422: -55,11 - 423: -54,11 - 424: -54,12 - 425: -55,12 - 426: -56,12 - 427: -57,12 - 428: -57,13 - 429: -56,13 - 430: -55,13 - 431: -54,13 + 407: -54,8 + 408: -55,8 + 409: -56,8 + 410: -57,8 + 411: -57,9 + 412: -56,9 + 413: -55,9 + 414: -54,9 + 415: -54,10 + 416: -55,10 + 417: -56,10 + 418: -57,10 + 419: -57,11 + 420: -56,11 + 421: -55,11 + 422: -54,11 + 423: -54,12 + 424: -55,12 + 425: -56,12 + 426: -57,12 + 427: -57,13 + 428: -56,13 + 429: -55,13 + 430: -54,13 - node: color: '#D4D4D406' id: CheckerNWSE decals: - 2568: -33,-4 - 2569: -33,-3 - 2570: -34,-3 - 2571: -35,-3 - 2572: -35,-4 - 2573: -34,-4 - 2574: -35,-5 - 2575: -34,-5 - 2576: -33,-5 + 2567: -33,-4 + 2568: -33,-3 + 2569: -34,-3 + 2570: -35,-3 + 2571: -35,-4 + 2572: -34,-4 + 2573: -35,-5 + 2574: -34,-5 + 2575: -33,-5 - node: color: '#D4D4D428' id: CheckerNWSE @@ -2108,129 +2108,129 @@ entities: 189: 10,14 190: 11,14 191: 12,14 - 435: 14,-14 - 436: 14,-13 - 437: 14,-12 - 1200: 1,-55 - 1201: 0,-55 - 1202: -1,-55 - 1203: -1,-56 - 1204: 0,-56 - 1205: 1,-56 - 1206: 1,-57 - 1207: 0,-57 - 1208: -1,-57 - 1209: 0,-58 - 1210: 0,-54 + 434: 14,-14 + 435: 14,-13 + 436: 14,-12 + 1199: 1,-55 + 1200: 0,-55 + 1201: -1,-55 + 1202: -1,-56 + 1203: 0,-56 + 1204: 1,-56 + 1205: 1,-57 + 1206: 0,-57 + 1207: -1,-57 + 1208: 0,-58 + 1209: 0,-54 - node: color: '#D4D4D44A' id: CheckerNWSE decals: - 1023: 26,-35 + 1022: 26,-35 - node: color: '#D4D4D496' id: CheckerNWSE decals: - 1337: 26,-35 - 1338: 25,-35 + 1336: 26,-35 + 1337: 25,-35 - node: color: '#DE3A3A96' id: CheckerNWSE decals: - 1987: -16,30 - 1988: -17,30 + 1986: -16,30 + 1987: -17,30 - node: color: '#EFB34196' id: CheckerNWSE decals: - 492: 10,17 - 493: 9,17 - 494: 8,17 - 495: 8,18 - 496: 9,18 - 497: 10,18 - 498: 10,19 - 499: 9,19 - 500: 8,19 - 501: 8,20 - 502: 8,21 - 503: 9,21 - 504: 9,20 - 505: 10,20 - 506: 10,21 + 491: 10,17 + 492: 9,17 + 493: 8,17 + 494: 8,18 + 495: 9,18 + 496: 10,18 + 497: 10,19 + 498: 9,19 + 499: 8,19 + 500: 8,20 + 501: 8,21 + 502: 9,21 + 503: 9,20 + 504: 10,20 + 505: 10,21 - node: color: '#FFEF9292' id: CheckerNWSE decals: - 2980: 44,-28 - 2981: 44,-29 - 2982: 44,-30 - 2983: 44,-31 - 2984: 44,-32 - 2985: 44,-33 - 2986: 44,-34 + 2979: 44,-28 + 2980: 44,-29 + 2981: 44,-30 + 2982: 44,-31 + 2983: 44,-32 + 2984: 44,-33 + 2985: 44,-34 - node: cleanable: True color: '#00000069' id: Damaged decals: - 2947: -58,26 - 2948: -59,26 - 2949: -60,27 + 2946: -58,26 + 2947: -59,26 + 2948: -60,27 - node: angle: 1.5707963267948966 rad color: '#79150096' id: Delivery decals: - 2944: -7,-47 + 2943: -7,-47 - node: color: '#DE3A3A96' id: Delivery decals: - 3135: -32,-20 + 3114: -32,-20 - node: color: '#FFFFFFFF' id: Delivery decals: 166: 7,-26 - 470: -25,35 - 471: -25,36 - 472: -26,36 - 473: -26,35 - 1459: 51,10 - 1460: 51,8 - 1464: 51,12 - 1660: -46,17 - 1730: 41,19 - 1731: 40,19 - 1732: 39,19 - 1945: -21,26 - 1946: -23,26 - 2114: -41,-5 - 2734: 41,-35 - 3133: 42,6 - 3134: -18,26 - 3282: 0,30 - 3293: 23,3 - 3306: 38,1 + 469: -25,35 + 470: -25,36 + 471: -26,36 + 472: -26,35 + 1458: 51,10 + 1459: 51,8 + 1463: 51,12 + 1659: -46,17 + 1729: 41,19 + 1730: 40,19 + 1731: 39,19 + 1944: -21,26 + 1945: -23,26 + 2113: -41,-5 + 2733: 41,-35 + 3112: 42,6 + 3113: -18,26 + 3261: 0,30 + 3272: 23,3 + 3285: 38,1 - node: color: '#D381C941' id: DeliveryGreyscale decals: - 3558: -53,0 - 3559: -56,0 + 3534: -53,0 + 3535: -56,0 - node: color: '#D381C996' id: DeliveryGreyscale decals: - 1355: -56,1 + 1354: -56,1 - node: cleanable: True color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 3453: -61,17 - 3454: -70,17 + 3432: -61,17 + 3433: -70,17 - node: cleanable: True color: '#FFFFFFFF' @@ -2246,156 +2246,156 @@ entities: 69: 18,-51 70: 17,-51 71: 17,-51 - 2614: -45,-32 - 2615: -46,-32 - 2616: -46,-33 - 2617: -47,-33 - 2618: -46,-34 - 2619: -48,-32 - 2620: -49,-31 - 2621: -46,-30 - 2622: -49,-33 - 2623: -49,-32 - 2624: -48,-33 - 2625: -50,-32 - 2626: -50,-31 - 2627: -47,-32 - 2628: -48,-31 - 2629: -47,-34 - 2630: -47,-35 - 2631: -46,-35 - 2632: -45,-34 - 2633: -44,-34 - 2634: -44,-32 - 2635: -46,-31 - 2636: -49,-30 - 2637: -52,-30 - 2638: -52,-33 - 2639: -45,-29 - 2640: -31,-31 - 2641: -31,-32 - 2642: -29,-32 - 2643: -32,-32 - 2644: -35,-32 - 2645: -34,-32 - 2646: -39,-32 - 2647: -40,-31 - 2648: -34,-31 - 2649: -20,-35 - 2650: -11,-45 - 2651: -11,-44 - 2652: -13,-45 - 2653: -14,-45 - 2660: 53,-7 - 2661: 53,-9 - 2662: 53,-10 - 2663: 53,-11 - 2664: 54,-11 - 2665: 55,-12 - 2666: 55,-15 - 2667: 50,-6 - 2668: 47,-5 - 2669: 33,-5 - 2670: 33,-6 - 2671: 31,-7 - 2672: 29,-8 - 2673: 33,-3 - 2674: 30,-10 - 2675: 31,-2 - 2676: 30,-1 - 2677: 32,1 - 2678: 31,2 - 2679: 57,-25 - 2680: 59,-42 - 2681: 58,-43 - 2682: 56,-43 - 2683: 47,-43 - 2684: 45,-41 - 2685: 25,-41 - 2686: 28,-40 - 2687: 31,-40 - 2688: 30,-40 - 2689: 25,-40 - 2701: 36,20 - 2702: 37,20 - 2703: 35,21 - 2704: 32,20 - 2705: 30,20 - 2706: 27,21 - 2707: 31,17 - 2708: 32,11 - 2709: 29,12 - 2718: -31,-35 - 2719: -33,-36 - 2720: -30,-35 - 2721: -17,-38 - 2722: -17,-37 - 2723: -18,-35 - 2724: -13,-46 - 2725: -12,-47 - 2726: -8,-50 - 2727: -8,-52 - 2728: -15,-49 - 2791: 13,-46 - 2792: 14,-47 - 2793: 15,-45 - 2794: 17,-44 - 2795: 19,-47 - 2796: 11,-46 - 2797: 10,-47 - 2798: 10,-49 - 2799: 13,-40 - 2800: 12,-40 - 2801: 11,-41 - 2802: 5,-51 - 2936: 5,-43 - 2937: 6,-43 - 2938: -3,-43 - 2939: -6,-41 - 2940: -13,-40 - 2941: -12,-41 - 2942: -12,-42 - 2943: -14,-41 - 2953: 41,-50 - 2954: 42,-52 - 2955: 41,-49 - 2956: 38,-52 - 2957: 22,-49 - 3142: -59,44 - 3143: -59,45 - 3144: -60,46 - 3145: -58,47 - 3146: -57,44 - 3147: -58,43 - 3148: -59,40 - 3149: -60,41 - 3150: -60,42 - 3151: -61,43 - 3152: -61,44 - 3153: -62,45 - 3154: -62,47 - 3155: -63,47 - 3156: -61,48 - 3157: -61,49 - 3158: -62,50 - 3159: -62,51 - 3160: -58,52 - 3161: -58,51 - 3162: -59,51 - 3163: -59,50 - 3164: -58,49 - 3165: -53,46 - 3166: -56,46 - 3167: -58,37 - 3168: -59,37 - 3169: -60,39 - 3170: -59,36 - 3449: 40,-48 - 3450: 41,-45 - 3451: 40,-44 - 3452: 43,-46 - 3455: -23,-33 - 3456: -24,-33 + 2613: -45,-32 + 2614: -46,-32 + 2615: -46,-33 + 2616: -47,-33 + 2617: -46,-34 + 2618: -48,-32 + 2619: -49,-31 + 2620: -46,-30 + 2621: -49,-33 + 2622: -49,-32 + 2623: -48,-33 + 2624: -50,-32 + 2625: -50,-31 + 2626: -47,-32 + 2627: -48,-31 + 2628: -47,-34 + 2629: -47,-35 + 2630: -46,-35 + 2631: -45,-34 + 2632: -44,-34 + 2633: -44,-32 + 2634: -46,-31 + 2635: -49,-30 + 2636: -52,-30 + 2637: -52,-33 + 2638: -45,-29 + 2639: -31,-31 + 2640: -31,-32 + 2641: -29,-32 + 2642: -32,-32 + 2643: -35,-32 + 2644: -34,-32 + 2645: -39,-32 + 2646: -40,-31 + 2647: -34,-31 + 2648: -20,-35 + 2649: -11,-45 + 2650: -11,-44 + 2651: -13,-45 + 2652: -14,-45 + 2659: 53,-7 + 2660: 53,-9 + 2661: 53,-10 + 2662: 53,-11 + 2663: 54,-11 + 2664: 55,-12 + 2665: 55,-15 + 2666: 50,-6 + 2667: 47,-5 + 2668: 33,-5 + 2669: 33,-6 + 2670: 31,-7 + 2671: 29,-8 + 2672: 33,-3 + 2673: 30,-10 + 2674: 31,-2 + 2675: 30,-1 + 2676: 32,1 + 2677: 31,2 + 2678: 57,-25 + 2679: 59,-42 + 2680: 58,-43 + 2681: 56,-43 + 2682: 47,-43 + 2683: 45,-41 + 2684: 25,-41 + 2685: 28,-40 + 2686: 31,-40 + 2687: 30,-40 + 2688: 25,-40 + 2700: 36,20 + 2701: 37,20 + 2702: 35,21 + 2703: 32,20 + 2704: 30,20 + 2705: 27,21 + 2706: 31,17 + 2707: 32,11 + 2708: 29,12 + 2717: -31,-35 + 2718: -33,-36 + 2719: -30,-35 + 2720: -17,-38 + 2721: -17,-37 + 2722: -18,-35 + 2723: -13,-46 + 2724: -12,-47 + 2725: -8,-50 + 2726: -8,-52 + 2727: -15,-49 + 2790: 13,-46 + 2791: 14,-47 + 2792: 15,-45 + 2793: 17,-44 + 2794: 19,-47 + 2795: 11,-46 + 2796: 10,-47 + 2797: 10,-49 + 2798: 13,-40 + 2799: 12,-40 + 2800: 11,-41 + 2801: 5,-51 + 2935: 5,-43 + 2936: 6,-43 + 2937: -3,-43 + 2938: -6,-41 + 2939: -13,-40 + 2940: -12,-41 + 2941: -12,-42 + 2942: -14,-41 + 2952: 41,-50 + 2953: 42,-52 + 2954: 41,-49 + 2955: 38,-52 + 2956: 22,-49 + 3121: -59,44 + 3122: -59,45 + 3123: -60,46 + 3124: -58,47 + 3125: -57,44 + 3126: -58,43 + 3127: -59,40 + 3128: -60,41 + 3129: -60,42 + 3130: -61,43 + 3131: -61,44 + 3132: -62,45 + 3133: -62,47 + 3134: -63,47 + 3135: -61,48 + 3136: -61,49 + 3137: -62,50 + 3138: -62,51 + 3139: -58,52 + 3140: -58,51 + 3141: -59,51 + 3142: -59,50 + 3143: -58,49 + 3144: -53,46 + 3145: -56,46 + 3146: -58,37 + 3147: -59,37 + 3148: -60,39 + 3149: -59,36 + 3428: 40,-48 + 3429: 41,-45 + 3430: 40,-44 + 3431: 43,-46 + 3434: -23,-33 + 3435: -24,-33 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -2412,8 +2412,8 @@ entities: color: '#FFFFFFFF' id: DirtHeavy decals: - 3307: 37,-2 - 3308: 37,2 + 3286: 37,-2 + 3287: 37,2 - node: cleanable: True color: '#FFFFFFFF' @@ -2424,46 +2424,46 @@ entities: 104: 13,11 151: -51,-30 167: -39,-14 - 560: -59,19 - 561: -60,22 - 562: -60,23 - 687: 51,0 - 688: 50,0 - 689: 49,-1 - 690: 49,3 - 944: -5,-25 - 945: -4,-25 - 1770: -39,9 - 1790: -10,-15 - 1821: -7,-16 - 2391: -1,13 + 559: -59,19 + 560: -60,22 + 561: -60,23 + 686: 51,0 + 687: 50,0 + 688: 49,-1 + 689: 49,3 + 943: -5,-25 + 944: -4,-25 + 1769: -39,9 + 1789: -10,-15 + 1820: -7,-16 + 2390: -1,13 + 2466: 52,-38 2467: 52,-38 - 2468: 52,-38 - 2580: 53,-22 - 2581: 53,-23 - 2587: -46,-30 - 2588: -45,-30 - 2589: -45,-32 + 2579: 53,-22 + 2580: 53,-23 + 2586: -46,-30 + 2587: -45,-30 + 2588: -45,-32 + 2589: -46,-33 2590: -46,-33 - 2591: -46,-33 - 2592: -50,-33 - 2593: -48,-32 - 2710: 30,12 - 2711: 27,11 - 2712: 30,18 - 2713: 29,21 - 2885: -63,-10 - 2950: -59,26 - 2951: -60,26 - 3126: 45,9 - 3353: 43,2 - 3354: 45,0 - 3355: 45,-1 - 3356: 48,4 - 3403: 40,-2 - 3560: -59,20 - 3561: -59,22 - 3562: -59,22 + 2591: -50,-33 + 2592: -48,-32 + 2709: 30,12 + 2710: 27,11 + 2711: 30,18 + 2712: 29,21 + 2884: -63,-10 + 2949: -59,26 + 2950: -60,26 + 3106: 45,9 + 3332: 43,2 + 3333: 45,0 + 3334: 45,-1 + 3335: 48,4 + 3382: 40,-2 + 3536: -59,20 + 3537: -59,22 + 3538: -59,22 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -2487,24 +2487,24 @@ entities: 354: -24,-15 355: -23,-12 356: -32,-11 - 617: -38,8 - 618: -38,6 - 619: -38,5 - 620: -37,8 - 621: -34,9 - 622: -33,8 - 623: -39,12 - 969: -30,-20 - 970: -21,-19 - 971: -33,-20 - 972: -33,-17 - 973: -32,-20 - 3314: 37,1 - 3315: 37,-1 - 3316: 38,0 - 3317: 36,0 - 3318: 36,-1 - 3319: 40,0 + 616: -38,8 + 617: -38,6 + 618: -38,5 + 619: -37,8 + 620: -34,9 + 621: -33,8 + 622: -39,12 + 968: -30,-20 + 969: -21,-19 + 970: -33,-20 + 971: -33,-17 + 972: -32,-20 + 3293: 37,1 + 3294: 37,-1 + 3295: 38,0 + 3296: 36,0 + 3297: 36,-1 + 3298: 40,0 - node: cleanable: True color: '#FFFFFFFF' @@ -2557,266 +2557,266 @@ entities: 171: -38,-14 172: -38,-18 173: -39,-19 - 433: 11,-21 - 434: 12,-21 - 444: 15,-14 - 445: 15,-15 - 446: 15,-12 - 447: 15,-11 - 448: 16,-9 - 449: 17,-2 - 450: 17,0 - 451: 17,1 - 452: 16,2 - 453: 16,-5 - 483: -26,31 - 484: -27,30 - 485: -23,31 - 486: -23,29 - 487: -21,29 - 488: -18,29 - 489: -22,27 - 490: -24,30 - 491: -29,31 - 553: -16,12 - 554: -16,23 - 555: -23,24 - 556: -39,24 - 557: -42,22 - 558: -43,21 - 559: -56,16 - 565: -58,20 - 566: -59,18 - 567: -60,17 - 568: -59,25 - 569: -60,24 - 570: -56,24 - 571: -57,20 - 694: 47,-1 - 695: 48,-2 - 696: 49,-2 - 697: 51,1 - 698: 50,1 - 699: 51,2 - 700: 48,2 - 701: 47,0 - 702: 44,4 - 703: 49,4 - 704: 43,5 - 705: 43,6 - 706: 55,12 - 707: 54,11 - 708: 53,11 - 709: 55,13 - 710: 55,9 - 711: 49,14 - 712: 50,13 - 713: 41,6 - 714: 41,5 - 715: 40,5 - 716: 37,4 - 717: 36,5 - 784: -22,25 - 785: -17,18 - 786: -37,4 - 787: -37,-11 - 788: -37,-15 - 789: -19,-20 - 790: -17,-14 - 791: -17,-7 - 792: -16,-5 - 800: -16,7 - 802: -16,4 - 803: -15,9 - 804: -16,0 - 941: -9,-25 + 432: 11,-21 + 433: 12,-21 + 443: 15,-14 + 444: 15,-15 + 445: 15,-12 + 446: 15,-11 + 447: 16,-9 + 448: 17,-2 + 449: 17,0 + 450: 17,1 + 451: 16,2 + 452: 16,-5 + 482: -26,31 + 483: -27,30 + 484: -23,31 + 485: -23,29 + 486: -21,29 + 487: -18,29 + 488: -22,27 + 489: -24,30 + 490: -29,31 + 552: -16,12 + 553: -16,23 + 554: -23,24 + 555: -39,24 + 556: -42,22 + 557: -43,21 + 558: -56,16 + 564: -58,20 + 565: -59,18 + 566: -60,17 + 567: -59,25 + 568: -60,24 + 569: -56,24 + 570: -57,20 + 693: 47,-1 + 694: 48,-2 + 695: 49,-2 + 696: 51,1 + 697: 50,1 + 698: 51,2 + 699: 48,2 + 700: 47,0 + 701: 44,4 + 702: 49,4 + 703: 43,5 + 704: 43,6 + 705: 55,12 + 706: 54,11 + 707: 53,11 + 708: 55,13 + 709: 55,9 + 710: 49,14 + 711: 50,13 + 712: 41,6 + 713: 41,5 + 714: 40,5 + 715: 37,4 + 716: 36,5 + 783: -22,25 + 784: -17,18 + 785: -37,4 + 786: -37,-11 + 787: -37,-15 + 788: -19,-20 + 789: -17,-14 + 790: -17,-7 + 791: -16,-5 + 799: -16,7 + 801: -16,4 + 802: -15,9 + 803: -16,0 + 940: -9,-25 + 941: -8,-25 942: -8,-25 - 943: -8,-25 - 948: -4,-24 - 949: -1,-25 - 950: 7,-21 + 947: -4,-24 + 948: -1,-25 + 949: 7,-21 + 950: 16,-25 951: 16,-25 - 952: 16,-25 - 953: 13,-25 - 1002: 7,-20 - 1003: 8,-20 - 1004: 9,-20 - 1005: 9,-21 - 1006: 10,-23 - 1007: 12,-23 - 1008: -6,-23 - 1009: -25,-23 - 1010: -34,-23 - 1011: -37,-24 - 1184: -10,-55 - 1185: -14,-56 - 1186: -19,-55 - 1187: -7,-54 - 1188: -2,-54 - 1189: -3,-57 - 1190: 2,-59 - 1191: -3,-64 - 1192: 0,-61 - 1193: -3,-66 - 1194: -3,-71 - 1195: -1,-73 - 1196: 2,-71 - 1197: 1,-55 - 1198: -1,-47 - 1199: 0,-45 - 1268: 20,24 - 1269: 15,25 - 1270: 16,27 - 1271: 34,23 - 1272: 38,24 - 1273: 44,26 - 1274: 45,25 - 1275: 52,25 - 1276: 53,26 - 1277: 52,21 - 1278: 44,21 - 1279: 41,20 - 1280: 52,14 - 1281: 48,18 - 1282: 49,16 - 1283: 45,7 - 1284: 20,8 - 1285: 32,7 - 1286: 34,8 - 1287: 16,8 - 1288: 5,8 - 1289: -7,9 - 1290: -8,8 - 1329: 7,-22 - 1330: 5,-23 - 1331: 4,-23 - 1332: 7,-24 - 1333: 23,-23 - 1334: 18,-28 - 1335: 21,-35 - 1336: 19,-34 - 1771: -38,9 - 1772: -39,8 - 1773: -39,7 - 1774: -35,8 - 1775: -39,-1 - 1792: -10,-16 - 1793: -10,-14 - 1794: -11,-14 - 1795: -10,-13 - 1796: -11,-13 - 1797: -8,-12 - 1798: -8,-14 - 1799: -9,-13 - 1800: -10,-13 - 1801: -11,-17 - 1802: -11,-18 - 1818: -9,-16 + 952: 13,-25 + 1001: 7,-20 + 1002: 8,-20 + 1003: 9,-20 + 1004: 9,-21 + 1005: 10,-23 + 1006: 12,-23 + 1007: -6,-23 + 1008: -25,-23 + 1009: -34,-23 + 1010: -37,-24 + 1183: -10,-55 + 1184: -14,-56 + 1185: -19,-55 + 1186: -7,-54 + 1187: -2,-54 + 1188: -3,-57 + 1189: 2,-59 + 1190: -3,-64 + 1191: 0,-61 + 1192: -3,-66 + 1193: -3,-71 + 1194: -1,-73 + 1195: 2,-71 + 1196: 1,-55 + 1197: -1,-47 + 1198: 0,-45 + 1267: 20,24 + 1268: 15,25 + 1269: 16,27 + 1270: 34,23 + 1271: 38,24 + 1272: 44,26 + 1273: 45,25 + 1274: 52,25 + 1275: 53,26 + 1276: 52,21 + 1277: 44,21 + 1278: 41,20 + 1279: 52,14 + 1280: 48,18 + 1281: 49,16 + 1282: 45,7 + 1283: 20,8 + 1284: 32,7 + 1285: 34,8 + 1286: 16,8 + 1287: 5,8 + 1288: -7,9 + 1289: -8,8 + 1328: 7,-22 + 1329: 5,-23 + 1330: 4,-23 + 1331: 7,-24 + 1332: 23,-23 + 1333: 18,-28 + 1334: 21,-35 + 1335: 19,-34 + 1770: -38,9 + 1771: -39,8 + 1772: -39,7 + 1773: -35,8 + 1774: -39,-1 + 1791: -10,-16 + 1792: -10,-14 + 1793: -11,-14 + 1794: -10,-13 + 1795: -11,-13 + 1796: -8,-12 + 1797: -8,-14 + 1798: -9,-13 + 1799: -10,-13 + 1800: -11,-17 + 1801: -11,-18 + 1817: -9,-16 + 1818: -8,-16 1819: -8,-16 - 1820: -8,-16 - 2144: -39,-12 - 2145: -39,-8 - 2146: -40,-7 - 2147: -39,-8 - 2149: -39,-9 - 2150: -39,-3 - 2151: -39,3 - 2395: 1,13 - 2396: 0,14 + 2143: -39,-12 + 2144: -39,-8 + 2145: -40,-7 + 2146: -39,-8 + 2148: -39,-9 + 2149: -39,-3 + 2150: -39,3 + 2394: 1,13 + 2395: 0,14 + 2396: 0,15 2397: 0,15 - 2398: 0,15 - 2399: 1,15 - 2400: 3,14 - 2401: 5,15 - 2402: 7,13 - 2403: 9,14 - 2404: 11,12 - 2405: 11,14 - 2406: 5,17 - 2407: 4,17 - 2408: 4,18 - 2409: -4,17 - 2410: -4,19 - 2411: -3,20 - 2412: -2,17 - 2449: 3,19 - 2450: 4,20 - 2452: -4,21 - 2453: -3,22 - 2454: -3,24 - 2455: -2,21 - 2456: -2,20 - 2457: -3,23 - 2458: -5,28 - 2459: -5,27 - 2460: -11,28 - 2461: -12,29 - 2462: -13,30 - 2463: -13,31 - 2464: -12,32 - 2465: -22,31 - 2466: -30,30 + 2398: 1,15 + 2399: 3,14 + 2400: 5,15 + 2401: 7,13 + 2402: 9,14 + 2403: 11,12 + 2404: 11,14 + 2405: 5,17 + 2406: 4,17 + 2407: 4,18 + 2408: -4,17 + 2409: -4,19 + 2410: -3,20 + 2411: -2,17 + 2448: 3,19 + 2449: 4,20 + 2451: -4,21 + 2452: -3,22 + 2453: -3,24 + 2454: -2,21 + 2455: -2,20 + 2456: -3,23 + 2457: -5,28 + 2458: -5,27 + 2459: -11,28 + 2460: -12,29 + 2461: -13,30 + 2462: -13,31 + 2463: -12,32 + 2464: -22,31 + 2465: -30,30 + 2468: 51,-38 2469: 51,-38 - 2470: 51,-38 - 2479: 49,-39 + 2478: 49,-39 + 2600: -52,-35 2601: -52,-35 - 2602: -52,-35 - 2603: -52,-32 + 2602: -52,-32 + 2603: -49,-31 2604: -49,-31 - 2605: -49,-31 + 2605: -48,-32 2606: -48,-32 - 2607: -48,-32 + 2607: -45,-33 2608: -45,-33 2609: -45,-33 - 2610: -45,-33 + 2610: -46,-32 2611: -46,-32 2612: -46,-32 - 2613: -46,-32 - 2714: 28,21 - 2715: 31,18 - 2716: 31,12 - 2717: 27,12 - 3127: 44,9 - 3128: 46,8 - 3129: 44,10 - 3130: 45,12 - 3360: 45,3 - 3361: 46,3 - 3362: 43,3 - 3363: 42,3 - 3364: 44,2 - 3365: 45,1 - 3366: 46,-1 - 3367: 45,-2 - 3368: 46,1 - 3369: 47,2 - 3370: 48,1 - 3371: 51,4 - 3372: 48,3 - 3373: 46,2 - 3374: 40,2 - 3386: 49,6 - 3387: 48,7 - 3388: 53,6 - 3389: 45,5 - 3390: 41,8 - 3391: 40,9 - 3392: 39,8 - 3393: 41,13 - 3394: 41,15 - 3395: 40,16 - 3396: 56,7 - 3397: 41,1 - 3398: 41,0 - 3399: 42,2 - 3406: 40,-1 - 3417: 56,12 - 3418: 54,15 - 3419: 49,17 - 3420: 55,7 - 3421: 49,9 - 3422: 50,11 - 3423: 37,7 + 2713: 28,21 + 2714: 31,18 + 2715: 31,12 + 2716: 27,12 + 3107: 44,9 + 3108: 46,8 + 3109: 44,10 + 3110: 45,12 + 3339: 45,3 + 3340: 46,3 + 3341: 43,3 + 3342: 42,3 + 3343: 44,2 + 3344: 45,1 + 3345: 46,-1 + 3346: 45,-2 + 3347: 46,1 + 3348: 47,2 + 3349: 48,1 + 3350: 51,4 + 3351: 48,3 + 3352: 46,2 + 3353: 40,2 + 3365: 49,6 + 3366: 48,7 + 3367: 53,6 + 3368: 45,5 + 3369: 41,8 + 3370: 40,9 + 3371: 39,8 + 3372: 41,13 + 3373: 41,15 + 3374: 40,16 + 3375: 56,7 + 3376: 41,1 + 3377: 41,0 + 3378: 42,2 + 3385: 40,-1 + 3396: 56,12 + 3397: 54,15 + 3398: 49,17 + 3399: 55,7 + 3400: 49,9 + 3401: 50,11 + 3402: 37,7 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -2842,15 +2842,15 @@ entities: 345: -25,-20 346: -28,-19 347: -23,-5 - 614: -38,7 - 615: -39,10 - 616: -39,11 - 968: -31,-20 - 3309: 36,-2 - 3310: 38,-2 - 3311: 36,2 - 3312: 38,2 - 3313: 37,1 + 613: -38,7 + 614: -39,10 + 615: -39,11 + 967: -31,-20 + 3288: 36,-2 + 3289: 38,-2 + 3290: 36,2 + 3291: 38,2 + 3292: 37,1 - node: cleanable: True color: '#FFFFFFFF' @@ -2869,51 +2869,51 @@ entities: 152: -50,-33 168: -39,-15 169: -39,-16 - 443: 14,-14 - 480: -23,30 - 481: -22,29 - 482: -25,31 - 563: -58,21 - 564: -59,25 - 691: 50,2 - 692: 50,4 - 693: 49,0 - 799: -16,6 - 801: -14,7 - 946: -3,-25 - 947: -6,-25 - 1328: 6,-22 - 1791: -11,-16 - 2148: -40,-8 - 2392: 0,13 - 2393: -1,14 - 2394: 1,14 - 2451: -3,21 - 2471: 52,-36 - 2472: 52,-37 - 2473: 56,-37 - 2474: 55,-38 - 2475: 47,-36 - 2476: 48,-36 + 442: 14,-14 + 479: -23,30 + 480: -22,29 + 481: -25,31 + 562: -58,21 + 563: -59,25 + 690: 50,2 + 691: 50,4 + 692: 49,0 + 798: -16,6 + 800: -14,7 + 945: -3,-25 + 946: -6,-25 + 1327: 6,-22 + 1790: -11,-16 + 2147: -40,-8 + 2391: 0,13 + 2392: -1,14 + 2393: 1,14 + 2450: -3,21 + 2470: 52,-36 + 2471: 52,-37 + 2472: 56,-37 + 2473: 55,-38 + 2474: 47,-36 + 2475: 48,-36 + 2476: 50,-39 2477: 50,-39 - 2478: 50,-39 - 2582: 53,-21 - 2583: 53,-24 - 2594: -46,-32 - 2595: -46,-34 - 2596: -45,-33 - 2597: -47,-30 - 2598: -49,-31 - 2599: -51,-33 - 2600: -52,-34 - 2886: -64,-10 - 2887: -62,-9 - 2888: -60,-12 - 3357: 49,4 - 3358: 44,3 - 3359: 40,3 - 3404: 41,-2 - 3405: 42,-2 + 2581: 53,-21 + 2582: 53,-24 + 2593: -46,-32 + 2594: -46,-34 + 2595: -45,-33 + 2596: -47,-30 + 2597: -49,-31 + 2598: -51,-33 + 2599: -52,-34 + 2885: -64,-10 + 2886: -62,-9 + 2887: -60,-12 + 3336: 49,4 + 3337: 44,3 + 3338: 40,3 + 3383: 41,-2 + 3384: 42,-2 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -2926,80 +2926,80 @@ entities: color: '#FED83DFF' id: Donk decals: - 2577: -62.43933,-13.441491 + 2576: -62.43933,-13.441491 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: 235: 34.965233,-25.985117 - 1472: 11.007317,-66.54063 + 1471: 11.007317,-66.54063 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 1087: -0.48526984,-68.87088 - 1088: 0.23348016,-66.02713 + 1086: -0.48526984,-68.87088 + 1087: 0.23348016,-66.02713 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 1086: 0.7647302,-68.49588 - 1474: 11.007317,-69.05625 + 1085: 0.7647302,-68.49588 + 1473: 11.007317,-69.05625 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: - 515: -8.949466,34.143715 - 1032: 48.118763,22.943716 + 514: -8.949466,34.143715 + 1031: 48.118763,22.943716 - node: color: '#FFFFFFFF' id: Flowersy1 decals: 233: 33.152733,-25.953867 - 1084: 0.6866052,-66.792755 - 3548: 29.018572,-35.56262 + 1083: 0.6866052,-66.792755 + 3527: 29.018572,-35.56262 - node: color: '#FFFFFFFF' id: Flowersy2 decals: 234: 33.933983,-26.047617 - 461: 12.076155,3.7926216 - 517: -9.011966,36.081215 - 1085: -0.76651984,-68.074005 - 1473: 11.038567,-68.22813 + 460: 12.076155,3.7926216 + 516: -9.011966,36.081215 + 1084: -0.76651984,-68.074005 + 1472: 11.038567,-68.22813 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 1033: 49.540638,22.974966 - 1083: -0.48526984,-65.65213 + 1032: 49.540638,22.974966 + 1082: -0.48526984,-65.65213 - node: color: '#FFFFFFFF' id: Flowersy4 decals: - 462: 11.34178,4.3394966 - 586: -5.970551,-6.928444 - 587: -5.986176,-6.053444 - 822: 9.393604,3.3875775 - 1082: -0.26651984,-69.93338 - 3547: 29.924822,-37.81262 + 461: 11.34178,4.3394966 + 585: -5.970551,-6.928444 + 586: -5.986176,-6.053444 + 821: 9.393604,3.3875775 + 1081: -0.26651984,-69.93338 + 3526: 29.924822,-37.81262 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale decals: - 591: 0,3 - 592: 1,3 - 593: 2,3 - 594: 3,3 - 595: -1,3 - 596: -2,3 - 597: -3,3 - 2929: 5,-36 - 2930: 3,-36 - 2931: 5,-37 - 2932: 3,-37 - 3473: 7,-37 - 3474: 7,-36 + 590: 0,3 + 591: 1,3 + 592: 2,3 + 593: 3,3 + 594: -1,3 + 595: -2,3 + 596: -3,3 + 2928: 5,-36 + 2929: 3,-36 + 2930: 5,-37 + 2931: 3,-37 + 3452: 7,-37 + 3453: 7,-36 - node: color: '#52B4E996' id: FullTileOverlayGreyscale @@ -3016,34 +3016,34 @@ entities: 277: 42,-21 301: 46,-10 302: 42,-24 - 3011: 33,-22 - 3037: 46,-17 - 3038: 46,-19 - 3048: 46,-18 + 3010: 33,-22 + 3036: 46,-17 + 3037: 46,-19 + 3047: 46,-18 - node: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 637: 48,15 - 644: 42,6 - 645: 42,5 - 656: 44,4 - 657: 47,8 - 658: 47,7 - 3294: 37,3 - 3295: 39,-1 - 3296: 39,0 - 3297: 36,-2 - 3298: 37,-2 - 3299: 38,-2 - 3300: 38,2 - 3301: 37,2 - 3302: 36,2 - 3375: 49,5 - 3376: 48,5 - 3400: 40,-2 - 3401: 41,-2 - 3402: 42,-2 + 636: 48,15 + 643: 42,6 + 644: 42,5 + 655: 44,4 + 656: 47,8 + 657: 47,7 + 3273: 37,3 + 3274: 39,-1 + 3275: 39,0 + 3276: 36,-2 + 3277: 37,-2 + 3278: 38,-2 + 3279: 38,2 + 3280: 37,2 + 3281: 36,2 + 3354: 49,5 + 3355: 48,5 + 3379: 40,-2 + 3380: 41,-2 + 3381: 42,-2 - node: color: '#D0BF4AA7' id: FullTileOverlayGreyscale @@ -3054,34 +3054,34 @@ entities: color: '#D381C93E' id: FullTileOverlayGreyscale decals: - 389: -46,3 + 388: -46,3 - node: color: '#D381C996' id: FullTileOverlayGreyscale decals: - 609: -39,10 + 608: -39,10 - node: color: '#D4D4D406' id: FullTileOverlayGreyscale decals: - 2545: 41,-10 - 2546: 40,-10 - 2547: 39,-10 - 2548: 38,-10 - 2549: 37,-10 - 2550: 36,-10 - 2551: 36,-9 - 2552: 36,-8 - 2553: 36,-7 - 2554: 36,-6 - 2555: 38,-9 - 2556: 38,-8 - 2557: 38,-7 - 2558: 38,-6 - 2559: 40,-9 - 2560: 40,-8 - 2561: 40,-7 - 2562: 40,-6 + 2544: 41,-10 + 2545: 40,-10 + 2546: 39,-10 + 2547: 38,-10 + 2548: 37,-10 + 2549: 36,-10 + 2550: 36,-9 + 2551: 36,-8 + 2552: 36,-7 + 2553: 36,-6 + 2554: 38,-9 + 2555: 38,-8 + 2556: 38,-7 + 2557: 38,-6 + 2558: 40,-9 + 2559: 40,-8 + 2560: 40,-7 + 2561: 40,-6 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale @@ -3101,38 +3101,38 @@ entities: color: '#EFCC4196' id: FullTileOverlayGreyscale decals: - 2369: -2,14 - 2370: 2,14 - 2371: 1,13 - 2372: 0,13 - 2373: -1,13 - 2374: -1,14 - 2375: 0,14 - 2376: 1,14 - 2377: 1,15 - 2378: 0,15 - 2379: -1,15 - 2380: 0,12 + 2368: -2,14 + 2369: 2,14 + 2370: 1,13 + 2371: 0,13 + 2372: -1,13 + 2373: -1,14 + 2374: 0,14 + 2375: 1,14 + 2376: 1,15 + 2377: 0,15 + 2378: -1,15 + 2379: 0,12 - node: color: '#EFD54193' id: FullTileOverlayGreyscale decals: - 3509: 8,14 - 3510: 5,16 - 3530: -14,28 + 3488: 8,14 + 3489: 5,16 + 3509: -14,28 - node: color: '#EFD84196' id: FullTileOverlayGreyscale decals: - 1998: -19,30 - 1999: -18,30 - 2000: -15,30 + 1997: -19,30 + 1998: -18,30 + 1999: -15,30 - node: cleanable: True color: '#169C9CFF' id: Gene decals: - 2579: 53.01786,-22.012398 + 2578: 53.01786,-22.012398 - node: color: '#FFFFFFFF' id: Grassb1 @@ -3143,90 +3143,90 @@ entities: id: Grassb2 decals: 232: 33.699608,-25.985117 - 520: -8.918216,34.34684 - 1065: -5.121248,-69.02713 + 519: -8.918216,34.34684 + 1064: -5.121248,-69.02713 - node: color: '#FFFFFFFF' id: Grassb3 decals: - 1064: 5.175627,-68.99588 + 1063: 5.175627,-68.99588 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 588: -5.939301,-7.022194 - 1067: 5.144377,-65.90213 + 587: -5.939301,-7.022194 + 1066: 5.144377,-65.90213 - node: color: '#FFFFFFFF' id: Grassb5 decals: 231: 32.824608,-26.016367 - 1066: -5.105623,-65.949005 + 1065: -5.105623,-65.949005 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 460: 11.06053,2.6519966 - 1080: -0.84464484,-69.58963 - 3541: 29.893572,-37.234493 - 3544: 29.924822,-35.203243 + 459: 11.06053,2.6519966 + 1079: -0.84464484,-69.58963 + 3520: 29.893572,-37.234493 + 3523: 29.924822,-35.203243 - node: color: '#FFFFFFFF' id: Grassd2 decals: 229: 35.121483,-26.016367 - 459: 10.02928,3.2613716 - 1030: 50,29 - 1031: 48,23 - 1076: 0.9053552,-65.02713 - 1081: 0.8272302,-69.83963 - 1468: 10.976067,-66.05625 - 3542: 29.002947,-37.109493 + 458: 10.02928,3.2613716 + 1029: 50,29 + 1030: 48,23 + 1075: 0.9053552,-65.02713 + 1080: 0.8272302,-69.83963 + 1467: 10.976067,-66.05625 + 3521: 29.002947,-37.109493 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 458: 11.107405,3.8082466 - 1077: -0.92276984,-64.99588 - 3543: 29.018572,-35.15637 + 457: 11.107405,3.8082466 + 1076: -0.92276984,-64.99588 + 3522: 29.018572,-35.15637 - node: color: '#FFFFFFFF' id: Grasse1 decals: 228: 34.449608,-26.000742 - 456: 10.37303,4.2613716 - 457: 11.919905,3.4176216 - 1078: 0.48348016,-65.511505 - 1079: -0.71964484,-67.042755 - 1467: 11.054192,-66.97813 - 1682: -46.974236,5.0132127 + 455: 10.37303,4.2613716 + 456: 11.919905,3.4176216 + 1077: 0.48348016,-65.511505 + 1078: -0.71964484,-67.042755 + 1466: 11.054192,-66.97813 + 1681: -46.974236,5.0132127 - node: color: '#FFFFFFFF' id: Grasse2 decals: 227: 33.683983,-26.016367 - 454: 9.31053,4.0426216 - 455: 11.357405,4.8394966 - 516: -8.980716,36.081215 - 1026: 49,23 - 1027: 49,29 - 1466: 11.007317,-67.97813 - 1681: -47.98986,4.9819627 - 3540: 29.065447,-38.00012 - 3545: 29.049822,-36.15637 + 453: 9.31053,4.0426216 + 454: 11.357405,4.8394966 + 515: -8.980716,36.081215 + 1025: 49,23 + 1026: 49,29 + 1465: 11.007317,-67.97813 + 1680: -47.98986,4.9819627 + 3519: 29.065447,-38.00012 + 3524: 29.049822,-36.15637 - node: color: '#FFFFFFFF' id: Grasse3 decals: 226: 32.949608,-25.985117 - 513: -9.011966,34.12809 - 584: -6.001801,-6.928444 - 585: -6.017426,-6.131569 - 1028: 50,23 - 1029: 48,29 - 1465: 10.976067,-68.97813 - 3539: 29.846697,-37.93762 - 3546: 29.909197,-36.18762 + 512: -9.011966,34.12809 + 583: -6.001801,-6.928444 + 584: -6.017426,-6.131569 + 1027: 50,23 + 1028: 48,29 + 1464: 10.976067,-68.97813 + 3518: 29.846697,-37.93762 + 3525: 29.909197,-36.18762 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -3237,8 +3237,8 @@ entities: 291: 33,-17 292: 34,-17 293: 35,-17 - 3049: 47,-17 - 3050: 48,-17 + 3048: 47,-17 + 3049: 48,-17 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale @@ -3252,15 +3252,15 @@ entities: color: '#A4610696' id: HalfTileOverlayGreyscale decals: - 683: 47,14 - 684: 48,14 - 685: 49,14 - 3123: 45,9 - 3124: 44,9 - 3408: 56,15 - 3409: 55,15 - 3410: 54,15 - 3411: 53,15 + 682: 47,14 + 683: 48,14 + 684: 49,14 + 3103: 45,9 + 3104: 44,9 + 3387: 56,15 + 3388: 55,15 + 3389: 54,15 + 3390: 53,15 - node: color: '#D0BF4AA7' id: HalfTileOverlayGreyscale @@ -3272,16 +3272,16 @@ entities: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 377: -42,14 - 378: -41,14 - 379: -40,14 - 380: -39,14 - 381: -38,14 - 610: -34,9 - 611: -33,9 - 612: -32,9 - 1776: -43,0 - 1777: -42,0 + 376: -42,14 + 377: -41,14 + 378: -40,14 + 379: -39,14 + 380: -38,14 + 609: -34,9 + 610: -33,9 + 611: -32,9 + 1775: -43,0 + 1776: -42,0 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -3299,21 +3299,21 @@ entities: color: '#EFCC4196' id: HalfTileOverlayGreyscale decals: - 2275: 8,32 - 2276: 7,32 - 2277: 6,32 - 2278: 5,32 - 2279: 4,32 - 2340: 5,21 - 2341: 4,21 - 2342: 3,21 - 2343: 2,21 - 2344: 1,21 - 2345: 0,21 - 2346: -1,21 - 2347: -2,21 - 2367: 6,15 - 2368: 4,15 + 2274: 8,32 + 2275: 7,32 + 2276: 6,32 + 2277: 5,32 + 2278: 4,32 + 2339: 5,21 + 2340: 4,21 + 2341: 3,21 + 2342: 2,21 + 2343: 1,21 + 2344: 0,21 + 2345: -1,21 + 2346: -2,21 + 2366: 6,15 + 2367: 4,15 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -3321,9 +3321,9 @@ entities: 5: 49,-24 6: 48,-24 7: 47,-24 - 3009: 34,-21 - 3010: 33,-21 - 3483: 50,-24 + 3008: 34,-21 + 3009: 33,-21 + 3462: 50,-24 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 @@ -3335,9 +3335,9 @@ entities: color: '#A4610696' id: HalfTileOverlayGreyscale180 decals: - 650: 44,5 - 651: 45,5 - 663: 47,12 + 649: 44,5 + 650: 45,5 + 662: 47,12 - node: color: '#D0BF4AA7' id: HalfTileOverlayGreyscale180 @@ -3349,17 +3349,17 @@ entities: color: '#D381C93E' id: HalfTileOverlayGreyscale180 decals: - 406: -36,2 + 405: -36,2 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 373: -38,11 - 374: -42,13 - 375: -41,13 - 376: -40,13 - 1778: -43,-2 - 2138: -42,-11 + 372: -38,11 + 373: -42,13 + 374: -41,13 + 375: -40,13 + 1777: -43,-2 + 2137: -42,-11 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -3377,27 +3377,27 @@ entities: color: '#EFCC4196' id: HalfTileOverlayGreyscale180 decals: - 2280: 8,23 - 2281: 7,23 - 2282: 6,23 - 2283: 5,23 - 2284: 4,23 - 2332: 4,17 - 2333: 3,17 - 2334: 1,17 - 2335: 2,17 - 2336: 0,17 - 2337: -1,17 - 2338: -2,17 - 2339: -3,17 - 2364: 5,13 - 2365: 4,13 + 2279: 8,23 + 2280: 7,23 + 2281: 6,23 + 2282: 5,23 + 2283: 4,23 + 2331: 4,17 + 2332: 3,17 + 2333: 1,17 + 2334: 2,17 + 2335: 0,17 + 2336: -1,17 + 2337: -2,17 + 2338: -3,17 + 2363: 5,13 + 2364: 4,13 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 599: -4,1 - 600: -3,2 + 598: -4,1 + 599: -3,2 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 @@ -3413,8 +3413,8 @@ entities: 288: 43,-13 289: 43,-14 290: 43,-15 - 3005: 32,-18 - 3006: 32,-20 + 3004: 32,-18 + 3005: 32,-20 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 @@ -3427,24 +3427,24 @@ entities: 27: 50,-28 28: 47,-27 29: 47,-26 - 2973: 43,-27 - 2974: 43,-29 - 2975: 43,-30 - 2976: 43,-31 - 2977: 43,-33 - 2978: 43,-34 + 2972: 43,-27 + 2973: 43,-29 + 2974: 43,-30 + 2975: 43,-31 + 2976: 43,-33 + 2977: 43,-34 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 647: 43,6 - 648: 43,7 - 649: 43,8 - 659: 48,7 - 660: 48,8 - 661: 48,9 - 662: 48,10 - 3377: 48,6 + 646: 43,6 + 647: 43,7 + 648: 43,8 + 658: 48,7 + 659: 48,8 + 660: 48,9 + 661: 48,10 + 3356: 48,6 - node: color: '#D0BF4AA7' id: HalfTileOverlayGreyscale270 @@ -3464,7 +3464,7 @@ entities: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 382: -39,12 + 381: -39,12 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale270 @@ -3486,23 +3486,23 @@ entities: 326: -32,-8 335: -35,0 336: -35,1 - 1830: -32,-14 - 1831: -32,-7 + 1829: -32,-14 + 1830: -32,-7 - node: color: '#EFCC4196' id: HalfTileOverlayGreyscale270 decals: - 2329: -5,18 - 2330: -5,19 - 2331: -5,20 - 2354: 9,14 - 2366: 3,14 + 2328: -5,18 + 2329: -5,19 + 2330: -5,20 + 2353: 9,14 + 2365: 3,14 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: - 598: 3,2 - 793: -15,3 + 597: 3,2 + 792: -15,3 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 @@ -3520,8 +3520,8 @@ entities: 298: 45,-11 299: 45,-10 300: 45,-9 - 3051: 49,-18 - 3052: 49,-19 + 3050: 49,-18 + 3051: 49,-19 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 @@ -3533,26 +3533,26 @@ entities: 45: 52,-31 46: 52,-32 47: 52,-33 - 2966: 45,-34 - 2967: 45,-32 - 2968: 45,-31 - 2969: 45,-30 - 2970: 45,-29 - 2971: 45,-28 - 2972: 45,-27 + 2965: 45,-34 + 2966: 45,-32 + 2967: 45,-31 + 2968: 45,-30 + 2969: 45,-29 + 2970: 45,-28 + 2971: 45,-27 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 638: 41,5 - 639: 41,6 - 640: 41,7 - 641: 41,8 - 642: 41,9 - 643: 41,10 - 653: 46,6 - 654: 46,7 - 655: 46,8 + 637: 41,5 + 638: 41,6 + 639: 41,7 + 640: 41,8 + 641: 41,9 + 642: 41,10 + 652: 46,6 + 653: 46,7 + 654: 46,8 - node: color: '#D0BF4AA7' id: HalfTileOverlayGreyscale90 @@ -3566,8 +3566,8 @@ entities: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 371: -37,12 - 372: -37,13 + 370: -37,12 + 371: -37,13 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale90 @@ -3587,15 +3587,15 @@ entities: 320: -22,-7 340: -31,0 341: -31,1 - 1829: -22,-14 + 1828: -22,-14 - node: color: '#EFCC4196' id: HalfTileOverlayGreyscale90 decals: - 2352: 6,18 - 2353: 6,20 - 2362: 7,13 - 2363: 7,14 + 2351: 6,18 + 2352: 6,20 + 2361: 7,13 + 2362: 7,14 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -3607,286 +3607,286 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 665: 54,11 - 809: 43,6 + 664: 54,11 + 808: 43,6 - node: color: '#FFFFFFFF' id: LoadingArea decals: 161: 3,-26 - 613: -33,9 - 3060: -18,27 + 612: -33,9 + 3059: -18,27 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: LoadingAreaGreyscale decals: - 2113: -42,-5 + 2112: -42,-5 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNe decals: - 3222: -116,21 - 3223: -116,25 + 3201: -116,21 + 3202: -116,25 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNw decals: - 3220: -108,21 - 3224: -108,25 + 3199: -108,21 + 3203: -108,25 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSe decals: - 3219: -116,30 - 3225: -116,27 + 3198: -116,30 + 3204: -116,27 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSw decals: - 3221: -108,30 - 3226: -108,27 + 3200: -108,30 + 3205: -108,27 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 3193: -116,22 - 3194: -116,23 - 3195: -116,24 - 3196: -116,26 - 3197: -116,28 - 3198: -116,29 + 3172: -116,22 + 3173: -116,23 + 3174: -116,24 + 3175: -116,26 + 3176: -116,28 + 3177: -116,29 - node: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 3212: -109,21 - 3213: -110,21 - 3214: -111,21 - 3215: -112,21 - 3216: -113,21 - 3217: -114,21 - 3218: -115,21 + 3191: -109,21 + 3192: -110,21 + 3193: -111,21 + 3194: -112,21 + 3195: -113,21 + 3196: -114,21 + 3197: -115,21 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 3205: -109,30 - 3206: -110,30 - 3207: -111,30 - 3208: -112,30 - 3209: -113,30 - 3210: -114,30 - 3211: -115,30 + 3184: -109,30 + 3185: -110,30 + 3186: -111,30 + 3187: -112,30 + 3188: -113,30 + 3189: -114,30 + 3190: -115,30 - node: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 1654: -41,2 - 1655: -41,3 - 1656: -41,4 - 1657: -41,5 - 3199: -108,22 - 3200: -108,23 - 3201: -108,24 - 3202: -108,26 - 3203: -108,28 - 3204: -108,29 - 3557: 35,18 + 1653: -41,2 + 1654: -41,3 + 1655: -41,4 + 1656: -41,5 + 3178: -108,22 + 3179: -108,23 + 3180: -108,24 + 3181: -108,26 + 3182: -108,28 + 3183: -108,29 + 3533: 35,18 - node: color: '#52B4E996' id: MonoOverlay decals: - 3001: 34,-20 - 3002: 33,-19 - 3003: 34,-18 + 3000: 34,-20 + 3001: 33,-19 + 3002: 34,-18 - node: color: '#80C71F95' id: MonoOverlay decals: - 1661: 47,-30 - 1662: 48,-29 - 1663: 49,-28 - 1664: 49,-30 - 1665: 47,-28 + 1660: 47,-30 + 1661: 48,-29 + 1662: 49,-28 + 1663: 49,-30 + 1664: 47,-28 - node: color: '#D4D4D40C' id: PavementCheckerAOverlay decals: - 3085: 35,-34 - 3086: 32,-33 - 3087: 31,-29 + 3080: 35,-34 + 3081: 32,-33 + 3082: 31,-29 - node: color: '#D4D4D428' id: PavementCheckerAOverlay decals: - 3074: 29,-34 - 3075: 30,-32 - 3076: 28,-34 - 3077: 28,-27 - 3078: 30,-29 - 3079: 32,-27 - 3080: 33,-28 - 3081: 33,-31 - 3082: 33,-30 - 3083: 34,-34 - 3084: 33,-33 + 3069: 29,-34 + 3070: 30,-32 + 3071: 28,-34 + 3072: 28,-27 + 3073: 30,-29 + 3074: 32,-27 + 3075: 33,-28 + 3076: 33,-31 + 3077: 33,-30 + 3078: 34,-34 + 3079: 33,-33 - node: color: '#D4D4D40C' id: PavementCheckerBOverlay decals: - 3113: 33,-34 - 3114: 28,-32 - 3115: 31,-27 - 3116: 32,-28 + 3093: 33,-34 + 3094: 28,-32 + 3095: 31,-27 + 3096: 32,-28 - node: color: '#D4D4D412' id: PavementCheckerBOverlay decals: - 3101: 30,-33 - 3102: 30,-34 - 3103: 29,-32 - 3104: 28,-33 - 3105: 30,-31 - 3106: 28,-28 - 3107: 30,-27 - 3108: 30,-28 - 3109: 31,-29 + 3084: 30,-33 + 3085: 30,-34 + 3086: 29,-32 + 3087: 28,-33 + 3088: 30,-31 + 3089: 28,-28 + 3090: 30,-27 + 3091: 30,-28 + 3092: 31,-29 - node: color: '#D4D4D428' id: PavementCheckerBOverlay decals: - 3064: 35,-30 - 3065: 32,-29 - 3066: 31,-28 - 3067: 29,-28 - 3068: 30,-30 - 3069: 29,-33 - 3100: 31,-33 + 3063: 35,-30 + 3064: 32,-29 + 3065: 31,-28 + 3066: 29,-28 + 3067: 30,-30 + 3068: 29,-33 + 3083: 31,-33 - node: cleanable: True color: '#169C9CFF' id: Prima decals: - 2883: 4.4262443,-52.031498 + 2882: 4.4262443,-52.031498 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 572: -1,-8 - 573: -1,-7 - 574: -1,-6 - 575: -1,-5 - 576: -1,-4 - 577: -1,-3 - 604: -3,1 - 605: -4,0 - 722: -74,18 - 723: -73,18 - 990: -1,-21 - 991: -1,-20 - 992: -1,-19 - 993: -1,-18 - 994: -1,-17 - 995: -1,-16 - 996: -1,-15 - 997: -1,-14 - 998: -1,-13 - 999: -1,-12 - 1000: -1,-11 - 1001: -1,-10 + 571: -1,-8 + 572: -1,-7 + 573: -1,-6 + 574: -1,-5 + 575: -1,-4 + 576: -1,-3 + 603: -3,1 + 604: -4,0 + 721: -74,18 + 722: -73,18 + 989: -1,-21 + 990: -1,-20 + 991: -1,-19 + 992: -1,-18 + 993: -1,-17 + 994: -1,-16 + 995: -1,-15 + 996: -1,-14 + 997: -1,-13 + 998: -1,-12 + 999: -1,-11 + 1000: -1,-10 - node: color: '#52B4E92E' id: QuarterTileOverlayGreyscale decals: - 1123: 4,-66 + 1122: 4,-66 - node: color: '#52B4E944' id: QuarterTileOverlayGreyscale decals: - 1178: -3,-59 - 1179: -3,-58 - 1180: -3,-57 + 1177: -3,-59 + 1178: -3,-58 + 1179: -3,-57 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: 9: 51,-21 14: 47,-24 - 3000: 44,-15 - 3046: 48,-19 + 2999: 44,-15 + 3045: 48,-19 - node: color: '#79150096' id: QuarterTileOverlayGreyscale decals: - 1049: 45,26 - 1050: 48,27 - 2840: 37,26 - 2841: 36,26 - 2842: 35,26 - 2843: 34,26 - 2844: 33,26 - 2845: 32,26 - 2846: 20,26 - 2847: 21,26 - 2848: 22,26 - 2849: 23,26 - 2850: 24,26 - 2851: 25,26 - 2852: 26,26 - 2853: 27,26 - 2854: 28,26 - 2855: 29,26 - 2856: 30,26 - 2857: 31,26 - 3061: 19,26 + 1048: 45,26 + 1049: 48,27 + 2839: 37,26 + 2840: 36,26 + 2841: 35,26 + 2842: 34,26 + 2843: 33,26 + 2844: 32,26 + 2845: 20,26 + 2846: 21,26 + 2847: 22,26 + 2848: 23,26 + 2849: 24,26 + 2850: 25,26 + 2851: 26,26 + 2852: 27,26 + 2853: 28,26 + 2854: 29,26 + 2855: 30,26 + 2856: 31,26 + 3060: 19,26 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale decals: - 686: 50,14 - 741: 27,9 - 742: 25,9 - 743: 26,9 - 744: 21,9 - 745: 20,9 - 746: 19,9 - 3303: 37,1 - 3304: 37,0 - 3305: 37,-1 - 3320: 51,4 - 3321: 50,4 - 3322: 49,4 - 3323: 48,4 - 3324: 48,3 - 3325: 47,3 - 3326: 46,3 - 3327: 45,3 - 3328: 44,3 - 3329: 43,3 - 3330: 42,3 - 3331: 41,3 - 3332: 40,3 + 685: 50,14 + 740: 27,9 + 741: 25,9 + 742: 26,9 + 743: 21,9 + 744: 20,9 + 745: 19,9 + 3282: 37,1 + 3283: 37,0 + 3284: 37,-1 + 3299: 51,4 + 3300: 50,4 + 3301: 49,4 + 3302: 48,4 + 3303: 48,3 + 3304: 47,3 + 3305: 46,3 + 3306: 45,3 + 3307: 44,3 + 3308: 43,3 + 3309: 42,3 + 3310: 41,3 + 3311: 40,3 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale decals: - 384: -35,11 - 385: -35,12 - 386: -35,13 - 387: -35,14 - 388: -35,15 - 1737: -31,9 - 1739: -37,9 - 1740: -38,9 - 1741: -39,9 - 1742: -39,8 - 1743: -39,7 - 1744: -39,6 - 2120: -40,-4 - 2121: -39,-4 - 2122: -39,-3 - 2565: 48,-22 + 383: -35,11 + 384: -35,12 + 385: -35,13 + 386: -35,14 + 387: -35,15 + 1736: -31,9 + 1738: -37,9 + 1739: -38,9 + 1740: -39,9 + 1741: -39,8 + 1742: -39,7 + 1743: -39,6 + 2119: -40,-4 + 2120: -39,-4 + 2121: -39,-3 + 2564: 48,-22 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale @@ -3894,215 +3894,215 @@ entities: 196: 15,-5 197: 15,-6 198: 15,-7 - 438: 15,-14 - 439: 15,-13 - 440: 15,-12 - 441: 15,-11 - 442: 15,-15 - 1232: -3,-54 - 1239: -2,-52 - 1240: -2,-51 - 1241: -2,-50 - 1242: -2,-49 - 1243: -2,-48 - 1244: -2,-47 - 1245: -2,-46 - 1291: -17,11 - 1292: -17,12 - 1293: -17,13 - 1294: -17,14 - 1295: -17,15 - 1296: -17,17 - 1297: -17,16 - 1298: -17,18 - 1299: -17,19 - 1300: -17,20 - 1301: -17,21 - 1500: 6,-22 - 1501: 6,-21 - 1502: 6,-20 - 1503: 7,-20 - 1504: 8,-20 - 1505: 9,-20 - 1506: 6,-23 - 1507: 5,-23 - 1508: 4,-23 - 1509: 3,-23 - 1530: -4,10 - 1531: -5,10 - 1532: -6,10 - 1533: -7,10 - 1534: -7,9 - 1535: -8,9 - 1536: -9,9 - 1537: -10,9 - 1538: -11,9 - 1539: -12,9 - 1565: -31,25 - 1566: -29,25 - 1567: -30,25 - 1568: -28,25 - 1569: -27,25 - 1570: -26,25 - 1571: -25,25 - 1572: -24,25 - 1597: -22,-23 - 1598: -23,-23 - 1599: -24,-23 - 1600: -25,-23 - 1601: -26,-23 - 1605: 10,-23 - 1606: 11,-23 - 1607: 12,-23 - 1608: 13,-23 - 1609: 14,-23 - 1629: 36,10 - 1630: 36,11 - 1631: 37,11 - 1632: 38,11 - 1769: 8,7 - 2233: -39,-19 - 2234: -39,-20 - 2235: -39,-21 - 2236: -39,-22 - 2237: -39,-23 - 2272: -10,-23 - 2273: -11,-23 - 2274: -12,-23 - 2485: -28,9 - 2486: -29,9 - 2487: -30,9 - 2488: -17,5 - 2489: -17,4 - 2490: -17,3 - 2491: -18,9 - 2494: -17,9 - 2753: 15,12 - 2754: 15,11 - 2755: 15,9 - 2757: 15,-22 - 2758: 15,-23 - 2761: -17,-23 - 2786: 15,23 - 2787: 15,24 - 2788: 15,25 - 2789: 15,27 - 2790: 15,28 - 2804: -1,-41 - 2805: -1,-40 - 2806: -1,-39 - 2807: -1,-38 - 2808: -1,-37 - 2809: -1,-36 - 2810: -1,-35 - 2811: -1,-34 - 2812: -1,-33 - 2813: -1,-32 - 2814: -1,-31 - 2815: -1,-30 - 2816: -1,-29 - 2817: -1,-28 + 437: 15,-14 + 438: 15,-13 + 439: 15,-12 + 440: 15,-11 + 441: 15,-15 + 1231: -3,-54 + 1238: -2,-52 + 1239: -2,-51 + 1240: -2,-50 + 1241: -2,-49 + 1242: -2,-48 + 1243: -2,-47 + 1244: -2,-46 + 1290: -17,11 + 1291: -17,12 + 1292: -17,13 + 1293: -17,14 + 1294: -17,15 + 1295: -17,17 + 1296: -17,16 + 1297: -17,18 + 1298: -17,19 + 1299: -17,20 + 1300: -17,21 + 1499: 6,-22 + 1500: 6,-21 + 1501: 6,-20 + 1502: 7,-20 + 1503: 8,-20 + 1504: 9,-20 + 1505: 6,-23 + 1506: 5,-23 + 1507: 4,-23 + 1508: 3,-23 + 1529: -4,10 + 1530: -5,10 + 1531: -6,10 + 1532: -7,10 + 1533: -7,9 + 1534: -8,9 + 1535: -9,9 + 1536: -10,9 + 1537: -11,9 + 1538: -12,9 + 1564: -31,25 + 1565: -29,25 + 1566: -30,25 + 1567: -28,25 + 1568: -27,25 + 1569: -26,25 + 1570: -25,25 + 1571: -24,25 + 1596: -22,-23 + 1597: -23,-23 + 1598: -24,-23 + 1599: -25,-23 + 1600: -26,-23 + 1604: 10,-23 + 1605: 11,-23 + 1606: 12,-23 + 1607: 13,-23 + 1608: 14,-23 + 1628: 36,10 + 1629: 36,11 + 1630: 37,11 + 1631: 38,11 + 1768: 8,7 + 2232: -39,-19 + 2233: -39,-20 + 2234: -39,-21 + 2235: -39,-22 + 2236: -39,-23 + 2271: -10,-23 + 2272: -11,-23 + 2273: -12,-23 + 2484: -28,9 + 2485: -29,9 + 2486: -30,9 + 2487: -17,5 + 2488: -17,4 + 2489: -17,3 + 2490: -18,9 + 2493: -17,9 + 2752: 15,12 + 2753: 15,11 + 2754: 15,9 + 2756: 15,-22 + 2757: 15,-23 + 2760: -17,-23 + 2785: 15,23 + 2786: 15,24 + 2787: 15,25 + 2788: 15,27 + 2789: 15,28 + 2803: -1,-41 + 2804: -1,-40 + 2805: -1,-39 + 2806: -1,-38 + 2807: -1,-37 + 2808: -1,-36 + 2809: -1,-35 + 2810: -1,-34 + 2811: -1,-33 + 2812: -1,-32 + 2813: -1,-31 + 2814: -1,-30 + 2815: -1,-29 + 2816: -1,-28 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale decals: - 1124: -3,-61 - 1125: -3,-62 - 1126: -3,-63 - 1127: -3,-64 - 1128: -3,-65 - 1129: -3,-66 - 1130: -4,-66 - 1131: -4,-67 - 1132: -4,-68 - 1133: -4,-69 - 1134: -3,-70 - 1135: -3,-71 - 1136: -3,-72 - 1137: -3,-73 - 1138: -3,-74 + 1123: -3,-61 + 1124: -3,-62 + 1125: -3,-63 + 1126: -3,-64 + 1127: -3,-65 + 1128: -3,-66 + 1129: -4,-66 + 1130: -4,-67 + 1131: -4,-68 + 1132: -4,-69 + 1133: -3,-70 + 1134: -3,-71 + 1135: -3,-72 + 1136: -3,-73 + 1137: -3,-74 - node: color: '#D4D4D441' id: QuarterTileOverlayGreyscale decals: - 1059: 43,26 - 1060: 47,26 + 1058: 43,26 + 1059: 47,26 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale decals: - 1690: 51,22 - 1691: 50,22 - 1692: 49,22 - 1693: 48,22 - 1694: 47,22 - 1702: 52,23 - 1703: 52,22 - 1721: 41,18 - 1722: 40,18 - 1723: 39,18 + 1689: 51,22 + 1690: 50,22 + 1691: 49,22 + 1692: 48,22 + 1693: 47,22 + 1701: 52,23 + 1702: 52,22 + 1720: 41,18 + 1721: 40,18 + 1722: 39,18 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 760: -17,-17 - 761: -17,-16 - 762: -17,-15 - 763: -17,-14 - 764: -17,-13 - 765: -17,-12 - 766: -17,-11 - 767: -17,-10 - 768: -17,-9 - 769: -17,-8 - 770: -17,-7 - 771: -17,-6 - 807: -18,1 - 808: -18,2 - 1779: -11,-16 - 1780: -11,-15 - 1781: -11,-14 - 1782: -11,-13 - 1783: -11,-12 - 1789: -10,-12 + 759: -17,-17 + 760: -17,-16 + 761: -17,-15 + 762: -17,-14 + 763: -17,-13 + 764: -17,-12 + 765: -17,-11 + 766: -17,-10 + 767: -17,-9 + 768: -17,-8 + 769: -17,-7 + 770: -17,-6 + 806: -18,1 + 807: -18,2 + 1778: -11,-16 + 1779: -11,-15 + 1780: -11,-14 + 1781: -11,-13 + 1782: -11,-12 + 1788: -10,-12 - node: color: '#EFCC4196' id: QuarterTileOverlayGreyscale decals: - 2360: 9,13 - 2381: -1,11 - 2382: -2,11 - 2383: -3,11 - 2384: -4,11 + 2359: 9,13 + 2380: -1,11 + 2381: -2,11 + 2382: -3,11 + 2383: -4,11 - node: color: '#FFEF9292' id: QuarterTileOverlayGreyscale decals: - 2987: 44,-35 + 2986: 44,-35 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: - 794: -15,4 + 793: -15,4 - node: color: '#52B4E92E' id: QuarterTileOverlayGreyscale180 decals: - 1108: 3,-61 - 1109: 3,-62 - 1110: 3,-63 - 1111: 3,-64 - 1112: 3,-65 - 1113: 4,-66 - 1114: 4,-67 - 1115: 4,-68 - 1116: 4,-69 - 1117: 3,-70 - 1118: 3,-71 - 1119: 3,-72 - 1120: 3,-73 - 1121: 3,-74 - 1122: 3,-69 + 1107: 3,-61 + 1108: 3,-62 + 1109: 3,-63 + 1110: 3,-64 + 1111: 3,-65 + 1112: 4,-66 + 1113: 4,-67 + 1114: 4,-68 + 1115: 4,-69 + 1116: 3,-70 + 1117: 3,-71 + 1118: 3,-72 + 1119: 3,-73 + 1120: 3,-74 + 1121: 3,-69 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -4112,16 +4112,16 @@ entities: 305: 39,-25 306: 38,-25 307: 37,-25 - 2999: 44,-9 - 3047: 47,-18 + 2998: 44,-9 + 3046: 47,-18 - node: color: '#79150096' id: QuarterTileOverlayGreyscale180 decals: - 1042: 56,20 - 1043: 54,20 - 1044: 52,20 - 1047: 56,22 + 1041: 56,20 + 1042: 54,20 + 1043: 52,20 + 1046: 56,22 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 @@ -4133,155 +4133,155 @@ entities: color: '#A4610696' id: QuarterTileOverlayGreyscale180 decals: - 734: 41,11 - 747: 34,7 - 748: 33,7 - 749: 32,7 - 750: 31,7 - 751: 30,7 - 752: 29,7 - 753: 28,7 - 755: 38,4 - 756: 41,13 - 757: 41,14 - 758: 41,15 - 759: 41,16 + 733: 41,11 + 746: 34,7 + 747: 33,7 + 748: 32,7 + 749: 31,7 + 750: 30,7 + 751: 29,7 + 752: 28,7 + 754: 38,4 + 755: 41,13 + 756: 41,14 + 757: 41,15 + 758: 41,16 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 2566: 50,-23 + 2565: 50,-23 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 1580: -28,7 - 1581: -29,7 - 1582: -30,7 - 1583: -31,7 - 1584: -32,7 - 1585: -33,7 - 1586: -34,7 - 1587: -35,7 - 1602: 9,-20 - 1603: 9,-21 - 1604: 9,-22 - 1636: -14,-2 - 1637: -15,-2 - 1638: -15,-3 - 1639: -15,-4 - 1640: -15,-5 - 1641: -15,-6 - 1642: -15,-7 - 1643: -15,-8 - 1644: -15,-9 - 1645: -15,5 - 1646: -15,6 - 1647: -15,7 - 1648: -14,7 - 1649: 10,7 - 1650: 9,7 - 1651: 8,7 - 1745: -12,7 - 1746: -11,7 - 1747: -10,7 - 1748: -9,7 - 1749: -8,7 - 1750: -8,8 - 1751: -7,8 - 1752: -6,8 - 1753: -5,8 - 1754: -5,9 - 1755: -4,9 - 1756: -3,9 - 1757: -2,9 - 1758: -1,9 - 2257: -28,-25 - 2258: -29,-25 - 2782: -28,23 - 2783: -29,23 - 2784: -30,23 - 2785: -31,23 - 2833: 1,-43 - 2834: 2,-78 - 2835: 2,-77 - 2836: 2,-76 + 1579: -28,7 + 1580: -29,7 + 1581: -30,7 + 1582: -31,7 + 1583: -32,7 + 1584: -33,7 + 1585: -34,7 + 1586: -35,7 + 1601: 9,-20 + 1602: 9,-21 + 1603: 9,-22 + 1635: -14,-2 + 1636: -15,-2 + 1637: -15,-3 + 1638: -15,-4 + 1639: -15,-5 + 1640: -15,-6 + 1641: -15,-7 + 1642: -15,-8 + 1643: -15,-9 + 1644: -15,5 + 1645: -15,6 + 1646: -15,7 + 1647: -14,7 + 1648: 10,7 + 1649: 9,7 + 1650: 8,7 + 1744: -12,7 + 1745: -11,7 + 1746: -10,7 + 1747: -9,7 + 1748: -8,7 + 1749: -8,8 + 1750: -7,8 + 1751: -6,8 + 1752: -5,8 + 1753: -5,9 + 1754: -4,9 + 1755: -3,9 + 1756: -2,9 + 1757: -1,9 + 2256: -28,-25 + 2257: -29,-25 + 2781: -28,23 + 2782: -29,23 + 2783: -30,23 + 2784: -31,23 + 2832: 1,-43 + 2833: 2,-78 + 2834: 2,-77 + 2835: 2,-76 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale180 decals: - 1139: -4,-69 - 1172: 3,-59 - 1173: 3,-58 - 1174: 3,-57 + 1138: -4,-69 + 1171: 3,-59 + 1172: 3,-58 + 1173: 3,-57 - node: color: '#D4D4D441' id: QuarterTileOverlayGreyscale180 decals: - 1054: 56,21 - 1055: 55,20 - 1056: 53,20 + 1053: 56,21 + 1054: 55,20 + 1055: 53,20 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 decals: - 1695: 46,23 - 1696: 46,24 - 1697: 47,24 - 1698: 48,24 - 1699: 49,24 - 1700: 50,24 - 1701: 51,24 - 1724: 39,20 - 1725: 40,20 - 1726: 41,20 + 1694: 46,23 + 1695: 46,24 + 1696: 47,24 + 1697: 48,24 + 1698: 49,24 + 1699: 50,24 + 1700: 51,24 + 1723: 39,20 + 1724: 40,20 + 1725: 41,20 - node: color: '#EFB3414A' id: QuarterTileOverlayGreyscale180 decals: - 3260: 19,6 - 3261: 20,6 - 3262: 20,7 - 3263: 21,7 - 3264: 22,7 + 3239: 19,6 + 3240: 20,6 + 3241: 20,7 + 3242: 21,7 + 3243: 22,7 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale180 decals: - 2735: 17,19 - 2736: 17,20 - 2737: 17,21 + 2734: 17,19 + 2735: 17,20 + 2736: 17,21 - node: color: '#FFEF9292' id: QuarterTileOverlayGreyscale180 decals: - 2988: 44,-27 + 2987: 44,-27 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: - 719: -74,16 - 720: -73,16 - 721: -72,16 + 718: -74,16 + 719: -73,16 + 720: -72,16 - node: color: '#52B4E92E' id: QuarterTileOverlayGreyscale270 decals: - 1092: -3,-74 - 1093: -3,-73 - 1094: -3,-72 - 1095: -3,-71 - 1096: -3,-70 - 1097: -3,-69 - 1098: -4,-69 - 1099: -4,-68 - 1100: -4,-67 - 1101: -4,-66 - 1102: -3,-65 - 1103: -3,-64 - 1104: -3,-63 - 1105: -3,-62 - 1106: -3,-61 + 1091: -3,-74 + 1092: -3,-73 + 1093: -3,-72 + 1094: -3,-71 + 1095: -3,-70 + 1096: -3,-69 + 1097: -4,-69 + 1098: -4,-68 + 1099: -4,-67 + 1100: -4,-66 + 1101: -3,-65 + 1102: -3,-64 + 1103: -3,-63 + 1104: -3,-62 + 1105: -3,-61 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -4291,27 +4291,27 @@ entities: color: '#79150096' id: QuarterTileOverlayGreyscale270 decals: - 1039: 42,20 - 1040: 44,20 - 1041: 46,20 - 1711: 47,24 - 1712: 48,24 - 1713: 49,24 - 1714: 50,24 - 1715: 51,24 - 1716: 52,24 - 1717: 52,23 - 1727: 41,20 - 1728: 40,20 - 1729: 39,20 + 1038: 42,20 + 1039: 44,20 + 1040: 46,20 + 1710: 47,24 + 1711: 48,24 + 1712: 49,24 + 1713: 50,24 + 1714: 51,24 + 1715: 52,24 + 1716: 52,23 + 1726: 41,20 + 1727: 40,20 + 1728: 39,20 - node: color: '#9FED584A' id: QuarterTileOverlayGreyscale270 decals: - 3430: 39,16 - 3431: 39,15 - 3432: 39,14 - 3433: 39,13 + 3409: 39,16 + 3410: 39,15 + 3411: 39,14 + 3412: 39,13 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 @@ -4322,40 +4322,40 @@ entities: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: - 664: 48,12 - 754: 36,4 - 3346: 45,-2 - 3347: 45,-1 - 3348: 45,0 - 3349: 45,1 - 3350: 45,2 - 3351: 44,2 - 3352: 43,2 - 3378: 49,6 - 3379: 50,6 - 3380: 54,6 - 3381: 51,6 - 3382: 52,6 - 3383: 53,6 - 3384: 55,6 - 3385: 56,6 + 663: 48,12 + 753: 36,4 + 3325: 45,-2 + 3326: 45,-1 + 3327: 45,0 + 3328: 45,1 + 3329: 45,2 + 3330: 44,2 + 3331: 43,2 + 3357: 49,6 + 3358: 50,6 + 3359: 54,6 + 3360: 51,6 + 3361: 52,6 + 3362: 53,6 + 3363: 55,6 + 3364: 56,6 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 383: -39,13 - 2123: -39,1 - 2124: -39,2 - 2125: -39,3 - 2126: -39,4 - 2127: -40,-8 - 2128: -39,-8 - 2129: -39,-9 - 2130: -39,-10 - 2131: -39,-11 - 2132: -39,-12 - 2133: -40,-7 - 2564: 48,-23 + 382: -39,13 + 2122: -39,1 + 2123: -39,2 + 2124: -39,3 + 2125: -39,4 + 2126: -40,-8 + 2127: -39,-8 + 2128: -39,-9 + 2129: -39,-10 + 2130: -39,-11 + 2131: -39,-12 + 2132: -40,-7 + 2563: 48,-23 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 @@ -4363,190 +4363,190 @@ entities: 199: 15,2 200: 15,3 201: 15,4 - 1211: -5,-56 - 1212: -6,-56 - 1213: -7,-56 - 1214: -8,-56 - 1215: -9,-56 - 1216: -10,-56 - 1217: -11,-56 - 1218: -12,-56 - 1219: -13,-56 - 1220: -14,-56 - 1221: -15,-56 - 1222: -16,-56 - 1223: -17,-56 - 1224: -18,-56 - 1225: -19,-56 - 1254: 20,23 - 1255: 21,23 - 1256: 22,23 - 1257: 23,23 - 1258: 24,23 - 1259: 25,23 - 1260: 27,23 - 1261: 28,23 - 1262: 29,23 - 1263: 30,23 - 1264: 34,23 - 1265: 35,23 - 1266: 36,23 - 1267: 37,23 - 1546: -44,19 - 1547: -44,20 - 1548: -44,21 - 1549: -44,22 - 1550: -44,23 - 1551: -44,24 - 1552: -44,25 - 1573: -20,7 - 1574: -21,7 - 1575: -22,7 - 1576: -23,7 - 1577: -24,7 - 1578: -25,7 - 1579: -26,7 - 1588: -39,-25 - 1589: -38,-25 - 1590: -37,-25 - 1591: -36,-25 - 1592: -35,-25 - 1593: -34,-25 - 1594: -33,-25 - 1595: -32,-25 - 1596: -31,-25 - 1652: 12,7 - 1653: 13,7 - 1759: 1,9 - 1760: 2,9 - 1761: 3,9 - 1762: 4,9 - 1763: 5,9 - 1764: 5,8 - 1765: 6,8 - 1766: 7,8 - 1767: 8,8 - 1768: 8,7 - 2253: -39,-17 - 2254: -39,-16 - 2255: -39,-15 - 2256: -39,-14 - 2259: -26,-25 - 2260: -25,-25 - 2261: -24,-25 - 2262: -23,-25 - 2263: -22,-25 - 2264: -21,-25 - 2265: -20,-25 - 2266: -19,-25 - 2267: -18,-25 - 2268: -17,-25 - 2269: -16,-25 - 2270: -15,-25 - 2271: -14,-25 - 2495: -17,7 - 2496: -18,7 - 2745: 15,14 - 2746: 15,15 - 2747: 15,16 - 2748: 15,17 - 2749: 15,18 - 2750: 15,19 - 2751: 15,20 - 2752: 15,21 - 2762: -17,-22 - 2776: -24,23 - 2777: -23,23 - 2778: -22,23 - 2779: -21,23 - 2780: -20,23 - 2781: -19,23 - 2832: -1,-43 - 2837: -2,-78 - 2838: -2,-77 - 2839: -2,-76 + 1210: -5,-56 + 1211: -6,-56 + 1212: -7,-56 + 1213: -8,-56 + 1214: -9,-56 + 1215: -10,-56 + 1216: -11,-56 + 1217: -12,-56 + 1218: -13,-56 + 1219: -14,-56 + 1220: -15,-56 + 1221: -16,-56 + 1222: -17,-56 + 1223: -18,-56 + 1224: -19,-56 + 1253: 20,23 + 1254: 21,23 + 1255: 22,23 + 1256: 23,23 + 1257: 24,23 + 1258: 25,23 + 1259: 27,23 + 1260: 28,23 + 1261: 29,23 + 1262: 30,23 + 1263: 34,23 + 1264: 35,23 + 1265: 36,23 + 1266: 37,23 + 1545: -44,19 + 1546: -44,20 + 1547: -44,21 + 1548: -44,22 + 1549: -44,23 + 1550: -44,24 + 1551: -44,25 + 1572: -20,7 + 1573: -21,7 + 1574: -22,7 + 1575: -23,7 + 1576: -24,7 + 1577: -25,7 + 1578: -26,7 + 1587: -39,-25 + 1588: -38,-25 + 1589: -37,-25 + 1590: -36,-25 + 1591: -35,-25 + 1592: -34,-25 + 1593: -33,-25 + 1594: -32,-25 + 1595: -31,-25 + 1651: 12,7 + 1652: 13,7 + 1758: 1,9 + 1759: 2,9 + 1760: 3,9 + 1761: 4,9 + 1762: 5,9 + 1763: 5,8 + 1764: 6,8 + 1765: 7,8 + 1766: 8,8 + 1767: 8,7 + 2252: -39,-17 + 2253: -39,-16 + 2254: -39,-15 + 2255: -39,-14 + 2258: -26,-25 + 2259: -25,-25 + 2260: -24,-25 + 2261: -23,-25 + 2262: -22,-25 + 2263: -21,-25 + 2264: -20,-25 + 2265: -19,-25 + 2266: -18,-25 + 2267: -17,-25 + 2268: -16,-25 + 2269: -15,-25 + 2270: -14,-25 + 2494: -17,7 + 2495: -18,7 + 2744: 15,14 + 2745: 15,15 + 2746: 15,16 + 2747: 15,17 + 2748: 15,18 + 2749: 15,19 + 2750: 15,20 + 2751: 15,21 + 2761: -17,-22 + 2775: -24,23 + 2776: -23,23 + 2777: -22,23 + 2778: -21,23 + 2779: -20,23 + 2780: -19,23 + 2831: -1,-43 + 2836: -2,-78 + 2837: -2,-77 + 2838: -2,-76 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale270 decals: - 1154: 4,-69 - 1169: -3,-59 - 1170: -3,-58 - 1171: -3,-57 + 1153: 4,-69 + 1168: -3,-59 + 1169: -3,-58 + 1170: -3,-57 - node: color: '#D4D4D441' id: QuarterTileOverlayGreyscale270 decals: - 1057: 45,20 - 1058: 43,20 + 1056: 45,20 + 1057: 43,20 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 805: -18,-1 - 806: -18,0 + 804: -18,-1 + 805: -18,0 - node: color: '#DF81C96C' id: QuarterTileOverlayGreyscale270 decals: - 3345: 48,4 + 3324: 48,4 - node: color: '#EFB3414A' id: QuarterTileOverlayGreyscale270 decals: - 3255: 27,6 - 3256: 26,6 - 3257: 26,7 - 3258: 25,7 - 3259: 24,7 + 3234: 27,6 + 3235: 26,6 + 3236: 26,7 + 3237: 25,7 + 3238: 24,7 - node: color: '#EFCC4196' id: QuarterTileOverlayGreyscale270 decals: - 2361: 9,15 + 2360: 9,15 - node: color: '#EFD54193' id: QuarterTileOverlayGreyscale270 decals: - 3508: 6,13 + 3487: 6,13 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 578: 1,-8 - 579: 1,-7 - 580: 1,-6 - 581: 1,-5 - 582: 1,-4 - 583: 1,-3 - 602: 3,1 - 603: -4,1 - 606: 4,0 - 797: -15,2 - 978: 1,-10 - 979: 1,-11 - 980: 1,-12 - 981: 1,-13 - 982: 1,-14 - 983: 1,-15 - 984: 1,-16 - 985: 1,-17 - 986: 1,-18 - 987: 1,-19 - 988: 1,-20 - 989: 1,-21 + 577: 1,-8 + 578: 1,-7 + 579: 1,-6 + 580: 1,-5 + 581: 1,-4 + 582: 1,-3 + 601: 3,1 + 602: -4,1 + 605: 4,0 + 796: -15,2 + 977: 1,-10 + 978: 1,-11 + 979: 1,-12 + 980: 1,-13 + 981: 1,-14 + 982: 1,-15 + 983: 1,-16 + 984: 1,-17 + 985: 1,-18 + 986: 1,-19 + 987: 1,-20 + 988: 1,-21 - node: color: '#52B4E92E' id: QuarterTileOverlayGreyscale90 decals: - 1107: -4,-66 + 1106: -4,-66 - node: color: '#52B4E944' id: QuarterTileOverlayGreyscale90 decals: - 1175: 3,-59 - 1176: 3,-58 - 1177: 3,-57 + 1174: 3,-59 + 1175: 3,-58 + 1176: 3,-57 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -4561,20 +4561,20 @@ entities: color: '#79150096' id: QuarterTileOverlayGreyscale90 decals: - 1045: 56,26 - 1046: 56,24 - 1048: 53,26 - 1051: 50,27 - 1704: 51,22 - 1705: 50,22 - 1706: 49,22 - 1707: 48,22 - 1708: 47,22 - 1709: 46,22 - 1710: 46,23 - 1718: 41,18 - 1719: 40,18 - 1720: 39,18 + 1044: 56,26 + 1045: 56,24 + 1047: 53,26 + 1050: 50,27 + 1703: 51,22 + 1704: 50,22 + 1705: 49,22 + 1706: 48,22 + 1707: 47,22 + 1708: 46,22 + 1709: 46,23 + 1717: 41,18 + 1718: 40,18 + 1719: 39,18 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 @@ -4584,286 +4584,286 @@ entities: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 735: 34,9 - 736: 33,9 - 737: 32,9 - 738: 31,9 - 739: 30,9 - 740: 29,9 + 734: 34,9 + 735: 33,9 + 736: 32,9 + 737: 31,9 + 738: 30,9 + 739: 29,9 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 1738: -35,9 - 2567: 50,-22 - 2692: -55,17 - 2693: -56,17 - 2694: -57,17 - 2695: -54,17 + 1737: -35,9 + 2566: 50,-22 + 2691: -55,17 + 2692: -56,17 + 2693: -57,17 + 2694: -54,17 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 1226: 10,-54 - 1227: 9,-54 - 1228: 7,-54 - 1229: 8,-54 - 1230: 5,-54 - 1231: 3,-54 - 1233: 2,-47 - 1234: 2,-48 - 1235: 2,-49 - 1236: 2,-50 - 1237: 2,-51 - 1238: 2,-52 - 1511: -3,-23 - 1512: -4,-23 - 1513: -5,-23 - 1514: -6,-23 - 1515: -7,-23 - 1516: -8,-23 - 1517: -13,-23 - 1518: -14,-23 - 1519: 5,10 - 1520: 6,10 - 1521: 7,10 - 1522: 4,10 - 1523: 7,9 - 1524: 8,9 - 1525: 9,9 - 1526: 10,9 - 1527: 11,9 - 1528: 12,9 - 1529: 13,9 - 1553: -44,25 - 1554: -43,25 - 1555: -42,25 - 1556: -41,25 - 1557: -40,25 - 1558: -39,25 - 1559: -38,25 - 1560: -37,25 - 1561: -36,25 - 1562: -35,25 - 1563: -34,25 - 1564: -33,25 - 1610: 35,-23 - 1611: 34,-23 - 1612: 32,-23 - 1613: 31,-23 - 1614: 33,-23 - 1615: 30,-23 - 1616: 29,-23 - 1617: 28,-23 - 1618: 27,-23 - 1619: 26,-23 - 1620: 25,-23 - 1621: 24,-23 - 1622: 23,-23 - 1623: 22,-23 - 1624: 21,-23 - 1625: 20,-23 - 1626: 19,-23 - 1627: 18,-23 - 1633: -15,1 - 1634: -15,0 - 1635: -14,0 - 2001: -15,21 - 2002: -15,20 - 2003: -15,19 - 2004: -15,18 - 2005: -15,17 - 2006: -15,16 - 2007: -15,15 - 2008: -15,14 - 2009: -15,13 - 2010: -15,12 - 2011: -15,11 - 2239: -28,-23 - 2240: -29,-23 - 2241: -30,-23 - 2242: -31,-23 - 2243: -32,-23 - 2244: -33,-23 - 2245: -34,-23 - 2246: -35,-23 - 2247: -36,-23 - 2248: -37,-23 - 2249: -37,-22 - 2250: -37,-21 - 2251: -37,-20 - 2252: -37,-19 - 2480: -20,9 - 2481: -21,9 - 2482: -22,9 - 2483: -23,9 - 2484: -24,9 - 2492: -14,9 - 2493: -15,9 - 2741: 17,14 - 2742: 17,13 - 2743: 17,12 - 2744: 17,11 - 2756: 17,9 - 2759: 17,-22 - 2760: 17,-23 - 2763: -18,-23 - 2764: -15,-23 - 2765: -15,-22 - 2766: -15,-21 - 2767: -15,-20 - 2768: -15,-19 - 2769: -15,-17 - 2770: -15,-16 - 2771: -15,-15 - 2772: -15,-14 - 2773: -15,-13 - 2774: -15,-12 - 2775: -15,-11 - 2818: 1,-28 - 2819: 1,-29 - 2820: 1,-30 - 2821: 1,-31 - 2822: 1,-32 - 2823: 1,-33 - 2824: 1,-34 - 2825: 1,-35 - 2826: 1,-36 - 2827: 1,-37 - 2828: 1,-38 - 2829: 1,-39 - 2830: 1,-40 - 2831: 1,-41 + 1225: 10,-54 + 1226: 9,-54 + 1227: 7,-54 + 1228: 8,-54 + 1229: 5,-54 + 1230: 3,-54 + 1232: 2,-47 + 1233: 2,-48 + 1234: 2,-49 + 1235: 2,-50 + 1236: 2,-51 + 1237: 2,-52 + 1510: -3,-23 + 1511: -4,-23 + 1512: -5,-23 + 1513: -6,-23 + 1514: -7,-23 + 1515: -8,-23 + 1516: -13,-23 + 1517: -14,-23 + 1518: 5,10 + 1519: 6,10 + 1520: 7,10 + 1521: 4,10 + 1522: 7,9 + 1523: 8,9 + 1524: 9,9 + 1525: 10,9 + 1526: 11,9 + 1527: 12,9 + 1528: 13,9 + 1552: -44,25 + 1553: -43,25 + 1554: -42,25 + 1555: -41,25 + 1556: -40,25 + 1557: -39,25 + 1558: -38,25 + 1559: -37,25 + 1560: -36,25 + 1561: -35,25 + 1562: -34,25 + 1563: -33,25 + 1609: 35,-23 + 1610: 34,-23 + 1611: 32,-23 + 1612: 31,-23 + 1613: 33,-23 + 1614: 30,-23 + 1615: 29,-23 + 1616: 28,-23 + 1617: 27,-23 + 1618: 26,-23 + 1619: 25,-23 + 1620: 24,-23 + 1621: 23,-23 + 1622: 22,-23 + 1623: 21,-23 + 1624: 20,-23 + 1625: 19,-23 + 1626: 18,-23 + 1632: -15,1 + 1633: -15,0 + 1634: -14,0 + 2000: -15,21 + 2001: -15,20 + 2002: -15,19 + 2003: -15,18 + 2004: -15,17 + 2005: -15,16 + 2006: -15,15 + 2007: -15,14 + 2008: -15,13 + 2009: -15,12 + 2010: -15,11 + 2238: -28,-23 + 2239: -29,-23 + 2240: -30,-23 + 2241: -31,-23 + 2242: -32,-23 + 2243: -33,-23 + 2244: -34,-23 + 2245: -35,-23 + 2246: -36,-23 + 2247: -37,-23 + 2248: -37,-22 + 2249: -37,-21 + 2250: -37,-20 + 2251: -37,-19 + 2479: -20,9 + 2480: -21,9 + 2481: -22,9 + 2482: -23,9 + 2483: -24,9 + 2491: -14,9 + 2492: -15,9 + 2740: 17,14 + 2741: 17,13 + 2742: 17,12 + 2743: 17,11 + 2755: 17,9 + 2758: 17,-22 + 2759: 17,-23 + 2762: -18,-23 + 2763: -15,-23 + 2764: -15,-22 + 2765: -15,-21 + 2766: -15,-20 + 2767: -15,-19 + 2768: -15,-17 + 2769: -15,-16 + 2770: -15,-15 + 2771: -15,-14 + 2772: -15,-13 + 2773: -15,-12 + 2774: -15,-11 + 2817: 1,-28 + 2818: 1,-29 + 2819: 1,-30 + 2820: 1,-31 + 2821: 1,-32 + 2822: 1,-33 + 2823: 1,-34 + 2824: 1,-35 + 2825: 1,-36 + 2826: 1,-37 + 2827: 1,-38 + 2828: 1,-39 + 2829: 1,-40 + 2830: 1,-41 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale90 decals: - 1140: 3,-61 - 1141: 3,-62 - 1142: 3,-63 - 1143: 3,-64 - 1144: 3,-65 - 1145: 4,-66 - 1146: 4,-67 - 1147: 4,-68 - 1148: 4,-69 - 1149: 3,-70 - 1150: 3,-71 - 1151: 3,-72 - 1152: 3,-73 - 1153: 3,-74 + 1139: 3,-61 + 1140: 3,-62 + 1141: 3,-63 + 1142: 3,-64 + 1143: 3,-65 + 1144: 4,-66 + 1145: 4,-67 + 1146: 4,-68 + 1147: 4,-69 + 1148: 3,-70 + 1149: 3,-71 + 1150: 3,-72 + 1151: 3,-73 + 1152: 3,-74 - node: color: '#D4D4D441' id: QuarterTileOverlayGreyscale90 decals: - 1052: 55,26 - 1053: 56,25 - 1061: 51,26 + 1051: 55,26 + 1052: 56,25 + 1060: 51,26 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 decals: - 2858: 20,26 - 2859: 21,26 - 2860: 22,26 - 2861: 23,26 - 2862: 24,26 - 2863: 25,26 - 2864: 26,26 - 2865: 27,26 - 2866: 28,26 - 2867: 29,26 - 2868: 37,26 - 2869: 36,26 - 2870: 35,26 - 2871: 34,26 - 2872: 33,26 - 2873: 32,26 - 2874: 31,26 - 2875: 30,26 - 3062: 19,26 + 2857: 20,26 + 2858: 21,26 + 2859: 22,26 + 2860: 23,26 + 2861: 24,26 + 2862: 25,26 + 2863: 26,26 + 2864: 27,26 + 2865: 28,26 + 2866: 29,26 + 2867: 37,26 + 2868: 36,26 + 2869: 35,26 + 2870: 34,26 + 2871: 33,26 + 2872: 32,26 + 2873: 31,26 + 2874: 30,26 + 3061: 19,26 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 772: -37,-17 - 773: -37,-16 - 774: -37,-15 - 775: -37,-14 - 776: -37,-13 - 777: -37,-12 - 778: -37,-11 - 779: -37,-10 - 780: -37,-9 - 781: -37,-8 - 782: -37,-7 - 783: -37,-6 - 1784: -8,-15 - 1785: -8,-14 - 1786: -8,-13 - 1787: -8,-12 - 1788: -9,-12 + 771: -37,-17 + 772: -37,-16 + 773: -37,-15 + 774: -37,-14 + 775: -37,-13 + 776: -37,-12 + 777: -37,-11 + 778: -37,-10 + 779: -37,-9 + 780: -37,-8 + 781: -37,-7 + 782: -37,-6 + 1783: -8,-15 + 1784: -8,-14 + 1785: -8,-13 + 1786: -8,-12 + 1787: -9,-12 - node: color: '#DF81C96C' id: QuarterTileOverlayGreyscale90 decals: - 3333: 40,3 - 3334: 41,3 - 3335: 42,3 - 3336: 43,3 - 3337: 44,3 - 3338: 45,3 - 3339: 46,3 - 3340: 47,3 - 3341: 48,4 - 3342: 49,4 - 3343: 50,4 - 3344: 51,4 + 3312: 40,3 + 3313: 41,3 + 3314: 42,3 + 3315: 43,3 + 3316: 44,3 + 3317: 45,3 + 3318: 46,3 + 3319: 47,3 + 3320: 48,4 + 3321: 49,4 + 3322: 50,4 + 3323: 51,4 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale90 decals: - 2738: 17,17 - 2739: 17,16 - 2740: 17,15 + 2737: 17,17 + 2738: 17,16 + 2739: 17,15 - node: color: '#EFCC4196' id: QuarterTileOverlayGreyscale90 decals: - 2385: 1,11 - 2386: 2,11 - 2387: 3,11 - 2388: 4,11 - 2432: -15,23 - 2433: -15,24 - 2434: -15,25 - 2435: -16,25 - 2436: -17,25 - 2437: -18,25 - 2438: -19,25 - 2439: -20,25 + 2384: 1,11 + 2385: 2,11 + 2386: 3,11 + 2387: 4,11 + 2431: -15,23 + 2432: -15,24 + 2433: -15,25 + 2434: -16,25 + 2435: -17,25 + 2436: -18,25 + 2437: -19,25 + 2438: -20,25 - node: color: '#FFFFFFFF' id: Remains decals: - 2876: -63.989975,-10.123885 + 2875: -63.989975,-10.123885 - node: color: '#FFFFFFFF' id: Rock01 decals: - 1068: -5.089998,-68.511505 - 1070: 5.097502,-68.08963 + 1067: -5.089998,-68.511505 + 1069: 5.097502,-68.08963 - node: color: '#FFFFFFFF' id: Rock03 decals: - 1683: -47.98986,4.9975877 + 1682: -47.98986,4.9975877 - node: color: '#FFFFFFFF' id: Rock04 decals: - 1069: 5.097502,-66.74588 - 1684: -47.02111,4.9975877 + 1068: 5.097502,-66.74588 + 1683: -47.02111,4.9975877 - node: cleanable: True color: '#FFFFFFFF' @@ -4886,56 +4886,56 @@ entities: color: '#80C71FFF' id: Sirius decals: - 2882: -9.970831,-51.964848 + 2881: -9.970831,-51.964848 - node: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 860: -3,10 + 859: -3,10 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 861: -2,10 + 860: -2,10 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 862: -1,10 + 861: -1,10 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 863: 0,10 + 862: 0,10 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 864: 1,10 + 863: 1,10 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 865: 2,10 + 864: 2,10 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 866: 3,10 + 865: 3,10 - node: color: '#FFFFFFFF' id: StandClear decals: - 407: -40,-1 - 512: -6,31 - 1890: -23,-20 - 1944: -22,26 + 406: -40,-1 + 511: -6,31 + 1889: -23,-20 + 1943: -22,26 - node: color: '#D381C996' id: StandClearGreyscale decals: - 1358: -53,1 - 2091: -49,1 + 1357: -53,1 + 2090: -49,1 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale @@ -4943,12 +4943,12 @@ entities: 261: 29,-20 266: 29,-17 279: 38,-20 - 3004: 32,-17 + 3003: 32,-17 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale decals: - 3121: 43,9 + 3101: 43,9 - node: color: '#D0BF4AA7' id: ThreeQuarterTileOverlayGreyscale @@ -4958,8 +4958,8 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale decals: - 370: -43,14 - 2137: -43,-10 + 369: -43,14 + 2136: -43,-10 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale @@ -4969,8 +4969,8 @@ entities: color: '#EFCC4196' id: ThreeQuarterTileOverlayGreyscale decals: - 2348: -5,21 - 2358: 3,15 + 2347: -5,21 + 2357: 3,15 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 @@ -4978,17 +4978,17 @@ entities: 263: 30,-21 268: 30,-18 281: 40,-21 - 3008: 35,-21 + 3007: 35,-21 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2992: 45,-35 + 2991: 45,-35 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 decals: - 652: 46,5 + 651: 46,5 - node: color: '#D0BF4AA7' id: ThreeQuarterTileOverlayGreyscale180 @@ -4998,8 +4998,8 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2118: -37,11 - 2136: -41,-11 + 2117: -37,11 + 2135: -41,-11 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 @@ -5009,8 +5009,8 @@ entities: color: '#EFCC4196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2349: 6,17 - 2359: 7,12 + 2348: 6,17 + 2358: 7,12 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 @@ -5018,18 +5018,18 @@ entities: 264: 29,-21 265: 29,-18 278: 38,-21 - 3007: 32,-21 - 3045: 48,-18 + 3006: 32,-21 + 3044: 48,-18 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2991: 43,-35 + 2990: 43,-35 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale270 decals: - 646: 43,5 + 645: 43,5 - node: color: '#D0BF4AA7' id: ThreeQuarterTileOverlayGreyscale270 @@ -5039,9 +5039,9 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 368: -39,11 - 369: -43,13 - 2141: -43,-11 + 367: -39,11 + 368: -43,13 + 2140: -43,-11 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 @@ -5051,14 +5051,14 @@ entities: color: '#EFCC4196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2351: -5,17 - 2355: 6,12 - 2356: 3,13 + 2350: -5,17 + 2354: 6,12 + 2355: 3,13 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 decals: - 601: 4,1 + 600: 4,1 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 @@ -5066,12 +5066,12 @@ entities: 262: 30,-20 267: 30,-17 280: 40,-20 - 3053: 49,-17 + 3052: 49,-17 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3122: 46,9 + 3102: 46,9 - node: color: '#D0BF4AA7' id: ThreeQuarterTileOverlayGreyscale90 @@ -5081,8 +5081,8 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2117: -37,14 - 2140: -41,-10 + 2116: -37,14 + 2139: -41,-10 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 @@ -5092,45 +5092,45 @@ entities: color: '#EFCC4196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2350: 6,21 - 2357: 7,15 + 2349: 6,21 + 2356: 7,15 - node: cleanable: True color: '#B02E26FF' id: Tunnel decals: - 2585: 32.016933,17.019823 + 2584: 32.016933,17.019823 - node: color: '#FFFFFFFF' id: VentSmall decals: - 903: -3,-9 + 902: -3,-9 - node: cleanable: True color: '#835432FF' id: Waffle decals: - 2877: -15.97007,-46.029713 + 2876: -15.97007,-46.029713 - node: color: '#FFFFFFFF' id: WarnBox decals: - 2189: -25,2 - 3434: 12,-55 - 3435: -25,-36 - 3436: 23,-47 - 3437: 20,28 - 3438: 5,-71 - 3439: -5,-71 - 3440: -5,-64 - 3441: 5,-64 - 3442: 39,-47 + 2188: -25,2 + 3413: 12,-55 + 3414: -25,-36 + 3415: 23,-47 + 3416: 20,28 + 3417: 5,-71 + 3418: -5,-71 + 3419: -5,-64 + 3420: 5,-64 + 3421: 39,-47 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarnCorner decals: - 524: -16,50 + 523: -16,50 - node: color: '#FFFFFFFF' id: WarnCorner @@ -5152,7 +5152,7 @@ entities: color: '#FFFFFFFF' id: WarnCornerFlipped decals: - 529: -18,50 + 528: -18,50 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -5163,454 +5163,454 @@ entities: color: '#DE3A3A96' id: WarnCornerGreyscaleNE decals: - 1835: -22,-3 + 1834: -22,-3 - node: color: '#D381C996' id: WarnCornerGreyscaleNW decals: - 1393: -58,-1 + 1392: -58,-1 - node: color: '#DE3A3A96' id: WarnCornerGreyscaleNW decals: - 1843: -31,-3 + 1842: -31,-3 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 829: -30,34 - 974: -12,2 - 1499: -2,31 + 828: -30,34 + 973: -12,2 + 1498: -2,31 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 954: -8,2 - 1498: 2,31 - 2290: 2,24 + 953: -8,2 + 1497: 2,31 + 2289: 2,24 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1165: -2,-78 - 1497: -2,36 + 1164: -2,-78 + 1496: -2,36 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 838: -30,36 - 1164: 2,-78 - 1496: 2,36 - 2730: 40,-35 + 837: -30,36 + 1163: 2,-78 + 1495: 2,36 + 2729: 40,-35 - node: color: '#52B4E996' id: WarnFullGreyscale decals: - 3492: 46,-14 + 3471: 46,-14 - node: color: '#D381C996' id: WarnFullGreyscale decals: - 2162: -58,0 + 2161: -58,0 - node: color: '#FFFFFFFF' id: WarnFullGreyscale decals: - 3266: 23,6 - 3511: 5,16 - 3513: 18,18 - 3531: -14,28 - 3532: -24,30 - 3533: -24,31 - 3534: -22,27 - 3535: -32,30 - 3536: -32,31 - 3537: -22,33 - 3538: -12,33 + 3245: 23,6 + 3490: 5,16 + 3492: 18,18 + 3510: -14,28 + 3511: -24,30 + 3512: -24,31 + 3513: -22,27 + 3514: -32,30 + 3515: -32,31 + 3516: -22,33 + 3517: -12,33 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 828: -30,36 - 834: -30,35 - 854: -100,20 - 855: -100,21 - 975: -12,3 - 976: -12,4 - 977: -12,5 - 1022: -54,16 - 1489: -2,32 - 1490: -2,33 - 1491: -2,34 - 1492: -2,35 - 1905: -15,-18 - 1909: -37,-18 - 1913: -37,5 - 1918: -15,6 - 1919: -15,10 - 1920: -15,22 - 1924: 17,6 - 1925: 17,10 - 1926: 41,12 - 1934: 17,22 - 1935: 17,26 - 1936: 17,-9 - 1948: -21,26 - 2013: -15,-3 - 2054: -54,6 - 2057: -52,1 - 2058: -48,1 - 2288: -2,25 - 2445: -3,26 - 2446: -3,22 - 2696: -54,17 - 3054: 45,-16 - 3286: 3,34 - 3287: 3,35 - 3288: 3,36 - 3412: 56,15 - 3413: 56,14 - 3414: 56,13 - 3415: 56,12 - 3416: 56,11 + 827: -30,36 + 833: -30,35 + 853: -100,20 + 854: -100,21 + 974: -12,3 + 975: -12,4 + 976: -12,5 + 1021: -54,16 + 1488: -2,32 + 1489: -2,33 + 1490: -2,34 + 1491: -2,35 + 1904: -15,-18 + 1908: -37,-18 + 1912: -37,5 + 1917: -15,6 + 1918: -15,10 + 1919: -15,22 + 1923: 17,6 + 1924: 17,10 + 1925: 41,12 + 1933: 17,22 + 1934: 17,26 + 1935: 17,-9 + 1947: -21,26 + 2012: -15,-3 + 2053: -54,6 + 2056: -52,1 + 2057: -48,1 + 2287: -2,25 + 2444: -3,26 + 2445: -3,22 + 2695: -54,17 + 3053: 45,-16 + 3265: 3,34 + 3266: 3,35 + 3267: 3,36 + 3391: 56,15 + 3392: 56,14 + 3393: 56,13 + 3394: 56,12 + 3395: 56,11 - node: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 3044: 45,-22 + 3043: 45,-22 - node: color: '#9FED5896' id: WarnLineGreyscaleE decals: - 2979: 45,-33 + 2978: 45,-33 - node: color: '#B02E26FF' id: WarnLineGreyscaleE decals: - 2895: -4,-47 + 2894: -4,-47 - node: color: '#D381C996' id: WarnLineGreyscaleE decals: - 2092: -48,-6 - 2094: -45,-1 - 2112: -42,-6 + 2091: -48,-6 + 2093: -45,-1 + 2111: -42,-6 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE decals: - 1834: -22,-4 - 1876: -33,-20 - 1877: -33,-17 - 2900: -8,-47 + 1833: -22,-4 + 1875: -33,-20 + 1876: -33,-17 + 2899: -8,-47 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 1887: -23,-21 - 1888: -23,-20 - 1889: -23,-19 - 1900: -18,-21 - 1901: -18,-20 - 1902: -18,-19 - 1963: -15,28 - 1968: -25,30 - 1969: -25,31 - 2441: 6,19 - 2522: 3,-6 - 3512: 17,18 + 1886: -23,-21 + 1887: -23,-20 + 1888: -23,-19 + 1899: -18,-21 + 1900: -18,-20 + 1901: -18,-19 + 1962: -15,28 + 1967: -25,30 + 1968: -25,31 + 2440: 6,19 + 2521: 3,-6 + 3491: 17,18 - node: color: '#D381C996' id: WarnLineGreyscaleN decals: - 1249: -54,4 - 1250: -55,4 - 1251: -51,5 - 1344: -46,14 - 1357: -56,4 - 1377: -56,-1 - 1378: -54,-1 - 1379: -53,-1 - 1380: -52,-1 - 2158: -41,12 - 2159: -42,12 + 1248: -54,4 + 1249: -55,4 + 1250: -51,5 + 1343: -46,14 + 1356: -56,4 + 1376: -56,-1 + 1377: -54,-1 + 1378: -53,-1 + 1379: -52,-1 + 2157: -41,12 + 2158: -42,12 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 1845: -27,-3 - 1873: -26,-19 - 1874: -28,-19 + 1844: -27,-3 + 1872: -26,-19 + 1873: -28,-19 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 1965: -22,32 - 2139: -42,-10 - 2313: -12,32 - 2442: 5,15 - 3267: 23,5 + 1964: -22,32 + 2138: -42,-10 + 2312: -12,32 + 2441: 5,15 + 3246: 23,5 - node: color: '#334E6DC8' id: WarnLineGreyscaleS decals: - 2514: 4,-1 - 2515: -4,-1 - 2516: 0,-1 + 2513: 4,-1 + 2514: -4,-1 + 2515: 0,-1 - node: color: '#9FED5896' id: WarnLineGreyscaleS decals: - 2993: 44,-35 + 2992: 44,-35 - node: color: '#D381C996' id: WarnLineGreyscaleS decals: - 1252: -51,11 - 1253: -45,11 - 1351: -52,2 - 1352: -53,2 - 1353: -54,2 - 1356: -56,2 - 2161: -58,1 + 1251: -51,11 + 1252: -45,11 + 1350: -52,2 + 1351: -53,2 + 1352: -54,2 + 1355: -56,2 + 2160: -58,1 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 1828: -27,-6 - 2026: -26,-17 - 2027: -28,-17 - 2184: -33,4 + 1827: -27,-6 + 2025: -26,-17 + 2026: -28,-17 + 2183: -33,4 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 1903: -19,-22 - 1904: -20,-22 - 1962: -18,27 - 1964: -22,28 - 2018: -21,-22 - 2311: -12,27 - 2440: 5,17 - 3265: 23,7 + 1902: -19,-22 + 1903: -20,-22 + 1961: -18,27 + 1963: -22,28 + 2017: -21,-22 + 2310: -12,27 + 2439: 5,17 + 3244: 23,7 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 3042: 43,-24 - 3043: 43,-21 - 3491: 47,-14 + 3041: 43,-24 + 3042: 43,-21 + 3470: 47,-14 - node: color: '#9FED5896' id: WarnLineGreyscaleW decals: - 2989: 43,-28 - 2990: 43,-32 + 2988: 43,-28 + 2989: 43,-32 - node: color: '#B02E26FF' id: WarnLineGreyscaleW decals: - 2894: -6,-47 + 2893: -6,-47 - node: color: '#D381C996' id: WarnLineGreyscaleW decals: - 2093: -46,-6 + 2092: -46,-6 - node: color: '#DE3A3A96' id: WarnLineGreyscaleW decals: - 1844: -31,-4 - 1875: -31,-20 - 2014: -21,-21 - 2015: -21,-19 - 2901: -9,-47 + 1843: -31,-4 + 1874: -31,-20 + 2013: -21,-21 + 2014: -21,-19 + 2900: -9,-47 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 1884: -23,-21 - 1885: -23,-20 - 1886: -23,-19 - 1966: -23,30 - 1967: -23,31 - 1970: -31,30 - 1971: -31,31 - 2312: -13,28 - 2521: 5,-6 - 2698: 19,18 + 1883: -23,-21 + 1884: -23,-20 + 1885: -23,-19 + 1965: -23,30 + 1966: -23,31 + 1969: -31,30 + 1970: -31,31 + 2311: -13,28 + 2520: 5,-6 + 2697: 19,18 - node: color: '#DE3A3A96' id: WarnLineN decals: - 1808: -9,-19 + 1807: -9,-19 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 815: -25,-1 - 816: -26,-1 - 817: -27,-1 - 818: -28,-1 - 819: -29,-1 - 837: -31,36 - 849: -117,18 - 850: -118,18 - 851: -119,18 - 852: -120,18 - 853: -121,18 - 1161: 0,-78 - 1162: 1,-78 - 1163: -1,-78 - 1493: -1,36 - 1494: 0,36 - 1495: 1,36 - 1907: -27,-25 - 1910: -40,-2 - 1914: -36,7 - 1929: 35,7 - 1930: 38,23 - 1940: 2,-25 - 1941: -2,-25 - 1942: 18,-25 - 2729: 39,-35 - 3056: 42,-18 - 3057: 36,-18 - 3227: -41,23 - 3424: 43,2 + 814: -25,-1 + 815: -26,-1 + 816: -27,-1 + 817: -28,-1 + 818: -29,-1 + 836: -31,36 + 848: -117,18 + 849: -118,18 + 850: -119,18 + 851: -120,18 + 852: -121,18 + 1160: 0,-78 + 1161: 1,-78 + 1162: -1,-78 + 1492: -1,36 + 1493: 0,36 + 1494: 1,36 + 1906: -27,-25 + 1909: -40,-2 + 1913: -36,7 + 1928: 35,7 + 1929: 38,23 + 1939: 2,-25 + 1940: -2,-25 + 1941: 18,-25 + 2728: 39,-35 + 3055: 42,-18 + 3056: 36,-18 + 3206: -41,23 + 3403: 43,2 - node: color: '#DE3A3A96' id: WarnLineS decals: - 1816: -9,-16 + 1815: -9,-16 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 830: -24,34 - 831: -24,35 - 832: -24,36 - 835: -30,34 - 836: -30,35 - 955: -8,3 - 956: -8,4 - 957: -8,5 - 1166: -20,-56 - 1167: -20,-55 - 1168: -20,-54 - 1485: 2,32 - 1486: 2,33 - 1487: 2,34 - 1488: 2,35 - 1906: -17,-18 - 1908: -39,-18 - 1912: -39,5 - 1916: -17,6 - 1917: -17,10 - 1921: -17,22 - 1922: 15,10 - 1923: 15,6 - 1927: 39,12 - 1932: 15,22 - 1933: 15,26 - 1937: 15,-9 - 1947: -23,26 - 2012: -17,-3 - 2055: -56,6 - 2056: -54,1 - 2059: -50,1 - 2289: 2,25 - 2443: -4,22 - 2444: -5,26 - 2518: 3,-8 - 2519: 3,-7 - 2520: 3,-6 - 3055: 43,-16 + 829: -24,34 + 830: -24,35 + 831: -24,36 + 834: -30,34 + 835: -30,35 + 954: -8,3 + 955: -8,4 + 956: -8,5 + 1165: -20,-56 + 1166: -20,-55 + 1167: -20,-54 + 1484: 2,32 + 1485: 2,33 + 1486: 2,34 + 1487: 2,35 + 1905: -17,-18 + 1907: -39,-18 + 1911: -39,5 + 1915: -17,6 + 1916: -17,10 + 1920: -17,22 + 1921: 15,10 + 1922: 15,6 + 1926: 39,12 + 1931: 15,22 + 1932: 15,26 + 1936: 15,-9 + 1946: -23,26 + 2011: -17,-3 + 2054: -56,6 + 2055: -54,1 + 2058: -50,1 + 2288: 2,25 + 2442: -4,22 + 2443: -5,26 + 2517: 3,-8 + 2518: 3,-7 + 2519: 3,-6 + 3054: 43,-16 - node: color: '#DE3A3A96' id: WarnLineW decals: - 1810: -7,-18 + 1809: -7,-18 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 812: -9,2 - 813: -10,2 - 814: -11,2 - 823: -25,34 - 824: -26,34 - 825: -27,34 - 826: -28,34 - 827: -29,34 - 844: -117,15 - 845: -118,15 - 846: -119,15 - 847: -120,15 - 848: -121,15 - 856: -62,40 - 857: -63,40 - 858: -64,40 - 1482: -1,31 - 1483: 0,31 - 1484: 1,31 - 1678: -58,2 - 1679: -59,2 - 1680: -60,2 - 1911: -40,0 - 1915: -36,9 - 1928: 35,9 - 1931: 38,25 - 1938: 2,-23 - 1939: -2,-23 - 1943: 18,-23 - 2053: -42,-2 - 2238: -27,-23 - 2285: 0,24 - 2286: 1,24 - 2287: -1,24 - 2920: 4,-39 - 2927: 5,-39 - 2928: 3,-39 - 3058: 42,-17 - 3059: 36,-17 - 3228: -41,25 - 3283: 0,29 - 3284: 1,29 - 3285: -1,29 - 3425: 43,3 + 811: -9,2 + 812: -10,2 + 813: -11,2 + 822: -25,34 + 823: -26,34 + 824: -27,34 + 825: -28,34 + 826: -29,34 + 843: -117,15 + 844: -118,15 + 845: -119,15 + 846: -120,15 + 847: -121,15 + 855: -62,40 + 856: -63,40 + 857: -64,40 + 1481: -1,31 + 1482: 0,31 + 1483: 1,31 + 1677: -58,2 + 1678: -59,2 + 1679: -60,2 + 1910: -40,0 + 1914: -36,9 + 1927: 35,9 + 1930: 38,25 + 1937: 2,-23 + 1938: -2,-23 + 1942: 18,-23 + 2052: -42,-2 + 2237: -27,-23 + 2284: 0,24 + 2285: 1,24 + 2286: -1,24 + 2919: 4,-39 + 2926: 5,-39 + 2927: 3,-39 + 3057: 42,-17 + 3058: 36,-17 + 3207: -41,25 + 3262: 0,29 + 3263: 1,29 + 3264: -1,29 + 3404: 43,3 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarningLine decals: 366: -43,-2 - 540: -11,36 - 541: -12,36 - 542: -13,36 - 543: -14,36 - 544: -15,36 - 545: -16,36 - 546: -17,36 - 547: -18,36 - 548: -19,36 - 549: -20,36 - 550: -21,36 - 551: -22,36 - 552: -23,36 + 539: -11,36 + 540: -12,36 + 541: -13,36 + 542: -14,36 + 543: -15,36 + 544: -16,36 + 545: -17,36 + 546: -18,36 + 547: -19,36 + 548: -20,36 + 549: -21,36 + 550: -22,36 + 551: -23,36 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLine decals: - 522: -16,48 - 523: -16,49 - 525: -15,51 - 536: -20,48 - 537: -20,49 - 538: -20,50 - 539: -20,51 - 732: -72,20 + 521: -16,48 + 522: -16,49 + 524: -15,51 + 535: -20,48 + 536: -20,49 + 537: -20,50 + 538: -20,51 + 731: -72,20 - node: color: '#FFFFFFFF' id: WarningLine @@ -5620,347 +5620,347 @@ entities: 361: -34,11 364: -43,0 365: -42,0 - 507: -6,31 - 508: -7,31 - 680: 24,15 - 681: 23,15 - 682: 22,15 + 506: -6,31 + 507: -7,31 + 679: 24,15 + 680: 23,15 + 681: 22,15 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLine decals: - 527: -18,48 - 528: -18,49 - 530: -19,51 - 532: -14,48 - 533: -14,49 - 534: -14,50 - 535: -14,51 - 668: 51,0 - 669: 51,1 - 670: 51,2 - 671: 51,3 - 672: 51,-1 - 673: 51,-2 - 795: -15,3 + 526: -18,48 + 527: -18,49 + 529: -19,51 + 531: -14,48 + 532: -14,49 + 533: -14,50 + 534: -14,51 + 667: 51,0 + 668: 51,1 + 669: 51,2 + 670: 51,3 + 671: 51,-1 + 672: 51,-2 + 794: -15,3 - node: color: '#FFFFFFFF' id: WarningLineCorner decals: 363: -35,11 - 509: -8,31 + 508: -8,31 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCorner decals: - 531: -19,50 - 674: 56,10 - 798: -15,2 + 530: -19,50 + 673: 56,10 + 797: -15,2 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 526: -15,50 - 733: -72,19 + 525: -15,50 + 732: -72,19 - node: color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: 362: -31,11 - 510: -5,31 + 509: -5,31 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 796: -15,4 + 795: -15,4 - node: color: '#FFFFFFFF' id: WoodTrimThinBox decals: - 1452: 12,-30 + 1451: 12,-30 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 1323: -7,14 + 1322: -7,14 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 1313: -12,19 - 1410: 10,-27 + 1312: -12,19 + 1409: 10,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 940: -23,-27 - 1318: -7,19 + 939: -23,-27 + 1317: -7,19 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 890: -29,11 - 891: -29,12 - 892: -29,13 - 893: -29,14 - 894: -29,15 - 895: -29,16 - 896: -29,17 - 897: -29,18 - 898: -29,19 - 899: -29,20 - 900: -29,21 - 904: -6,-5 - 918: 11,19 - 921: -42,8 - 932: -24,-31 - 933: -24,-30 - 934: -24,-29 - 935: -24,-28 - 1309: -12,15 - 1310: -12,16 - 1311: -12,17 - 1312: -12,18 - 1408: 10,-29 - 1409: 10,-28 - 2198: -24,-27 - 2223: -46,-16 - 2502: 24,-21 - 2503: 24,-20 - 2504: 24,-19 - 2505: 24,-18 - 2506: 24,-17 - 2507: 24,-16 + 889: -29,11 + 890: -29,12 + 891: -29,13 + 892: -29,14 + 893: -29,15 + 894: -29,16 + 895: -29,17 + 896: -29,18 + 897: -29,19 + 898: -29,20 + 899: -29,21 + 903: -6,-5 + 917: 11,19 + 920: -42,8 + 931: -24,-31 + 932: -24,-30 + 933: -24,-29 + 934: -24,-28 + 1308: -12,15 + 1309: -12,16 + 1310: -12,17 + 1311: -12,18 + 1407: 10,-29 + 1408: 10,-28 + 2197: -24,-27 + 2222: -46,-16 + 2501: 24,-21 + 2502: 24,-20 + 2503: 24,-19 + 2504: 24,-18 + 2505: 24,-17 + 2506: 24,-16 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 901: -3,-9 - 920: -44,6 - 936: -24,-28 - 937: -25,-28 - 938: -26,-28 - 939: -27,-28 - 1302: -7,19 - 1303: -8,19 - 1304: -9,19 - 1305: -10,19 - 1306: -11,19 - 1307: -12,19 - 1308: -13,19 - 1324: -8,14 - 1325: -9,14 - 1326: -10,14 - 1327: -11,14 - 1411: 17,-38 - 1412: 16,-38 - 1413: 18,-38 - 1414: 19,-38 - 1415: 20,-38 - 1416: 21,-38 - 2194: -20,-1 - 2195: -21,-1 - 2196: -22,-1 - 2197: -23,-1 - 2199: -23,-28 - 2229: -41,9 - 2230: -44,9 - 2231: -43,9 - 3118: 43,12 - 3119: 44,12 - 3120: 45,12 - 3460: 11,-38 - 3461: 10,-38 - 3462: 9,-38 - 3463: -25,10 - 3464: -26,10 - 3465: -27,10 + 900: -3,-9 + 919: -44,6 + 935: -24,-28 + 936: -25,-28 + 937: -26,-28 + 938: -27,-28 + 1301: -7,19 + 1302: -8,19 + 1303: -9,19 + 1304: -10,19 + 1305: -11,19 + 1306: -12,19 + 1307: -13,19 + 1323: -8,14 + 1324: -9,14 + 1325: -10,14 + 1326: -11,14 + 1410: 17,-38 + 1411: 16,-38 + 1412: 18,-38 + 1413: 19,-38 + 1414: 20,-38 + 1415: 21,-38 + 2193: -20,-1 + 2194: -21,-1 + 2195: -22,-1 + 2196: -23,-1 + 2198: -23,-28 + 2228: -41,9 + 2229: -44,9 + 2230: -43,9 + 3098: 43,12 + 3099: 44,12 + 3100: 45,12 + 3439: 11,-38 + 3440: 10,-38 + 3441: 9,-38 + 3442: -25,10 + 3443: -26,10 + 3444: -27,10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 906: -3,-3 - 907: -4,-3 - 908: -5,-3 - 909: -7,-3 - 910: -8,-3 - 1314: -11,19 - 1315: -10,19 - 1316: -9,19 - 1317: -8,19 - 1397: 21,-27 - 1398: 20,-27 - 1399: 19,-27 - 1400: 18,-27 - 1401: 17,-27 - 1402: 16,-27 - 1403: 14,-27 - 1404: 15,-27 - 1405: 13,-27 - 1406: 12,-27 - 1407: 11,-27 - 2190: -20,2 - 2191: -21,2 - 2192: -22,2 - 2193: -23,2 - 2221: -47,-16 - 2222: -46,-16 - 2228: -41,7 - 3466: -25,22 - 3467: -26,22 - 3468: -27,22 + 905: -3,-3 + 906: -4,-3 + 907: -5,-3 + 908: -7,-3 + 909: -8,-3 + 1313: -11,19 + 1314: -10,19 + 1315: -9,19 + 1316: -8,19 + 1396: 21,-27 + 1397: 20,-27 + 1398: 19,-27 + 1399: 18,-27 + 1400: 17,-27 + 1401: 16,-27 + 1402: 14,-27 + 1403: 15,-27 + 1404: 13,-27 + 1405: 12,-27 + 1406: 11,-27 + 2189: -20,2 + 2190: -21,2 + 2191: -22,2 + 2192: -23,2 + 2220: -47,-16 + 2221: -46,-16 + 2227: -41,7 + 3445: -25,22 + 3446: -26,22 + 3447: -27,22 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 879: -23,11 - 880: -23,12 - 881: -23,13 - 882: -23,14 - 883: -23,15 - 884: -23,16 - 885: -23,17 - 886: -23,18 - 887: -23,19 - 888: -23,20 - 889: -23,21 - 905: -6,-5 - 922: -42,8 - 1319: -7,18 - 1320: -7,17 - 1321: -7,16 - 1322: -7,15 + 878: -23,11 + 879: -23,12 + 880: -23,13 + 881: -23,14 + 882: -23,15 + 883: -23,16 + 884: -23,17 + 885: -23,18 + 886: -23,19 + 887: -23,20 + 888: -23,21 + 904: -6,-5 + 921: -42,8 + 1318: -7,18 + 1319: -7,17 + 1320: -7,16 + 1321: -7,15 - node: cleanable: True color: '#474F52FF' id: amyjon decals: - 2879: -59.733913,26.110247 + 2878: -59.733913,26.110247 - node: cleanable: True color: '#FFFFFFFF' id: b decals: - 2946: -64,51 + 2945: -64,51 - node: cleanable: True color: '#B02E26FF' id: beepsky decals: - 2690: -51.97618,-34.20235 + 2689: -51.97618,-34.20235 - node: cleanable: True color: '#FFFFFFFF' id: body decals: - 2691: -45.397133,-31.934364 + 2690: -45.397133,-31.934364 - node: cleanable: True color: '#1D1D21FF' id: clawprint decals: - 2655: 51.849873,-10.273688 - 2656: 52.068623,-9.992438 - 2657: 51.849873,-9.726813 - 2658: 52.084248,-9.383063 - 2659: 51.849873,-9.070563 + 2654: 51.849873,-10.273688 + 2655: 52.068623,-9.992438 + 2656: 51.849873,-9.726813 + 2657: 52.084248,-9.383063 + 2658: 51.849873,-9.070563 - node: color: '#DE3A3A96' id: clown decals: - 1809: -9,-13 + 1808: -9,-13 - node: cleanable: True color: '#F38BAAFF' id: clown decals: - 2881: 29.974606,-11.088503 + 2880: 29.974606,-11.088503 - node: cleanable: True color: '#79150096' id: electricdanger decals: - 2803: -10.991777,-32.08159 + 2802: -10.991777,-32.08159 - node: cleanable: True color: '#79150096' id: end decals: - 1827: -60,-9 + 1826: -60,-9 - node: cleanable: True color: '#B02E26FF' id: end decals: - 2584: 32.02958,-5.0098457 + 2583: 32.02958,-5.0098457 - node: cleanable: True color: '#A4610696' id: engie decals: - 1826: 32,-54 + 1825: 32,-54 - node: cleanable: True color: '#F38BAAFF' id: evac decals: - 2654: 36.93115,20.930944 + 2653: 36.93115,20.930944 - node: cleanable: True color: '#F9801DFF' id: food decals: - 2578: 25.008858,-39.996895 + 2577: 25.008858,-39.996895 - node: color: '#D4D4D428' id: footprint decals: - 3443: 39.8631,-46.230442 - 3444: 40.128723,-45.902317 - 3445: 39.8631,-45.636692 - 3446: 40.159973,-45.371067 - 3447: 39.909973,-44.996067 - 3448: 40.191223,-44.621067 + 3422: 39.8631,-46.230442 + 3423: 40.128723,-45.902317 + 3424: 39.8631,-45.636692 + 3425: 40.159973,-45.371067 + 3426: 39.909973,-44.996067 + 3427: 40.191223,-44.621067 - node: cleanable: True color: '#FFFFFFFF' id: guy decals: - 2880: -67.988,9.536162 - 3132: 35,-29 + 2879: -67.988,9.536162 + 3111: 35,-29 - node: cleanable: True color: '#DE3A3AFF' id: largebrush decals: - 2945: -64,51 + 2944: -64,51 - node: color: '#D4D4D428' id: matt decals: - 1817: -30,-36 + 1816: -30,-36 - node: cleanable: True color: '#FED83DFF' id: shop decals: - 2878: -66.02228,7.9843655 + 2877: -66.02228,7.9843655 - node: cleanable: True color: '#DE3A3A18' id: splatter decals: - 718: 19,-8 + 717: 19,-8 - node: cleanable: True color: '#B02E26FF' id: stickman decals: - 2884: 9.979055,-45.00161 + 2883: 9.979055,-45.00161 type: DecalGrid - version: 2 data: @@ -14575,207 +14575,138 @@ entities: - pos: -18.5,-43.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7746 - type: SignalReceiver + - links: + - 7746 + type: DeviceLinkSink - uid: 7729 components: - pos: -16.5,-43.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3803 - type: SignalReceiver + - links: + - 3803 + type: DeviceLinkSink - uid: 11697 components: - pos: 55.5,-0.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19108 - type: SignalReceiver + - links: + - 19108 + type: DeviceLinkSink - uid: 11830 components: - pos: 55.5,3.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19107 - type: SignalReceiver + - links: + - 19107 + type: DeviceLinkSink - uid: 12598 components: - pos: -55.5,0.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12596 - type: SignalReceiver + - links: + - 12596 + type: DeviceLinkSink - uid: 13175 components: - pos: 59.5,15.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17876 - type: SignalReceiver + - links: + - 17876 + type: DeviceLinkSink - uid: 13176 components: - pos: 57.5,15.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18802 - type: SignalReceiver + - links: + - 18802 + type: DeviceLinkSink - uid: 13177 components: - pos: 57.5,11.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18802 - type: SignalReceiver + - links: + - 18802 + type: DeviceLinkSink - uid: 13178 components: - pos: 59.5,11.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17876 - type: SignalReceiver + - links: + - 17876 + type: DeviceLinkSink - uid: 13901 components: - pos: -50.5,18.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9597 - type: SignalReceiver + - links: + - 9597 + type: DeviceLinkSink - uid: 14910 components: - pos: -23.5,34.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15261 - type: SignalReceiver + - links: + - 15261 + type: DeviceLinkSink - uid: 14911 components: - pos: -23.5,35.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15261 - type: SignalReceiver + - links: + - 15261 + type: DeviceLinkSink - uid: 14912 components: - pos: -23.5,36.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15261 - type: SignalReceiver + - links: + - 15261 + type: DeviceLinkSink - uid: 15089 components: - pos: -31.5,47.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14914 - - port: Pressed - uid: 14913 - type: SignalReceiver + - links: + - 14913 + - 14914 + type: DeviceLinkSink - uid: 16541 components: - pos: -5.5,30.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 16543 - type: SignalReceiver + - links: + - 16543 + type: DeviceLinkSink - uid: 16542 components: - pos: -6.5,30.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 16543 - type: SignalReceiver + - links: + - 16543 + type: DeviceLinkSink - uid: 21026 components: - pos: -52.5,17.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9647 - type: SignalReceiver + - links: + - 9647 + type: DeviceLinkSink - proto: BlastDoorBridgeOpen entities: - uid: 21763 @@ -14826,91 +14757,63 @@ entities: pos: -115.5,10.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5346 - type: SignalReceiver + - links: + - 5346 + type: DeviceLinkSink - uid: 5345 components: - rot: 3.141592653589793 rad pos: -107.5,11.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5346 - type: SignalReceiver + - links: + - 5346 + type: DeviceLinkSink - uid: 5352 components: - rot: 3.141592653589793 rad pos: -107.5,9.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5346 - type: SignalReceiver + - links: + - 5346 + type: DeviceLinkSink - uid: 5358 components: - rot: 3.141592653589793 rad pos: -111.5,7.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5346 - type: SignalReceiver + - links: + - 5346 + type: DeviceLinkSink - uid: 5359 components: - rot: 3.141592653589793 rad pos: -107.5,10.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5346 - type: SignalReceiver + - links: + - 5346 + type: DeviceLinkSink - uid: 5360 components: - rot: 3.141592653589793 rad pos: -115.5,11.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5346 - type: SignalReceiver + - links: + - 5346 + type: DeviceLinkSink - uid: 5361 components: - rot: 3.141592653589793 rad pos: -115.5,9.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5346 - type: SignalReceiver + - links: + - 5346 + type: DeviceLinkSink - proto: BlastDoorWindowsOpen entities: - uid: 21780 @@ -15519,91 +15422,31 @@ entities: - pos: -32.5,-5.5 parent: 60 type: Transform - - outputs: - Start: - - port: Close - uid: 230 - Timer: - - port: AutoClose - uid: 230 - - port: Open - uid: 230 - type: SignalTransmitter - uid: 1485 components: - pos: -32.5,-8.5 parent: 60 type: Transform - - outputs: - Start: - - port: Close - uid: 268 - Timer: - - port: AutoClose - uid: 268 - - port: Open - uid: 268 - type: SignalTransmitter - uid: 1486 components: - pos: -32.5,-11.5 parent: 60 type: Transform - - outputs: - Start: - - port: Close - uid: 243 - Timer: - - port: AutoClose - uid: 243 - - port: Open - uid: 243 - type: SignalTransmitter - uid: 1488 components: - pos: -20.5,-8.5 parent: 60 type: Transform - - outputs: - Start: - - port: Close - uid: 151 - Timer: - - port: AutoClose - uid: 151 - - port: Open - uid: 151 - type: SignalTransmitter - uid: 6971 components: - pos: -20.5,-5.5 parent: 60 type: Transform - - outputs: - Start: - - port: Close - uid: 843 - Timer: - - port: AutoClose - uid: 843 - - port: Open - uid: 843 - type: SignalTransmitter - uid: 6972 components: - pos: -20.5,-11.5 parent: 60 type: Transform - - outputs: - Start: - - port: Close - uid: 72 - Timer: - - port: AutoClose - uid: 72 - - port: Open - uid: 72 - type: SignalTransmitter - proto: BrokenBottle entities: - uid: 23662 @@ -64156,11 +63999,6 @@ entities: pos: -47.5,16.5 parent: 60 type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 9442 - type: SignalTransmitter - proto: computerBodyScanner entities: - uid: 627 @@ -64221,9 +64059,6 @@ entities: pos: 43.5,14.5 parent: 60 type: Transform - - outputs: - OrderSender: [] - type: SignalTransmitter - proto: ComputerCargoShuttle entities: - uid: 21024 @@ -64629,563 +64464,299 @@ entities: pos: -16.5,-43.5 parent: 60 type: Transform - - inputs: - Off: - - port: Middle - uid: 938 - Forward: - - port: Left - uid: 938 - Reverse: - - port: Right - uid: 938 - type: SignalReceiver + - links: + - 938 + type: DeviceLinkSink - uid: 3894 components: - rot: -1.5707963267948966 rad pos: -15.5,-43.5 parent: 60 type: Transform - - inputs: - Off: - - port: Middle - uid: 938 - Forward: - - port: Left - uid: 938 - Reverse: - - port: Right - uid: 938 - type: SignalReceiver + - links: + - 938 + type: DeviceLinkSink - uid: 3895 components: - rot: -1.5707963267948966 rad pos: -14.5,-43.5 parent: 60 type: Transform - - inputs: - Off: - - port: Middle - uid: 938 - Forward: - - port: Left - uid: 938 - Reverse: - - port: Right - uid: 938 - type: SignalReceiver + - links: + - 938 + type: DeviceLinkSink - uid: 3896 components: - rot: -1.5707963267948966 rad pos: -13.5,-43.5 parent: 60 type: Transform - - inputs: - Off: - - port: Middle - uid: 938 - Forward: - - port: Left - uid: 938 - Reverse: - - port: Right - uid: 938 - type: SignalReceiver + - links: + - 938 + type: DeviceLinkSink - uid: 5284 components: - rot: -1.5707963267948966 rad pos: 52.5,3.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 12607 - Forward: - - port: Left - uid: 12607 - Off: - - port: Middle - uid: 12607 - type: SignalReceiver + - links: + - 12607 + type: DeviceLinkSink - uid: 5285 components: - rot: -1.5707963267948966 rad pos: 51.5,3.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 12607 - Forward: - - port: Left - uid: 12607 - Off: - - port: Middle - uid: 12607 - type: SignalReceiver + - links: + - 12607 + type: DeviceLinkSink - uid: 5489 components: - rot: -1.5707963267948966 rad pos: 51.5,-0.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 5805 - Forward: - - port: Left - uid: 5805 - Off: - - port: Middle - uid: 5805 - type: SignalReceiver + - links: + - 5805 + type: DeviceLinkSink - uid: 6730 components: - rot: -1.5707963267948966 rad pos: 55.5,-0.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 5805 - Forward: - - port: Left - uid: 5805 - Off: - - port: Middle - uid: 5805 - type: SignalReceiver + - links: + - 5805 + type: DeviceLinkSink - uid: 6978 components: - rot: -1.5707963267948966 rad pos: 54.5,-0.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 5805 - Forward: - - port: Left - uid: 5805 - Off: - - port: Middle - uid: 5805 - type: SignalReceiver + - links: + - 5805 + type: DeviceLinkSink - uid: 7723 components: - rot: -1.5707963267948966 rad pos: -17.5,-43.5 parent: 60 type: Transform - - inputs: - Off: - - port: Middle - uid: 938 - Forward: - - port: Left - uid: 938 - Reverse: - - port: Right - uid: 938 - type: SignalReceiver + - links: + - 938 + type: DeviceLinkSink - uid: 7724 components: - rot: -1.5707963267948966 rad pos: -18.5,-43.5 parent: 60 type: Transform - - inputs: - Off: - - port: Middle - uid: 938 - Forward: - - port: Left - uid: 938 - Reverse: - - port: Right - uid: 938 - type: SignalReceiver + - links: + - 938 + type: DeviceLinkSink - uid: 7725 components: - rot: -1.5707963267948966 rad pos: -19.5,-43.5 parent: 60 type: Transform - - inputs: - Off: - - port: Middle - uid: 938 - Forward: - - port: Left - uid: 938 - Reverse: - - port: Right - uid: 938 - type: SignalReceiver + - links: + - 938 + type: DeviceLinkSink - uid: 8360 components: - rot: -1.5707963267948966 rad pos: 52.5,-0.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 5805 - Forward: - - port: Left - uid: 5805 - Off: - - port: Middle - uid: 5805 - type: SignalReceiver + - links: + - 5805 + type: DeviceLinkSink - uid: 9238 components: - rot: -1.5707963267948966 rad pos: 55.5,3.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 12607 - Forward: - - port: Left - uid: 12607 - Off: - - port: Middle - uid: 12607 - type: SignalReceiver + - links: + - 12607 + type: DeviceLinkSink - uid: 11722 components: - rot: -1.5707963267948966 rad pos: 50.5,3.5 parent: 60 type: Transform + - links: + - 12607 + type: DeviceLinkSink - edge: 0 type: Construction - - inputs: - Reverse: - - port: Right - uid: 12607 - Forward: - - port: Left - uid: 12607 - Off: - - port: Middle - uid: 12607 - type: SignalReceiver - uid: 11757 components: - rot: -1.5707963267948966 rad pos: 53.5,3.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 12607 - Forward: - - port: Left - uid: 12607 - Off: - - port: Middle - uid: 12607 - type: SignalReceiver + - links: + - 12607 + type: DeviceLinkSink - uid: 11881 components: - rot: -1.5707963267948966 rad pos: 54.5,3.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 12607 - Forward: - - port: Left - uid: 12607 - Off: - - port: Middle - uid: 12607 - type: SignalReceiver + - links: + - 12607 + type: DeviceLinkSink - uid: 12283 components: - rot: -1.5707963267948966 rad pos: 53.5,-0.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 5805 - Forward: - - port: Left - uid: 5805 - Off: - - port: Middle - uid: 5805 - type: SignalReceiver + - links: + - 5805 + type: DeviceLinkSink - uid: 12703 components: - rot: -1.5707963267948966 rad pos: 50.5,-0.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 5805 - Forward: - - port: Left - uid: 5805 - Off: - - port: Middle - uid: 5805 - type: SignalReceiver + - links: + - 5805 + type: DeviceLinkSink - uid: 12705 components: - rot: -1.5707963267948966 rad pos: 56.5,-0.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 5805 - Forward: - - port: Left - uid: 5805 - Off: - - port: Middle - uid: 5805 - type: SignalReceiver + - links: + - 5805 + type: DeviceLinkSink - uid: 12889 components: - rot: -1.5707963267948966 rad pos: 56.5,3.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 12607 - Forward: - - port: Left - uid: 12607 - Off: - - port: Middle - uid: 12607 - type: SignalReceiver + - links: + - 12607 + type: DeviceLinkSink - uid: 13162 components: - rot: -1.5707963267948966 rad pos: 59.5,15.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13174 - Forward: - - port: Left - uid: 13174 - Off: - - port: Middle - uid: 13174 - type: SignalReceiver + - links: + - 13174 + type: DeviceLinkSink - uid: 13163 components: - rot: -1.5707963267948966 rad pos: 58.5,15.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13174 - Forward: - - port: Left - uid: 13174 - Off: - - port: Middle - uid: 13174 - type: SignalReceiver + - links: + - 13174 + type: DeviceLinkSink - uid: 13164 components: - rot: -1.5707963267948966 rad pos: 57.5,15.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13174 - Forward: - - port: Left - uid: 13174 - Off: - - port: Middle - uid: 13174 - type: SignalReceiver + - links: + - 13174 + type: DeviceLinkSink - uid: 13165 components: - rot: -1.5707963267948966 rad pos: 56.5,15.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13174 - Forward: - - port: Left - uid: 13174 - Off: - - port: Middle - uid: 13174 - type: SignalReceiver + - links: + - 13174 + type: DeviceLinkSink - uid: 13166 components: - rot: -1.5707963267948966 rad pos: 55.5,15.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13174 - Forward: - - port: Left - uid: 13174 - Off: - - port: Middle - uid: 13174 - type: SignalReceiver + - links: + - 13174 + type: DeviceLinkSink - uid: 13167 components: - rot: 1.5707963267948966 rad pos: 55.5,11.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13173 - Forward: - - port: Left - uid: 13173 - Off: - - port: Middle - uid: 13173 - type: SignalReceiver + - links: + - 13173 + type: DeviceLinkSink - uid: 13168 components: - rot: 1.5707963267948966 rad pos: 56.5,11.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13173 - Forward: - - port: Left - uid: 13173 - Off: - - port: Middle - uid: 13173 - type: SignalReceiver + - links: + - 13173 + type: DeviceLinkSink - uid: 13169 components: - rot: 1.5707963267948966 rad pos: 57.5,11.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13173 - Forward: - - port: Left - uid: 13173 - Off: - - port: Middle - uid: 13173 - type: SignalReceiver + - links: + - 13173 + type: DeviceLinkSink - uid: 13170 components: - rot: 1.5707963267948966 rad pos: 58.5,11.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13173 - Forward: - - port: Left - uid: 13173 - Off: - - port: Middle - uid: 13173 - type: SignalReceiver + - links: + - 13173 + type: DeviceLinkSink - uid: 13171 components: - rot: 1.5707963267948966 rad pos: 59.5,11.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13173 - Forward: - - port: Left - uid: 13173 - Off: - - port: Middle - uid: 13173 - type: SignalReceiver + - links: + - 13173 + type: DeviceLinkSink - uid: 13221 components: - rot: -1.5707963267948966 rad pos: 54.5,15.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13174 - Forward: - - port: Left - uid: 13174 - Off: - - port: Middle - uid: 13174 - type: SignalReceiver + - links: + - 13174 + type: DeviceLinkSink - uid: 13222 components: - rot: -1.5707963267948966 rad pos: 53.5,15.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13174 - Forward: - - port: Left - uid: 13174 - Off: - - port: Middle - uid: 13174 - type: SignalReceiver + - links: + - 13174 + type: DeviceLinkSink - proto: CowToolboxFilled entities: - uid: 7795 @@ -114544,11 +114115,6 @@ entities: - pos: -50.5,17.5 parent: 60 type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 466 - type: SignalReceiver - proto: MachineFrame entities: - uid: 945 @@ -123741,17 +123307,9 @@ entities: pos: -12.5,-43.5 parent: 60 type: Transform - - inputs: - Reverse: - - port: Right - uid: 24108 - Forward: - - port: Left - uid: 24108 - Off: - - port: Middle - uid: 24108 - type: SignalReceiver + - links: + - 24108 + type: DeviceLinkSink - proto: ReinforcedGirder entities: - uid: 11134 @@ -127924,15 +127482,6 @@ entities: - pos: -11.495448,-28.362686 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7697 - - port: Toggle - uid: 914 - - port: Toggle - uid: 920 - type: SignalTransmitter - uid: 4898 components: - name: Cell 5 Shutters @@ -127945,10 +127494,6 @@ entities: - Pressed: Toggle 6206: - Pressed: Toggle - registeredSinks: - Pressed: - - 6733 - - 6206 type: DeviceLinkSource - uid: 10621 components: @@ -127962,10 +127507,6 @@ entities: - Pressed: Toggle 6796: - Pressed: Toggle - registeredSinks: - Pressed: - - 7045 - - 6796 type: DeviceLinkSource - uid: 10622 components: @@ -127979,10 +127520,6 @@ entities: - Pressed: Toggle 148: - Pressed: Toggle - registeredSinks: - Pressed: - - 188 - - 148 type: DeviceLinkSource - uid: 11098 components: @@ -127996,10 +127533,6 @@ entities: - Pressed: Toggle 7032: - Pressed: Toggle - registeredSinks: - Pressed: - - 6467 - - 7032 type: DeviceLinkSource - uid: 11555 components: @@ -128013,10 +127546,6 @@ entities: - Pressed: Toggle 8002: - Pressed: Toggle - registeredSinks: - Pressed: - - 552 - - 8002 type: DeviceLinkSource - uid: 19870 components: @@ -128030,10 +127559,6 @@ entities: - Pressed: Toggle 6203: - Pressed: Toggle - registeredSinks: - Pressed: - - 6746 - - 6203 type: DeviceLinkSource - proto: ResearchAndDevelopmentServer entities: @@ -128507,37 +128032,17 @@ entities: - pos: -3.5,-25.5 parent: 60 type: Transform - - inputs: - Open: - - port: Right - uid: 1189 - - port: Left - uid: 1189 - Close: - - port: Middle - uid: 1189 - Toggle: - - port: Pressed - uid: 3017 - type: SignalReceiver + - links: + - 1189 + type: DeviceLinkSink - uid: 920 components: - pos: -2.5,-25.5 parent: 60 type: Transform - - inputs: - Open: - - port: Right - uid: 1189 - - port: Left - uid: 1189 - Close: - - port: Middle - uid: 1189 - Toggle: - - port: Pressed - uid: 3017 - type: SignalReceiver + - links: + - 1189 + type: DeviceLinkSink - uid: 2307 components: - pos: 30.5,-38.5 @@ -128551,67 +128056,33 @@ entities: - pos: -32.5,10.5 parent: 60 type: Transform - - inputs: - Open: - - port: Left - uid: 9480 - - port: Right - uid: 9480 - Close: - - port: Middle - uid: 9480 - Toggle: [] - type: SignalReceiver + - links: + - 9480 + type: DeviceLinkSink - uid: 5627 components: - pos: -33.5,10.5 parent: 60 type: Transform - - inputs: - Open: - - port: Left - uid: 9480 - - port: Right - uid: 9480 - Close: - - port: Middle - uid: 9480 - Toggle: [] - type: SignalReceiver + - links: + - 9480 + type: DeviceLinkSink - uid: 5628 components: - pos: -31.5,10.5 parent: 60 type: Transform - - inputs: - Open: - - port: Left - uid: 9480 - - port: Right - uid: 9480 - Close: - - port: Middle - uid: 9480 - Toggle: [] - type: SignalReceiver + - links: + - 9480 + type: DeviceLinkSink - uid: 7697 components: - pos: -4.5,-25.5 parent: 60 type: Transform - - inputs: - Open: - - port: Right - uid: 1189 - - port: Left - uid: 1189 - Close: - - port: Middle - uid: 1189 - Toggle: - - port: Pressed - uid: 3017 - type: SignalReceiver + - links: + - 1189 + type: DeviceLinkSink - uid: 11253 components: - pos: 29.5,-38.5 @@ -128668,175 +128139,119 @@ entities: pos: -18.5,1.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3741 - type: SignalReceiver + - links: + - 3741 + type: DeviceLinkSink - uid: 1352 components: - rot: 1.5707963267948966 rad pos: 15.5,-30.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2881 - type: SignalReceiver + - links: + - 2881 + type: DeviceLinkSink - uid: 1353 components: - rot: 1.5707963267948966 rad pos: 15.5,-31.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2881 - type: SignalReceiver + - links: + - 2881 + type: DeviceLinkSink - uid: 1354 components: - rot: 1.5707963267948966 rad pos: 15.5,-32.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2881 - type: SignalReceiver + - links: + - 2881 + type: DeviceLinkSink - uid: 1357 components: - pos: 14.5,-29.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2881 - type: SignalReceiver + - links: + - 2881 + type: DeviceLinkSink - uid: 2877 components: - rot: 1.5707963267948966 rad pos: 15.5,-35.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2881 - type: SignalReceiver + - links: + - 2881 + type: DeviceLinkSink - uid: 2892 components: - pos: 13.5,-29.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2881 - type: SignalReceiver + - links: + - 2881 + type: DeviceLinkSink - uid: 3093 components: - rot: 1.5707963267948966 rad pos: 15.5,-36.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2881 - type: SignalReceiver + - links: + - 2881 + type: DeviceLinkSink - uid: 3493 components: - rot: 1.5707963267948966 rad pos: 15.5,-33.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2881 - type: SignalReceiver + - links: + - 2881 + type: DeviceLinkSink - uid: 3737 components: - pos: -18.5,0.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3741 - type: SignalReceiver + - links: + - 3741 + type: DeviceLinkSink - uid: 4354 components: - pos: 36.5,-15.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4140 - type: SignalReceiver + - links: + - 4140 + type: DeviceLinkSink - uid: 4355 components: - pos: 35.5,-15.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4140 - type: SignalReceiver + - links: + - 4140 + type: DeviceLinkSink - uid: 4487 components: - pos: 32.5,-15.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4140 - type: SignalReceiver + - links: + - 4140 + type: DeviceLinkSink - uid: 4496 components: - pos: 34.5,-15.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4140 - type: SignalReceiver + - links: + - 4140 + type: DeviceLinkSink - uid: 5149 components: - pos: -11.5,-52.5 @@ -128847,39 +128262,27 @@ entities: - pos: -36.5,10.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9165 - type: SignalReceiver + - links: + - 9165 + type: DeviceLinkSink - uid: 5560 components: - rot: 1.5707963267948966 rad pos: -40.5,-6.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7088 - type: SignalReceiver + - links: + - 7088 + type: DeviceLinkSink - uid: 5597 components: - rot: 1.5707963267948966 rad pos: -39.5,-9.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7088 - type: SignalReceiver + - links: + - 7088 + type: DeviceLinkSink - uid: 6203 components: - pos: -35.5,-7.5 @@ -128914,53 +128317,35 @@ entities: type: Transform - links: - 11098 + - 9091 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9091 - type: SignalReceiver - uid: 6522 components: - rot: -1.5707963267948966 rad pos: 7.5,17.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13815 - type: SignalReceiver + - links: + - 13815 + type: DeviceLinkSink - uid: 6524 components: - rot: -1.5707963267948966 rad pos: 7.5,20.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13815 - type: SignalReceiver + - links: + - 13815 + type: DeviceLinkSink - uid: 6526 components: - rot: -1.5707963267948966 rad pos: 7.5,18.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13815 - type: SignalReceiver + - links: + - 13815 + type: DeviceLinkSink - uid: 6733 components: - pos: -35.5,-13.5 @@ -128994,52 +128379,36 @@ entities: pos: 22.5,-33.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2313 - type: SignalReceiver + - links: + - 2313 + type: DeviceLinkSink - uid: 6773 components: - rot: -1.5707963267948966 rad pos: 22.5,-30.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2313 - type: SignalReceiver + - links: + - 2313 + type: DeviceLinkSink - uid: 6774 components: - rot: -1.5707963267948966 rad pos: 22.5,-31.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2313 - type: SignalReceiver + - links: + - 2313 + type: DeviceLinkSink - uid: 6775 components: - rot: -1.5707963267948966 rad pos: 22.5,-34.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2313 - type: SignalReceiver + - links: + - 2313 + type: DeviceLinkSink - uid: 6796 components: - rot: 3.141592653589793 rad @@ -129060,13 +128429,9 @@ entities: pos: 15.5,-34.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2881 - type: SignalReceiver + - links: + - 2881 + type: DeviceLinkSink - uid: 7032 components: - rot: 3.141592653589793 rad @@ -129075,14 +128440,8 @@ entities: type: Transform - links: - 11098 + - 9091 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9091 - type: SignalReceiver - uid: 7045 components: - pos: -35.5,-10.5 @@ -129102,39 +128461,27 @@ entities: pos: -40.5,-3.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7088 - type: SignalReceiver + - links: + - 7088 + type: DeviceLinkSink - uid: 7131 components: - rot: 1.5707963267948966 rad pos: -40.5,-7.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7088 - type: SignalReceiver + - links: + - 7088 + type: DeviceLinkSink - uid: 7132 components: - rot: 1.5707963267948966 rad pos: -40.5,-4.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7088 - type: SignalReceiver + - links: + - 7088 + type: DeviceLinkSink - uid: 8002 components: - rot: 3.141592653589793 rad @@ -129155,13 +128502,9 @@ entities: pos: -39.5,-10.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7088 - type: SignalReceiver + - links: + - 7088 + type: DeviceLinkSink - uid: 8381 components: - pos: -13.5,-52.5 @@ -129177,172 +128520,116 @@ entities: - pos: -37.5,10.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9165 - type: SignalReceiver + - links: + - 9165 + type: DeviceLinkSink - uid: 18517 components: - rot: -1.5707963267948966 rad pos: -9.5,-5.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18438 - type: SignalReceiver + - links: + - 18438 + type: DeviceLinkSink - uid: 18518 components: - rot: -1.5707963267948966 rad pos: -9.5,-4.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18438 - type: SignalReceiver + - links: + - 18438 + type: DeviceLinkSink - uid: 18519 components: - rot: -1.5707963267948966 rad pos: -9.5,-3.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18438 - type: SignalReceiver + - links: + - 18438 + type: DeviceLinkSink - uid: 21340 components: - pos: 4.5,-26.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21339 - type: SignalReceiver + - links: + - 21339 + type: DeviceLinkSink - uid: 21341 components: - pos: 5.5,-26.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21339 - type: SignalReceiver + - links: + - 21339 + type: DeviceLinkSink - uid: 21342 components: - pos: 6.5,-26.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21339 - type: SignalReceiver + - links: + - 21339 + type: DeviceLinkSink - uid: 21343 components: - pos: 7.5,-26.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21339 - type: SignalReceiver + - links: + - 21339 + type: DeviceLinkSink - uid: 21753 components: - pos: 43.5,16.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21762 - type: SignalReceiver + - links: + - 21762 + type: DeviceLinkSink - uid: 21754 components: - pos: 44.5,16.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21762 - type: SignalReceiver + - links: + - 21762 + type: DeviceLinkSink - uid: 21755 components: - pos: 45.5,16.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21762 - type: SignalReceiver + - links: + - 21762 + type: DeviceLinkSink - uid: 21758 components: - pos: 45.5,11.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21762 - type: SignalReceiver + - links: + - 21762 + type: DeviceLinkSink - uid: 21759 components: - pos: 43.5,11.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21762 - type: SignalReceiver + - links: + - 21762 + type: DeviceLinkSink - uid: 21760 components: - pos: 44.5,11.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21762 - type: SignalReceiver + - links: + - 21762 + type: DeviceLinkSink - uid: 22463 components: - pos: -111.5,27.5 @@ -129360,73 +128647,49 @@ entities: - pos: -20.5,41.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15653 - type: SignalReceiver + - links: + - 15653 + type: DeviceLinkSink - uid: 15437 components: - pos: -20.5,42.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15653 - type: SignalReceiver + - links: + - 15653 + type: DeviceLinkSink - uid: 15438 components: - pos: -20.5,43.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15653 - type: SignalReceiver + - links: + - 15653 + type: DeviceLinkSink - uid: 15439 components: - pos: -12.5,41.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15654 - type: SignalReceiver + - links: + - 15654 + type: DeviceLinkSink - uid: 15440 components: - pos: -12.5,42.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15654 - type: SignalReceiver + - links: + - 15654 + type: DeviceLinkSink - uid: 15441 components: - pos: -12.5,43.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15654 - type: SignalReceiver + - links: + - 15654 + type: DeviceLinkSink - proto: ShuttersRadiationOpen entities: - uid: 13248 @@ -129434,282 +128697,190 @@ entities: - pos: -0.5,30.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21778 - type: SignalReceiver + - links: + - 21778 + type: DeviceLinkSink - uid: 13266 components: - pos: 1.5,30.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21778 - type: SignalReceiver + - links: + - 21778 + type: DeviceLinkSink - uid: 21682 components: - pos: -22.5,33.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver + - links: + - 21692 + type: DeviceLinkSink - uid: 21683 components: - pos: -20.5,33.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver + - links: + - 21692 + type: DeviceLinkSink - uid: 21684 components: - pos: -17.5,31.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver + - links: + - 21692 + type: DeviceLinkSink - uid: 21685 components: - pos: -16.5,31.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver + - links: + - 21692 + type: DeviceLinkSink - uid: 21686 components: - pos: -15.5,31.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver + - links: + - 21692 + type: DeviceLinkSink - uid: 21687 components: - pos: -12.5,33.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver + - links: + - 21692 + type: DeviceLinkSink - uid: 21688 components: - pos: -10.5,33.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver + - links: + - 21692 + type: DeviceLinkSink - uid: 21689 components: - rot: 1.5707963267948966 rad pos: -9.5,34.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver + - links: + - 21692 + type: DeviceLinkSink - uid: 21690 components: - rot: 1.5707963267948966 rad pos: -9.5,35.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver + - links: + - 21692 + type: DeviceLinkSink - uid: 21691 components: - rot: -1.5707963267948966 rad pos: -23.5,46.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver + - links: + - 21692 + type: DeviceLinkSink - uid: 21693 components: - rot: -1.5707963267948966 rad pos: -23.5,39.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver + - links: + - 21692 + type: DeviceLinkSink - uid: 21694 components: - rot: -1.5707963267948966 rad pos: -23.5,40.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver + - links: + - 21692 + type: DeviceLinkSink - uid: 21695 components: - rot: -1.5707963267948966 rad pos: -23.5,41.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver + - links: + - 21692 + type: DeviceLinkSink - uid: 21696 components: - rot: -1.5707963267948966 rad pos: -23.5,44.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver + - links: + - 21692 + type: DeviceLinkSink - uid: 21697 components: - rot: -1.5707963267948966 rad pos: -23.5,45.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver + - links: + - 21692 + type: DeviceLinkSink - uid: 21698 components: - rot: 1.5707963267948966 rad pos: -9.5,36.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver + - links: + - 21692 + type: DeviceLinkSink - uid: 21699 components: - pos: -22.5,47.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21704 - - port: Pressed - uid: 21703 - type: SignalReceiver + - links: + - 21703 + - 21704 + type: DeviceLinkSink - uid: 21700 components: - pos: -20.5,47.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21704 - - port: Pressed - uid: 21703 - type: SignalReceiver + - links: + - 21703 + - 21704 + type: DeviceLinkSink - uid: 21701 components: - pos: -12.5,47.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21704 - - port: Pressed - uid: 21703 - type: SignalReceiver + - links: + - 21703 + - 21704 + type: DeviceLinkSink - uid: 21702 components: - pos: -10.5,47.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21704 - - port: Pressed - uid: 21703 - type: SignalReceiver + - links: + - 21703 + - 21704 + type: DeviceLinkSink - proto: ShuttersWindow entities: - uid: 11471 @@ -129717,85 +128888,55 @@ entities: - pos: -51.5,26.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11511 - - port: Pressed - uid: 11516 - type: SignalReceiver + - links: + - 11511 + - 11516 + type: DeviceLinkSink - uid: 11568 components: - pos: -51.5,28.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11511 - - port: Pressed - uid: 11516 - type: SignalReceiver + - links: + - 11511 + - 11516 + type: DeviceLinkSink - uid: 11574 components: - pos: -49.5,28.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11511 - - port: Pressed - uid: 11516 - type: SignalReceiver + - links: + - 11511 + - 11516 + type: DeviceLinkSink - uid: 11575 components: - pos: -49.5,26.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11511 - - port: Pressed - uid: 11516 - type: SignalReceiver + - links: + - 11511 + - 11516 + type: DeviceLinkSink - uid: 11582 components: - pos: -50.5,26.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11511 - - port: Pressed - uid: 11516 - type: SignalReceiver + - links: + - 11511 + - 11516 + type: DeviceLinkSink - uid: 11583 components: - pos: -50.5,28.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11511 - - port: Pressed - uid: 11516 - type: SignalReceiver + - links: + - 11511 + - 11516 + type: DeviceLinkSink - proto: ShuttersWindowOpen entities: - uid: 6771 @@ -129804,13 +128945,9 @@ entities: pos: 22.5,-32.5 parent: 60 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2313 - type: SignalReceiver + - links: + - 2313 + type: DeviceLinkSink - proto: ShuttleConsoleCircuitboard entities: - uid: 19168 @@ -129959,57 +129096,54 @@ entities: - pos: 24.5,-29.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6773 - - port: Toggle - uid: 6774 - - port: Toggle - uid: 6771 - - port: Toggle - uid: 6772 - - port: Toggle - uid: 6775 - type: SignalTransmitter + - linkedPorts: + 6773: + - Pressed: Toggle + 6774: + - Pressed: Toggle + 6771: + - Pressed: Toggle + 6772: + - Pressed: Toggle + 6775: + - Pressed: Toggle + type: DeviceLinkSource - uid: 2881 components: - pos: 12.5,-33.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2892 - - port: Toggle - uid: 1357 - - port: Toggle - uid: 3093 - - port: Toggle - uid: 2877 - - port: Toggle - uid: 6813 - - port: Toggle - uid: 3493 - - port: Toggle - uid: 1354 - - port: Toggle - uid: 1353 - - port: Toggle - uid: 1352 - type: SignalTransmitter + - linkedPorts: + 2892: + - Pressed: Toggle + 1357: + - Pressed: Toggle + 3093: + - Pressed: Toggle + 2877: + - Pressed: Toggle + 6813: + - Pressed: Toggle + 3493: + - Pressed: Toggle + 1354: + - Pressed: Toggle + 1353: + - Pressed: Toggle + 1352: + - Pressed: Toggle + type: DeviceLinkSource - uid: 3741 components: - pos: -20.5,-1.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 3737 - - port: Toggle - uid: 1022 - type: SignalTransmitter + - linkedPorts: + 3737: + - Pressed: Toggle + 1022: + - Pressed: Toggle + type: DeviceLinkSource - uid: 3803 components: - name: inner blast door @@ -130018,27 +129152,25 @@ entities: pos: -16.5,-42.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7729 - type: SignalTransmitter + - linkedPorts: + 7729: + - Pressed: Toggle + type: DeviceLinkSource - uid: 4140 components: - pos: 31.5,-14.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4487 - - port: Toggle - uid: 4496 - - port: Toggle - uid: 4354 - - port: Toggle - uid: 4355 - type: SignalTransmitter + - linkedPorts: + 4487: + - Pressed: Toggle + 4496: + - Pressed: Toggle + 4354: + - Pressed: Toggle + 4355: + - Pressed: Toggle + type: DeviceLinkSource - uid: 4513 components: - pos: 31.5,-37.5 @@ -130049,10 +129181,6 @@ entities: - Pressed: Toggle 11253: - Pressed: Toggle - registeredSinks: - Pressed: - - 2307 - - 11253 type: DeviceLinkSource - uid: 5346 components: @@ -130060,43 +129188,41 @@ entities: pos: -114.5,8.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5361 - - port: Toggle - uid: 5344 - - port: Toggle - uid: 5360 - - port: Toggle - uid: 5358 - - port: Toggle - uid: 5352 - - port: Toggle - uid: 5359 - - port: Toggle - uid: 5345 - type: SignalTransmitter + - linkedPorts: + 5361: + - Pressed: Toggle + 5344: + - Pressed: Toggle + 5360: + - Pressed: Toggle + 5358: + - Pressed: Toggle + 5352: + - Pressed: Toggle + 5359: + - Pressed: Toggle + 5345: + - Pressed: Toggle + type: DeviceLinkSource - uid: 7088 components: - pos: -40.5,-8.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7086 - - port: Toggle - uid: 7132 - - port: Toggle - uid: 5560 - - port: Toggle - uid: 7131 - - port: Toggle - uid: 5597 - - port: Toggle - uid: 8161 - type: SignalTransmitter + - linkedPorts: + 7086: + - Pressed: Toggle + 7132: + - Pressed: Toggle + 5560: + - Pressed: Toggle + 7131: + - Pressed: Toggle + 5597: + - Pressed: Toggle + 8161: + - Pressed: Toggle + type: DeviceLinkSource - uid: 7746 components: - name: outer blast door @@ -130104,11 +129230,10 @@ entities: - pos: -16.506157,-42.225792 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7728 - type: SignalTransmitter + - linkedPorts: + 7728: + - Pressed: Toggle + type: DeviceLinkSource - uid: 9091 components: - name: Cell 1 Shutters @@ -130116,25 +129241,23 @@ entities: - pos: -25.5,-10.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6467 - - port: Toggle - uid: 7032 - type: SignalTransmitter + - linkedPorts: + 6467: + - Pressed: Toggle + 7032: + - Pressed: Toggle + type: DeviceLinkSource - uid: 9165 components: - pos: -39.5,10.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9163 - - port: Toggle - uid: 5504 - type: SignalTransmitter + - linkedPorts: + 9163: + - Pressed: Toggle + 5504: + - Pressed: Toggle + type: DeviceLinkSource - uid: 9597 components: - name: Space Shutter @@ -130142,11 +129265,10 @@ entities: - pos: -48.5,15.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13901 - type: SignalTransmitter + - linkedPorts: + 13901: + - Pressed: Toggle + type: DeviceLinkSource - uid: 9647 components: - name: Maint Blast Doors @@ -130155,223 +129277,206 @@ entities: pos: -52.5,14.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 21026 - type: SignalTransmitter + - linkedPorts: + 21026: + - Pressed: Toggle + type: DeviceLinkSource - uid: 11511 components: - pos: -52.5,28.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11583 - - port: Toggle - uid: 11582 - - port: Toggle - uid: 11568 - - port: Toggle - uid: 11574 - - port: Toggle - uid: 11471 - - port: Toggle - uid: 11575 - type: SignalTransmitter + - linkedPorts: + 11583: + - Pressed: Toggle + 11582: + - Pressed: Toggle + 11568: + - Pressed: Toggle + 11574: + - Pressed: Toggle + 11471: + - Pressed: Toggle + 11575: + - Pressed: Toggle + type: DeviceLinkSource - uid: 11516 components: - pos: -48.5,28.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11574 - - port: Toggle - uid: 11583 - - port: Toggle - uid: 11568 - - port: Toggle - uid: 11471 - - port: Toggle - uid: 11582 - - port: Toggle - uid: 11575 - type: SignalTransmitter + - linkedPorts: + 11574: + - Pressed: Toggle + 11583: + - Pressed: Toggle + 11568: + - Pressed: Toggle + 11471: + - Pressed: Toggle + 11582: + - Pressed: Toggle + 11575: + - Pressed: Toggle + type: DeviceLinkSource - uid: 12596 components: - pos: -54.5,0.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 12598 - type: SignalTransmitter + - linkedPorts: + 12598: + - Pressed: Toggle + type: DeviceLinkSource - uid: 13815 components: - pos: 11.5,18.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6526 - - port: Toggle - uid: 6522 - - port: Toggle - uid: 6524 - type: SignalTransmitter + - linkedPorts: + 6526: + - Pressed: Toggle + 6522: + - Pressed: Toggle + 6524: + - Pressed: Toggle + type: DeviceLinkSource - uid: 14913 components: - pos: -32.5,47.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15089 - type: SignalTransmitter + - linkedPorts: + 15089: + - Pressed: Toggle + type: DeviceLinkSource - uid: 14914 components: - pos: -35.5,42.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15089 - type: SignalTransmitter + - linkedPorts: + 15089: + - Pressed: Toggle + type: DeviceLinkSource - uid: 15261 components: - pos: -23.5,37.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 14912 - - port: Toggle - uid: 14911 - - port: Toggle - uid: 14910 - type: SignalTransmitter + - linkedPorts: + 14912: + - Pressed: Toggle + 14911: + - Pressed: Toggle + 14910: + - Pressed: Toggle + type: DeviceLinkSource - uid: 15653 components: - pos: -20.5,40.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15436 - - port: Toggle - uid: 15437 - - port: Toggle - uid: 15438 - type: SignalTransmitter + - linkedPorts: + 15436: + - Pressed: Toggle + 15437: + - Pressed: Toggle + 15438: + - Pressed: Toggle + type: DeviceLinkSource - uid: 15654 components: - pos: -12.5,40.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15441 - - port: Toggle - uid: 15440 - - port: Toggle - uid: 15439 - type: SignalTransmitter + - linkedPorts: + 15441: + - Pressed: Toggle + 15440: + - Pressed: Toggle + 15439: + - Pressed: Toggle + type: DeviceLinkSource - uid: 16543 components: - pos: -4.5,30.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 16541 - - port: Toggle - uid: 16542 - type: SignalTransmitter + - linkedPorts: + 16541: + - Pressed: Toggle + 16542: + - Pressed: Toggle + type: DeviceLinkSource - uid: 17876 components: - pos: 58.5,13.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13175 - - port: Toggle - uid: 13178 - type: SignalTransmitter + - linkedPorts: + 13175: + - Pressed: Toggle + 13178: + - Pressed: Toggle + type: DeviceLinkSource - uid: 18438 components: - pos: -8.5,-2.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 18519 - - port: Toggle - uid: 18518 - - port: Toggle - uid: 18517 - type: SignalTransmitter + - linkedPorts: + 18519: + - Pressed: Toggle + 18518: + - Pressed: Toggle + 18517: + - Pressed: Toggle + type: DeviceLinkSource - uid: 18802 components: - pos: 57.5,10.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13177 - - port: Toggle - uid: 13176 - type: SignalTransmitter + - linkedPorts: + 13177: + - Pressed: Toggle + 13176: + - Pressed: Toggle + type: DeviceLinkSource - uid: 19107 components: - pos: 55.5,4.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11830 - type: SignalTransmitter + - linkedPorts: + 11830: + - Pressed: Toggle + type: DeviceLinkSource - uid: 19108 components: - pos: 55.5,-1.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11697 - type: SignalTransmitter + - linkedPorts: + 11697: + - Pressed: Toggle + type: DeviceLinkSource - uid: 21339 components: - pos: 6.5,-30.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 21340 - - port: Toggle - uid: 21341 - - port: Toggle - uid: 21342 - - port: Toggle - uid: 21343 - type: SignalTransmitter + - linkedPorts: + 21340: + - Pressed: Toggle + 21341: + - Pressed: Toggle + 21342: + - Pressed: Toggle + 21343: + - Pressed: Toggle + type: DeviceLinkSource - uid: 21415 components: - pos: 38.5,-33.5 @@ -130386,93 +129491,89 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 21698 - - port: Toggle - uid: 21690 - - port: Toggle - uid: 21689 - - port: Toggle - uid: 21688 - - port: Toggle - uid: 21687 - - port: Toggle - uid: 21686 - - port: Toggle - uid: 21685 - - port: Toggle - uid: 21684 - - port: Toggle - uid: 21683 - - port: Toggle - uid: 21682 - - port: Toggle - uid: 21693 - - port: Toggle - uid: 21694 - - port: Toggle - uid: 21695 - - port: Toggle - uid: 21696 - - port: Toggle - uid: 21697 - - port: Toggle - uid: 21691 - type: SignalTransmitter + - linkedPorts: + 21698: + - Pressed: Toggle + 21690: + - Pressed: Toggle + 21689: + - Pressed: Toggle + 21688: + - Pressed: Toggle + 21687: + - Pressed: Toggle + 21686: + - Pressed: Toggle + 21685: + - Pressed: Toggle + 21684: + - Pressed: Toggle + 21683: + - Pressed: Toggle + 21682: + - Pressed: Toggle + 21693: + - Pressed: Toggle + 21694: + - Pressed: Toggle + 21695: + - Pressed: Toggle + 21696: + - Pressed: Toggle + 21697: + - Pressed: Toggle + 21691: + - Pressed: Toggle + type: DeviceLinkSource - uid: 21703 components: - pos: -10.5,51.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 21699 - - port: Toggle - uid: 21700 - - port: Toggle - uid: 21701 - - port: Toggle - uid: 21702 - type: SignalTransmitter + - linkedPorts: + 21699: + - Pressed: Toggle + 21700: + - Pressed: Toggle + 21701: + - Pressed: Toggle + 21702: + - Pressed: Toggle + type: DeviceLinkSource - uid: 21704 components: - pos: -22.5,51.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 21700 - - port: Toggle - uid: 21699 - - port: Toggle - uid: 21701 - - port: Toggle - uid: 21702 - type: SignalTransmitter + - linkedPorts: + 21700: + - Pressed: Toggle + 21699: + - Pressed: Toggle + 21701: + - Pressed: Toggle + 21702: + - Pressed: Toggle + type: DeviceLinkSource - uid: 21762 components: - pos: 46.5,15.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 21753 - - port: Toggle - uid: 21754 - - port: Toggle - uid: 21755 - - port: Toggle - uid: 21759 - - port: Toggle - uid: 21760 - - port: Toggle - uid: 21758 - type: SignalTransmitter + - linkedPorts: + 21753: + - Pressed: Toggle + 21754: + - Pressed: Toggle + 21755: + - Pressed: Toggle + 21759: + - Pressed: Toggle + 21760: + - Pressed: Toggle + 21758: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignalButtonBridge entities: - uid: 21771 @@ -130489,13 +129590,12 @@ entities: - pos: -2.5,33.5 parent: 60 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13248 - - port: Toggle - uid: 13266 - type: SignalTransmitter + - linkedPorts: + 13248: + - Pressed: Toggle + 13266: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignalButtonWindows entities: - uid: 21786 @@ -140355,7 +139455,7 @@ entities: - pos: -111.5,25.5 parent: 60 type: Transform -- proto: ToyAssistant +- proto: ToyFigurinePassenger entities: - uid: 6331 components: @@ -140503,213 +139603,144 @@ entities: - pos: -13.5,-42.5 parent: 60 type: Transform - - outputs: - Middle: - - port: Off - uid: 7725 - - port: Off - uid: 7724 - - port: Off - uid: 7723 - - port: Off - uid: 3860 - - port: Off - uid: 3894 - - port: Off - uid: 3895 - - port: Off - uid: 3896 - Right: - - port: Reverse - uid: 7725 - - port: Reverse - uid: 7724 - - port: Reverse - uid: 7723 - - port: Reverse - uid: 3860 - - port: Reverse - uid: 3894 - - port: Reverse - uid: 3895 - - port: Reverse - uid: 3896 - Left: - - port: Forward - uid: 7725 - - port: Forward - uid: 7724 - - port: Forward - uid: 7723 - - port: Forward - uid: 3860 - - port: Forward - uid: 3894 - - port: Forward - uid: 3895 - - port: Forward - uid: 3896 - type: SignalTransmitter + - linkedPorts: + 7725: + - Middle: Off + - Right: Reverse + - Left: Forward + 7724: + - Middle: Off + - Right: Reverse + - Left: Forward + 7723: + - Middle: Off + - Right: Reverse + - Left: Forward + 3860: + - Middle: Off + - Right: Reverse + - Left: Forward + 3894: + - Middle: Off + - Right: Reverse + - Left: Forward + 3895: + - Middle: Off + - Right: Reverse + - Left: Forward + 3896: + - Middle: Off + - Right: Reverse + - Left: Forward + type: DeviceLinkSource - uid: 1189 components: - pos: -2.5,-26.5 parent: 60 type: Transform - - outputs: - Middle: - - port: Close - uid: 920 - - port: Close - uid: 914 - - port: Close - uid: 7697 - Right: - - port: Open - uid: 920 - - port: Open - uid: 914 - - port: Open - uid: 7697 - Left: - - port: Open - uid: 920 - - port: Open - uid: 914 - - port: Open - uid: 7697 - type: SignalTransmitter + - linkedPorts: + 920: + - Middle: Close + - Right: Open + - Left: Open + 914: + - Middle: Close + - Right: Open + - Left: Open + 7697: + - Middle: Close + - Right: Open + - Left: Open + type: DeviceLinkSource - uid: 5805 components: - pos: 50.5,0.5 parent: 60 type: Transform - - outputs: - Left: - - port: Forward - uid: 12703 - - port: Forward - uid: 5489 - - port: Forward - uid: 8360 - - port: Forward - uid: 12283 - - port: Forward - uid: 6978 - - port: Forward - uid: 6730 - - port: Forward - uid: 12705 - Right: - - port: Reverse - uid: 12703 - - port: Reverse - uid: 5489 - - port: Reverse - uid: 8360 - - port: Reverse - uid: 12283 - - port: Reverse - uid: 6978 - - port: Reverse - uid: 6730 - - port: Reverse - uid: 12705 - Middle: - - port: Off - uid: 12703 - - port: Off - uid: 5489 - - port: Off - uid: 8360 - - port: Off - uid: 12283 - - port: Off - uid: 6978 - - port: Off - uid: 6730 - - port: Off - uid: 12705 - type: SignalTransmitter + - linkedPorts: + 12703: + - Left: Forward + - Right: Reverse + - Middle: Off + 5489: + - Left: Forward + - Right: Reverse + - Middle: Off + 8360: + - Left: Forward + - Right: Reverse + - Middle: Off + 12283: + - Left: Forward + - Right: Reverse + - Middle: Off + 6978: + - Left: Forward + - Right: Reverse + - Middle: Off + 6730: + - Left: Forward + - Right: Reverse + - Middle: Off + 12705: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 9480 components: - pos: -32.5,12.5 parent: 60 type: Transform - - outputs: - Middle: - - port: Close - uid: 5627 - - port: Close - uid: 5626 - - port: Close - uid: 5628 - Right: - - port: Open - uid: 5627 - - port: Open - uid: 5626 - - port: Open - uid: 5628 - Left: - - port: Open - uid: 5627 - - port: Open - uid: 5626 - - port: Open - uid: 5628 - type: SignalTransmitter + - linkedPorts: + 5627: + - Middle: Close + - Right: Open + - Left: Open + 5626: + - Middle: Close + - Right: Open + - Left: Open + 5628: + - Middle: Close + - Right: Open + - Left: Open + type: DeviceLinkSource - uid: 12607 components: - pos: 50.5,2.5 parent: 60 type: Transform - - outputs: - Left: - - port: Forward - uid: 11722 - - port: Forward - uid: 5285 - - port: Forward - uid: 5284 - - port: Forward - uid: 11757 - - port: Forward - uid: 11881 - - port: Forward - uid: 9238 - - port: Forward - uid: 12889 - Right: - - port: Reverse - uid: 11722 - - port: Reverse - uid: 5285 - - port: Reverse - uid: 5284 - - port: Reverse - uid: 11757 - - port: Reverse - uid: 11881 - - port: Reverse - uid: 9238 - - port: Reverse - uid: 12889 - Middle: - - port: Off - uid: 11722 - - port: Off - uid: 5285 - - port: Off - uid: 5284 - - port: Off - uid: 11757 - - port: Off - uid: 11881 - - port: Off - uid: 9238 - - port: Off - uid: 12889 - type: SignalTransmitter + - linkedPorts: + 11722: + - Left: Forward + - Right: Reverse + - Middle: Off + 5285: + - Left: Forward + - Right: Reverse + - Middle: Off + 5284: + - Left: Forward + - Right: Reverse + - Middle: Off + 11757: + - Left: Forward + - Right: Reverse + - Middle: Off + 11881: + - Left: Forward + - Right: Reverse + - Middle: Off + 9238: + - Left: Forward + - Right: Reverse + - Middle: Off + 12889: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 13173 components: - pos: 55.5,12.5 @@ -140717,109 +139748,74 @@ entities: type: Transform - nextSignalLeft: True type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 13167 - - port: Forward - uid: 13168 - - port: Forward - uid: 13169 - - port: Forward - uid: 13170 - - port: Forward - uid: 13171 - Right: - - port: Reverse - uid: 13167 - - port: Reverse - uid: 13168 - - port: Reverse - uid: 13169 - - port: Reverse - uid: 13170 - - port: Reverse - uid: 13171 - Middle: - - port: Off - uid: 13167 - - port: Off - uid: 13168 - - port: Off - uid: 13169 - - port: Off - uid: 13170 - - port: Off - uid: 13171 - type: SignalTransmitter + - linkedPorts: + 13167: + - Left: Forward + - Right: Reverse + - Middle: Off + 13168: + - Left: Forward + - Right: Reverse + - Middle: Off + 13169: + - Left: Forward + - Right: Reverse + - Middle: Off + 13170: + - Left: Forward + - Right: Reverse + - Middle: Off + 13171: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 13174 components: - pos: 55.5,14.5 parent: 60 type: Transform - - outputs: - Left: - - port: Forward - uid: 13166 - - port: Forward - uid: 13165 - - port: Forward - uid: 13164 - - port: Forward - uid: 13163 - - port: Forward - uid: 13162 - - port: Forward - uid: 13221 - - port: Forward - uid: 13222 - Right: - - port: Reverse - uid: 13166 - - port: Reverse - uid: 13165 - - port: Reverse - uid: 13164 - - port: Reverse - uid: 13163 - - port: Reverse - uid: 13162 - - port: Reverse - uid: 13221 - - port: Reverse - uid: 13222 - Middle: - - port: Off - uid: 13166 - - port: Off - uid: 13165 - - port: Off - uid: 13164 - - port: Off - uid: 13163 - - port: Off - uid: 13162 - - port: Off - uid: 13221 - - port: Off - uid: 13222 - type: SignalTransmitter + - linkedPorts: + 13166: + - Left: Forward + - Right: Reverse + - Middle: Off + 13165: + - Left: Forward + - Right: Reverse + - Middle: Off + 13164: + - Left: Forward + - Right: Reverse + - Middle: Off + 13163: + - Left: Forward + - Right: Reverse + - Middle: Off + 13162: + - Left: Forward + - Right: Reverse + - Middle: Off + 13221: + - Left: Forward + - Right: Reverse + - Middle: Off + 13222: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 24108 components: - pos: -12.5,-42.5 parent: 60 type: Transform - - outputs: - Left: - - port: Forward - uid: 4073 - Right: - - port: Reverse - uid: 4073 - Middle: - - port: Off - uid: 4073 - type: SignalTransmitter + - linkedPorts: + 4073: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - proto: UnfinishedMachineFrame entities: - uid: 135 @@ -157983,108 +156979,36 @@ entities: pos: -20.5,-12.5 parent: 60 type: Transform - - inputs: - Open: - - port: Timer - uid: 6972 - Close: - - port: Start - uid: 6972 - Toggle: [] - AutoClose: - - port: Timer - uid: 6972 - type: SignalReceiver - uid: 151 components: - rot: 1.5707963267948966 rad pos: -20.5,-9.5 parent: 60 type: Transform - - inputs: - Open: - - port: Timer - uid: 1488 - Close: - - port: Start - uid: 1488 - Toggle: [] - AutoClose: - - port: Timer - uid: 1488 - type: SignalReceiver - uid: 230 components: - rot: -1.5707963267948966 rad pos: -32.5,-6.5 parent: 60 type: Transform - - inputs: - Open: - - port: Timer - uid: 1468 - Close: - - port: Start - uid: 1468 - Toggle: [] - AutoClose: - - port: Timer - uid: 1468 - type: SignalReceiver - uid: 243 components: - rot: -1.5707963267948966 rad pos: -32.5,-12.5 parent: 60 type: Transform - - inputs: - Open: - - port: Timer - uid: 1486 - Close: - - port: Start - uid: 1486 - Toggle: [] - AutoClose: - - port: Timer - uid: 1486 - type: SignalReceiver - uid: 268 components: - rot: -1.5707963267948966 rad pos: -32.5,-9.5 parent: 60 type: Transform - - inputs: - Open: - - port: Timer - uid: 1485 - Close: - - port: Start - uid: 1485 - Toggle: [] - AutoClose: - - port: Timer - uid: 1485 - type: SignalReceiver - uid: 843 components: - rot: 1.5707963267948966 rad pos: -20.5,-6.5 parent: 60 type: Transform - - inputs: - Open: - - port: Timer - uid: 6971 - Close: - - port: Start - uid: 6971 - Toggle: [] - AutoClose: - - port: Timer - uid: 6971 - type: SignalReceiver - uid: 4078 components: - rot: 3.141592653589793 rad diff --git a/Resources/Maps/barratry.yml b/Resources/Maps/barratry.yml index df0c9f1579..8972396a31 100644 --- a/Resources/Maps/barratry.yml +++ b/Resources/Maps/barratry.yml @@ -10390,8 +10390,7 @@ entities: - type: RadiationGridResistance - id: Barratry type: BecomesStation - - nextUpdate: 0 - type: SpreaderGrid + - type: SpreaderGrid - type: GridPathfinding - uid: 5005 components: @@ -10439,8 +10438,7 @@ entities: - fixtures: {} type: Fixtures - type: OccluderTree - - nextUpdate: 0 - type: SpreaderGrid + - type: SpreaderGrid - type: Shuttle - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg @@ -13054,14 +13052,14 @@ entities: pos: -52.5,9.5 parent: 1 type: Transform -- proto: AMEController +- proto: AmeController entities: - uid: 10656 components: - pos: -71.5,19.5 parent: 1 type: Transform -- proto: AMEJar +- proto: AmeJar entities: - uid: 5545 components: @@ -14556,19 +14554,11 @@ entities: - pos: -7.5614014,-8.148102 parent: 5016 type: Transform - - nextAttack: 1200.0234652 - type: MeleeWeapon - - nextSound: 1200.2234652 - type: EmitSoundOnCollide - uid: 15611 components: - pos: -7.3582764,-8.241852 parent: 5016 type: Transform - - nextAttack: 1200.398467 - type: MeleeWeapon - - nextSound: 1200.598467 - type: EmitSoundOnCollide - proto: Bed entities: - uid: 616 @@ -14726,8 +14716,6 @@ entities: pos: -49.5,12.5 parent: 1 type: Transform - - nextSound: 1241.8358936 - type: EmitSoundOnCollide - proto: BedsheetCult entities: - uid: 1830 @@ -14773,8 +14761,6 @@ entities: pos: -54.5,10.5 parent: 1 type: Transform - - nextSound: 1278.5228536 - type: EmitSoundOnCollide - proto: BedsheetHOP entities: - uid: 5320 @@ -14783,8 +14769,6 @@ entities: pos: -46.5,12.5 parent: 1 type: Transform - - nextSound: 1246.7791567 - type: EmitSoundOnCollide - proto: BedsheetMedical entities: - uid: 2062 @@ -14815,15 +14799,11 @@ entities: - pos: -12.5,3.5 parent: 5016 type: Transform - - nextSound: 654.9018548 - type: EmitSoundOnCollide - uid: 11881 components: - pos: -10.5,3.5 parent: 5016 type: Transform - - nextSound: 655.3048561 - type: EmitSoundOnCollide - proto: BedsheetOrange entities: - uid: 1910 @@ -14867,8 +14847,6 @@ entities: - pos: -54.5,8.5 parent: 1 type: Transform - - nextSound: 1391.2311263 - type: EmitSoundOnCollide - proto: BedsheetSpawner entities: - uid: 624 @@ -14921,8 +14899,6 @@ entities: - pos: -16.47583,0.5916748 parent: 5016 type: Transform - - nextSound: 1266.0015059 - type: EmitSoundOnCollide - proto: BlastDoor entities: - uid: 42 @@ -14930,289 +14906,189 @@ entities: - pos: 3.5,-14.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 351 - type: SignalReceiver + - links: + - 351 + type: DeviceLinkSink - uid: 590 components: - pos: 15.5,-6.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 615 - type: SignalReceiver + - links: + - 615 + type: DeviceLinkSink - uid: 7204 components: - pos: -53.5,71.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver + - links: + - 7192 + - 7218 + type: DeviceLinkSink - uid: 7207 components: - pos: -53.5,72.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver + - links: + - 7192 + - 7218 + type: DeviceLinkSink - uid: 7208 components: - pos: -53.5,73.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver + - links: + - 7192 + - 7218 + type: DeviceLinkSink - uid: 7209 components: - pos: -53.5,74.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver + - links: + - 7192 + - 7218 + type: DeviceLinkSink - uid: 7210 components: - pos: -53.5,75.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver + - links: + - 7192 + - 7218 + type: DeviceLinkSink - uid: 7211 components: - pos: -53.5,76.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver + - links: + - 7192 + - 7218 + type: DeviceLinkSink - uid: 7212 components: - pos: -49.5,71.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver + - links: + - 7192 + - 7218 + type: DeviceLinkSink - uid: 7213 components: - pos: -49.5,72.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver + - links: + - 7192 + - 7218 + type: DeviceLinkSink - uid: 7214 components: - pos: -49.5,73.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver + - links: + - 7192 + - 7218 + type: DeviceLinkSink - uid: 7215 components: - pos: -49.5,74.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver + - links: + - 7192 + - 7218 + type: DeviceLinkSink - uid: 7216 components: - pos: -49.5,75.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver + - links: + - 7192 + - 7218 + type: DeviceLinkSink - uid: 7217 components: - pos: -49.5,76.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver + - links: + - 7192 + - 7218 + type: DeviceLinkSink - uid: 7899 components: - pos: -45.5,64.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7901 - type: SignalReceiver + - links: + - 7901 + type: DeviceLinkSink - uid: 7900 components: - pos: -45.5,65.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7901 - type: SignalReceiver + - links: + - 7901 + type: DeviceLinkSink - uid: 13360 components: - pos: -82.5,51.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13361 - type: SignalReceiver + - links: + - 13361 + type: DeviceLinkSink - uid: 13366 components: - pos: -73.5,57.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13367 - type: SignalReceiver + - links: + - 13367 + type: DeviceLinkSink - uid: 13817 components: - pos: -35.5,-14.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13821 - type: SignalReceiver + - links: + - 13821 + type: DeviceLinkSink - uid: 13818 components: - pos: -35.5,-11.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13821 - type: SignalReceiver + - links: + - 13821 + type: DeviceLinkSink - uid: 13819 components: - pos: -31.5,-11.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13822 - type: SignalReceiver + - links: + - 13822 + type: DeviceLinkSink - uid: 13820 components: - pos: -31.5,-14.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13822 - type: SignalReceiver + - links: + - 13822 + type: DeviceLinkSink - proto: BlastDoorOpen entities: - uid: 15173 @@ -15220,505 +15096,337 @@ entities: - pos: 13.5,53.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver + - links: + - 15185 + type: DeviceLinkSink - uid: 15174 components: - pos: 14.5,53.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver + - links: + - 15185 + type: DeviceLinkSink - uid: 15175 components: - pos: 15.5,53.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver + - links: + - 15185 + type: DeviceLinkSink - uid: 15176 components: - pos: 16.5,53.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver + - links: + - 15185 + type: DeviceLinkSink - uid: 15177 components: - pos: 17.5,53.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver + - links: + - 15185 + type: DeviceLinkSink - uid: 15178 components: - pos: 18.5,53.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver + - links: + - 15185 + type: DeviceLinkSink - uid: 15179 components: - pos: 19.5,53.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver + - links: + - 15185 + type: DeviceLinkSink - uid: 15180 components: - pos: 19.5,52.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver + - links: + - 15185 + type: DeviceLinkSink - uid: 15181 components: - pos: 19.5,51.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver + - links: + - 15185 + type: DeviceLinkSink - uid: 15182 components: - pos: 19.5,50.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver + - links: + - 15185 + type: DeviceLinkSink - uid: 15183 components: - pos: 19.5,49.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver + - links: + - 15185 + type: DeviceLinkSink - uid: 15184 components: - pos: 19.5,48.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver + - links: + - 15185 + type: DeviceLinkSink - uid: 15188 components: - pos: -4.5,58.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15219 - type: SignalReceiver + - links: + - 15219 + type: DeviceLinkSink - uid: 15189 components: - pos: -4.5,59.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15219 - type: SignalReceiver + - links: + - 15219 + type: DeviceLinkSink - uid: 15190 components: - pos: -4.5,60.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15219 - type: SignalReceiver + - links: + - 15219 + type: DeviceLinkSink - uid: 15191 components: - pos: -4.5,61.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15219 - type: SignalReceiver + - links: + - 15219 + type: DeviceLinkSink - uid: 15192 components: - pos: -4.5,62.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15219 - type: SignalReceiver + - links: + - 15219 + type: DeviceLinkSink - uid: 15193 components: - pos: -5.5,62.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15219 - type: SignalReceiver + - links: + - 15219 + type: DeviceLinkSink - uid: 15194 components: - pos: -6.5,62.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15219 - type: SignalReceiver + - links: + - 15219 + type: DeviceLinkSink - uid: 15195 components: - pos: -7.5,62.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15219 - type: SignalReceiver + - links: + - 15219 + type: DeviceLinkSink - uid: 15196 components: - pos: -8.5,62.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15219 - type: SignalReceiver + - links: + - 15219 + type: DeviceLinkSink - uid: 15197 components: - pos: -9.5,62.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15219 - type: SignalReceiver + - links: + - 15219 + type: DeviceLinkSink - uid: 15198 components: - pos: -11.5,64.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver + - links: + - 15218 + type: DeviceLinkSink - uid: 15199 components: - pos: -11.5,65.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver + - links: + - 15218 + type: DeviceLinkSink - uid: 15200 components: - pos: -12.5,65.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver + - links: + - 15218 + type: DeviceLinkSink - uid: 15201 components: - pos: -12.5,66.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver + - links: + - 15218 + type: DeviceLinkSink - uid: 15202 components: - pos: -13.5,66.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver + - links: + - 15218 + type: DeviceLinkSink - uid: 15203 components: - pos: -13.5,67.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver + - links: + - 15218 + type: DeviceLinkSink - uid: 15204 components: - pos: -14.5,67.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver + - links: + - 15218 + type: DeviceLinkSink - uid: 15205 components: - pos: -15.5,67.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver + - links: + - 15218 + type: DeviceLinkSink - uid: 15206 components: - pos: -16.5,67.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver + - links: + - 15218 + type: DeviceLinkSink - uid: 15207 components: - pos: -17.5,67.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver + - links: + - 15218 + type: DeviceLinkSink - uid: 15208 components: - pos: -18.5,67.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver + - links: + - 15218 + type: DeviceLinkSink - uid: 15209 components: - pos: -19.5,67.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver + - links: + - 15218 + type: DeviceLinkSink - uid: 15210 components: - pos: -19.5,66.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver + - links: + - 15218 + type: DeviceLinkSink - uid: 15211 components: - pos: -20.5,66.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver + - links: + - 15218 + type: DeviceLinkSink - uid: 15212 components: - pos: -20.5,65.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver + - links: + - 15218 + type: DeviceLinkSink - uid: 15213 components: - pos: -21.5,65.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver + - links: + - 15218 + type: DeviceLinkSink - uid: 15214 components: - pos: -21.5,64.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver + - links: + - 15218 + type: DeviceLinkSink - uid: 15215 components: - pos: -22.5,62.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver + - links: + - 15218 + type: DeviceLinkSink - uid: 15216 components: - pos: -22.5,61.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver + - links: + - 15218 + type: DeviceLinkSink - uid: 15217 components: - pos: -22.5,60.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver + - links: + - 15218 + type: DeviceLinkSink - proto: Bloodpack entities: - uid: 15626 @@ -15726,15 +15434,11 @@ entities: - pos: -9.648682,3.6204834 parent: 5016 type: Transform - - nextSound: 1296.996229 - type: EmitSoundOnCollide - uid: 15627 components: - pos: -9.320557,3.6048584 parent: 5016 type: Transform - - nextSound: 1298.4402583 - type: EmitSoundOnCollide - proto: Blunt entities: - uid: 14943 @@ -15909,8 +15613,6 @@ entities: - pos: 4.42369,38.89373 parent: 1 type: Transform - - nextSound: 277.0297489 - type: EmitSoundOnCollide - proto: BoxCardboard entities: - uid: 15368 @@ -15976,8 +15678,6 @@ entities: - pos: -3.3766222,0.6332265 parent: 1 type: Transform - - nextSound: 733.584122 - type: EmitSoundOnCollide - uid: 7554 components: - pos: -19.563011,46.957428 @@ -16065,15 +15765,11 @@ entities: - pos: -32.463276,-5.5537453 parent: 1 type: Transform - - nextSound: 217.9900297 - type: EmitSoundOnCollide - uid: 9001 components: - pos: -32.69765,-5.3818703 parent: 1 type: Transform - - nextSound: 217.5561145 - type: EmitSoundOnCollide - uid: 12031 components: - pos: -31.49165,-1.6362362 @@ -16084,15 +15780,11 @@ entities: - pos: -70.32392,16.415482 parent: 1 type: Transform - - nextSound: 1107.1485042 - type: EmitSoundOnCollide - uid: 15796 components: - pos: -70.60517,16.399857 parent: 1 type: Transform - - nextSound: 1107.6005132 - type: EmitSoundOnCollide - proto: BoxHandcuff entities: - uid: 7993 @@ -16183,46 +15875,16 @@ entities: - pos: -56.5,52.5 parent: 1 type: Transform - - outputs: - Start: - - port: Close - uid: 7871 - Timer: - - port: AutoClose - uid: 7871 - - port: Open - uid: 7871 - type: SignalTransmitter - uid: 4986 components: - pos: -53.5,52.5 parent: 1 type: Transform - - outputs: - Start: - - port: Close - uid: 7872 - Timer: - - port: AutoClose - uid: 7872 - - port: Open - uid: 7872 - type: SignalTransmitter - uid: 4987 components: - pos: -50.5,52.5 parent: 1 type: Transform - - outputs: - Start: - - port: Close - uid: 7873 - Timer: - - port: AutoClose - uid: 7873 - - port: Open - uid: 7873 - type: SignalTransmitter - proto: Brutepack entities: - uid: 1990 @@ -16240,15 +15902,11 @@ entities: - pos: -7.623596,4.7508545 parent: 5016 type: Transform - - nextSound: 1135.5789591 - type: EmitSoundOnCollide - uid: 15601 components: - pos: -7.389221,4.6102295 parent: 5016 type: Transform - - nextSound: 1136.0069371 - type: EmitSoundOnCollide - proto: Bucket entities: - uid: 6946 @@ -27257,8 +26915,6 @@ entities: - pos: -7.4238524,8.228333 parent: 1 type: Transform - - nextSound: 2844.0972348 - type: EmitSoundOnCollide - proto: CableApcStack1 entities: - uid: 13667 @@ -33767,8 +33423,6 @@ entities: - pos: -7.5488524,8.322083 parent: 1 type: Transform - - nextSound: 2834.3254686 - type: EmitSoundOnCollide - proto: CableMV entities: - uid: 497 @@ -36770,8 +36424,6 @@ entities: - pos: -7.5488524,8.259583 parent: 1 type: Transform - - nextSound: 2839.2480124 - type: EmitSoundOnCollide - proto: CableTerminal entities: - uid: 906 @@ -42200,8 +41852,6 @@ entities: - pos: -17.491047,14.319577 parent: 1 type: Transform - - nextSound: 2528.1840942 - type: EmitSoundOnCollide - proto: ChemistryHotplate entities: - uid: 1967 @@ -42221,8 +41871,6 @@ entities: - pos: -17.475422,14.663327 parent: 1 type: Transform - - nextSound: 2524.8191069 - type: EmitSoundOnCollide - proto: ChessBoard entities: - uid: 345 @@ -42289,8 +41937,6 @@ entities: type: MetaData - parent: 14980 type: Transform - - nextSound: 1038.6353569 - type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -43878,42 +43524,52 @@ entities: - contents: - maxAmount: 1 amount: 1 + orGroup: null prob: 0.01 id: WeaponPistolMk58 - maxAmount: 1 amount: 2 + orGroup: null prob: 1 id: MopItem - maxAmount: 1 amount: 2 + orGroup: null prob: 1 id: BoxMousetrap - maxAmount: 1 amount: 3 + orGroup: null prob: 1 id: WetFloorSign - maxAmount: 1 amount: 2 + orGroup: null prob: 1 id: TrashBag - maxAmount: 1 amount: 1 + orGroup: null prob: 1 id: LightReplacer - maxAmount: 1 amount: 1 + orGroup: null prob: 1 id: BoxLightMixed - maxAmount: 1 amount: 1 + orGroup: null prob: 1 id: Holoprojector - maxAmount: 1 amount: 2 + orGroup: null prob: 1 id: SoapNT - maxAmount: 1 amount: 2 + orGroup: null prob: 1 id: FlashlightLantern type: StorageFill @@ -43944,6 +43600,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: ClosetL3VirologyFilled entities: @@ -44955,8 +44612,6 @@ entities: - pos: -26.510632,26.559929 parent: 1 type: Transform - - nextSound: 1671.4118381 - type: EmitSoundOnCollide - uid: 5508 components: - pos: -53.472584,-1.3838406 @@ -45063,15 +44718,11 @@ entities: - pos: -43.79278,66.77106 parent: 1 type: Transform - - nextSound: 1953.2636165 - type: EmitSoundOnCollide - uid: 15979 components: - pos: -43.527157,66.73981 parent: 1 type: Transform - - nextSound: 1953.963804 - type: EmitSoundOnCollide - proto: ClothingHeadHelmetScaf entities: - uid: 15106 @@ -45093,8 +44744,6 @@ entities: - pos: -11.360779,0.3692627 parent: 5016 type: Transform - - nextSound: 1754.9566517 - type: EmitSoundOnCollide - proto: ClothingMaskBreathMedical entities: - uid: 12777 @@ -45119,8 +44768,6 @@ entities: - pos: -25.506933,57.41912 parent: 1 type: Transform - - nextSound: 226.184098 - type: EmitSoundOnCollide - uid: 12772 components: - pos: 18.54059,28.570738 @@ -45226,8 +44873,6 @@ entities: - pos: -5.5015035,61.615753 parent: 1 type: Transform - - nextSound: 1185.2682932 - type: EmitSoundOnCollide - proto: ClothingNeckMantleCE entities: - uid: 3543 @@ -45235,8 +44880,6 @@ entities: - pos: -68.46455,16.578547 parent: 1 type: Transform - - nextSound: 1177.0011917 - type: EmitSoundOnCollide - proto: ClothingNeckMantleCMO entities: - uid: 5730 @@ -45244,8 +44887,6 @@ entities: - pos: 16.18277,28.581306 parent: 1 type: Transform - - nextSound: 1197.1019541 - type: EmitSoundOnCollide - proto: ClothingNeckMantleHOP entities: - uid: 5395 @@ -45253,8 +44894,6 @@ entities: - pos: -21.824865,46.548195 parent: 1 type: Transform - - nextSound: 1189.7850748 - type: EmitSoundOnCollide - proto: ClothingNeckMantleHOS entities: - uid: 7085 @@ -45262,8 +44901,6 @@ entities: - pos: -60.468678,63.752388 parent: 1 type: Transform - - nextSound: 1209.4691766 - type: EmitSoundOnCollide - proto: ClothingNeckMantleRD entities: - uid: 3698 @@ -45272,8 +44909,6 @@ entities: type: MetaData - parent: 245 type: Transform - - nextSound: 1223.8631781 - type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -45312,15 +44947,11 @@ entities: - pos: -43.26153,66.39606 parent: 1 type: Transform - - nextSound: 1950.0182744 - type: EmitSoundOnCollide - uid: 15966 components: - pos: -43.44903,66.39606 parent: 1 type: Transform - - nextSound: 1950.6117881 - type: EmitSoundOnCollide - proto: ClothingOuterArmorScaf entities: - uid: 509 @@ -45444,8 +45075,6 @@ entities: - pos: -11.132568,-1.0625 parent: 5016 type: Transform - - nextSound: 801.5559317 - type: EmitSoundOnCollide - proto: ClothingShoesWizard entities: - uid: 6833 @@ -45475,10 +45104,6 @@ entities: - pos: -12.110718,-0.5558777 parent: 5016 type: Transform - - nextUpdate: 1714.089591 - type: SuitSensor - - nextSound: 1714.289591 - type: EmitSoundOnCollide - proto: ClothingUniformJumpskirtPerformer entities: - uid: 10960 @@ -45570,8 +45195,6 @@ entities: - pos: -49.44898,25.317516 parent: 1 type: Transform - - nextSound: 1431.4109156 - type: EmitSoundOnCollide - proto: ComputerAnalysisConsole entities: - uid: 341 @@ -45580,11 +45203,6 @@ entities: pos: 0.5,-11.5 parent: 1 type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 347 - type: SignalTransmitter - proto: ComputerBroken entities: - uid: 591 @@ -45623,8 +45241,6 @@ entities: - pos: -33.5,-5.5 parent: 1 type: Transform - - nextPrintTime: 206.9490687 - type: CargoBountyConsole - proto: ComputerCargoOrders entities: - uid: 3619 @@ -45900,329 +45516,162 @@ entities: - pos: -39.5,-8.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13842 - - port: Right - uid: 13843 - Forward: - - port: Left - uid: 13842 - - port: Left - uid: 13843 - Off: - - port: Middle - uid: 13842 - - port: Middle - uid: 13843 - type: SignalReceiver + - links: + - 13842 + - 13843 + type: DeviceLinkSink - uid: 6793 components: - pos: -39.5,-9.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13842 - - port: Right - uid: 13843 - Forward: - - port: Left - uid: 13842 - - port: Left - uid: 13843 - Off: - - port: Middle - uid: 13842 - - port: Middle - uid: 13843 - type: SignalReceiver + - links: + - 13842 + - 13843 + type: DeviceLinkSink - uid: 7282 components: - pos: -39.5,-7.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13842 - - port: Right - uid: 13843 - Forward: - - port: Left - uid: 13842 - - port: Left - uid: 13843 - Off: - - port: Middle - uid: 13842 - - port: Middle - uid: 13843 - type: SignalReceiver + - links: + - 13842 + - 13843 + type: DeviceLinkSink - uid: 13825 components: - pos: -35.5,-14.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13823 - Forward: - - port: Left - uid: 13823 - Off: - - port: Middle - uid: 13823 - type: SignalReceiver + - links: + - 13823 + type: DeviceLinkSink - uid: 13826 components: - pos: -35.5,-13.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13823 - Forward: - - port: Left - uid: 13823 - Off: - - port: Middle - uid: 13823 - type: SignalReceiver + - links: + - 13823 + type: DeviceLinkSink - uid: 13827 components: - pos: -35.5,-12.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13823 - Forward: - - port: Left - uid: 13823 - Off: - - port: Middle - uid: 13823 - type: SignalReceiver + - links: + - 13823 + type: DeviceLinkSink - uid: 13828 components: - pos: -35.5,-11.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13823 - Forward: - - port: Left - uid: 13823 - Off: - - port: Middle - uid: 13823 - type: SignalReceiver + - links: + - 13823 + type: DeviceLinkSink - uid: 13829 components: - pos: -35.5,-10.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13823 - Forward: - - port: Left - uid: 13823 - Off: - - port: Middle - uid: 13823 - type: SignalReceiver + - links: + - 13823 + type: DeviceLinkSink - uid: 13830 components: - pos: -31.5,-14.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13824 - Forward: - - port: Left - uid: 13824 - Off: - - port: Middle - uid: 13824 - type: SignalReceiver + - links: + - 13824 + type: DeviceLinkSink - uid: 13831 components: - pos: -31.5,-13.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13824 - Forward: - - port: Left - uid: 13824 - Off: - - port: Middle - uid: 13824 - type: SignalReceiver + - links: + - 13824 + type: DeviceLinkSink - uid: 13832 components: - pos: -31.5,-12.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13824 - Forward: - - port: Left - uid: 13824 - Off: - - port: Middle - uid: 13824 - type: SignalReceiver + - links: + - 13824 + type: DeviceLinkSink - uid: 13833 components: - pos: -31.5,-11.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13824 - Forward: - - port: Left - uid: 13824 - Off: - - port: Middle - uid: 13824 - type: SignalReceiver + - links: + - 13824 + type: DeviceLinkSink - uid: 13834 components: - pos: -31.5,-10.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13824 - Forward: - - port: Left - uid: 13824 - Off: - - port: Middle - uid: 13824 - type: SignalReceiver + - links: + - 13824 + type: DeviceLinkSink - uid: 14225 components: - rot: 3.141592653589793 rad pos: -73.5,53.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 14233 - Forward: - - port: Left - uid: 14233 - Off: - - port: Middle - uid: 14233 - type: SignalReceiver + - links: + - 14233 + type: DeviceLinkSink - uid: 14226 components: - rot: 3.141592653589793 rad pos: -73.5,54.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 14233 - Forward: - - port: Left - uid: 14233 - Off: - - port: Middle - uid: 14233 - type: SignalReceiver + - links: + - 14233 + type: DeviceLinkSink - uid: 14227 components: - rot: 3.141592653589793 rad pos: -73.5,55.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 14233 - Forward: - - port: Left - uid: 14233 - Off: - - port: Middle - uid: 14233 - type: SignalReceiver + - links: + - 14233 + type: DeviceLinkSink - uid: 14228 components: - rot: 3.141592653589793 rad pos: -73.5,56.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 14233 - Forward: - - port: Left - uid: 14233 - Off: - - port: Middle - uid: 14233 - type: SignalReceiver + - links: + - 14233 + type: DeviceLinkSink - uid: 14229 components: - rot: 3.141592653589793 rad pos: -73.5,57.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 14233 - Forward: - - port: Left - uid: 14233 - Off: - - port: Middle - uid: 14233 - type: SignalReceiver + - links: + - 14233 + type: DeviceLinkSink - uid: 14230 components: - rot: 3.141592653589793 rad pos: -73.5,58.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 14233 - Forward: - - port: Left - uid: 14233 - Off: - - port: Middle - uid: 14233 - type: SignalReceiver + - links: + - 14233 + type: DeviceLinkSink - proto: CowToolboxFilled entities: - uid: 14933 @@ -46529,6 +45978,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - currentLabel: For Med type: Label @@ -46750,6 +46200,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: CrayonMime entities: @@ -46797,8 +46248,6 @@ entities: - pos: -49.521305,24.4048 parent: 1 type: Transform - - nextSound: 17.5877943 - type: EmitSoundOnCollide - proto: Crowbar entities: - uid: 375 @@ -46811,15 +46260,11 @@ entities: - pos: 4.494688,39.490654 parent: 1 type: Transform - - nextAttack: 395.9754995 - type: MeleeWeapon - uid: 5649 components: - pos: -24.42766,29.496252 parent: 1 type: Transform - - nextAttack: 222.5928597 - type: MeleeWeapon - proto: CryoPod entities: - uid: 1333 @@ -46841,10 +46286,6 @@ entities: - pos: 4.440308,37.660927 parent: 1 type: Transform - - nextUpdate: 37.382081 - type: PowerCellDraw - - nextSound: 37.582081 - type: EmitSoundOnCollide - proto: DefibrillatorCabinetFilled entities: - uid: 1962 @@ -50237,37 +49678,21 @@ entities: - pos: -49.110718,9.835719 parent: 1 type: Transform - - nextAttack: 1373.7711174 - type: MeleeWeapon - - nextSound: 1373.9711174 - type: EmitSoundOnCollide - uid: 4549 components: - pos: -49.160065,9.422353 parent: 1 type: Transform - - nextAttack: 1375.3632859 - type: MeleeWeapon - - nextSound: 1375.5632859 - type: EmitSoundOnCollide - uid: 5344 components: - pos: -49.821003,9.391103 parent: 1 type: Transform - - nextAttack: 1374.6810903 - type: MeleeWeapon - - nextSound: 1374.8810903 - type: EmitSoundOnCollide - uid: 6153 components: - pos: -49.876343,9.820094 parent: 1 type: Transform - - nextAttack: 1372.7942817 - type: MeleeWeapon - - nextSound: 1372.9942817 - type: EmitSoundOnCollide - proto: DrinkHotCoffee entities: - uid: 4562 @@ -50275,10 +49700,6 @@ entities: - pos: 23.475533,38.452827 parent: 1 type: Transform - - nextAttack: 2950.118211 - type: MeleeWeapon - - nextSound: 2950.3182109 - type: EmitSoundOnCollide - uid: 15084 components: - pos: -15.376344,24.974894 @@ -50327,10 +49748,6 @@ entities: - pos: 23.29282,42.502815 parent: 1 type: Transform - - nextAttack: 820.1477775 - type: MeleeWeapon - - nextSound: 820.3477775 - type: EmitSoundOnCollide - proto: DrinkMugMetal entities: - uid: 7949 @@ -50381,10 +49798,6 @@ entities: - pos: 19.083464,-11.315445 parent: 1 type: Transform - - nextAttack: 1269.0895444 - type: MeleeWeapon - - nextSound: 1269.2895444 - type: EmitSoundOnCollide - proto: DrinkWhiskeyBottleFull entities: - uid: 7935 @@ -50477,22 +49890,16 @@ entities: - pos: -6.2645264,-8.257477 parent: 5016 type: Transform - - nextSound: 1206.1754633 - type: EmitSoundOnCollide - uid: 15615 components: - pos: -6.2645264,-8.460602 parent: 5016 type: Transform - - nextSound: 1207.0424638 - type: EmitSoundOnCollide - uid: 15616 components: - pos: -6.2489014,-8.585602 parent: 5016 type: Transform - - nextSound: 1207.6464953 - type: EmitSoundOnCollide - proto: ElectricGuitarInstrument entities: - uid: 4138 @@ -54215,6 +53622,7 @@ entities: parent: 1 type: Transform - toggleAction: + sound: null itemIconStyle: BigItem icon: sprite: Objects/Tools/flashlight.rsi @@ -54225,6 +53633,8 @@ entities: description: action-description-toggle-light keywords: [] enabled: True + useDelay: null + charges: null checkCanInteract: True clientExclusive: False priority: 0 @@ -54440,15 +53850,11 @@ entities: - pos: -50.3876,9.598858 parent: 1 type: Transform - - nextSound: 1336.8356062 - type: EmitSoundOnCollide - uid: 6056 components: - pos: -48.5126,9.614483 parent: 1 type: Transform - - nextSound: 1337.9192212 - type: EmitSoundOnCollide - proto: FoodMeatClown entities: - uid: 2310 @@ -54504,10 +53910,6 @@ entities: - pos: -49.501343,9.695094 parent: 1 type: Transform - - nextAttack: 1369.1280585 - type: MeleeWeapon - - nextSound: 1369.3280585 - type: EmitSoundOnCollide - proto: FoodSoupTomatoBlood entities: - uid: 15848 @@ -54515,10 +53917,6 @@ entities: - pos: 18.65857,38.37641 parent: 1 type: Transform - - nextAttack: 3450.2954951 - type: MeleeWeapon - - nextSound: 3450.4954951 - type: EmitSoundOnCollide - proto: FoodTartMime entities: - uid: 4219 @@ -54533,29 +53931,21 @@ entities: - pos: 16.724224,-9.292183 parent: 1 type: Transform - - nextSound: 959.5046337 - type: EmitSoundOnCollide - uid: 15941 components: - pos: 16.380474,-9.276558 parent: 1 type: Transform - - nextSound: 958.9789914 - type: EmitSoundOnCollide - uid: 15943 components: - pos: 16.36485,-9.089058 parent: 1 type: Transform - - nextSound: 957.1631408 - type: EmitSoundOnCollide - uid: 15944 components: - pos: 16.73985,-9.104683 parent: 1 type: Transform - - nextSound: 958.2128384 - type: EmitSoundOnCollide - proto: ForensicPad entities: - uid: 12914 @@ -57068,16 +56458,12 @@ entities: pos: -47.5,6.5 parent: 1 type: Transform - - nextSound: 935.8999616 - type: EmitSoundOnCollide - uid: 5350 components: - rot: 1.5707963267948966 rad pos: -51.5,6.5 parent: 1 type: Transform - - nextSound: 919.1560163 - type: EmitSoundOnCollide - uid: 5393 components: - rot: 1.5707963267948966 rad @@ -57156,8 +56542,6 @@ entities: pos: -50.5,4.5 parent: 1 type: Transform - - nextSound: 919.6497618 - type: EmitSoundOnCollide - uid: 7441 components: - rot: 1.5707963267948966 rad @@ -58741,8 +58125,6 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - nextSound: 223.2729972 - type: EmitSoundOnCollide - uid: 11087 components: - rot: 1.5707963267948966 rad @@ -68675,8 +68057,6 @@ entities: type: AtmosPipeColor - enabled: True type: AmbientSound - - nextSound: 223.6589401 - type: EmitSoundOnCollide - uid: 15864 components: - pos: 7.5,49.5 @@ -68684,8 +68064,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - nextSound: 3825.8688239 - type: EmitSoundOnCollide - proto: GasPipeTJunction entities: - uid: 1778 @@ -70809,8 +70187,6 @@ entities: - pos: 12.5,37.5 parent: 1 type: Transform - - nextSound: 378.7434204 - type: EmitSoundOnCollide - uid: 2398 components: - pos: 6.5,37.5 @@ -71440,8 +70816,6 @@ entities: type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - nextSound: 222.2169622 - type: EmitSoundOnCollide - uid: 10805 components: - pos: 6.5,20.5 @@ -74095,15 +73469,11 @@ entities: - pos: -49.48023,25.725746 parent: 1 type: Transform - - nextSound: 1439.487572 - type: EmitSoundOnCollide - uid: 15959 components: - pos: -49.464603,25.631996 parent: 1 type: Transform - - nextSound: 1440.1695321 - type: EmitSoundOnCollide - proto: Girder entities: - uid: 54 @@ -74499,15 +73869,11 @@ entities: - pos: -17.577833,10.380919 parent: 1 type: Transform - - nextSound: 2636.1739079 - type: EmitSoundOnCollide - uid: 15974 components: - pos: -17.202833,10.537169 parent: 1 type: Transform - - nextSound: 2637.1210333 - type: EmitSoundOnCollide - proto: Grille entities: - uid: 28 @@ -78813,15 +78179,11 @@ entities: - pos: -37.37278,-10.030424 parent: 1 type: Transform - - nextSound: 904.2995991 - type: EmitSoundOnCollide - uid: 15785 components: - pos: -37.607155,-10.327299 parent: 1 type: Transform - - nextSound: 904.9806146 - type: EmitSoundOnCollide - proto: HandheldHealthAnalyzer entities: - uid: 373 @@ -78850,8 +78212,7 @@ entities: type: MovementSpeedModifier - type: GhostTakeoverAvailable - type: MindContainer - - lerpTarget: 0 - type: InputMover + - type: InputMover - type: MobMover - type: MovementAlwaysTouching - type: CanEscapeInventory @@ -78862,8 +78223,6 @@ entities: - pos: -11.726318,-0.28125 parent: 5016 type: Transform - - nextSound: 818.2969457 - type: EmitSoundOnCollide - proto: HighSecArmoryLocked entities: - uid: 7869 @@ -79206,22 +78565,16 @@ entities: - pos: -82.4705,30.370302 parent: 1 type: Transform - - nextSound: 455.1183076 - type: EmitSoundOnCollide - uid: 7229 components: - pos: -82.4705,30.370302 parent: 1 type: Transform - - nextSound: 454.8263193 - type: EmitSoundOnCollide - uid: 10734 components: - pos: -82.4705,30.370302 parent: 1 type: Transform - - nextSound: 454.9743363 - type: EmitSoundOnCollide - proto: IngotGold entities: - uid: 10870 @@ -79229,7 +78582,41 @@ entities: - pos: -20.428497,57.597878 parent: 1 type: Transform -- proto: Intercom +- proto: IntercomAll + entities: + - uid: 8604 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,37.5 + parent: 1 + type: Transform + - uid: 8605 + components: + - rot: 3.141592653589793 rad + pos: -6.5,58.5 + parent: 1 + type: Transform +- proto: IntercomCommand + entities: + - uid: 8606 + components: + - rot: 3.141592653589793 rad + pos: -14.5,61.5 + parent: 1 + type: Transform + - uid: 8607 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,53.5 + parent: 1 + type: Transform + - uid: 8608 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,55.5 + parent: 1 + type: Transform +- proto: IntercomCommon entities: - uid: 4801 components: @@ -79313,40 +78700,6 @@ entities: pos: 29.5,15.5 parent: 1 type: Transform -- proto: IntercomAll - entities: - - uid: 8604 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,37.5 - parent: 1 - type: Transform - - uid: 8605 - components: - - rot: 3.141592653589793 rad - pos: -6.5,58.5 - parent: 1 - type: Transform -- proto: IntercomCommand - entities: - - uid: 8606 - components: - - rot: 3.141592653589793 rad - pos: -14.5,61.5 - parent: 1 - type: Transform - - uid: 8607 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,53.5 - parent: 1 - type: Transform - - uid: 8608 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,55.5 - parent: 1 - type: Transform - proto: IntercomEngineering entities: - uid: 14171 @@ -79589,10 +78942,6 @@ entities: - pos: 10.51315,-13.515254 parent: 1 type: Transform - - nextAttack: 1169.9095756 - type: MeleeWeapon - - nextSound: 1170.1095756 - type: EmitSoundOnCollide - proto: KitchenKnife entities: - uid: 6953 @@ -79679,31 +79028,23 @@ entities: pos: 18.546034,40.734077 parent: 1 type: Transform - - nextSound: 2939.0537082 - type: EmitSoundOnCollide - uid: 4560 components: - rot: 3.141592653589793 rad pos: 23.577284,40.655952 parent: 1 type: Transform - - nextSound: 2941.0727994 - type: EmitSoundOnCollide - uid: 4569 components: - rot: 3.141592653589793 rad pos: 17.514784,42.687202 parent: 1 type: Transform - - nextSound: 2940.305089 - type: EmitSoundOnCollide - uid: 4708 components: - pos: -32.32265,-5.1474953 parent: 1 type: Transform - - nextSound: 219.2960834 - type: EmitSoundOnCollide - uid: 7556 components: - pos: -22.548872,46.863678 @@ -79744,15 +79085,11 @@ entities: - pos: -38.52308,-9.139799 parent: 1 type: Transform - - nextSound: 921.7635666 - type: EmitSoundOnCollide - uid: 15797 components: - pos: -70.46455,15.962357 parent: 1 type: Transform - - nextSound: 1108.9025612 - type: EmitSoundOnCollide - proto: LampBanana entities: - uid: 4231 @@ -79941,19 +79278,11 @@ entities: - pos: -5.4520264,-8.132477 parent: 5016 type: Transform - - nextAttack: 1202.3524947 - type: MeleeWeapon - - nextSound: 1202.5524946 - type: EmitSoundOnCollide - uid: 15613 components: - pos: -5.7332764,-8.304352 parent: 5016 type: Transform - - nextAttack: 1202.95152 - type: MeleeWeapon - - nextSound: 1203.1515199 - type: EmitSoundOnCollide - proto: LauncherCreamPie entities: - uid: 4241 @@ -79968,8 +79297,6 @@ entities: - pos: -11.038818,-0.421875 parent: 5016 type: Transform - - nextSound: 811.7949059 - type: EmitSoundOnCollide - proto: LeftFootSlime entities: - uid: 10741 @@ -79977,8 +79304,6 @@ entities: - pos: -11.320068,-0.828125 parent: 5016 type: Transform - - nextSound: 847.6973133 - type: EmitSoundOnCollide - proto: LeftHandSlime entities: - uid: 10744 @@ -79986,8 +79311,6 @@ entities: - pos: -11.210693,-0.578125 parent: 5016 type: Transform - - nextSound: 841.4933808 - type: EmitSoundOnCollide - proto: LeftLegSlime entities: - uid: 13614 @@ -79995,8 +79318,6 @@ entities: - pos: -11.601318,-0.765625 parent: 5016 type: Transform - - nextSound: 844.704288 - type: EmitSoundOnCollide - proto: LockerAtmosphericsFilled entities: - uid: 10746 @@ -80336,6 +79657,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: LockerChiefMedicalOfficerFilled entities: @@ -80657,6 +79979,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: LockerHeadOfPersonnelFilled entities: @@ -80861,6 +80184,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: LockerSalvageSpecialistFilled entities: @@ -81226,11 +80550,6 @@ entities: - pos: 1.5,-14.5 parent: 1 type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 341 - type: SignalReceiver - proto: MachineFrame entities: - uid: 253 @@ -82025,8 +81344,6 @@ entities: - pos: -37.5,-12.5 parent: 1 type: Transform - - nextSound: 13.0622258 - type: MaterialReclaimer - proto: MaterialWoodPlank entities: - uid: 15937 @@ -82034,8 +81351,6 @@ entities: - pos: 19.58975,42.76493 parent: 1 type: Transform - - nextSound: 795.338689 - type: EmitSoundOnCollide - proto: MatterBinStockPart entities: - uid: 259 @@ -82082,8 +81397,6 @@ entities: - pos: -17.43695,0.59472656 parent: 5016 type: Transform - - nextSound: 1249.5144637 - type: EmitSoundOnCollide - proto: MedkitAdvancedFilled entities: - uid: 2319 @@ -82098,8 +81411,6 @@ entities: - pos: 6.488601,22.996218 parent: 1 type: Transform - - nextSound: 11.0521781 - type: EmitSoundOnCollide - proto: MedkitBurnFilled entities: - uid: 2317 @@ -82119,8 +81430,6 @@ entities: - pos: -13.467957,3.5228577 parent: 5016 type: Transform - - nextSound: 1126.5029471 - type: EmitSoundOnCollide - proto: MedkitFilled entities: - uid: 1989 @@ -82143,8 +81452,6 @@ entities: - pos: -7.514221,5.5164795 parent: 5016 type: Transform - - nextSound: 1128.3599394 - type: EmitSoundOnCollide - proto: MedkitOxygenFilled entities: - uid: 2315 @@ -82162,8 +81469,6 @@ entities: - pos: -7.420471,5.1414795 parent: 5016 type: Transform - - nextSound: 1131.2489397 - type: EmitSoundOnCollide - proto: MedkitRadiationFilled entities: - uid: 2314 @@ -82585,8 +81890,6 @@ entities: - pos: -16.991455,0.6229248 parent: 5016 type: Transform - - nextSound: 1270.9345389 - type: EmitSoundOnCollide - proto: NanoManipulatorStockPart entities: - uid: 1671 @@ -82678,8 +81981,6 @@ entities: - pos: -77.535675,42.554688 parent: 1 type: Transform - - nextAttack: 33.8359563 - type: MeleeWeapon - proto: NuclearBomb entities: - uid: 10854 @@ -82741,8 +82042,6 @@ entities: - pos: -7.295471,4.6883545 parent: 5016 type: Transform - - nextSound: 1140.9689355 - type: EmitSoundOnCollide - proto: Omnitool entities: - uid: 14946 @@ -82825,8 +82124,6 @@ entities: - pos: -11.538818,-0.796875 parent: 5016 type: Transform - - nextSound: 816.5379303 - type: EmitSoundOnCollide - proto: OxygenCanister entities: - uid: 5656 @@ -83021,22 +82318,16 @@ entities: - pos: -3.6578722,0.5394765 parent: 1 type: Transform - - nextSound: 724.7431147 - type: EmitSoundOnCollide - uid: 7222 components: - pos: -3.5953722,0.5394765 parent: 1 type: Transform - - nextSound: 725.1160862 - type: EmitSoundOnCollide - uid: 7223 components: - pos: -3.5328722,0.5394765 parent: 1 type: Transform - - nextSound: 725.5341142 - type: EmitSoundOnCollide - uid: 7292 components: - pos: -60.664387,89.61223 @@ -83067,8 +82358,6 @@ entities: - pos: -3.4703722,0.5238515 parent: 1 type: Transform - - nextSound: 725.9281273 - type: EmitSoundOnCollide - uid: 14200 components: - name: hastily scribbled note @@ -83088,8 +82377,6 @@ entities: type: Transform - content: "Still missing:\n \n2 knives (ask kitchen) for biomass reclaimer\n \nGlass, steel, & wires (make sure to bring some!)\n \nOther things to remember: One of their chem stations blew up. Getting parts for cloning's more important but keep it in mind.\n \nOh, and it looks like someone took the cloning boards recently. Only give these parts to med if they need them.\n \n- Research Director Samuel Mendez\n" type: Paper - - nextSound: 515.1956099 - type: EmitSoundOnCollide - canCollide: False type: Physics - type: InsideEntityStorage @@ -83103,8 +82390,6 @@ entities: - R.C. type: Paper - - nextSound: 52.7101011 - type: EmitSoundOnCollide - proto: PaperCaptainsThoughts entities: - uid: 10908 @@ -83276,8 +82561,6 @@ entities: - pos: -70.33955,16.634232 parent: 1 type: Transform - - nextSound: 1099.8644898 - type: EmitSoundOnCollide - uid: 3751 components: - pos: -46.321968,1.8882136 @@ -83623,8 +82906,6 @@ entities: - pos: -70.4958,16.634232 parent: 1 type: Transform - - nextSound: 1103.5555057 - type: EmitSoundOnCollide - uid: 14291 components: - pos: -70.305115,49.635986 @@ -83650,15 +82931,11 @@ entities: - pos: -70.58955,16.634232 parent: 1 type: Transform - - nextSound: 1103.9855151 - type: EmitSoundOnCollide - uid: 15794 components: - pos: -70.69892,16.649857 parent: 1 type: Transform - - nextSound: 1105.4495371 - type: EmitSoundOnCollide - proto: ParticleAcceleratorComputerCircuitboard entities: - uid: 9960 @@ -83678,15 +82955,11 @@ entities: - pos: -82.48612,29.602036 parent: 1 type: Transform - - nextSound: 445.4412835 - type: EmitSoundOnCollide - uid: 7392 components: - pos: -82.48612,29.602036 parent: 1 type: Transform - - nextSound: 445.5823008 - type: EmitSoundOnCollide - uid: 13607 components: - pos: -65.40672,25.564983 @@ -83702,22 +82975,16 @@ entities: - pos: -43.49778,-9.467924 parent: 1 type: Transform - - nextSound: 899.4799992 - type: EmitSoundOnCollide - uid: 15892 components: - pos: 8.487601,-20.49545 parent: 1 type: Transform - - nextSound: 4924.3331231 - type: EmitSoundOnCollide - uid: 15894 components: - pos: 8.690726,-20.636074 parent: 1 type: Transform - - nextSound: 4925.5631981 - type: EmitSoundOnCollide - proto: Pen entities: - uid: 7386 @@ -83725,8 +82992,6 @@ entities: - pos: -3.2828722,0.5082265 parent: 1 type: Transform - - nextSound: 740.9971394 - type: EmitSoundOnCollide - uid: 7649 components: - rot: -1.5707963267948966 rad @@ -83801,19 +83066,11 @@ entities: - pos: -42.607155,-9.499174 parent: 1 type: Transform - - nextAttack: 913.0515942 - type: MeleeWeapon - - nextSound: 913.2515942 - type: EmitSoundOnCollide - uid: 15787 components: - pos: -42.37278,-9.467924 parent: 1 type: Transform - - nextAttack: 914.6135531 - type: MeleeWeapon - - nextSound: 914.8135531 - type: EmitSoundOnCollide - proto: PillCanister entities: - uid: 1985 @@ -83993,8 +83250,6 @@ entities: - pos: -77.7388,42.76258 parent: 1 type: Transform - - nextAttack: 36.3192797 - type: MeleeWeapon - proto: PlasmaTankFilled entities: - uid: 9975 @@ -84053,10 +83308,6 @@ entities: - pos: 25.470646,41.49849 parent: 1 type: Transform - - nextSound: 3148.2863493 - type: EmitSoundOnCollide - - nextAttack: 3148.0863493 - type: MeleeWeapon - proto: PlushieSpaceLizard entities: - uid: 4709 @@ -84064,10 +83315,6 @@ entities: - pos: -92.400795,47.3703 parent: 1 type: Transform - - nextAttack: 1806.8520158 - type: MeleeWeapon - - nextSound: 1807.0520158 - type: EmitSoundOnCollide - uid: 5361 components: - pos: -54.508892,-1.4526689 @@ -84453,15 +83700,11 @@ entities: - pos: -37.797993,-9.327299 parent: 1 type: Transform - - nextSound: 935.1675463 - type: EmitSoundOnCollide - uid: 15790 components: - pos: -37.454243,-9.483549 parent: 1 type: Transform - - nextSound: 936.3905763 - type: EmitSoundOnCollide - proto: PowerCellMicroreactor entities: - uid: 15037 @@ -87374,15 +86617,11 @@ entities: - pos: 20.868422,-8.021761 parent: 1 type: Transform - - nextSound: 1035.5195858 - type: EmitSoundOnCollide - uid: 15946 components: - pos: 20.649672,-8.146761 parent: 1 type: Transform - - nextSound: 1036.2258194 - type: EmitSoundOnCollide - proto: Railing entities: - uid: 1056 @@ -90092,17 +89331,9 @@ entities: pos: -73.5,55.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 14233 - Forward: - - port: Left - uid: 14233 - Off: - - port: Middle - uid: 14233 - type: SignalReceiver + - links: + - 14233 + type: DeviceLinkSink - proto: ReinforcedGirder entities: - uid: 128 @@ -91816,8 +91047,6 @@ entities: - pos: -12.132568,-0.28125 parent: 5016 type: Transform - - nextSound: 827.4333223 - type: EmitSoundOnCollide - proto: RightFootSlime entities: - uid: 12034 @@ -91825,8 +91054,6 @@ entities: - pos: -12.273193,-0.59375 parent: 5016 type: Transform - - nextSound: 830.3042936 - type: EmitSoundOnCollide - proto: RightHandSlime entities: - uid: 14164 @@ -91834,8 +91061,6 @@ entities: - pos: -12.007568,-0.3125 parent: 5016 type: Transform - - nextSound: 835.572286 - type: EmitSoundOnCollide - proto: RightLegSlime entities: - uid: 12035 @@ -91843,8 +91068,6 @@ entities: - pos: -11.945068,-0.828125 parent: 5016 type: Transform - - nextSound: 823.5432927 - type: EmitSoundOnCollide - proto: RiotShield entities: - uid: 15978 @@ -91852,15 +91075,11 @@ entities: - pos: -43.839657,66.30231 parent: 1 type: Transform - - nextSound: 1956.0771744 - type: EmitSoundOnCollide - uid: 15980 components: - pos: -43.620907,66.30231 parent: 1 type: Transform - - nextSound: 1956.6601038 - type: EmitSoundOnCollide - proto: RubberStampApproved entities: - uid: 7583 @@ -91936,8 +91155,6 @@ entities: - pos: -11.304443,-0.375 parent: 5016 type: Transform - - nextSound: 805.4729255 - type: EmitSoundOnCollide - proto: SheetGlass entities: - uid: 262 @@ -92000,8 +91217,6 @@ entities: - pos: -2.5614014,-5.429352 parent: 5016 type: Transform - - nextSound: 1197.0304686 - type: EmitSoundOnCollide - proto: SheetPlasteel entities: - uid: 13603 @@ -92106,37 +91321,25 @@ entities: - pos: 0.5,3.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 340 - type: SignalReceiver + - links: + - 340 + type: DeviceLinkSink - uid: 215 components: - pos: 2.5,3.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 340 - type: SignalReceiver + - links: + - 340 + type: DeviceLinkSink - uid: 216 components: - pos: 1.5,3.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 340 - type: SignalReceiver + - links: + - 340 + type: DeviceLinkSink - uid: 1446 components: - pos: -10.5,11.5 @@ -92177,25 +91380,17 @@ entities: - pos: -51.5,34.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7077 - type: SignalReceiver + - links: + - 7077 + type: DeviceLinkSink - uid: 7076 components: - pos: -50.5,34.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7077 - type: SignalReceiver + - links: + - 7077 + type: DeviceLinkSink - uid: 7468 components: - pos: -53.5,80.5 @@ -92233,37 +91428,25 @@ entities: - pos: -70.5,18.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10701 - type: SignalReceiver + - links: + - 10701 + type: DeviceLinkSink - uid: 10699 components: - pos: -69.5,18.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10701 - type: SignalReceiver + - links: + - 10701 + type: DeviceLinkSink - uid: 10700 components: - pos: -68.5,18.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10701 - type: SignalReceiver + - links: + - 10701 + type: DeviceLinkSink - proto: ShuttersRadiationOpen entities: - uid: 9956 @@ -92271,37 +91454,25 @@ entities: - pos: -76.5,24.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9959 - type: SignalReceiver + - links: + - 9959 + type: DeviceLinkSink - uid: 9957 components: - pos: -76.5,25.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9959 - type: SignalReceiver + - links: + - 9959 + type: DeviceLinkSink - uid: 9958 components: - pos: -76.5,26.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9959 - type: SignalReceiver + - links: + - 9959 + type: DeviceLinkSink - proto: ShuttleConsoleCircuitboard entities: - uid: 15896 @@ -92309,8 +91480,6 @@ entities: - pos: 11.536212,-16.49545 parent: 1 type: Transform - - nextSound: 4867.3652851 - type: EmitSoundOnCollide - proto: SignalButton entities: - uid: 340 @@ -92319,115 +91488,109 @@ entities: pos: 0.5,-0.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 105 - - port: Toggle - uid: 216 - - port: Toggle - uid: 215 - type: SignalTransmitter + - linkedPorts: + 105: + - Pressed: Toggle + 216: + - Pressed: Toggle + 215: + - Pressed: Toggle + type: DeviceLinkSource - uid: 351 components: - rot: 3.141592653589793 rad pos: 3.5,-12.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 42 - type: SignalTransmitter + - linkedPorts: + 42: + - Pressed: Toggle + type: DeviceLinkSource - uid: 615 components: - pos: 17.5,-7.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 590 - type: SignalTransmitter + - linkedPorts: + 590: + - Pressed: Toggle + type: DeviceLinkSource - uid: 7077 components: - rot: 3.141592653589793 rad pos: -52.5,34.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7075 - - port: Toggle - uid: 7076 - type: SignalTransmitter + - linkedPorts: + 7075: + - Pressed: Toggle + 7076: + - Pressed: Toggle + type: DeviceLinkSource - uid: 7192 components: - rot: -1.5707963267948966 rad pos: -49.5,79.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7211 - - port: Toggle - uid: 7210 - - port: Toggle - uid: 7209 - - port: Toggle - uid: 7208 - - port: Toggle - uid: 7207 - - port: Toggle - uid: 7204 - - port: Toggle - uid: 7212 - - port: Toggle - uid: 7213 - - port: Toggle - uid: 7214 - - port: Toggle - uid: 7215 - - port: Toggle - uid: 7216 - - port: Toggle - uid: 7217 - type: SignalTransmitter + - linkedPorts: + 7211: + - Pressed: Toggle + 7210: + - Pressed: Toggle + 7209: + - Pressed: Toggle + 7208: + - Pressed: Toggle + 7207: + - Pressed: Toggle + 7204: + - Pressed: Toggle + 7212: + - Pressed: Toggle + 7213: + - Pressed: Toggle + 7214: + - Pressed: Toggle + 7215: + - Pressed: Toggle + 7216: + - Pressed: Toggle + 7217: + - Pressed: Toggle + type: DeviceLinkSource - uid: 7218 components: - rot: 1.5707963267948966 rad pos: -53.5,68.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7204 - - port: Toggle - uid: 7207 - - port: Toggle - uid: 7208 - - port: Toggle - uid: 7209 - - port: Toggle - uid: 7210 - - port: Toggle - uid: 7211 - - port: Toggle - uid: 7217 - - port: Toggle - uid: 7216 - - port: Toggle - uid: 7215 - - port: Toggle - uid: 7214 - - port: Toggle - uid: 7213 - - port: Toggle - uid: 7212 - type: SignalTransmitter + - linkedPorts: + 7204: + - Pressed: Toggle + 7207: + - Pressed: Toggle + 7208: + - Pressed: Toggle + 7209: + - Pressed: Toggle + 7210: + - Pressed: Toggle + 7211: + - Pressed: Toggle + 7217: + - Pressed: Toggle + 7216: + - Pressed: Toggle + 7215: + - Pressed: Toggle + 7214: + - Pressed: Toggle + 7213: + - Pressed: Toggle + 7212: + - Pressed: Toggle + type: DeviceLinkSource - uid: 7901 components: - name: armory button @@ -92436,197 +91599,187 @@ entities: pos: -45.5,61.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7899 - - port: Toggle - uid: 7900 - type: SignalTransmitter + - linkedPorts: + 7899: + - Pressed: Toggle + 7900: + - Pressed: Toggle + type: DeviceLinkSource - uid: 9959 components: - pos: -75.5,27.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9958 - - port: Toggle - uid: 9957 - - port: Toggle - uid: 9956 - type: SignalTransmitter + - linkedPorts: + 9958: + - Pressed: Toggle + 9957: + - Pressed: Toggle + 9956: + - Pressed: Toggle + type: DeviceLinkSource - uid: 10701 components: - pos: -71.5,18.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10698 - - port: Toggle - uid: 10699 - - port: Toggle - uid: 10700 - type: SignalTransmitter + - linkedPorts: + 10698: + - Pressed: Toggle + 10699: + - Pressed: Toggle + 10700: + - Pressed: Toggle + type: DeviceLinkSource - uid: 13361 components: - pos: -78.5,47.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13360 - type: SignalTransmitter + - linkedPorts: + 13360: + - Pressed: Toggle + type: DeviceLinkSource - uid: 13367 components: - pos: -71.5,57.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13366 - type: SignalTransmitter + - linkedPorts: + 13366: + - Pressed: Toggle + type: DeviceLinkSource - uid: 13821 components: - rot: 1.5707963267948966 rad pos: -36.5,-9.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13818 - - port: Toggle - uid: 13817 - type: SignalTransmitter + - linkedPorts: + 13818: + - Pressed: Toggle + 13817: + - Pressed: Toggle + type: DeviceLinkSource - uid: 13822 components: - rot: -1.5707963267948966 rad pos: -30.5,-9.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13819 - - port: Toggle - uid: 13820 - type: SignalTransmitter + - linkedPorts: + 13819: + - Pressed: Toggle + 13820: + - Pressed: Toggle + type: DeviceLinkSource - uid: 15185 components: - rot: 3.141592653589793 rad pos: 18.5,48.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15173 - - port: Toggle - uid: 15175 - - port: Toggle - uid: 15174 - - port: Toggle - uid: 15177 - - port: Toggle - uid: 15178 - - port: Toggle - uid: 15179 - - port: Toggle - uid: 15180 - - port: Toggle - uid: 15181 - - port: Toggle - uid: 15182 - - port: Toggle - uid: 15183 - - port: Toggle - uid: 15184 - - port: Toggle - uid: 15176 - type: SignalTransmitter + - linkedPorts: + 15173: + - Pressed: Toggle + 15175: + - Pressed: Toggle + 15174: + - Pressed: Toggle + 15177: + - Pressed: Toggle + 15178: + - Pressed: Toggle + 15179: + - Pressed: Toggle + 15180: + - Pressed: Toggle + 15181: + - Pressed: Toggle + 15182: + - Pressed: Toggle + 15183: + - Pressed: Toggle + 15184: + - Pressed: Toggle + 15176: + - Pressed: Toggle + type: DeviceLinkSource - uid: 15218 components: - pos: -15.5,66.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15217 - - port: Toggle - uid: 15216 - - port: Toggle - uid: 15215 - - port: Toggle - uid: 15214 - - port: Toggle - uid: 15212 - - port: Toggle - uid: 15213 - - port: Toggle - uid: 15211 - - port: Toggle - uid: 15210 - - port: Toggle - uid: 15209 - - port: Toggle - uid: 15208 - - port: Toggle - uid: 15207 - - port: Toggle - uid: 15206 - - port: Toggle - uid: 15205 - - port: Toggle - uid: 15204 - - port: Toggle - uid: 15203 - - port: Toggle - uid: 15202 - - port: Toggle - uid: 15201 - - port: Toggle - uid: 15200 - - port: Toggle - uid: 15199 - - port: Toggle - uid: 15198 - type: SignalTransmitter + - linkedPorts: + 15217: + - Pressed: Toggle + 15216: + - Pressed: Toggle + 15215: + - Pressed: Toggle + 15214: + - Pressed: Toggle + 15212: + - Pressed: Toggle + 15213: + - Pressed: Toggle + 15211: + - Pressed: Toggle + 15210: + - Pressed: Toggle + 15209: + - Pressed: Toggle + 15208: + - Pressed: Toggle + 15207: + - Pressed: Toggle + 15206: + - Pressed: Toggle + 15205: + - Pressed: Toggle + 15204: + - Pressed: Toggle + 15203: + - Pressed: Toggle + 15202: + - Pressed: Toggle + 15201: + - Pressed: Toggle + 15200: + - Pressed: Toggle + 15199: + - Pressed: Toggle + 15198: + - Pressed: Toggle + type: DeviceLinkSource - uid: 15219 components: - rot: 1.5707963267948966 rad pos: -10.5,60.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15197 - - port: Toggle - uid: 15196 - - port: Toggle - uid: 15195 - - port: Toggle - uid: 15194 - - port: Toggle - uid: 15193 - - port: Toggle - uid: 15192 - - port: Toggle - uid: 15191 - - port: Toggle - uid: 15190 - - port: Toggle - uid: 15189 - - port: Toggle - uid: 15188 - type: SignalTransmitter + - linkedPorts: + 15197: + - Pressed: Toggle + 15196: + - Pressed: Toggle + 15195: + - Pressed: Toggle + 15194: + - Pressed: Toggle + 15193: + - Pressed: Toggle + 15192: + - Pressed: Toggle + 15191: + - Pressed: Toggle + 15190: + - Pressed: Toggle + 15189: + - Pressed: Toggle + 15188: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignAnomaly entities: - uid: 325 @@ -93368,29 +92521,21 @@ entities: - pos: -7.5718555,8.615294 parent: 1 type: Transform - - nextSound: 2670.8496405 - type: EmitSoundOnCollide - uid: 15983 components: - pos: -7.2749805,8.599669 parent: 1 type: Transform - - nextSound: 2671.7308054 - type: EmitSoundOnCollide - uid: 15984 components: - pos: -7.3374805,8.490294 parent: 1 type: Transform - - nextSound: 2673.5055526 - type: EmitSoundOnCollide - uid: 15985 components: - pos: -7.6812305,8.552794 parent: 1 type: Transform - - nextSound: 2672.6135452 - type: EmitSoundOnCollide - proto: SolarPanel entities: - uid: 803 @@ -93677,8 +92822,6 @@ entities: - pos: -7.5093555,8.3066 parent: 1 type: Transform - - nextSound: 2678.4536615 - type: EmitSoundOnCollide - proto: SpaceTickSpawner entities: - uid: 14993 @@ -94464,10 +93607,6 @@ entities: - pos: -49.478313,9.54667 parent: 1 type: Transform - - nextAttack: 310.0400289 - type: MeleeWeapon - - nextSound: 310.2400289 - type: EmitSoundOnCollide - proto: SprayBottleSpaceCleaner entities: - uid: 7133 @@ -94618,43 +93757,31 @@ entities: - pos: -9.707703,-4.3320923 parent: 5016 type: Transform - - nextSound: 1112.2389351 - type: EmitSoundOnCollide - uid: 15592 components: - pos: -9.317078,-4.5352173 parent: 5016 type: Transform - - nextSound: 1112.6809665 - type: EmitSoundOnCollide - uid: 15593 components: - pos: -9.535828,-4.4570923 parent: 5016 type: Transform - - nextSound: 1113.8949395 - type: EmitSoundOnCollide - uid: 15594 components: - pos: -1.4420776,-7.1914673 parent: 5016 type: Transform - - nextSound: 1114.7959426 - type: EmitSoundOnCollide - uid: 15595 components: - pos: -1.6295776,-7.4414673 parent: 5016 type: Transform - - nextSound: 1115.5649352 - type: EmitSoundOnCollide - uid: 15596 components: - pos: -1.3952026,-7.5820923 parent: 5016 type: Transform - - nextSound: 1116.0239697 - type: EmitSoundOnCollide - proto: Stunbaton entities: - uid: 7999 @@ -95554,15 +94681,11 @@ entities: - pos: -7.0614014,-8.382477 parent: 5016 type: Transform - - nextSound: 1220.0454897 - type: EmitSoundOnCollide - uid: 15618 components: - pos: -6.8582764,-8.413727 parent: 5016 type: Transform - - nextSound: 1220.7914853 - type: EmitSoundOnCollide - proto: SyringeSpaceacillin entities: - uid: 2366 @@ -97957,10 +97080,6 @@ entities: - pos: -7.4985166,9.580302 parent: 1 type: Transform - - nextAttack: 2418.962414 - type: MeleeWeapon - - nextSound: 2419.162414 - type: EmitSoundOnCollide - uid: 1873 components: - pos: 25.496317,-7.483915 @@ -97971,26 +97090,16 @@ entities: - pos: -7.4985166,9.736552 parent: 1 type: Transform - - nextAttack: 2418.4623748 - type: MeleeWeapon - - nextSound: 2418.6623748 - type: EmitSoundOnCollide - uid: 5646 components: - pos: -25.110394,26.456669 parent: 1 type: Transform - - nextAttack: 216.4928841 - type: MeleeWeapon - uid: 5840 components: - pos: -82.51737,30.870302 parent: 1 type: Transform - - nextAttack: 459.0293612 - type: MeleeWeapon - - nextSound: 459.2293612 - type: EmitSoundOnCollide - uid: 13608 components: - pos: -63.54383,25.748787 @@ -98020,8 +97129,6 @@ entities: - pos: -23.241955,53.59838 parent: 1 type: Transform - - nextAttack: 992.3779356 - type: MeleeWeapon - proto: ToolboxMechanical entities: - uid: 4736 @@ -98029,28 +97136,16 @@ entities: - pos: -8.936694,44.61425 parent: 1 type: Transform - - nextAttack: 3928.1668951 - type: MeleeWeapon - - nextSound: 3928.3668951 - type: EmitSoundOnCollide - uid: 4738 components: - pos: -9.577319,44.598625 parent: 1 type: Transform - - nextAttack: 3926.9354055 - type: MeleeWeapon - - nextSound: 3927.1354055 - type: EmitSoundOnCollide - uid: 5002 components: - pos: -8.436694,44.55175 parent: 1 type: Transform - - nextAttack: 3929.4354046 - type: MeleeWeapon - - nextSound: 3929.6354046 - type: EmitSoundOnCollide - proto: ToolboxMechanicalFilled entities: - uid: 1465 @@ -98058,19 +97153,11 @@ entities: - pos: -7.51254,9.267802 parent: 1 type: Transform - - nextAttack: 2424.1281414 - type: MeleeWeapon - - nextSound: 2424.3281414 - type: EmitSoundOnCollide - uid: 5641 components: - pos: -7.51254,9.424052 parent: 1 type: Transform - - nextAttack: 2423.5644385 - type: MeleeWeapon - - nextSound: 2423.7644385 - type: EmitSoundOnCollide - uid: 5644 components: - pos: -25.165659,26.690647 @@ -98081,10 +97168,6 @@ entities: - pos: -82.51737,30.995302 parent: 1 type: Transform - - nextAttack: 463.4473204 - type: MeleeWeapon - - nextSound: 463.6473204 - type: EmitSoundOnCollide - uid: 10920 components: - pos: -11.49985,59.57393 @@ -98107,8 +97190,6 @@ entities: - pos: -11.866943,-0.46875 parent: 5016 type: Transform - - nextSound: 820.4922997 - type: EmitSoundOnCollide - proto: ToyDeathRipley entities: - uid: 3184 @@ -98222,15 +97303,11 @@ entities: - pos: -26.575481,55.467476 parent: 1 type: Transform - - nextSound: 71.2489562 - type: EmitSoundOnCollide - uid: 15837 components: - pos: -29.528606,53.2956 parent: 1 type: Transform - - nextSound: 70.565892 - type: EmitSoundOnCollide - proto: trayScanner entities: - uid: 15559 @@ -98259,189 +97336,128 @@ entities: - pos: -35.5,-8.5 parent: 1 type: Transform - - outputs: - Left: - - port: Forward - uid: 13829 - - port: Forward - uid: 13828 - - port: Forward - uid: 13827 - - port: Forward - uid: 13826 - - port: Forward - uid: 13825 - Right: - - port: Reverse - uid: 13829 - - port: Reverse - uid: 13828 - - port: Reverse - uid: 13827 - - port: Reverse - uid: 13826 - - port: Reverse - uid: 13825 - Middle: - - port: Off - uid: 13829 - - port: Off - uid: 13828 - - port: Off - uid: 13827 - - port: Off - uid: 13826 - - port: Off - uid: 13825 - type: SignalTransmitter + - linkedPorts: + 13829: + - Left: Forward + - Right: Reverse + - Middle: Off + 13828: + - Left: Forward + - Right: Reverse + - Middle: Off + 13827: + - Left: Forward + - Right: Reverse + - Middle: Off + 13826: + - Left: Forward + - Right: Reverse + - Middle: Off + 13825: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 13824 components: - pos: -31.5,-8.5 parent: 1 type: Transform - - outputs: - Left: - - port: Forward - uid: 13834 - - port: Forward - uid: 13833 - - port: Forward - uid: 13832 - - port: Forward - uid: 13831 - - port: Forward - uid: 13830 - Right: - - port: Reverse - uid: 13834 - - port: Reverse - uid: 13833 - - port: Reverse - uid: 13832 - - port: Reverse - uid: 13831 - - port: Reverse - uid: 13830 - Middle: - - port: Off - uid: 13834 - - port: Off - uid: 13833 - - port: Off - uid: 13832 - - port: Off - uid: 13831 - - port: Off - uid: 13830 - type: SignalTransmitter + - linkedPorts: + 13834: + - Left: Forward + - Right: Reverse + - Middle: Off + 13833: + - Left: Forward + - Right: Reverse + - Middle: Off + 13832: + - Left: Forward + - Right: Reverse + - Middle: Off + 13831: + - Left: Forward + - Right: Reverse + - Middle: Off + 13830: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 13842 components: - pos: -41.5,-9.5 parent: 1 type: Transform - - outputs: - Left: - - port: Forward - uid: 6793 - - port: Forward - uid: 6789 - - port: Forward - uid: 7282 - Right: - - port: Reverse - uid: 6793 - - port: Reverse - uid: 6789 - - port: Reverse - uid: 7282 - Middle: - - port: Off - uid: 6793 - - port: Off - uid: 6789 - - port: Off - uid: 7282 - type: SignalTransmitter + - linkedPorts: + 6793: + - Left: Forward + - Right: Reverse + - Middle: Off + 6789: + - Left: Forward + - Right: Reverse + - Middle: Off + 7282: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 13843 components: - pos: -38.5,-7.5 parent: 1 type: Transform - - outputs: - Left: - - port: Forward - uid: 7282 - - port: Forward - uid: 6789 - - port: Forward - uid: 6793 - Right: - - port: Reverse - uid: 7282 - - port: Reverse - uid: 6789 - - port: Reverse - uid: 6793 - Middle: - - port: Off - uid: 7282 - - port: Off - uid: 6789 - - port: Off - uid: 6793 - type: SignalTransmitter + - linkedPorts: + 7282: + - Left: Forward + - Right: Reverse + - Middle: Off + 6789: + - Left: Forward + - Right: Reverse + - Middle: Off + 6793: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 14233 components: - pos: -70.5,55.5 parent: 1 type: Transform - - outputs: - Left: - - port: Forward - uid: 14225 - - port: Forward - uid: 14226 - - port: Forward - uid: 14224 - - port: Forward - uid: 14227 - - port: Forward - uid: 14228 - - port: Forward - uid: 14229 - - port: Forward - uid: 14230 - Right: - - port: Reverse - uid: 14225 - - port: Reverse - uid: 14226 - - port: Reverse - uid: 14224 - - port: Reverse - uid: 14227 - - port: Reverse - uid: 14228 - - port: Reverse - uid: 14229 - - port: Reverse - uid: 14230 - Middle: - - port: Off - uid: 14225 - - port: Off - uid: 14226 - - port: Off - uid: 14224 - - port: Off - uid: 14227 - - port: Off - uid: 14228 - - port: Off - uid: 14229 - - port: Off - uid: 14230 - type: SignalTransmitter + - linkedPorts: + 14225: + - Left: Forward + - Right: Reverse + - Middle: Off + 14226: + - Left: Forward + - Right: Reverse + - Middle: Off + 14224: + - Left: Forward + - Right: Reverse + - Middle: Off + 14227: + - Left: Forward + - Right: Reverse + - Middle: Off + 14228: + - Left: Forward + - Right: Reverse + - Middle: Off + 14229: + - Left: Forward + - Right: Reverse + - Middle: Off + 14230: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - proto: UnfinishedMachineFrame entities: - uid: 5187 @@ -98558,8 +97574,6 @@ entities: - pos: -78.5,29.5 parent: 1 type: Transform - - nextEmpEject: 530.4413518 - type: VendingMachine - proto: VendingMachineBooze entities: - uid: 6339 @@ -98720,8 +97734,6 @@ entities: - pos: -46.5,8.5 parent: 1 type: Transform - - nextEmpEject: 159.7465022 - type: VendingMachine - proto: VendingMachineCoffee entities: - uid: 2662 @@ -98752,8 +97764,6 @@ entities: - pos: 19.5,37.5 parent: 1 type: Transform - - nextEmpEject: 2953.9035541 - type: VendingMachine - uid: 7241 components: - flags: SessionSpecific @@ -98994,8 +98004,6 @@ entities: - pos: -14.5,12.5 parent: 1 type: Transform - - nextEmpEject: 2931.7355937 - type: VendingMachine - uid: 15572 components: - flags: SessionSpecific @@ -99046,8 +98054,6 @@ entities: - pos: -37.5,-11.5 parent: 1 type: Transform - - nextEmpEject: 8.3650878 - type: VendingMachine - proto: VendingMachineSciDrobe entities: - uid: 242 @@ -99155,8 +98161,6 @@ entities: - pos: 20.5,37.5 parent: 1 type: Transform - - nextEmpEject: 2966.1870196 - type: VendingMachine - proto: VendingMachineTankDispenserEngineering entities: - uid: 9210 @@ -99241,8 +98245,6 @@ entities: - pos: -46.5,10.5 parent: 1 type: Transform - - nextEmpEject: 1690.1291762 - type: VendingMachine - uid: 7342 components: - flags: SessionSpecific @@ -99250,8 +98252,6 @@ entities: - pos: -6.5,30.5 parent: 1 type: Transform - - nextEmpEject: 42.701212 - type: VendingMachine - proto: VendingMachineYouTool entities: - uid: 5346 @@ -111494,10 +110494,6 @@ entities: - pos: 20.337172,-7.3498864 parent: 1 type: Transform - - nextFire: 1029.7572637 - type: Gun - - nextSound: 1029.9572637 - type: EmitSoundOnCollide - proto: WeaponLaserCarbine entities: - uid: 8357 @@ -111598,10 +110594,6 @@ entities: - pos: -82.43898,31.548532 parent: 1 type: Transform - - nextAttack: 1501.2828903 - type: MeleeWeapon - - nextSound: 1501.4828903 - type: EmitSoundOnCollide - proto: WeldingFuelTankFull entities: - uid: 3565 @@ -112146,54 +111138,18 @@ entities: pos: -57.5,52.5 parent: 1 type: Transform - - inputs: - Open: - - port: Timer - uid: 4985 - Close: - - port: Start - uid: 4985 - Toggle: [] - AutoClose: - - port: Timer - uid: 4985 - type: SignalReceiver - uid: 7872 components: - rot: 3.141592653589793 rad pos: -54.5,52.5 parent: 1 type: Transform - - inputs: - Open: - - port: Timer - uid: 4986 - Close: - - port: Start - uid: 4986 - Toggle: [] - AutoClose: - - port: Timer - uid: 4986 - type: SignalReceiver - uid: 7873 components: - rot: 3.141592653589793 rad pos: -51.5,52.5 parent: 1 type: Transform - - inputs: - Open: - - port: Timer - uid: 4987 - Close: - - port: Start - uid: 4987 - Toggle: [] - AutoClose: - - port: Timer - uid: 4987 - type: SignalReceiver - uid: 13318 components: - rot: 3.141592653589793 rad @@ -113159,8 +112115,6 @@ entities: - pos: -24.486898,29.543127 parent: 1 type: Transform - - nextAttack: 238.3761285 - type: MeleeWeapon - proto: YellowOxygenTank entities: - uid: 14198 @@ -113168,8 +112122,6 @@ entities: - pos: -77.3013,42.445312 parent: 1 type: Transform - - nextAttack: 28.9193093 - type: MeleeWeapon - proto: Zipties entities: - uid: 2797 @@ -113177,17 +112129,9 @@ entities: - pos: -17.390333,10.483195 parent: 1 type: Transform - - nextAttack: 2625.0873814 - type: MeleeWeapon - - nextSound: 2625.2873814 - type: EmitSoundOnCollide - uid: 4203 components: - pos: -17.624708,10.608195 parent: 1 type: Transform - - nextAttack: 2624.3779765 - type: MeleeWeapon - - nextSound: 2624.5779766 - type: EmitSoundOnCollide ... diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index 7ee277d363..606ffa63b3 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -7552,15 +7552,7 @@ entities: - 0 chunkSize: 4 type: GridAtmosphere - - joints: - docking46345: !type:WeldJoint - bodyB: 11906 - bodyA: 8364 - id: docking46345 - localAnchorB: -0.5,-1 - localAnchorA: -66.5,22 - damping: 42.40074 - stiffness: 380.58823 + - joints: {} type: Joint - type: OccluderTree - type: Shuttle @@ -7603,15 +7595,7 @@ entities: version: 2 nodes: [] type: DecalGrid - - joints: - docking46345: !type:WeldJoint - bodyB: 11906 - bodyA: 8364 - id: docking46345 - localAnchorB: -0.5,-1 - localAnchorA: -66.5,22 - damping: 42.40074 - stiffness: 380.58823 + - joints: {} type: Joint - type: OccluderTree - type: Shuttle @@ -14613,13 +14597,9 @@ entities: - pos: 27.5,-41.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22020 - type: SignalReceiver + - links: + - 22020 + type: DeviceLinkSink - uid: 3568 components: - name: Incinerator Vent @@ -14646,89 +14626,57 @@ entities: - pos: 82.5,-26.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5370 - type: SignalReceiver + - links: + - 5370 + type: DeviceLinkSink - uid: 9182 components: - pos: 5.5,36.5 parent: 8364 type: Transform - - inputs: - Open: - - port: Left - uid: 19935 - - port: Right - uid: 19935 - Close: - - port: Middle - uid: 19935 - Toggle: [] - type: SignalReceiver + - links: + - 19935 + type: DeviceLinkSink - uid: 13910 components: - pos: -61.5,-21.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2638 - type: SignalReceiver + - links: + - 2638 + type: DeviceLinkSink - uid: 17145 components: - pos: -10.5,-62.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17146 - type: SignalReceiver + - links: + - 17146 + type: DeviceLinkSink - uid: 17147 components: - pos: -10.5,-63.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17146 - type: SignalReceiver + - links: + - 17146 + type: DeviceLinkSink - uid: 18326 components: - pos: -44.5,-27.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17791 - type: SignalReceiver + - links: + - 17791 + type: DeviceLinkSink - uid: 18327 components: - pos: -44.5,-31.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17791 - type: SignalReceiver + - links: + - 17791 + type: DeviceLinkSink - uid: 19994 components: - pos: 93.5,-25.5 @@ -14744,37 +14692,25 @@ entities: - pos: 70.5,-39.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19856 - type: SignalReceiver + - links: + - 19856 + type: DeviceLinkSink - uid: 20181 components: - pos: 70.5,-40.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19856 - type: SignalReceiver + - links: + - 19856 + type: DeviceLinkSink - uid: 20182 components: - pos: 70.5,-41.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19856 - type: SignalReceiver + - links: + - 19856 + type: DeviceLinkSink - uid: 20518 components: - pos: 87.5,-38.5 @@ -14785,13 +14721,9 @@ entities: - pos: 53.5,-52.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20866 - type: SignalReceiver + - links: + - 20866 + type: DeviceLinkSink - proto: BlastDoorOpen entities: - uid: 5898 @@ -14799,97 +14731,65 @@ entities: - pos: -10.5,-8.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11625 - type: SignalReceiver + - links: + - 11625 + type: DeviceLinkSink - uid: 5911 components: - pos: -10.5,-9.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11625 - type: SignalReceiver + - links: + - 11625 + type: DeviceLinkSink - uid: 6086 components: - pos: -10.5,-7.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11625 - type: SignalReceiver + - links: + - 11625 + type: DeviceLinkSink - uid: 6087 components: - pos: 9.5,-7.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11628 - type: SignalReceiver + - links: + - 11628 + type: DeviceLinkSink - uid: 6098 components: - pos: 9.5,-8.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11628 - type: SignalReceiver + - links: + - 11628 + type: DeviceLinkSink - uid: 6099 components: - pos: 9.5,-9.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11628 - type: SignalReceiver + - links: + - 11628 + type: DeviceLinkSink - uid: 19930 components: - pos: -4.5,33.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19933 - type: SignalReceiver + - links: + - 19933 + type: DeviceLinkSink - uid: 19932 components: - pos: -5.5,33.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19933 - type: SignalReceiver + - links: + - 19933 + type: DeviceLinkSink - proto: BlockGameArcade entities: - uid: 1924 @@ -15629,40 +15529,16 @@ entities: - pos: -3.5,25.5 parent: 8364 type: Transform - - outputs: - Start: - - port: Close - uid: 8624 - Timer: - - port: Open - uid: 8624 - type: SignalTransmitter - uid: 25829 components: - pos: -7.5,25.5 parent: 8364 type: Transform - - outputs: - Start: - - port: Close - uid: 8625 - Timer: - - port: Open - uid: 8625 - type: SignalTransmitter - uid: 26575 components: - pos: -11.5,25.5 parent: 8364 type: Transform - - outputs: - Start: - - port: Close - uid: 8626 - Timer: - - port: Open - uid: 8626 - type: SignalTransmitter - proto: Bucket entities: - uid: 10718 @@ -77157,11 +77033,6 @@ entities: - pos: 71.5,-43.5 parent: 8364 type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 21199 - type: SignalTransmitter - proto: computerBodyScanner entities: - uid: 19054 @@ -77673,254 +77544,134 @@ entities: pos: -41.5,-27.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 20027 - Forward: - - port: Left - uid: 20027 - Off: - - port: Middle - uid: 20027 - type: SignalReceiver + - links: + - 20027 + type: DeviceLinkSink - uid: 6226 components: - rot: -1.5707963267948966 rad pos: -60.5,-15.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver + - links: + - 13893 + type: DeviceLinkSink - uid: 6227 components: - rot: -1.5707963267948966 rad pos: -59.5,-15.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver + - links: + - 13893 + type: DeviceLinkSink - uid: 6228 components: - pos: -57.5,-15.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver + - links: + - 13893 + type: DeviceLinkSink - uid: 6229 components: - rot: -1.5707963267948966 rad pos: -57.5,-16.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver + - links: + - 13893 + type: DeviceLinkSink - uid: 6230 components: - rot: -1.5707963267948966 rad pos: -58.5,-16.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver + - links: + - 13893 + type: DeviceLinkSink - uid: 6231 components: - rot: -1.5707963267948966 rad pos: -59.5,-16.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver + - links: + - 13893 + type: DeviceLinkSink - uid: 6232 components: - rot: -1.5707963267948966 rad pos: -60.5,-16.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver + - links: + - 13893 + type: DeviceLinkSink - uid: 6233 components: - rot: 3.141592653589793 rad pos: -61.5,-16.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver + - links: + - 13893 + type: DeviceLinkSink - uid: 6234 components: - rot: 3.141592653589793 rad pos: -61.5,-17.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver + - links: + - 13893 + type: DeviceLinkSink - uid: 6235 components: - rot: 3.141592653589793 rad pos: -61.5,-18.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver + - links: + - 13893 + type: DeviceLinkSink - uid: 6236 components: - rot: 3.141592653589793 rad pos: -61.5,-19.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver + - links: + - 13893 + type: DeviceLinkSink - uid: 7162 components: - rot: -1.5707963267948966 rad pos: -43.5,-31.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11322 - Forward: - - port: Left - uid: 11322 - Off: - - port: Middle - uid: 11322 - type: SignalReceiver + - links: + - 11322 + type: DeviceLinkSink - uid: 7213 components: - rot: -1.5707963267948966 rad pos: -44.5,-31.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11322 - Forward: - - port: Left - uid: 11322 - Off: - - port: Middle - uid: 11322 - type: SignalReceiver + - links: + - 11322 + type: DeviceLinkSink - uid: 7307 components: - rot: -1.5707963267948966 rad pos: -41.5,-31.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11322 - Forward: - - port: Left - uid: 11322 - Off: - - port: Middle - uid: 11322 - type: SignalReceiver + - links: + - 11322 + type: DeviceLinkSink - uid: 7622 components: - rot: 3.141592653589793 rad @@ -77933,17 +77684,9 @@ entities: pos: -42.5,-27.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 20027 - Forward: - - port: Left - uid: 20027 - Off: - - port: Middle - uid: 20027 - type: SignalReceiver + - links: + - 20027 + type: DeviceLinkSink - uid: 9475 components: - rot: -1.5707963267948966 rad @@ -77962,136 +77705,72 @@ entities: pos: -42.5,-31.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11322 - Forward: - - port: Left - uid: 11322 - Off: - - port: Middle - uid: 11322 - type: SignalReceiver + - links: + - 11322 + type: DeviceLinkSink - uid: 10535 components: - rot: -1.5707963267948966 rad pos: -40.5,-31.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11322 - Forward: - - port: Left - uid: 11322 - Off: - - port: Middle - uid: 11322 - type: SignalReceiver + - links: + - 11322 + type: DeviceLinkSink - uid: 10536 components: - rot: -1.5707963267948966 rad pos: -39.5,-31.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11322 - Forward: - - port: Left - uid: 11322 - Off: - - port: Middle - uid: 11322 - type: SignalReceiver + - links: + - 11322 + type: DeviceLinkSink - uid: 10804 components: - rot: -1.5707963267948966 rad pos: -37.5,-31.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11322 - Forward: - - port: Left - uid: 11322 - Off: - - port: Middle - uid: 11322 - type: SignalReceiver + - links: + - 11322 + type: DeviceLinkSink - uid: 11321 components: - rot: 1.5707963267948966 rad pos: -44.5,-27.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 20027 - Forward: - - port: Left - uid: 20027 - Off: - - port: Middle - uid: 20027 - type: SignalReceiver + - links: + - 20027 + type: DeviceLinkSink - uid: 11325 components: - rot: -1.5707963267948966 rad pos: -38.5,-31.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11322 - Forward: - - port: Left - uid: 11322 - Off: - - port: Middle - uid: 11322 - type: SignalReceiver + - links: + - 11322 + type: DeviceLinkSink - uid: 13812 components: - rot: 3.141592653589793 rad pos: -61.5,-20.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver + - links: + - 13893 + type: DeviceLinkSink - uid: 17202 components: - rot: 1.5707963267948966 rad pos: -43.5,-27.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 20027 - Forward: - - port: Left - uid: 20027 - Off: - - port: Middle - uid: 20027 - type: SignalReceiver + - links: + - 20027 + type: DeviceLinkSink - uid: 20048 components: - pos: 90.5,-26.5 @@ -132348,11 +132027,6 @@ entities: - pos: 71.5,-40.5 parent: 8364 type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 17552 - type: SignalReceiver - proto: MachineFrame entities: - uid: 17860 @@ -142562,17 +142236,9 @@ entities: - pos: -58.5,-15.5 parent: 8364 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver + - links: + - 13893 + type: DeviceLinkSink - proto: ReinforcedPlasmaWindow entities: - uid: 2277 @@ -147783,568 +147449,380 @@ entities: - pos: 20.5,-15.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14147 - type: SignalReceiver + - links: + - 14147 + type: DeviceLinkSink - uid: 3001 components: - pos: 19.5,-15.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14147 - type: SignalReceiver + - links: + - 14147 + type: DeviceLinkSink - uid: 5336 components: - rot: -1.5707963267948966 rad pos: -14.5,-13.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5222 - type: SignalReceiver + - links: + - 5222 + type: DeviceLinkSink - uid: 5338 components: - rot: -1.5707963267948966 rad pos: -14.5,-14.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5222 - type: SignalReceiver + - links: + - 5222 + type: DeviceLinkSink - uid: 5590 components: - pos: -12.5,-24.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20896 - type: SignalReceiver + - links: + - 20896 + type: DeviceLinkSink - uid: 5591 components: - pos: -12.5,-23.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20896 - type: SignalReceiver + - links: + - 20896 + type: DeviceLinkSink - uid: 5592 components: - pos: -12.5,-22.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20896 - type: SignalReceiver + - links: + - 20896 + type: DeviceLinkSink - uid: 8158 components: - pos: 6.5,-23.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 27222 - type: SignalReceiver + - links: + - 27222 + type: DeviceLinkSink - uid: 8606 components: - pos: 3.5,23.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver + - links: + - 19931 + type: DeviceLinkSink - uid: 8607 components: - pos: 3.5,24.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver + - links: + - 19931 + type: DeviceLinkSink - uid: 8614 components: - pos: 2.5,22.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver + - links: + - 19931 + type: DeviceLinkSink - uid: 8615 components: - pos: 1.5,22.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver + - links: + - 19931 + type: DeviceLinkSink - uid: 9639 components: - pos: -2.5,16.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9421 - type: SignalReceiver + - links: + - 9421 + type: DeviceLinkSink - uid: 9640 components: - pos: -2.5,15.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9421 - type: SignalReceiver + - links: + - 9421 + type: DeviceLinkSink - uid: 9641 components: - pos: -2.5,14.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9421 - type: SignalReceiver + - links: + - 9421 + type: DeviceLinkSink - uid: 9642 components: - pos: -5.5,18.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9421 - type: SignalReceiver + - links: + - 9421 + type: DeviceLinkSink - uid: 14148 components: - pos: 21.5,-15.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14147 - type: SignalReceiver + - links: + - 14147 + type: DeviceLinkSink - uid: 16553 components: - pos: 2.5,-45.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4878 - type: SignalReceiver + - links: + - 4878 + type: DeviceLinkSink - uid: 16554 components: - pos: 2.5,-44.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4878 - type: SignalReceiver + - links: + - 4878 + type: DeviceLinkSink - uid: 16555 components: - pos: 2.5,-43.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4878 - type: SignalReceiver + - links: + - 4878 + type: DeviceLinkSink - uid: 17173 components: - pos: 9.5,-62.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17170 - type: SignalReceiver + - links: + - 17170 + type: DeviceLinkSink - uid: 17174 components: - pos: 7.5,-62.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17170 - type: SignalReceiver + - links: + - 17170 + type: DeviceLinkSink - uid: 17175 components: - pos: 8.5,-62.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17170 - type: SignalReceiver + - links: + - 17170 + type: DeviceLinkSink - uid: 17577 components: - pos: 3.5,-58.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15518 - type: SignalReceiver + - links: + - 15518 + type: DeviceLinkSink - uid: 17578 components: - pos: 4.5,-58.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15518 - type: SignalReceiver + - links: + - 15518 + type: DeviceLinkSink - uid: 17579 components: - pos: 5.5,-58.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15518 - type: SignalReceiver + - links: + - 15518 + type: DeviceLinkSink - uid: 17580 components: - pos: 6.5,-60.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15518 - type: SignalReceiver + - links: + - 15518 + type: DeviceLinkSink - uid: 17581 components: - pos: 6.5,-61.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15518 - type: SignalReceiver + - links: + - 15518 + type: DeviceLinkSink - uid: 17582 components: - pos: 4.5,-64.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15518 - type: SignalReceiver + - links: + - 15518 + type: DeviceLinkSink - uid: 17583 components: - pos: 3.5,-64.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15518 - type: SignalReceiver + - links: + - 15518 + type: DeviceLinkSink - uid: 19022 components: - pos: 23.5,-17.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14147 - type: SignalReceiver + - links: + - 14147 + type: DeviceLinkSink - uid: 19023 components: - pos: 23.5,-18.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14147 - type: SignalReceiver + - links: + - 14147 + type: DeviceLinkSink - uid: 19024 components: - pos: 23.5,-19.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14147 - type: SignalReceiver + - links: + - 14147 + type: DeviceLinkSink - uid: 19086 components: - pos: 42.5,-44.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19294 - type: SignalReceiver + - links: + - 19294 + type: DeviceLinkSink - uid: 19295 components: - pos: 42.5,-46.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19294 - type: SignalReceiver + - links: + - 19294 + type: DeviceLinkSink - uid: 22014 components: - rot: -1.5707963267948966 rad pos: -14.5,-15.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5222 - type: SignalReceiver + - links: + - 5222 + type: DeviceLinkSink - uid: 26786 components: - pos: -5.5,-3.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26795 - type: SignalReceiver + - links: + - 26795 + type: DeviceLinkSink - uid: 26787 components: - pos: -4.5,-3.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26795 - type: SignalReceiver + - links: + - 26795 + type: DeviceLinkSink - uid: 26788 components: - pos: -2.5,-3.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26795 - type: SignalReceiver + - links: + - 26795 + type: DeviceLinkSink - uid: 26789 components: - pos: -1.5,-3.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26795 - type: SignalReceiver + - links: + - 26795 + type: DeviceLinkSink - uid: 26790 components: - pos: -0.5,-3.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26795 - type: SignalReceiver + - links: + - 26795 + type: DeviceLinkSink - uid: 26791 components: - pos: 0.5,-3.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26795 - type: SignalReceiver + - links: + - 26795 + type: DeviceLinkSink - uid: 26792 components: - pos: 1.5,-3.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26795 - type: SignalReceiver + - links: + - 26795 + type: DeviceLinkSink - uid: 26793 components: - pos: 4.5,-3.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26795 - type: SignalReceiver + - links: + - 26795 + type: DeviceLinkSink - uid: 26794 components: - pos: 3.5,-3.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26795 - type: SignalReceiver + - links: + - 26795 + type: DeviceLinkSink - uid: 27220 components: - pos: 7.5,-23.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 27222 - type: SignalReceiver + - links: + - 27222 + type: DeviceLinkSink - uid: 27221 components: - pos: 8.5,-23.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 27222 - type: SignalReceiver + - links: + - 27222 + type: DeviceLinkSink - proto: ShuttersWindow entities: - uid: 1416 @@ -148361,241 +147839,161 @@ entities: - pos: 18.5,23.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9936 - type: SignalReceiver + - links: + - 9936 + type: DeviceLinkSink - uid: 8645 components: - pos: 17.5,23.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9936 - type: SignalReceiver + - links: + - 9936 + type: DeviceLinkSink - uid: 8646 components: - pos: 16.5,23.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9936 - type: SignalReceiver + - links: + - 9936 + type: DeviceLinkSink - uid: 8647 components: - pos: 15.5,23.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9936 - type: SignalReceiver + - links: + - 9936 + type: DeviceLinkSink - uid: 8648 components: - pos: 14.5,23.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9936 - type: SignalReceiver + - links: + - 9936 + type: DeviceLinkSink - uid: 8649 components: - pos: 13.5,23.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9936 - type: SignalReceiver + - links: + - 9936 + type: DeviceLinkSink - uid: 8650 components: - pos: 12.5,23.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9936 - type: SignalReceiver + - links: + - 9936 + type: DeviceLinkSink - uid: 8775 components: - pos: -10.5,22.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver + - links: + - 19931 + type: DeviceLinkSink - uid: 8776 components: - pos: -9.5,22.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver + - links: + - 19931 + type: DeviceLinkSink - uid: 8777 components: - pos: -8.5,22.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver + - links: + - 19931 + type: DeviceLinkSink - uid: 8778 components: - pos: -6.5,22.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver + - links: + - 19931 + type: DeviceLinkSink - uid: 8779 components: - pos: -5.5,22.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver + - links: + - 19931 + type: DeviceLinkSink - uid: 8780 components: - pos: -4.5,22.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver + - links: + - 19931 + type: DeviceLinkSink - uid: 8781 components: - pos: -2.5,22.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver + - links: + - 19931 + type: DeviceLinkSink - uid: 8782 components: - pos: -1.5,22.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver + - links: + - 19931 + type: DeviceLinkSink - uid: 8783 components: - pos: -0.5,22.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver + - links: + - 19931 + type: DeviceLinkSink - uid: 10454 components: - pos: 35.5,-10.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9868 - type: SignalReceiver + - links: + - 9868 + type: DeviceLinkSink - uid: 10455 components: - pos: 36.5,-10.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9868 - type: SignalReceiver + - links: + - 9868 + type: DeviceLinkSink - uid: 10456 components: - pos: 37.5,-10.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9868 - type: SignalReceiver + - links: + - 9868 + type: DeviceLinkSink - uid: 10457 components: - pos: 38.5,-10.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9868 - type: SignalReceiver + - links: + - 9868 + type: DeviceLinkSink - uid: 20837 components: - pos: 61.5,-16.5 @@ -148616,85 +148014,57 @@ entities: - pos: 69.5,-16.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5478 - type: SignalReceiver + - links: + - 5478 + type: DeviceLinkSink - uid: 20841 components: - pos: 70.5,-16.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5478 - type: SignalReceiver + - links: + - 5478 + type: DeviceLinkSink - uid: 20842 components: - pos: 71.5,-16.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5478 - type: SignalReceiver + - links: + - 5478 + type: DeviceLinkSink - uid: 20843 components: - pos: 68.5,-22.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5478 - type: SignalReceiver + - links: + - 5478 + type: DeviceLinkSink - uid: 20844 components: - pos: 68.5,-23.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5478 - type: SignalReceiver + - links: + - 5478 + type: DeviceLinkSink - uid: 20845 components: - pos: 68.5,-24.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5478 - type: SignalReceiver + - links: + - 5478 + type: DeviceLinkSink - uid: 20846 components: - pos: 68.5,-28.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5478 - type: SignalReceiver + - links: + - 5478 + type: DeviceLinkSink - uid: 20847 components: - pos: 68.5,-29.5 @@ -148705,13 +148075,9 @@ entities: - pos: 68.5,-30.5 parent: 8364 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5478 - type: SignalReceiver + - links: + - 5478 + type: DeviceLinkSink - uid: 20849 components: - pos: 64.5,-22.5 @@ -148770,331 +148136,310 @@ entities: - pos: -60.5,-19.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13910 - type: SignalTransmitter + - linkedPorts: + 13910: + - Pressed: Toggle + type: DeviceLinkSource - uid: 4878 components: - pos: 4.5,-46.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 16553 - - port: Toggle - uid: 16554 - - port: Toggle - uid: 16555 - type: SignalTransmitter + - linkedPorts: + 16553: + - Pressed: Toggle + 16554: + - Pressed: Toggle + 16555: + - Pressed: Toggle + type: DeviceLinkSource - uid: 5222 components: - pos: -10.5,-10.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5336 - - port: Toggle - uid: 5338 - - port: Toggle - uid: 22014 - type: SignalTransmitter + - linkedPorts: + 5336: + - Pressed: Toggle + 5338: + - Pressed: Toggle + 22014: + - Pressed: Toggle + type: DeviceLinkSource - uid: 5370 components: - pos: 81.5,-26.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5373 - type: SignalTransmitter + - linkedPorts: + 5373: + - Pressed: Toggle + type: DeviceLinkSource - uid: 5478 components: - pos: 68.5,-20.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 20840 - - port: Toggle - uid: 20841 - - port: Toggle - uid: 20842 - - port: Toggle - uid: 20843 - - port: Toggle - uid: 20844 - - port: Toggle - uid: 20845 - - port: Toggle - uid: 20846 - - port: Toggle - uid: 20848 - type: SignalTransmitter + - linkedPorts: + 20840: + - Pressed: Toggle + 20841: + - Pressed: Toggle + 20842: + - Pressed: Toggle + 20843: + - Pressed: Toggle + 20844: + - Pressed: Toggle + 20845: + - Pressed: Toggle + 20846: + - Pressed: Toggle + 20848: + - Pressed: Toggle + type: DeviceLinkSource - uid: 9421 components: - pos: -7.5,14.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9642 - - port: Toggle - uid: 9639 - - port: Toggle - uid: 9640 - - port: Toggle - uid: 9641 - type: SignalTransmitter + - linkedPorts: + 9642: + - Pressed: Toggle + 9639: + - Pressed: Toggle + 9640: + - Pressed: Toggle + 9641: + - Pressed: Toggle + type: DeviceLinkSource - uid: 9868 components: - pos: 34.5,-3.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10454 - - port: Toggle - uid: 10455 - - port: Toggle - uid: 10456 - - port: Toggle - uid: 10457 - type: SignalTransmitter + - linkedPorts: + 10454: + - Pressed: Toggle + 10455: + - Pressed: Toggle + 10456: + - Pressed: Toggle + 10457: + - Pressed: Toggle + type: DeviceLinkSource - uid: 9936 components: - pos: 14.5,29.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 8650 - - port: Toggle - uid: 8649 - - port: Toggle - uid: 8648 - - port: Toggle - uid: 8647 - - port: Toggle - uid: 8646 - - port: Toggle - uid: 8645 - - port: Toggle - uid: 8644 - type: SignalTransmitter + - linkedPorts: + 8650: + - Pressed: Toggle + 8649: + - Pressed: Toggle + 8648: + - Pressed: Toggle + 8647: + - Pressed: Toggle + 8646: + - Pressed: Toggle + 8645: + - Pressed: Toggle + 8644: + - Pressed: Toggle + type: DeviceLinkSource - uid: 11625 components: - pos: -6.5,-5.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6086 - - port: Toggle - uid: 5898 - - port: Toggle - uid: 5911 - type: SignalTransmitter + - linkedPorts: + 6086: + - Pressed: Toggle + 5898: + - Pressed: Toggle + 5911: + - Pressed: Toggle + type: DeviceLinkSource - uid: 11628 components: - pos: 5.5,-5.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6087 - - port: Toggle - uid: 6098 - - port: Toggle - uid: 6099 - type: SignalTransmitter + - linkedPorts: + 6087: + - Pressed: Toggle + 6098: + - Pressed: Toggle + 6099: + - Pressed: Toggle + type: DeviceLinkSource - uid: 14147 components: - pos: 23.5,-21.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 19024 - - port: Toggle - uid: 19023 - - port: Toggle - uid: 19022 - - port: Toggle - uid: 14148 - - port: Toggle - uid: 2941 - - port: Toggle - uid: 3001 - type: SignalTransmitter + - linkedPorts: + 19024: + - Pressed: Toggle + 19023: + - Pressed: Toggle + 19022: + - Pressed: Toggle + 14148: + - Pressed: Toggle + 2941: + - Pressed: Toggle + 3001: + - Pressed: Toggle + type: DeviceLinkSource - uid: 15518 components: - pos: 2.5,-58.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 17577 - - port: Toggle - uid: 17578 - - port: Toggle - uid: 17579 - - port: Toggle - uid: 17583 - - port: Toggle - uid: 17582 - - port: Toggle - uid: 17580 - - port: Toggle - uid: 17581 - type: SignalTransmitter + - linkedPorts: + 17577: + - Pressed: Toggle + 17578: + - Pressed: Toggle + 17579: + - Pressed: Toggle + 17583: + - Pressed: Toggle + 17582: + - Pressed: Toggle + 17580: + - Pressed: Toggle + 17581: + - Pressed: Toggle + type: DeviceLinkSource - uid: 17146 components: - pos: -10.5,-64.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 17147 - - port: Toggle - uid: 17145 - type: SignalTransmitter + - linkedPorts: + 17147: + - Pressed: Toggle + 17145: + - Pressed: Toggle + type: DeviceLinkSource - uid: 17170 components: - pos: 6.5,-63.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 17174 - - port: Toggle - uid: 17175 - - port: Toggle - uid: 17173 - type: SignalTransmitter + - linkedPorts: + 17174: + - Pressed: Toggle + 17175: + - Pressed: Toggle + 17173: + - Pressed: Toggle + type: DeviceLinkSource - uid: 17791 components: - pos: -42.5,-29.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 18327 - - port: Toggle - uid: 18326 - type: SignalTransmitter + - linkedPorts: + 18327: + - Pressed: Toggle + 18326: + - Pressed: Toggle + type: DeviceLinkSource - uid: 19294 components: - pos: 45.5,-46.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 19295 - - port: Toggle - uid: 19086 - type: SignalTransmitter + - linkedPorts: + 19295: + - Pressed: Toggle + 19086: + - Pressed: Toggle + type: DeviceLinkSource - uid: 19856 components: - pos: 75.5,-41.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 20182 - - port: Toggle - uid: 20181 - - port: Toggle - uid: 20180 - type: SignalTransmitter + - linkedPorts: + 20182: + - Pressed: Toggle + 20181: + - Pressed: Toggle + 20180: + - Pressed: Toggle + type: DeviceLinkSource - uid: 19931 components: - pos: 0.5,25.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 8783 - - port: Toggle - uid: 8782 - - port: Toggle - uid: 8781 - - port: Toggle - uid: 8780 - - port: Toggle - uid: 8779 - - port: Toggle - uid: 8778 - - port: Toggle - uid: 8777 - - port: Toggle - uid: 8776 - - port: Toggle - uid: 8775 - - port: Toggle - uid: 8615 - - port: Toggle - uid: 8614 - - port: Toggle - uid: 8606 - - port: Toggle - uid: 8607 - type: SignalTransmitter + - linkedPorts: + 8783: + - Pressed: Toggle + 8782: + - Pressed: Toggle + 8781: + - Pressed: Toggle + 8780: + - Pressed: Toggle + 8779: + - Pressed: Toggle + 8778: + - Pressed: Toggle + 8777: + - Pressed: Toggle + 8776: + - Pressed: Toggle + 8775: + - Pressed: Toggle + 8615: + - Pressed: Toggle + 8614: + - Pressed: Toggle + 8606: + - Pressed: Toggle + 8607: + - Pressed: Toggle + type: DeviceLinkSource - uid: 19933 components: - pos: -3.5,33.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 19930 - - port: Toggle - uid: 19932 - type: SignalTransmitter + - linkedPorts: + 19930: + - Pressed: Toggle + 19932: + - Pressed: Toggle + type: DeviceLinkSource - uid: 20866 components: - pos: 56.5,-47.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 20667 - type: SignalTransmitter + - linkedPorts: + 20667: + - Pressed: Toggle + type: DeviceLinkSource - uid: 20896 components: - pos: -6.5,-21.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5592 - - port: Toggle - uid: 5591 - - port: Toggle - uid: 5590 - type: SignalTransmitter + - linkedPorts: + 5592: + - Pressed: Toggle + 5591: + - Pressed: Toggle + 5590: + - Pressed: Toggle + type: DeviceLinkSource - uid: 22020 components: - name: Waste Tank Blast Door @@ -149102,51 +148447,48 @@ entities: - pos: 22.5,-39.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 3535 - type: SignalTransmitter + - linkedPorts: + 3535: + - Pressed: Toggle + type: DeviceLinkSource - uid: 26795 components: - pos: -1.5,-5.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 26786 - - port: Toggle - uid: 26787 - - port: Toggle - uid: 26788 - - port: Toggle - uid: 26789 - - port: Toggle - uid: 26790 - - port: Toggle - uid: 26791 - - port: Toggle - uid: 26792 - - port: Toggle - uid: 26794 - - port: Toggle - uid: 26793 - type: SignalTransmitter + - linkedPorts: + 26786: + - Pressed: Toggle + 26787: + - Pressed: Toggle + 26788: + - Pressed: Toggle + 26789: + - Pressed: Toggle + 26790: + - Pressed: Toggle + 26791: + - Pressed: Toggle + 26792: + - Pressed: Toggle + 26794: + - Pressed: Toggle + 26793: + - Pressed: Toggle + type: DeviceLinkSource - uid: 27222 components: - pos: 9.5,-22.5 parent: 8364 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 27221 - - port: Toggle - uid: 27220 - - port: Toggle - uid: 8158 - type: SignalTransmitter + - linkedPorts: + 27221: + - Pressed: Toggle + 27220: + - Pressed: Toggle + 8158: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignalButtonWindows entities: - uid: 26610 @@ -158110,197 +157452,133 @@ entities: - pos: -40.5,-30.5 parent: 8364 type: Transform - - outputs: - Left: - - port: Forward - uid: 7213 - - port: Forward - uid: 7162 - - port: Forward - uid: 9935 - - port: Forward - uid: 7307 - - port: Forward - uid: 10535 - - port: Forward - uid: 10536 - - port: Forward - uid: 11325 - - port: Forward - uid: 10804 - Right: - - port: Reverse - uid: 7213 - - port: Reverse - uid: 7162 - - port: Reverse - uid: 9935 - - port: Reverse - uid: 7307 - - port: Reverse - uid: 10535 - - port: Reverse - uid: 10536 - - port: Reverse - uid: 11325 - - port: Reverse - uid: 10804 - Middle: - - port: Off - uid: 7213 - - port: Off - uid: 7162 - - port: Off - uid: 9935 - - port: Off - uid: 7307 - - port: Off - uid: 10535 - - port: Off - uid: 10536 - - port: Off - uid: 11325 - - port: Off - uid: 10804 - type: SignalTransmitter + - linkedPorts: + 7213: + - Left: Forward + - Right: Reverse + - Middle: Off + 7162: + - Left: Forward + - Right: Reverse + - Middle: Off + 9935: + - Left: Forward + - Right: Reverse + - Middle: Off + 7307: + - Left: Forward + - Right: Reverse + - Middle: Off + 10535: + - Left: Forward + - Right: Reverse + - Middle: Off + 10536: + - Left: Forward + - Right: Reverse + - Middle: Off + 11325: + - Left: Forward + - Right: Reverse + - Middle: Off + 10804: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 13893 components: - pos: -59.5,-18.5 parent: 8364 type: Transform - - outputs: - Left: - - port: Forward - uid: 6232 - - port: Forward - uid: 6231 - - port: Forward - uid: 6230 - - port: Forward - uid: 6229 - - port: Forward - uid: 6228 - - port: Forward - uid: 6225 - - port: Forward - uid: 6227 - - port: Forward - uid: 6226 - - port: Forward - uid: 6233 - - port: Forward - uid: 6234 - - port: Forward - uid: 6235 - - port: Forward - uid: 6236 - - port: Forward - uid: 13812 - Right: - - port: Reverse - uid: 6232 - - port: Reverse - uid: 6231 - - port: Reverse - uid: 6230 - - port: Reverse - uid: 6229 - - port: Reverse - uid: 6228 - - port: Reverse - uid: 6225 - - port: Reverse - uid: 6227 - - port: Reverse - uid: 6226 - - port: Reverse - uid: 6233 - - port: Reverse - uid: 6234 - - port: Reverse - uid: 6235 - - port: Reverse - uid: 6236 - - port: Reverse - uid: 13812 - Middle: - - port: Off - uid: 6232 - - port: Off - uid: 6231 - - port: Off - uid: 6230 - - port: Off - uid: 6229 - - port: Off - uid: 6228 - - port: Off - uid: 6225 - - port: Off - uid: 6227 - - port: Off - uid: 6226 - - port: Off - uid: 6233 - - port: Off - uid: 6234 - - port: Off - uid: 6235 - - port: Off - uid: 6236 - - port: Off - uid: 13812 - type: SignalTransmitter + - linkedPorts: + 6232: + - Left: Forward + - Right: Reverse + - Middle: Off + 6231: + - Left: Forward + - Right: Reverse + - Middle: Off + 6230: + - Left: Forward + - Right: Reverse + - Middle: Off + 6229: + - Left: Forward + - Right: Reverse + - Middle: Off + 6228: + - Left: Forward + - Right: Reverse + - Middle: Off + 6225: + - Left: Forward + - Right: Reverse + - Middle: Off + 6227: + - Left: Forward + - Right: Reverse + - Middle: Off + 6226: + - Left: Forward + - Right: Reverse + - Middle: Off + 6233: + - Left: Forward + - Right: Reverse + - Middle: Off + 6234: + - Left: Forward + - Right: Reverse + - Middle: Off + 6235: + - Left: Forward + - Right: Reverse + - Middle: Off + 6236: + - Left: Forward + - Right: Reverse + - Middle: Off + 13812: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 19935 components: - pos: 4.5,36.5 parent: 8364 type: Transform - - outputs: - Left: - - port: Open - uid: 9182 - Right: - - port: Open - uid: 9182 - Middle: - - port: Close - uid: 9182 - type: SignalTransmitter + - linkedPorts: + 9182: + - Left: Open + - Right: Open + - Middle: Close + type: DeviceLinkSource - uid: 20027 components: - pos: -41.5,-26.5 parent: 8364 type: Transform - - outputs: - Left: - - port: Forward - uid: 11321 - - port: Forward - uid: 17202 - - port: Forward - uid: 8017 - - port: Forward - uid: 3062 - Right: - - port: Reverse - uid: 11321 - - port: Reverse - uid: 17202 - - port: Reverse - uid: 8017 - - port: Reverse - uid: 3062 - Middle: - - port: Off - uid: 11321 - - port: Off - uid: 17202 - - port: Off - uid: 8017 - - port: Off - uid: 3062 - type: SignalTransmitter + - linkedPorts: + 11321: + - Left: Forward + - Right: Reverse + - Middle: Off + 17202: + - Left: Forward + - Right: Reverse + - Middle: Off + 8017: + - Left: Forward + - Right: Reverse + - Middle: Off + 3062: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 20049 components: - pos: 88.5,-25.5 @@ -179729,16 +179007,6 @@ entities: - pos: -1.5,25.5 parent: 8364 type: Transform - - inputs: - Open: - - port: Timer - uid: 8743 - Close: - - port: Start - uid: 8743 - Toggle: [] - AutoClose: [] - type: SignalReceiver - uid: 8625 components: - name: Cell 2 @@ -179746,16 +179014,6 @@ entities: - pos: -5.5,25.5 parent: 8364 type: Transform - - inputs: - Open: - - port: Timer - uid: 25829 - Close: - - port: Start - uid: 25829 - Toggle: [] - AutoClose: [] - type: SignalReceiver - uid: 8626 components: - name: Cell 1 @@ -179763,16 +179021,6 @@ entities: - pos: -9.5,25.5 parent: 8364 type: Transform - - inputs: - Open: - - port: Timer - uid: 26575 - Close: - - port: Start - uid: 26575 - Toggle: [] - AutoClose: [] - type: SignalReceiver - uid: 8973 components: - pos: -4.5,40.5 diff --git a/Resources/Maps/centcomm.yml b/Resources/Maps/centcomm.yml index 169ea5f0ad..aa686ba3ec 100644 --- a/Resources/Maps/centcomm.yml +++ b/Resources/Maps/centcomm.yml @@ -2620,12 +2620,11 @@ entities: - type: OccluderTree - type: Shuttle - type: RadiationGridResistance - - nextShake: 0 - shakeTimes: 10 + - shakeTimes: 10 type: GravityShake - type: GasTileOverlay - - nextUpdate: 0 - type: SpreaderGrid + - type: SpreaderGrid + - type: GridPathfinding - proto: AcousticGuitarInstrument entities: - uid: 1455 @@ -3709,145 +3708,97 @@ entities: - pos: -4.5,21.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1804 - type: SignalReceiver + - links: + - 1804 + type: DeviceLinkSink - uid: 1607 components: - pos: -16.5,24.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1611 - type: SignalReceiver + - links: + - 1611 + type: DeviceLinkSink - uid: 1608 components: - pos: -16.5,28.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1612 - type: SignalReceiver + - links: + - 1612 + type: DeviceLinkSink - uid: 1609 components: - pos: -14.5,28.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1612 - type: SignalReceiver + - links: + - 1612 + type: DeviceLinkSink - uid: 1610 components: - pos: -14.5,24.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1611 - type: SignalReceiver + - links: + - 1611 + type: DeviceLinkSink - uid: 2790 components: - pos: 11.5,31.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2928 - type: SignalReceiver + - links: + - 2928 + type: DeviceLinkSink - uid: 2886 components: - pos: 14.5,31.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2928 - type: SignalReceiver + - links: + - 2928 + type: DeviceLinkSink - uid: 2925 components: - pos: 7.5,31.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2927 - type: SignalReceiver + - links: + - 2927 + type: DeviceLinkSink - uid: 2926 components: - pos: 4.5,31.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2927 - type: SignalReceiver + - links: + - 2927 + type: DeviceLinkSink - uid: 3787 components: - pos: -16.5,-7.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3906 - type: SignalReceiver + - links: + - 3906 + type: DeviceLinkSink - uid: 3788 components: - pos: -16.5,-6.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3906 - type: SignalReceiver + - links: + - 3906 + type: DeviceLinkSink - uid: 3789 components: - pos: -16.5,-5.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3906 - type: SignalReceiver + - links: + - 3906 + type: DeviceLinkSink - uid: 4762 components: - pos: 18.5,-17.5 @@ -3887,61 +3838,41 @@ entities: - pos: 7.5,-2.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1435 - type: SignalReceiver + - links: + - 1435 + type: DeviceLinkSink - uid: 717 components: - pos: 7.5,-1.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1435 - type: SignalReceiver + - links: + - 1435 + type: DeviceLinkSink - uid: 718 components: - pos: 7.5,-0.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1435 - type: SignalReceiver + - links: + - 1435 + type: DeviceLinkSink - uid: 719 components: - pos: 7.5,0.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1435 - type: SignalReceiver + - links: + - 1435 + type: DeviceLinkSink - uid: 720 components: - pos: 7.5,1.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1435 - type: SignalReceiver + - links: + - 1435 + type: DeviceLinkSink - proto: BlastDoorOpen entities: - uid: 786 @@ -3949,199 +3880,132 @@ entities: - pos: -1.5,-7.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 789 - - port: Pressed - uid: 1436 - type: SignalReceiver + - links: + - 789 + - 1436 + type: DeviceLinkSink - uid: 787 components: - pos: -0.5,-7.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 789 - - port: Pressed - uid: 1436 - type: SignalReceiver + - links: + - 789 + - 1436 + type: DeviceLinkSink - uid: 788 components: - pos: 0.5,-7.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 789 - - port: Pressed - uid: 1436 - type: SignalReceiver + - links: + - 789 + - 1436 + type: DeviceLinkSink - uid: 1430 components: - pos: -1.5,6.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1434 - type: SignalReceiver + - links: + - 1434 + type: DeviceLinkSink - uid: 1431 components: - pos: -0.5,6.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1434 - type: SignalReceiver + - links: + - 1434 + type: DeviceLinkSink - uid: 1432 components: - pos: 0.5,6.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1434 - type: SignalReceiver + - links: + - 1434 + type: DeviceLinkSink - uid: 1437 components: - pos: -8.5,-2.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6602 - type: SignalReceiver + - links: + - 6602 + type: DeviceLinkSink - uid: 1438 components: - pos: -8.5,-1.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6602 - type: SignalReceiver + - links: + - 6602 + type: DeviceLinkSink - uid: 1439 components: - pos: -8.5,-0.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6602 - type: SignalReceiver + - links: + - 6602 + type: DeviceLinkSink - uid: 1440 components: - pos: -8.5,0.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6602 - type: SignalReceiver + - links: + - 6602 + type: DeviceLinkSink - uid: 1441 components: - pos: -8.5,1.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6602 - type: SignalReceiver + - links: + - 6602 + type: DeviceLinkSink - uid: 2146 components: - pos: 4.5,10.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2712 - type: SignalReceiver + - links: + - 2712 + type: DeviceLinkSink - uid: 2147 components: - pos: 4.5,11.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2712 - type: SignalReceiver + - links: + - 2712 + type: DeviceLinkSink - uid: 2148 components: - pos: 4.5,12.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2712 - type: SignalReceiver + - links: + - 2712 + type: DeviceLinkSink - uid: 2149 components: - pos: 4.5,13.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2712 - type: SignalReceiver + - links: + - 2712 + type: DeviceLinkSink - uid: 2150 components: - pos: 4.5,14.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2712 - type: SignalReceiver + - links: + - 2712 + type: DeviceLinkSink - uid: 3864 components: - pos: -27.5,-1.5 @@ -4162,97 +4026,65 @@ entities: - pos: 28.5,-25.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5242 - type: SignalReceiver + - links: + - 5242 + type: DeviceLinkSink - uid: 5235 components: - pos: 28.5,-24.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5242 - type: SignalReceiver + - links: + - 5242 + type: DeviceLinkSink - uid: 5236 components: - pos: 28.5,-23.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5242 - type: SignalReceiver + - links: + - 5242 + type: DeviceLinkSink - uid: 5237 components: - pos: 28.5,-22.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5242 - type: SignalReceiver + - links: + - 5242 + type: DeviceLinkSink - uid: 5238 components: - pos: 28.5,-21.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5242 - type: SignalReceiver + - links: + - 5242 + type: DeviceLinkSink - uid: 5239 components: - pos: 31.5,-19.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5242 - type: SignalReceiver + - links: + - 5242 + type: DeviceLinkSink - uid: 5240 components: - pos: 33.5,-19.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5242 - type: SignalReceiver + - links: + - 5242 + type: DeviceLinkSink - uid: 5241 components: - pos: 32.5,-19.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5242 - type: SignalReceiver + - links: + - 5242 + type: DeviceLinkSink - uid: 5951 components: - pos: -16.5,-27.5 @@ -4283,61 +4115,41 @@ entities: - pos: -2.5,-39.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6442 - type: SignalReceiver + - links: + - 6442 + type: DeviceLinkSink - uid: 6522 components: - pos: -1.5,-39.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6442 - type: SignalReceiver + - links: + - 6442 + type: DeviceLinkSink - uid: 6523 components: - pos: -0.5,-39.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6442 - type: SignalReceiver + - links: + - 6442 + type: DeviceLinkSink - uid: 6524 components: - pos: 0.5,-39.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6442 - type: SignalReceiver + - links: + - 6442 + type: DeviceLinkSink - uid: 6525 components: - pos: 1.5,-39.5 parent: 1668 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6442 - type: SignalReceiver + - links: + - 6442 + type: DeviceLinkSink - proto: BookBase entities: - uid: 1456 @@ -4685,120 +4497,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 858 components: - pos: 20.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 859 components: - pos: 20.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 860 components: - pos: 20.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 861 components: - pos: 20.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 862 components: - pos: 21.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 863 components: - pos: 22.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 864 components: - pos: 23.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 865 components: - pos: 24.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 866 components: - pos: 25.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 867 components: - pos: 26.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 868 components: - pos: 27.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 869 components: - pos: 28.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 870 components: - pos: 29.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 871 components: - pos: 30.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 872 components: - pos: 31.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 873 components: - pos: 32.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 874 components: - pos: 33.5,2.5 @@ -4806,8 +4584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 875 components: - pos: 34.5,2.5 @@ -4815,92 +4591,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 876 components: - pos: 21.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 877 components: - pos: 22.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 878 components: - pos: 23.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 879 components: - pos: 24.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 880 components: - pos: 25.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 881 components: - pos: 26.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 882 components: - pos: 27.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 883 components: - pos: 28.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 884 components: - pos: 29.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 885 components: - pos: 30.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 886 components: - pos: 31.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 887 components: - pos: 32.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 888 components: - pos: 33.5,4.5 @@ -4908,15 +4658,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 889 components: - pos: 26.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 890 components: - pos: 30.5,6.5 @@ -4924,8 +4670,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 891 components: - pos: 28.5,6.5 @@ -4933,15 +4677,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 892 components: - pos: 20.5,-2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 893 components: - pos: 24.5,7.5 @@ -4949,36 +4689,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 894 components: - pos: 20.5,-1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 895 components: - pos: 20.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 896 components: - pos: 32.5,1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 897 components: - pos: 32.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 899 components: - pos: 29.5,6.5 @@ -4986,8 +4716,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 900 components: - pos: 28.5,7.5 @@ -4995,15 +4723,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 901 components: - pos: 31.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 902 components: - pos: 24.5,6.5 @@ -5011,8 +4735,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 903 components: - pos: 23.5,6.5 @@ -5020,8 +4742,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 904 components: - pos: 22.5,6.5 @@ -5029,8 +4749,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 906 components: - pos: 20.5,-7.5 @@ -5038,120 +4756,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 907 components: - pos: 20.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 908 components: - pos: 20.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 909 components: - pos: 20.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 910 components: - pos: 20.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 911 components: - pos: 21.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 912 components: - pos: 22.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 913 components: - pos: 23.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 914 components: - pos: 24.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 915 components: - pos: 25.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 916 components: - pos: 26.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 917 components: - pos: 27.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 918 components: - pos: 28.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 919 components: - pos: 29.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 920 components: - pos: 30.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 921 components: - pos: 31.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 922 components: - pos: 32.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 923 components: - pos: 33.5,-3.5 @@ -5159,8 +4843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 924 components: - pos: 34.5,-3.5 @@ -5168,92 +4850,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 925 components: - pos: 21.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 926 components: - pos: 22.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 927 components: - pos: 23.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 928 components: - pos: 24.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 929 components: - pos: 25.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 930 components: - pos: 26.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 931 components: - pos: 27.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 932 components: - pos: 28.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 933 components: - pos: 29.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 934 components: - pos: 30.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 935 components: - pos: 31.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 936 components: - pos: 32.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 937 components: - pos: 33.5,-5.5 @@ -5261,15 +4917,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 938 components: - pos: 31.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 939 components: - pos: 31.5,-7.5 @@ -5277,8 +4929,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 940 components: - pos: 21.5,-7.5 @@ -5286,8 +4936,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 941 components: - pos: 21.5,6.5 @@ -5295,8 +4943,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 942 components: - pos: 31.5,6.5 @@ -5304,8 +4950,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 943 components: - pos: 33.5,3.5 @@ -5313,8 +4957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 944 components: - pos: 33.5,5.5 @@ -5322,8 +4964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 945 components: - pos: 33.5,1.5 @@ -5331,8 +4971,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 946 components: - pos: 35.5,2.5 @@ -5340,8 +4978,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 947 components: - pos: 35.5,1.5 @@ -5349,8 +4985,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 948 components: - pos: 35.5,3.5 @@ -5358,8 +4992,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 949 components: - pos: 35.5,4.5 @@ -5367,8 +4999,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 950 components: - pos: 35.5,5.5 @@ -5376,8 +5006,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 951 components: - pos: 35.5,-3.5 @@ -5385,8 +5013,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 952 components: - pos: 35.5,-2.5 @@ -5394,8 +5020,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 953 components: - pos: 35.5,-4.5 @@ -5403,8 +5027,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 954 components: - pos: 35.5,-5.5 @@ -5412,8 +5034,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 955 components: - pos: 35.5,-6.5 @@ -5421,8 +5041,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 956 components: - pos: 33.5,-6.5 @@ -5430,8 +5048,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 957 components: - pos: 33.5,-4.5 @@ -5439,8 +5055,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 958 components: - pos: 33.5,-2.5 @@ -5448,8 +5062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 959 components: - pos: 34.5,-2.5 @@ -5457,8 +5069,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 960 components: - pos: 34.5,-1.5 @@ -5466,8 +5076,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 961 components: - pos: 34.5,0.5 @@ -5475,8 +5083,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 962 components: - pos: 34.5,1.5 @@ -5484,8 +5090,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 964 components: - pos: 23.5,-10.5 @@ -5493,85 +5097,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 965 components: - pos: 24.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 966 components: - pos: 25.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 967 components: - pos: 26.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 968 components: - pos: 26.5,-9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 969 components: - pos: 26.5,-8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 970 components: - pos: 26.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 971 components: - pos: 22.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 972 components: - pos: 22.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 973 components: - pos: 21.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 975 components: - pos: 20.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 976 components: - pos: 32.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 980 components: - pos: 9.5,2.5 @@ -5579,99 +5159,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 981 components: - pos: 9.5,1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 982 components: - pos: 9.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 983 components: - pos: 9.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 984 components: - pos: 9.5,-1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 985 components: - pos: 9.5,-2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 986 components: - pos: 10.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 987 components: - pos: 11.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 988 components: - pos: 12.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 989 components: - pos: 13.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 990 components: - pos: 14.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 991 components: - pos: 15.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 992 components: - pos: 15.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 993 components: - pos: 16.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 994 components: - pos: 16.5,-0.5 @@ -5679,15 +5231,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 995 components: - pos: 17.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 996 components: - pos: 18.5,-0.5 @@ -5695,8 +5243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 997 components: - pos: 8.5,-0.5 @@ -5704,15 +5250,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 998 components: - pos: 5.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 999 components: - pos: 6.5,-0.5 @@ -5720,8 +5262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1000 components: - pos: 10.5,-3.5 @@ -5729,85 +5269,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1001 components: - pos: 10.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1002 components: - pos: 10.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1003 components: - pos: 10.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1004 components: - pos: 10.5,-7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1005 components: - pos: 11.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1006 components: - pos: 12.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1007 components: - pos: 13.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1008 components: - pos: 14.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1009 components: - pos: 15.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1010 components: - pos: 16.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1011 components: - pos: 17.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1012 components: - pos: 17.5,-5.5 @@ -5815,22 +5331,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1013 components: - pos: 13.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1014 components: - pos: 13.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1015 components: - pos: 13.5,-3.5 @@ -5838,15 +5348,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1016 components: - pos: 12.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1017 components: - pos: 11.5,-3.5 @@ -5854,15 +5360,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1018 components: - pos: 14.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1019 components: - pos: 15.5,-3.5 @@ -5870,8 +5372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1020 components: - pos: 12.5,7.5 @@ -5879,36 +5379,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1021 components: - pos: 12.5,6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1022 components: - pos: 12.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1023 components: - pos: 12.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1024 components: - pos: 12.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1025 components: - pos: 12.5,2.5 @@ -5916,8 +5406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1026 components: - pos: 13.5,2.5 @@ -5925,8 +5413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1027 components: - pos: 14.5,2.5 @@ -5934,8 +5420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1028 components: - pos: 15.5,2.5 @@ -5943,8 +5427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1029 components: - pos: 11.5,2.5 @@ -5952,43 +5434,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1030 components: - pos: 13.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1031 components: - pos: 14.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1032 components: - pos: 15.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1033 components: - pos: 16.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1034 components: - pos: 17.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1035 components: - pos: 17.5,4.5 @@ -5996,8 +5466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1036 components: - pos: 17.5,6.5 @@ -6005,8 +5473,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1037 components: - pos: 13.5,7.5 @@ -6014,8 +5480,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1038 components: - pos: 14.5,7.5 @@ -6023,8 +5487,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1039 components: - pos: 11.5,7.5 @@ -6032,8 +5494,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1040 components: - pos: 10.5,7.5 @@ -6041,8 +5501,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1041 components: - pos: 9.5,7.5 @@ -6050,29 +5508,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1042 components: - pos: 11.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1043 components: - pos: 10.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1044 components: - pos: 9.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1045 components: - pos: 8.5,5.5 @@ -6080,15 +5530,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1046 components: - pos: 9.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1047 components: - pos: 8.5,4.5 @@ -6096,22 +5542,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1048 components: - pos: 8.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1049 components: - pos: 7.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1050 components: - pos: 7.5,4.5 @@ -6119,8 +5559,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1051 components: - pos: 12.5,8.5 @@ -6128,8 +5566,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1052 components: - pos: 12.5,9.5 @@ -6137,8 +5573,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1053 components: - pos: 13.5,9.5 @@ -6146,8 +5580,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1054 components: - pos: 14.5,9.5 @@ -6155,8 +5587,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1055 components: - pos: 11.5,9.5 @@ -6164,8 +5594,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1056 components: - pos: 10.5,9.5 @@ -6173,8 +5601,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1057 components: - pos: 9.5,9.5 @@ -6182,8 +5608,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1058 components: - pos: 8.5,9.5 @@ -6191,8 +5615,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1059 components: - pos: 7.5,9.5 @@ -6200,8 +5622,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1060 components: - pos: 6.5,9.5 @@ -6209,8 +5629,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1061 components: - pos: 8.5,8.5 @@ -6218,50 +5636,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1062 components: - pos: 28.5,1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1063 components: - pos: 28.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1064 components: - pos: 28.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1068 components: - pos: 24.5,-2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1069 components: - pos: 24.5,-1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1070 components: - pos: 24.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1089 components: - pos: -2.5,2.5 @@ -6269,78 +5673,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1090 components: - pos: -2.5,1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1091 components: - pos: -2.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1092 components: - pos: -2.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1093 components: - pos: -2.5,-1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1094 components: - pos: -1.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1095 components: - pos: -0.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1096 components: - pos: 0.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1097 components: - pos: 1.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1098 components: - pos: 2.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1099 components: - pos: 2.5,1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1100 components: - pos: 2.5,2.5 @@ -6348,8 +5730,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1101 components: - pos: 3.5,2.5 @@ -6357,8 +5737,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1102 components: - pos: 3.5,1.5 @@ -6366,15 +5744,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1103 components: - pos: -3.5,1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1104 components: - pos: -4.5,1.5 @@ -6382,8 +5756,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1105 components: - pos: -4.5,2.5 @@ -6391,8 +5763,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1106 components: - pos: -3.5,2.5 @@ -6400,8 +5770,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1107 components: - pos: -1.5,2.5 @@ -6409,8 +5777,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1108 components: - pos: -0.5,2.5 @@ -6418,8 +5784,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1109 components: - pos: 0.5,2.5 @@ -6427,15 +5791,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1110 components: - pos: -3.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1111 components: - pos: -4.5,-0.5 @@ -6443,8 +5803,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1112 components: - pos: -4.5,-1.5 @@ -6452,8 +5810,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1113 components: - pos: -4.5,-2.5 @@ -6461,15 +5817,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1114 components: - pos: -2.5,-2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1115 components: - pos: -2.5,-3.5 @@ -6477,8 +5829,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1116 components: - pos: -3.5,-3.5 @@ -6486,29 +5836,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1117 components: - pos: -1.5,-1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1118 components: - pos: -0.5,-1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1119 components: - pos: -0.5,-2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1120 components: - pos: -0.5,-3.5 @@ -6516,29 +5858,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1121 components: - pos: 0.5,-1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1122 components: - pos: 1.5,-1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1123 components: - pos: 2.5,-1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1124 components: - pos: 3.5,-1.5 @@ -6546,8 +5880,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1125 components: - pos: 3.5,-0.5 @@ -6555,8 +5887,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1126 components: - pos: 3.5,-2.5 @@ -6564,15 +5894,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1127 components: - pos: 1.5,-2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1128 components: - pos: 1.5,-3.5 @@ -6580,8 +5906,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1129 components: - pos: 2.5,-3.5 @@ -6589,15 +5913,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1137 components: - pos: 21.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1202 components: - pos: 10.5,-8.5 @@ -6605,8 +5925,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1203 components: - pos: 11.5,-8.5 @@ -6614,8 +5932,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1204 components: - pos: 9.5,-8.5 @@ -6623,15 +5939,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1205 components: - pos: 14.5,-7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1206 components: - pos: 14.5,-8.5 @@ -6639,8 +5951,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1207 components: - pos: 15.5,-8.5 @@ -6648,8 +5958,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1208 components: - pos: 13.5,-8.5 @@ -6657,8 +5965,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1209 components: - pos: 12.5,-10.5 @@ -6666,8 +5972,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1210 components: - pos: 12.5,-9.5 @@ -6675,8 +5979,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1211 components: - pos: 13.5,-10.5 @@ -6684,8 +5986,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1212 components: - pos: 14.5,-10.5 @@ -6693,8 +5993,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1213 components: - pos: 15.5,-10.5 @@ -6702,8 +6000,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1214 components: - pos: 16.5,-10.5 @@ -6711,8 +6007,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1215 components: - pos: 16.5,-9.5 @@ -6720,8 +6014,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1216 components: - pos: 11.5,-10.5 @@ -6729,8 +6021,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1217 components: - pos: 10.5,-10.5 @@ -6738,8 +6028,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1218 components: - pos: 9.5,-10.5 @@ -6747,57 +6035,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1219 components: - pos: 12.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1220 components: - pos: 12.5,-12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1221 components: - pos: 12.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1222 components: - pos: 12.5,-14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1223 components: - pos: 12.5,-14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1224 components: - pos: 12.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1225 components: - pos: 12.5,-15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1226 components: - pos: 11.5,-16.5 @@ -6805,64 +6077,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1227 components: - pos: 11.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1228 components: - pos: 10.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1229 components: - pos: 9.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1230 components: - pos: 13.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1231 components: - pos: 14.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1232 components: - pos: 15.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1233 components: - pos: 11.5,-14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1234 components: - pos: 10.5,-14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1236 components: - pos: 3.5,-8.5 @@ -6870,71 +6124,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1237 components: - pos: 3.5,-9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1238 components: - pos: 4.5,-9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1239 components: - pos: 4.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1240 components: - pos: 4.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1241 components: - pos: 4.5,-12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1242 components: - pos: 4.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1243 components: - pos: 5.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1244 components: - pos: 6.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1245 components: - pos: 7.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1246 components: - pos: 7.5,-10.5 @@ -6942,15 +6176,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1247 components: - pos: 5.5,-9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1248 components: - pos: 6.5,-9.5 @@ -6958,8 +6188,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1249 components: - pos: 7.5,-12.5 @@ -6967,15 +6195,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1250 components: - pos: 5.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1251 components: - pos: 6.5,-13.5 @@ -6983,15 +6207,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1252 components: - pos: 3.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1253 components: - pos: 2.5,-10.5 @@ -6999,15 +6219,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1254 components: - pos: 3.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1255 components: - pos: 2.5,-13.5 @@ -7015,22 +6231,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1256 components: - pos: 4.5,-8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1257 components: - pos: 4.5,-7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1258 components: - pos: 5.5,-7.5 @@ -7038,8 +6248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1259 components: - pos: 3.5,-7.5 @@ -7047,8 +6255,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1260 components: - pos: -1.5,-6.5 @@ -7056,29 +6262,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1261 components: - pos: -1.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1262 components: - pos: -0.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1263 components: - pos: 0.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1264 components: - pos: 0.5,-6.5 @@ -7086,22 +6284,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1265 components: - pos: 1.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1266 components: - pos: 2.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1267 components: - pos: 2.5,-6.5 @@ -7109,29 +6301,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1268 components: - pos: 3.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1269 components: - pos: 4.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1270 components: - pos: 5.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1271 components: - pos: 6.5,-5.5 @@ -7139,8 +6323,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1272 components: - pos: 6.5,-4.5 @@ -7148,36 +6330,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1273 components: - pos: 5.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1274 components: - pos: 5.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1275 components: - pos: 5.5,-2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1276 components: - pos: 9.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1277 components: - pos: 8.5,-5.5 @@ -7185,8 +6357,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1278 components: - pos: 8.5,-4.5 @@ -7194,232 +6364,166 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1279 components: - pos: 5.5,-1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1280 components: - pos: 5.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1281 components: - pos: 5.5,1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1282 components: - pos: 5.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1283 components: - pos: 5.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1284 components: - pos: 5.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1285 components: - pos: 4.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1286 components: - pos: 3.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1287 components: - pos: 2.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1288 components: - pos: 1.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1289 components: - pos: 0.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1290 components: - pos: -0.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1291 components: - pos: -1.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1292 components: - pos: -2.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1293 components: - pos: -3.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1294 components: - pos: -4.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1295 components: - pos: -5.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1296 components: - pos: -6.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1297 components: - pos: -6.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1298 components: - pos: -6.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1299 components: - pos: -6.5,1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1300 components: - pos: -6.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1301 components: - pos: -6.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1302 components: - pos: -6.5,-1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1303 components: - pos: -6.5,-2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1304 components: - pos: -6.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1305 components: - pos: -6.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1306 components: - pos: -6.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1307 components: - pos: -5.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1308 components: - pos: -4.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1309 components: - pos: -3.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1310 components: - pos: -2.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1311 components: - pos: -3.5,-6.5 @@ -7427,8 +6531,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1312 components: - pos: -7.5,-5.5 @@ -7436,8 +6538,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1313 components: - pos: -7.5,-4.5 @@ -7445,8 +6545,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1314 components: - pos: -7.5,-0.5 @@ -7454,8 +6552,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1315 components: - pos: -7.5,3.5 @@ -7463,8 +6559,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1316 components: - pos: -7.5,4.5 @@ -7472,8 +6566,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1317 components: - pos: -1.5,5.5 @@ -7481,8 +6573,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1318 components: - pos: 0.5,5.5 @@ -7490,8 +6580,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1319 components: - pos: 2.5,5.5 @@ -7499,8 +6587,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1320 components: - pos: 4.5,5.5 @@ -7508,8 +6594,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1342 components: - pos: -3.5,-9.5 @@ -7517,36 +6601,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1343 components: - pos: -2.5,-9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1344 components: - pos: -1.5,-9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1345 components: - pos: -0.5,-9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1346 components: - pos: 0.5,-9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1347 components: - pos: 0.5,-8.5 @@ -7554,8 +6628,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1348 components: - pos: -1.5,-8.5 @@ -7563,43 +6635,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1349 components: - pos: -0.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1350 components: - pos: -0.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1351 components: - pos: -0.5,-12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1352 components: - pos: -0.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1353 components: - pos: -1.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1354 components: - pos: -1.5,-14.5 @@ -7607,8 +6667,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1355 components: - pos: -2.5,-14.5 @@ -7616,15 +6674,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1356 components: - pos: 0.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1357 components: - pos: 0.5,-14.5 @@ -7632,8 +6686,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1358 components: - pos: 1.5,-14.5 @@ -7641,36 +6693,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1359 components: - pos: -4.5,-9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1360 components: - pos: -5.5,-9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1361 components: - pos: -5.5,-8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1362 components: - pos: -5.5,-7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1363 components: - pos: -4.5,-7.5 @@ -7678,8 +6720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1364 components: - pos: -6.5,-7.5 @@ -7687,43 +6727,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1365 components: - pos: -5.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1366 components: - pos: -5.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1367 components: - pos: -6.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1368 components: - pos: -7.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1369 components: - pos: -8.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1370 components: - pos: -8.5,-10.5 @@ -7731,8 +6759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1371 components: - pos: -8.5,-12.5 @@ -7740,29 +6766,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1372 components: - pos: -5.5,-12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1373 components: - pos: -5.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1374 components: - pos: -4.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1375 components: - pos: -3.5,-10.5 @@ -7770,8 +6788,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1376 components: - pos: -3.5,-13.5 @@ -7779,22 +6795,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1377 components: - pos: -4.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1378 components: - pos: -6.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1379 components: - pos: -7.5,-13.5 @@ -7802,8 +6812,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1380 components: - pos: -7.5,-14.5 @@ -7811,8 +6819,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1381 components: - pos: -8.5,-14.5 @@ -7820,15 +6826,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1382 components: - pos: -6.5,-9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1383 components: - pos: -7.5,-9.5 @@ -7836,15 +6838,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1468 components: - pos: 15.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1469 components: - pos: 16.5,-4.5 @@ -7852,22 +6850,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1470 components: - pos: 15.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1471 components: - pos: 15.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1472 components: - pos: 16.5,3.5 @@ -7875,36 +6867,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1678 components: - pos: -6.5,16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1679 components: - pos: -6.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1680 components: - pos: -6.5,17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1681 components: - pos: -5.5,17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1682 components: - pos: -4.5,17.5 @@ -7912,8 +6894,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1683 components: - pos: -8.5,13.5 @@ -7921,64 +6901,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1684 components: - pos: -8.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1685 components: - pos: -8.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1686 components: - pos: -8.5,10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1687 components: - pos: -8.5,9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1688 components: - pos: -7.5,9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1689 components: - pos: -6.5,9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1690 components: - pos: -5.5,9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1691 components: - pos: -5.5,8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1692 components: - pos: -4.5,8.5 @@ -7986,22 +6948,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1693 components: - pos: -5.5,7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1694 components: - pos: -5.5,6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1695 components: - pos: -4.5,6.5 @@ -8009,8 +6965,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1696 components: - pos: -6.5,6.5 @@ -8018,71 +6972,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1697 components: - pos: -9.5,9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1698 components: - pos: -10.5,9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1699 components: - pos: -11.5,9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1700 components: - pos: -9.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1701 components: - pos: -10.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1702 components: - pos: -11.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1703 components: - pos: -7.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1704 components: - pos: -6.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1705 components: - pos: -6.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1706 components: - pos: -14.5,18.5 @@ -8090,22 +7024,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1707 components: - pos: -14.5,17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1708 components: - pos: -15.5,17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1709 components: - pos: -16.5,17.5 @@ -8113,8 +7041,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1710 components: - pos: -16.5,18.5 @@ -8122,8 +7048,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1711 components: - pos: -15.5,18.5 @@ -8131,8 +7055,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1712 components: - pos: -13.5,18.5 @@ -8140,8 +7062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1713 components: - pos: -12.5,18.5 @@ -8149,78 +7069,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1714 components: - pos: -14.5,16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1715 components: - pos: -14.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1716 components: - pos: -13.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1717 components: - pos: -12.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1718 components: - pos: -11.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1719 components: - pos: -10.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1720 components: - pos: -9.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1721 components: - pos: -10.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1722 components: - pos: -10.5,16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1723 components: - pos: -10.5,17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1724 components: - pos: -4.5,19.5 @@ -8228,148 +7126,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1725 components: - pos: -5.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1726 components: - pos: -6.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1727 components: - pos: -7.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1728 components: - pos: -8.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1729 components: - pos: -9.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1730 components: - pos: -10.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1731 components: - pos: -11.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1732 components: - pos: -11.5,20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1733 components: - pos: -11.5,21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1734 components: - pos: -11.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1735 components: - pos: -11.5,23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1736 components: - pos: -11.5,24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1737 components: - pos: -11.5,25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1738 components: - pos: -11.5,26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1739 components: - pos: -11.5,27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1740 components: - pos: -11.5,28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1741 components: - pos: -11.5,29.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1742 components: - pos: -11.5,30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1743 components: - pos: -11.5,31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1744 components: - pos: -12.5,31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1745 components: - pos: -12.5,32.5 @@ -8377,43 +7233,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1746 components: - pos: -10.5,31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1747 components: - pos: -9.5,31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1748 components: - pos: -8.5,31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1749 components: - pos: -7.5,31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1750 components: - pos: -6.5,31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1751 components: - pos: -6.5,32.5 @@ -8421,36 +7265,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1752 components: - pos: -9.5,32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1753 components: - pos: -9.5,33.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1754 components: - pos: -12.5,30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1755 components: - pos: -13.5,30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1756 components: - pos: -14.5,30.5 @@ -8458,8 +7292,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1757 components: - pos: -14.5,29.5 @@ -8467,8 +7299,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1758 components: - pos: -15.5,29.5 @@ -8476,8 +7306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1759 components: - pos: -16.5,29.5 @@ -8485,22 +7313,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1760 components: - pos: -12.5,26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1761 components: - pos: -13.5,26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1762 components: - pos: -14.5,26.5 @@ -8508,8 +7330,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1763 components: - pos: -15.5,26.5 @@ -8517,8 +7337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1764 components: - pos: -16.5,26.5 @@ -8526,22 +7344,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1765 components: - pos: -12.5,23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1766 components: - pos: -13.5,23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1767 components: - pos: -14.5,23.5 @@ -8549,8 +7361,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1768 components: - pos: -15.5,23.5 @@ -8558,8 +7368,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1769 components: - pos: -16.5,23.5 @@ -8567,8 +7375,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1770 components: - pos: -14.5,22.5 @@ -8576,8 +7382,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1771 components: - pos: -14.5,21.5 @@ -8585,8 +7389,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1772 components: - pos: -14.5,20.5 @@ -8594,141 +7396,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1773 components: - pos: -10.5,23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1774 components: - pos: -9.5,23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1775 components: - pos: -8.5,23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1776 components: - pos: -7.5,23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1777 components: - pos: -6.5,23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1778 components: - pos: -6.5,20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1779 components: - pos: -6.5,21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1780 components: - pos: -6.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1781 components: - pos: -6.5,24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1782 components: - pos: -6.5,25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1783 components: - pos: -6.5,26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1784 components: - pos: -6.5,27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1785 components: - pos: -6.5,28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1786 components: - pos: -6.5,29.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1787 components: - pos: -6.5,30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1788 components: - pos: -7.5,27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1789 components: - pos: -8.5,27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1790 components: - pos: -9.5,27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1791 components: - pos: -10.5,27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1956 components: - pos: 1.5,17.5 @@ -8736,78 +7498,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1957 components: - pos: 1.5,16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1958 components: - pos: 1.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1959 components: - pos: 1.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1960 components: - pos: 1.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1961 components: - pos: 1.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1962 components: - pos: 1.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1963 components: - pos: 1.5,10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1964 components: - pos: 1.5,9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1965 components: - pos: 1.5,8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1966 components: - pos: 2.5,8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1967 components: - pos: 3.5,8.5 @@ -8815,15 +7555,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1968 components: - pos: 2.5,10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1969 components: - pos: 3.5,10.5 @@ -8831,15 +7567,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1970 components: - pos: 2.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1971 components: - pos: 3.5,12.5 @@ -8847,15 +7579,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1972 components: - pos: 2.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1973 components: - pos: 3.5,14.5 @@ -8863,15 +7591,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1974 components: - pos: 2.5,16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1975 components: - pos: 3.5,16.5 @@ -8879,8 +7603,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1976 components: - pos: 2.5,17.5 @@ -8888,8 +7610,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1977 components: - pos: -3.5,17.5 @@ -8897,92 +7617,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1978 components: - pos: 0.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1979 components: - pos: -0.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1980 components: - pos: -1.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1981 components: - pos: -2.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1982 components: - pos: -2.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1983 components: - pos: -2.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1984 components: - pos: -2.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1985 components: - pos: -2.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1986 components: - pos: -2.5,10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1987 components: - pos: -2.5,9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1988 components: - pos: -2.5,8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1989 components: - pos: -1.5,8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1990 components: - pos: -1.5,7.5 @@ -8990,15 +7684,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1991 components: - pos: 0.5,8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1992 components: - pos: 0.5,7.5 @@ -9006,15 +7696,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1993 components: - pos: -0.5,8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2020 components: - pos: -1.5,22.5 @@ -9022,8 +7708,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2021 components: - pos: -1.5,23.5 @@ -9031,8 +7715,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2022 components: - pos: -1.5,24.5 @@ -9040,8 +7722,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2023 components: - pos: -2.5,24.5 @@ -9049,15 +7729,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2024 components: - pos: -1.5,21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2025 components: - pos: -1.5,20.5 @@ -9065,8 +7741,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2026 components: - pos: -0.5,20.5 @@ -9074,8 +7748,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2027 components: - pos: -0.5,19.5 @@ -9083,8 +7755,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2028 components: - pos: -0.5,18.5 @@ -9092,8 +7762,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2029 components: - pos: 0.5,20.5 @@ -9101,8 +7769,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2030 components: - pos: 1.5,20.5 @@ -9110,15 +7776,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2031 components: - pos: -2.5,21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2057 components: - pos: -3.5,5.5 @@ -9126,8 +7788,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2567 components: - pos: 17.5,17.5 @@ -9135,57 +7795,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2568 components: - pos: 17.5,16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2569 components: - pos: 17.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2570 components: - pos: 17.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2571 components: - pos: 17.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2572 components: - pos: 17.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2573 components: - pos: 17.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2574 components: - pos: 16.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2575 components: - pos: 15.5,12.5 @@ -9193,15 +7837,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2576 components: - pos: 16.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2577 components: - pos: 15.5,14.5 @@ -9209,22 +7849,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2578 components: - pos: 17.5,10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2579 components: - pos: 16.5,10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2580 components: - pos: 15.5,10.5 @@ -9232,57 +7866,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2581 components: - pos: 18.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2582 components: - pos: 19.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2583 components: - pos: 20.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2584 components: - pos: 18.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2585 components: - pos: 19.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2586 components: - pos: 20.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2587 components: - pos: 19.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2588 components: - pos: 21.5,20.5 @@ -9290,57 +7908,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2589 components: - pos: 20.5,20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2590 components: - pos: 19.5,20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2591 components: - pos: 18.5,20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2592 components: - pos: 19.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2593 components: - pos: 19.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2594 components: - pos: 19.5,21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2595 components: - pos: 19.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2596 components: - pos: 21.5,21.5 @@ -9348,169 +7950,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2597 components: - pos: 22.5,21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2598 components: - pos: 23.5,21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2599 components: - pos: 23.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2600 components: - pos: 24.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2601 components: - pos: 25.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2602 components: - pos: 26.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2603 components: - pos: 27.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2604 components: - pos: 28.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2605 components: - pos: 29.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2606 components: - pos: 30.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2607 components: - pos: 31.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2608 components: - pos: 32.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2609 components: - pos: 33.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2610 components: - pos: 34.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2611 components: - pos: 33.5,21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2612 components: - pos: 28.5,21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2613 components: - pos: 20.5,21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2614 components: - pos: 23.5,20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2615 components: - pos: 23.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2616 components: - pos: 23.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2617 components: - pos: 23.5,17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2618 components: - pos: 23.5,16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2619 components: - pos: 23.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2620 components: - pos: 24.5,17.5 @@ -9518,8 +8072,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2621 components: - pos: 24.5,16.5 @@ -9527,8 +8079,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2622 components: - pos: 24.5,15.5 @@ -9536,8 +8086,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2623 components: - pos: 24.5,19.5 @@ -9545,8 +8093,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2624 components: - pos: 24.5,14.5 @@ -9554,78 +8100,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2625 components: - pos: 24.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2626 components: - pos: 25.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2627 components: - pos: 26.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2628 components: - pos: 27.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2629 components: - pos: 28.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2630 components: - pos: 29.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2631 components: - pos: 30.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2632 components: - pos: 31.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2633 components: - pos: 32.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2634 components: - pos: 33.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2635 components: - pos: 33.5,14.5 @@ -9633,8 +8157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2636 components: - pos: 31.5,14.5 @@ -9642,8 +8164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2637 components: - pos: 30.5,14.5 @@ -9651,8 +8171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2638 components: - pos: 29.5,14.5 @@ -9660,8 +8178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2639 components: - pos: 27.5,14.5 @@ -9669,8 +8185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2640 components: - pos: 26.5,14.5 @@ -9678,8 +8192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2641 components: - pos: 25.5,14.5 @@ -9687,225 +8199,161 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2642 components: - pos: 28.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2643 components: - pos: 28.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2644 components: - pos: 28.5,16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2645 components: - pos: 28.5,17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2646 components: - pos: 28.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2647 components: - pos: 29.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2648 components: - pos: 30.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2649 components: - pos: 31.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2650 components: - pos: 27.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2651 components: - pos: 26.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2652 components: - pos: 25.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2653 components: - pos: 27.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2654 components: - pos: 26.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2655 components: - pos: 29.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2656 components: - pos: 30.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2657 components: - pos: 24.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2658 components: - pos: 23.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2659 components: - pos: 22.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2660 components: - pos: 33.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2661 components: - pos: 34.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2662 components: - pos: 33.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2663 components: - pos: 32.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2664 components: - pos: 31.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2665 components: - pos: 30.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2666 components: - pos: 29.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2667 components: - pos: 28.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2668 components: - pos: 27.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2669 components: - pos: 26.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2670 components: - pos: 25.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2671 components: - pos: 24.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2672 components: - pos: 23.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2673 components: - pos: 35.5,19.5 @@ -9913,43 +8361,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2674 components: - pos: 34.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2675 components: - pos: 33.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2676 components: - pos: 33.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2677 components: - pos: 33.5,17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2678 components: - pos: 33.5,16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2679 components: - pos: 7.5,16.5 @@ -9957,50 +8393,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2680 components: - pos: 7.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2681 components: - pos: 7.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2682 components: - pos: 7.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2683 components: - pos: 7.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2684 components: - pos: 7.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2685 components: - pos: 6.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2686 components: - pos: 5.5,12.5 @@ -10008,15 +8430,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2687 components: - pos: 6.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2688 components: - pos: 5.5,14.5 @@ -10024,99 +8442,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2689 components: - pos: 8.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2690 components: - pos: 9.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2691 components: - pos: 10.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2692 components: - pos: 11.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2693 components: - pos: 12.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2694 components: - pos: 8.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2695 components: - pos: 9.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2696 components: - pos: 10.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2697 components: - pos: 11.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2698 components: - pos: 12.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2699 components: - pos: 13.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2700 components: - pos: 13.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2701 components: - pos: 14.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2702 components: - pos: 14.5,16.5 @@ -10124,8 +8514,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2703 components: - pos: 14.5,17.5 @@ -10133,8 +8521,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2704 components: - pos: 14.5,18.5 @@ -10142,8 +8528,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2705 components: - pos: 15.5,18.5 @@ -10151,50 +8535,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2706 components: - pos: 13.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2707 components: - pos: 13.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2708 components: - pos: 13.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2709 components: - pos: 10.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2711 components: - pos: 10.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2743 components: - pos: 10.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3033 components: - pos: 7.5,30.5 @@ -10202,134 +8572,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3034 components: - pos: 8.5,30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3035 components: - pos: 9.5,30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3036 components: - pos: 9.5,31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3037 components: - pos: 10.5,31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3038 components: - pos: 11.5,31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3039 components: - pos: 12.5,31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3040 components: - pos: 13.5,31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3041 components: - pos: 14.5,31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3042 components: - pos: 15.5,31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3043 components: - pos: 8.5,31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3044 components: - pos: 7.5,31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3045 components: - pos: 6.5,31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3046 components: - pos: 5.5,31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3047 components: - pos: 4.5,31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3048 components: - pos: 3.5,31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3049 components: - pos: 9.5,29.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3050 components: - pos: 9.5,28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3051 components: - pos: 8.5,29.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3052 components: - pos: 7.5,29.5 @@ -10337,15 +8669,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3053 components: - pos: 10.5,29.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3054 components: - pos: 11.5,29.5 @@ -10353,8 +8681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3055 components: - pos: 9.5,26.5 @@ -10362,22 +8688,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3056 components: - pos: 9.5,25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3057 components: - pos: 8.5,25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3058 components: - pos: 8.5,26.5 @@ -10385,8 +8705,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3059 components: - pos: 7.5,26.5 @@ -10394,8 +8712,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3060 components: - pos: 7.5,27.5 @@ -10403,15 +8719,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3061 components: - pos: 10.5,25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3062 components: - pos: 10.5,26.5 @@ -10419,8 +8731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3063 components: - pos: 11.5,26.5 @@ -10428,8 +8738,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3064 components: - pos: 11.5,27.5 @@ -10437,36 +8745,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3065 components: - pos: 9.5,24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3066 components: - pos: 9.5,23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3067 components: - pos: 9.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3068 components: - pos: 8.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3069 components: - pos: 7.5,22.5 @@ -10474,8 +8772,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3070 components: - pos: 7.5,21.5 @@ -10483,8 +8779,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3071 components: - pos: 7.5,18.5 @@ -10492,36 +8786,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3072 components: - pos: 6.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3073 components: - pos: 5.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3074 components: - pos: 8.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3075 components: - pos: 9.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3076 components: - pos: 10.5,18.5 @@ -10529,8 +8813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3077 components: - pos: 10.5,17.5 @@ -10538,8 +8820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3078 components: - pos: 10.5,16.5 @@ -10547,8 +8827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3080 components: - pos: 8.5,16.5 @@ -10556,8 +8834,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3081 components: - pos: 8.5,20.5 @@ -10565,190 +8841,136 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3082 components: - pos: 8.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3083 components: - pos: 11.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3084 components: - pos: 12.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3085 components: - pos: 13.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3086 components: - pos: 14.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3087 components: - pos: 15.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3088 components: - pos: 11.5,25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3089 components: - pos: 12.5,25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3090 components: - pos: 13.5,25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3091 components: - pos: 14.5,25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3092 components: - pos: 15.5,25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3093 components: - pos: 13.5,26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3094 components: - pos: 13.5,27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3095 components: - pos: 13.5,28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3096 components: - pos: 14.5,28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3097 components: - pos: 15.5,28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3098 components: - pos: 7.5,25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3099 components: - pos: 6.5,25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3100 components: - pos: 5.5,25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3101 components: - pos: 4.5,25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3102 components: - pos: 3.5,25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3103 components: - pos: 5.5,26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3104 components: - pos: 5.5,27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3105 components: - pos: 5.5,28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3106 components: - pos: 4.5,28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3107 components: - pos: 3.5,28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3108 components: - pos: 4.5,24.5 @@ -10756,8 +8978,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3109 components: - pos: 4.5,27.5 @@ -10765,8 +8985,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3110 components: - pos: 14.5,27.5 @@ -10774,8 +8992,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3111 components: - pos: 14.5,24.5 @@ -10783,8 +8999,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3112 components: - pos: 14.5,21.5 @@ -10792,8 +9006,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3113 components: - pos: 6.5,30.5 @@ -10801,8 +9013,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3114 components: - pos: 5.5,30.5 @@ -10810,8 +9020,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3115 components: - pos: 12.5,30.5 @@ -10819,8 +9027,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3116 components: - pos: 13.5,30.5 @@ -10828,15 +9034,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3467 components: - pos: -22.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3468 components: - pos: -22.5,13.5 @@ -10844,99 +9046,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3469 components: - pos: -21.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3470 components: - pos: -21.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3471 components: - pos: -21.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3472 components: - pos: -21.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3473 components: - pos: -21.5,10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3474 components: - pos: -21.5,9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3475 components: - pos: -20.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3476 components: - pos: -19.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3477 components: - pos: -22.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3478 components: - pos: -23.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3479 components: - pos: -24.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3480 components: - pos: -25.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3481 components: - pos: -26.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3482 components: - pos: -27.5,11.5 @@ -10944,8 +9118,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3483 components: - pos: -27.5,12.5 @@ -10953,29 +9125,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3484 components: - pos: -25.5,10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3485 components: - pos: -25.5,9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3486 components: - pos: -26.5,9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3487 components: - pos: -27.5,9.5 @@ -10983,8 +9147,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3488 components: - pos: -27.5,8.5 @@ -10992,8 +9154,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3489 components: - pos: -22.5,7.5 @@ -11001,106 +9161,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3490 components: - pos: -22.5,6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3491 components: - pos: -22.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3492 components: - pos: -22.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3493 components: - pos: -22.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3494 components: - pos: -22.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3495 components: - pos: -21.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3496 components: - pos: -20.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3497 components: - pos: -19.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3498 components: - pos: -18.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3499 components: - pos: -21.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3500 components: - pos: -20.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3501 components: - pos: -19.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3502 components: - pos: -23.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3503 components: - pos: -23.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3504 components: - pos: -13.5,6.5 @@ -11108,8 +9238,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3505 components: - pos: -14.5,6.5 @@ -11117,57 +9245,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3506 components: - pos: -14.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3507 components: - pos: -12.5,6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3508 components: - pos: -12.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3509 components: - pos: -11.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3510 components: - pos: -15.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3511 components: - pos: -16.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3512 components: - pos: -10.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3513 components: - pos: -16.5,13.5 @@ -11175,71 +9287,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3514 components: - pos: -16.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3515 components: - pos: -15.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3516 components: - pos: -15.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3517 components: - pos: -15.5,10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3518 components: - pos: -15.5,9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3519 components: - pos: -20.5,9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3520 components: - pos: -19.5,9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3521 components: - pos: -22.5,9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3522 components: - pos: -23.5,9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3991 components: - pos: -31.5,2.5 @@ -11247,43 +9339,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3992 components: - pos: -31.5,1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3993 components: - pos: -31.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3994 components: - pos: -31.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3995 components: - pos: -31.5,-1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3996 components: - pos: -31.5,-2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3997 components: - pos: -32.5,-2.5 @@ -11291,8 +9371,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3998 components: - pos: -33.5,-2.5 @@ -11300,8 +9378,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3999 components: - pos: -34.5,-2.5 @@ -11309,8 +9385,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4000 components: - pos: -32.5,-0.5 @@ -11318,8 +9392,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4001 components: - pos: -33.5,-0.5 @@ -11327,8 +9399,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4002 components: - pos: -34.5,-0.5 @@ -11336,8 +9406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4003 components: - pos: -32.5,1.5 @@ -11345,8 +9413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4004 components: - pos: -33.5,1.5 @@ -11354,8 +9420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4005 components: - pos: -34.5,1.5 @@ -11363,22 +9427,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4006 components: - pos: -30.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4007 components: - pos: -29.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4008 components: - pos: -28.5,-0.5 @@ -11386,8 +9444,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4009 components: - pos: -26.5,-0.5 @@ -11395,120 +9451,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4010 components: - pos: -25.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4011 components: - pos: -24.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4012 components: - pos: -23.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4013 components: - pos: -22.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4014 components: - pos: -21.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4015 components: - pos: -20.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4016 components: - pos: -19.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4017 components: - pos: -18.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4018 components: - pos: -17.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4019 components: - pos: -16.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4020 components: - pos: -15.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4021 components: - pos: -14.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4022 components: - pos: -13.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4023 components: - pos: -12.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4024 components: - pos: -11.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4025 components: - pos: -10.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4026 components: - pos: -9.5,-0.5 @@ -11516,15 +9538,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4027 components: - pos: -14.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4028 components: - pos: -14.5,1.5 @@ -11532,8 +9550,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4029 components: - pos: -15.5,1.5 @@ -11541,8 +9557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4030 components: - pos: -16.5,1.5 @@ -11550,15 +9564,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4031 components: - pos: -12.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4032 components: - pos: -12.5,1.5 @@ -11566,8 +9576,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4033 components: - pos: -11.5,1.5 @@ -11575,8 +9583,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4034 components: - pos: -10.5,1.5 @@ -11584,8 +9590,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4035 components: - pos: -13.5,1.5 @@ -11593,8 +9597,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4036 components: - pos: -13.5,2.5 @@ -11602,15 +9604,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4037 components: - pos: -17.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4038 components: - pos: -17.5,1.5 @@ -11618,8 +9616,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4039 components: - pos: -21.5,-2.5 @@ -11627,218 +9623,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4040 components: - pos: -21.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4041 components: - pos: -21.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4042 components: - pos: -21.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4043 components: - pos: -21.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4044 components: - pos: -21.5,-7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4045 components: - pos: -21.5,-8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4046 components: - pos: -22.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4047 components: - pos: -23.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4048 components: - pos: -24.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4049 components: - pos: -25.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4050 components: - pos: -26.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4051 components: - pos: -26.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4052 components: - pos: -26.5,-7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4053 components: - pos: -25.5,-7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4054 components: - pos: -24.5,-7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4055 components: - pos: -23.5,-7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4056 components: - pos: -22.5,-7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4057 components: - pos: -20.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4058 components: - pos: -19.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4059 components: - pos: -18.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4060 components: - pos: -17.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4061 components: - pos: -17.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4062 components: - pos: -17.5,-7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4063 components: - pos: -18.5,-7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4064 components: - pos: -19.5,-7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4065 components: - pos: -20.5,-7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4066 components: - pos: -26.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4067 components: - pos: -26.5,-8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4068 components: - pos: -17.5,-8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4069 components: - pos: -17.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4070 components: - pos: -13.5,-2.5 @@ -11846,106 +9780,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4071 components: - pos: -13.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4072 components: - pos: -13.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4073 components: - pos: -13.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4074 components: - pos: -13.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4075 components: - pos: -13.5,-7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4076 components: - pos: -13.5,-8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4077 components: - pos: -12.5,-8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4078 components: - pos: -11.5,-8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4079 components: - pos: -12.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4080 components: - pos: -11.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4081 components: - pos: -14.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4082 components: - pos: -14.5,-8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4083 components: - pos: -11.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4084 components: - pos: -12.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4085 components: - pos: -31.5,7.5 @@ -11953,43 +9857,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4086 components: - pos: -31.5,6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4087 components: - pos: -31.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4088 components: - pos: -31.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4089 components: - pos: -32.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4090 components: - pos: -33.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4091 components: - pos: -34.5,4.5 @@ -11997,8 +9889,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4092 components: - pos: -34.5,3.5 @@ -12006,8 +9896,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4093 components: - pos: -34.5,5.5 @@ -12015,8 +9903,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4094 components: - pos: -34.5,6.5 @@ -12024,15 +9910,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4095 components: - pos: -32.5,6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4096 components: - pos: -32.5,7.5 @@ -12040,8 +9922,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4097 components: - pos: -33.5,7.5 @@ -12049,8 +9929,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4098 components: - pos: -30.5,7.5 @@ -12058,29 +9936,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4099 components: - pos: -30.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4100 components: - pos: -29.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4101 components: - pos: -28.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4102 components: - pos: -27.5,4.5 @@ -12088,8 +9958,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4103 components: - pos: -27.5,3.5 @@ -12097,8 +9965,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4104 components: - pos: -27.5,5.5 @@ -12106,8 +9972,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4481 components: - pos: 1.5,-20.5 @@ -12115,99 +9979,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4482 components: - pos: 1.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4483 components: - pos: 1.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4484 components: - pos: 1.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4485 components: - pos: 1.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4486 components: - pos: 0.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4487 components: - pos: -0.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4488 components: - pos: -1.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4489 components: - pos: -2.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4490 components: - pos: -3.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4491 components: - pos: -10.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4492 components: - pos: -5.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4493 components: - pos: -4.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4494 components: - pos: -4.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4495 components: - pos: -8.5,-24.5 @@ -12215,50 +10051,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4496 components: - pos: -9.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4497 components: - pos: 3.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4498 components: - pos: 3.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4499 components: - pos: 4.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4500 components: - pos: -1.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4501 components: - pos: -1.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4502 components: - pos: 2.5,-17.5 @@ -12266,15 +10088,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4503 components: - pos: 3.5,-15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4504 components: - pos: 2.5,-15.5 @@ -12282,15 +10100,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4505 components: - pos: -4.5,-15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4506 components: - pos: -3.5,-15.5 @@ -12298,8 +10112,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4507 components: - pos: -3.5,-17.5 @@ -12307,8 +10119,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4508 components: - pos: -5.5,-17.5 @@ -12316,8 +10126,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4509 components: - pos: 4.5,-17.5 @@ -12325,57 +10133,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4510 components: - pos: -10.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4511 components: - pos: -10.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4512 components: - pos: -10.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4513 components: - pos: -10.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4514 components: - pos: -10.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4515 components: - pos: -9.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4516 components: - pos: -8.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4517 components: - pos: 7.5,-24.5 @@ -12383,71 +10175,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4518 components: - pos: 8.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4519 components: - pos: 9.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4520 components: - pos: 9.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4521 components: - pos: 9.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4522 components: - pos: 9.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4523 components: - pos: 9.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4524 components: - pos: 9.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4525 components: - pos: 8.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4526 components: - pos: 7.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4527 components: - pos: -2.5,-24.5 @@ -12455,197 +10227,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4528 components: - pos: -2.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4529 components: - pos: -2.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4530 components: - pos: -2.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4531 components: - pos: -1.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4532 components: - pos: -0.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4533 components: - pos: 0.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4534 components: - pos: 1.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4535 components: - pos: 2.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4536 components: - pos: 3.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4537 components: - pos: 4.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4538 components: - pos: 5.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4539 components: - pos: -4.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4540 components: - pos: -3.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4541 components: - pos: -5.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4542 components: - pos: -6.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4543 components: - pos: 5.5,-28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4544 components: - pos: -6.5,-28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4545 components: - pos: -6.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4546 components: - pos: 5.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4547 components: - pos: -0.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4548 components: - pos: -0.5,-28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4549 components: - pos: -0.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4550 components: - pos: -0.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4551 components: - pos: -0.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4552 components: - pos: -0.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4553 components: - pos: 2.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4554 components: - pos: -1.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4555 components: - pos: -2.5,-22.5 @@ -12653,8 +10369,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4556 components: - pos: -2.5,-23.5 @@ -12662,8 +10376,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4557 components: - pos: -2.5,-21.5 @@ -12671,15 +10383,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4558 components: - pos: -3.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4559 components: - pos: -4.5,-22.5 @@ -12687,8 +10395,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4560 components: - pos: -4.5,-23.5 @@ -12696,8 +10402,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4561 components: - pos: -4.5,-21.5 @@ -12705,8 +10409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4562 components: - pos: 1.5,-21.5 @@ -12714,8 +10416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4563 components: - pos: 1.5,-22.5 @@ -12723,8 +10423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4564 components: - pos: 1.5,-23.5 @@ -12732,8 +10430,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4565 components: - pos: 3.5,-22.5 @@ -12741,8 +10437,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4566 components: - pos: 3.5,-21.5 @@ -12750,8 +10444,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4567 components: - pos: 3.5,-23.5 @@ -12759,8 +10451,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4898 components: - pos: 8.5,-17.5 @@ -12768,85 +10458,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4899 components: - pos: 8.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4900 components: - pos: 8.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4901 components: - pos: 9.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4902 components: - pos: 10.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4903 components: - pos: 11.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4904 components: - pos: 12.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4905 components: - pos: 13.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4906 components: - pos: 7.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4907 components: - pos: 6.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4908 components: - pos: 6.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4909 components: - pos: 6.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4910 components: - pos: -9.5,-17.5 @@ -12854,92 +10520,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4911 components: - pos: -9.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4912 components: - pos: -8.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4913 components: - pos: -8.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4914 components: - pos: -8.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4915 components: - pos: -9.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4916 components: - pos: -10.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4917 components: - pos: -11.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4918 components: - pos: -12.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4919 components: - pos: -13.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4920 components: - pos: -13.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4921 components: - pos: -13.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4922 components: - pos: -13.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4993 components: - pos: 18.5,-19.5 @@ -12947,36 +10587,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4994 components: - pos: 18.5,-20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4995 components: - pos: 17.5,-20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4996 components: - pos: 16.5,-20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4997 components: - pos: 16.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4998 components: - pos: 16.5,-18.5 @@ -12984,8 +10614,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4999 components: - pos: 20.5,-12.5 @@ -12993,43 +10621,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5000 components: - pos: 20.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5001 components: - pos: 20.5,-14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5002 components: - pos: 20.5,-15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5003 components: - pos: 19.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5004 components: - pos: 19.5,-14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5005 components: - pos: 18.5,-14.5 @@ -13037,15 +10653,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5006 components: - pos: 17.5,-14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5007 components: - pos: 16.5,-14.5 @@ -13053,8 +10665,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5008 components: - pos: 15.5,-14.5 @@ -13062,85 +10672,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5009 components: - pos: 21.5,-14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5010 components: - pos: 22.5,-14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5011 components: - pos: 19.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5012 components: - pos: 20.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5013 components: - pos: 21.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5014 components: - pos: 21.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5015 components: - pos: 21.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5016 components: - pos: 21.5,-20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5017 components: - pos: 21.5,-21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5018 components: - pos: 21.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5019 components: - pos: 16.5,-21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5020 components: - pos: 16.5,-22.5 @@ -13148,141 +10734,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5021 components: - pos: 16.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5022 components: - pos: 16.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5023 components: - pos: 16.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5024 components: - pos: 16.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5026 components: - pos: 15.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5027 components: - pos: 14.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5028 components: - pos: 13.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5029 components: - pos: 13.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5030 components: - pos: 13.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5031 components: - pos: 13.5,-21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5032 components: - pos: 13.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5033 components: - pos: 13.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5034 components: - pos: 13.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5035 components: - pos: 13.5,-28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5036 components: - pos: 17.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5037 components: - pos: 18.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5038 components: - pos: 19.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5039 components: - pos: 20.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5040 components: - pos: 21.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5121 components: - pos: 34.5,-9.5 @@ -13290,85 +10836,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5122 components: - pos: 34.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5123 components: - pos: 34.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5124 components: - pos: 34.5,-12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5125 components: - pos: 34.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5126 components: - pos: 33.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5127 components: - pos: 32.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5128 components: - pos: 32.5,-14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5129 components: - pos: 31.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5130 components: - pos: 30.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5131 components: - pos: 30.5,-12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5132 components: - pos: 30.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5134 components: - pos: 22.5,-23.5 @@ -13376,85 +10898,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5135 components: - pos: 23.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5136 components: - pos: 24.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5137 components: - pos: 25.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5138 components: - pos: 26.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5139 components: - pos: 25.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5140 components: - pos: 25.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5141 components: - pos: 25.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5142 components: - pos: 25.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5143 components: - pos: 25.5,-21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5144 components: - pos: 25.5,-20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5145 components: - pos: 25.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5147 components: - pos: 29.5,-19.5 @@ -13462,50 +10960,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5148 components: - pos: 29.5,-20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5149 components: - pos: 29.5,-21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5150 components: - pos: 29.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5151 components: - pos: 29.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5152 components: - pos: 29.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5153 components: - pos: 29.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5154 components: - pos: 28.5,-25.5 @@ -13513,8 +10997,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5155 components: - pos: 28.5,-24.5 @@ -13522,8 +11004,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5156 components: - pos: 28.5,-23.5 @@ -13531,8 +11011,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5157 components: - pos: 28.5,-22.5 @@ -13540,8 +11018,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5158 components: - pos: 28.5,-21.5 @@ -13549,8 +11025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5159 components: - pos: 30.5,-25.5 @@ -13558,8 +11032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5160 components: - pos: 31.5,-25.5 @@ -13567,8 +11039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5161 components: - pos: 32.5,-25.5 @@ -13576,8 +11046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5162 components: - pos: 33.5,-25.5 @@ -13585,8 +11053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5163 components: - pos: 30.5,-21.5 @@ -13594,8 +11060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5164 components: - pos: 31.5,-21.5 @@ -13603,8 +11067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5165 components: - pos: 32.5,-21.5 @@ -13612,8 +11074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5166 components: - pos: 33.5,-21.5 @@ -13621,15 +11081,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5171 components: - pos: 31.5,-20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5172 components: - pos: 31.5,-19.5 @@ -13637,15 +11093,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5173 components: - pos: 33.5,-20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5174 components: - pos: 33.5,-19.5 @@ -13653,8 +11105,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5258 components: - pos: 30.5,-14.5 @@ -13662,92 +11112,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5259 components: - pos: 30.5,-15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5260 components: - pos: 30.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5261 components: - pos: 30.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5262 components: - pos: 31.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5263 components: - pos: 32.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5264 components: - pos: 33.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5265 components: - pos: 29.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5266 components: - pos: 28.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5267 components: - pos: 27.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5268 components: - pos: 26.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5269 components: - pos: 25.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5270 components: - pos: 24.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5271 components: - pos: 24.5,-16.5 @@ -13755,22 +11179,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5272 components: - pos: 24.5,-15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5273 components: - pos: 24.5,-14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5274 components: - pos: 27.5,-16.5 @@ -13778,22 +11196,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5275 components: - pos: 27.5,-15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5276 components: - pos: 27.5,-14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5441 components: - pos: 15.5,-22.5 @@ -13801,8 +11213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5442 components: - pos: 17.5,-22.5 @@ -13810,8 +11220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5443 components: - pos: 16.5,-28.5 @@ -13819,36 +11227,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5444 components: - pos: 16.5,-29.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5445 components: - pos: 16.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5446 components: - pos: 16.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5447 components: - pos: 17.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5448 components: - pos: 18.5,-30.5 @@ -13856,8 +11254,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5449 components: - pos: 18.5,-31.5 @@ -13865,8 +11261,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5450 components: - pos: 18.5,-29.5 @@ -13874,15 +11268,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5585 components: - pos: 21.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5935 components: - pos: -16.5,-30.5 @@ -13890,29 +11280,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5936 components: - pos: -16.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5937 components: - pos: -16.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5938 components: - pos: -16.5,-33.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5939 components: - pos: -17.5,-33.5 @@ -13920,8 +11302,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5940 components: - pos: -18.5,-33.5 @@ -13929,8 +11309,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6067 components: - pos: -17.5,-22.5 @@ -13938,71 +11316,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6068 components: - pos: -18.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6069 components: - pos: -19.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6070 components: - pos: -19.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6071 components: - pos: -19.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6072 components: - pos: -19.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6073 components: - pos: -19.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6074 components: - pos: -19.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6075 components: - pos: -19.5,-28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6076 components: - pos: -20.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6077 components: - pos: -21.5,-26.5 @@ -14010,8 +11368,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6078 components: - pos: -22.5,-26.5 @@ -14019,15 +11375,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6079 components: - pos: -20.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6080 components: - pos: -21.5,-24.5 @@ -14035,8 +11387,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6081 components: - pos: -22.5,-24.5 @@ -14044,8 +11394,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6082 components: - pos: -19.5,-21.5 @@ -14053,8 +11401,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6083 components: - pos: -18.5,-21.5 @@ -14062,8 +11408,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6084 components: - pos: -20.5,-21.5 @@ -14071,8 +11415,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6085 components: - pos: -21.5,-23.5 @@ -14080,8 +11422,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6086 components: - pos: -21.5,-25.5 @@ -14089,8 +11429,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6087 components: - pos: -21.5,-27.5 @@ -14098,8 +11436,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6088 components: - pos: -22.5,-25.5 @@ -14107,8 +11443,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6089 components: - pos: -23.5,-25.5 @@ -14116,8 +11450,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6090 components: - pos: -23.5,-26.5 @@ -14125,8 +11457,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6091 components: - pos: -23.5,-27.5 @@ -14134,8 +11464,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6092 components: - pos: -23.5,-23.5 @@ -14143,8 +11471,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6093 components: - pos: -23.5,-24.5 @@ -14152,8 +11478,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6094 components: - pos: -18.5,-34.5 @@ -14161,8 +11485,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6095 components: - pos: -17.5,-34.5 @@ -14170,8 +11492,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6096 components: - pos: -19.5,-34.5 @@ -14179,8 +11499,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6097 components: - pos: -19.5,-33.5 @@ -14188,8 +11506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6098 components: - pos: -20.5,-33.5 @@ -14197,8 +11513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6099 components: - pos: -20.5,-32.5 @@ -14206,8 +11520,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6100 components: - pos: -20.5,-31.5 @@ -14215,8 +11527,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6112 components: - pos: -15.5,-28.5 @@ -14224,148 +11534,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6113 components: - pos: -14.5,-28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6114 components: - pos: -13.5,-28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6115 components: - pos: -13.5,-29.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6116 components: - pos: -13.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6117 components: - pos: -13.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6118 components: - pos: -13.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6119 components: - pos: -13.5,-33.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6120 components: - pos: -13.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6121 components: - pos: -13.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6122 components: - pos: -13.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6123 components: - pos: -13.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6124 components: - pos: -13.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6125 components: - pos: -13.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6126 components: - pos: -13.5,-21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6127 components: - pos: 15.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6128 components: - pos: 14.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6129 components: - pos: 13.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6131 components: - pos: 13.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6132 components: - pos: 13.5,-33.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6133 components: - pos: -0.5,-29.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6134 components: - pos: -0.5,-30.5 @@ -14373,8 +11641,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6135 components: - pos: -1.5,-30.5 @@ -14382,8 +11648,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6136 components: - pos: 0.5,-30.5 @@ -14391,8 +11655,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6202 components: - pos: -8.5,-30.5 @@ -14400,78 +11662,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6203 components: - pos: -8.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6204 components: - pos: -8.5,-33.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6205 components: - pos: -8.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6206 components: - pos: -7.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6207 components: - pos: -6.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6208 components: - pos: -5.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6209 components: - pos: -4.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6210 components: - pos: -9.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6211 components: - pos: -10.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6212 components: - pos: -11.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6213 components: - pos: 7.5,-30.5 @@ -14479,92 +11719,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6214 components: - pos: 7.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6215 components: - pos: 7.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6216 components: - pos: 7.5,-33.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6217 components: - pos: 6.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6218 components: - pos: 5.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6219 components: - pos: 4.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6220 components: - pos: 3.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6221 components: - pos: 8.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6222 components: - pos: 9.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6223 components: - pos: 10.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6224 components: - pos: 11.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6225 components: - pos: 12.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6346 components: - pos: -2.5,-34.5 @@ -14572,99 +11786,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6347 components: - pos: -2.5,-35.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6348 components: - pos: -2.5,-36.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6349 components: - pos: -2.5,-37.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6350 components: - pos: -1.5,-36.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6351 components: - pos: -0.5,-36.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6352 components: - pos: 0.5,-36.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6353 components: - pos: 1.5,-36.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6354 components: - pos: 2.5,-36.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6355 components: - pos: 3.5,-36.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6356 components: - pos: -3.5,-36.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6357 components: - pos: -4.5,-36.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6358 components: - pos: -5.5,-36.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6359 components: - pos: -0.5,-37.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6360 components: - pos: -0.5,-38.5 @@ -14672,8 +11858,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6409 components: - pos: -2.5,-40.5 @@ -14681,134 +11865,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6410 components: - pos: -2.5,-41.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6411 components: - pos: -2.5,-42.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6412 components: - pos: -2.5,-43.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6413 components: - pos: -1.5,-42.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6414 components: - pos: -0.5,-42.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6415 components: - pos: 0.5,-42.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6416 components: - pos: 1.5,-42.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6417 components: - pos: 2.5,-42.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6418 components: - pos: 3.5,-42.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6419 components: - pos: 4.5,-42.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6420 components: - pos: 4.5,-41.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6421 components: - pos: 4.5,-40.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6422 components: - pos: -3.5,-42.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6423 components: - pos: -4.5,-42.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6424 components: - pos: -5.5,-42.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6425 components: - pos: -5.5,-41.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6426 components: - pos: -5.5,-40.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6427 components: - pos: -0.5,-41.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6428 components: - pos: -0.5,-40.5 @@ -14816,15 +11962,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6429 components: - pos: -0.5,-43.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6430 components: - pos: -0.5,-44.5 @@ -14832,8 +11974,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6431 components: - pos: -0.5,-45.5 @@ -14841,8 +11981,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6432 components: - pos: -0.5,-46.5 @@ -14850,8 +11988,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6433 components: - pos: -2.5,-44.5 @@ -14859,8 +11995,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6434 components: - pos: -2.5,-45.5 @@ -14868,8 +12002,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6435 components: - pos: -2.5,-46.5 @@ -14877,8 +12009,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6436 components: - pos: 1.5,-44.5 @@ -14886,15 +12016,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6437 components: - pos: 1.5,-43.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6438 components: - pos: 1.5,-45.5 @@ -14902,8 +12028,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6439 components: - pos: 1.5,-46.5 @@ -14911,8 +12035,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableHV entities: - uid: 1475 @@ -14922,8 +12044,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1476 components: - pos: 16.5,-13.5 @@ -14931,22 +12051,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1477 components: - pos: 17.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1478 components: - pos: 17.5,-14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1479 components: - pos: 18.5,-14.5 @@ -14954,15 +12068,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1480 components: - pos: 19.5,-14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1864 components: - pos: -3.5,20.5 @@ -14970,8 +12080,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1865 components: - pos: -2.5,20.5 @@ -14979,8 +12087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1866 components: - pos: -1.5,20.5 @@ -14988,8 +12094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1867 components: - pos: -0.5,20.5 @@ -14997,8 +12101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1868 components: - pos: 0.5,20.5 @@ -15006,8 +12108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1869 components: - pos: 1.5,20.5 @@ -15015,8 +12115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1870 components: - pos: 2.5,20.5 @@ -15024,8 +12122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1871 components: - pos: -0.5,19.5 @@ -15033,8 +12129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1872 components: - pos: -0.5,18.5 @@ -15042,8 +12136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1873 components: - pos: -0.5,17.5 @@ -15051,281 +12143,201 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1874 components: - pos: -0.5,16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1875 components: - pos: -0.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1876 components: - pos: -0.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1877 components: - pos: -0.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1878 components: - pos: -0.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1879 components: - pos: -0.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1880 components: - pos: -0.5,10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1881 components: - pos: -0.5,9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1882 components: - pos: -0.5,8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1883 components: - pos: -0.5,7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1884 components: - pos: -0.5,6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1885 components: - pos: -0.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1886 components: - pos: -0.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1887 components: - pos: -0.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1888 components: - pos: 0.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1889 components: - pos: 1.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1890 components: - pos: 2.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1891 components: - pos: 3.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1892 components: - pos: 4.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1893 components: - pos: 4.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1894 components: - pos: 4.5,1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1895 components: - pos: 4.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1896 components: - pos: 4.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1897 components: - pos: 17.5,-12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1898 components: - pos: 17.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1899 components: - pos: 16.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1900 components: - pos: 15.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1901 components: - pos: 14.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1902 components: - pos: 13.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1903 components: - pos: 12.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1904 components: - pos: 11.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1905 components: - pos: 10.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1906 components: - pos: 9.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1907 components: - pos: 8.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1908 components: - pos: 7.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1909 components: - pos: 6.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1910 components: - pos: 5.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1911 components: - pos: 4.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1912 components: - pos: 3.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1913 components: - pos: 2.5,-11.5 @@ -15333,267 +12345,191 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1914 components: - pos: 1.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1915 components: - pos: 0.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1916 components: - pos: -0.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1917 components: - pos: -0.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1918 components: - pos: -0.5,-9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1919 components: - pos: -0.5,-8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1920 components: - pos: -0.5,-7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1921 components: - pos: -0.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1922 components: - pos: -1.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1923 components: - pos: -0.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1924 components: - pos: 0.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1925 components: - pos: 1.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1926 components: - pos: 2.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1927 components: - pos: 3.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1928 components: - pos: 4.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1929 components: - pos: 4.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1930 components: - pos: 4.5,-2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1931 components: - pos: 4.5,-1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1932 components: - pos: 17.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1933 components: - pos: 17.5,-9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1934 components: - pos: 17.5,-8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1935 components: - pos: 17.5,-7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1936 components: - pos: 17.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1937 components: - pos: 16.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1938 components: - pos: 15.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1939 components: - pos: 14.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1940 components: - pos: 13.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1941 components: - pos: 12.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1942 components: - pos: 12.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1943 components: - pos: 12.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1944 components: - pos: 12.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1945 components: - pos: 12.5,-2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1946 components: - pos: 12.5,-1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1947 components: - pos: 12.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1948 components: - pos: 11.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1949 components: - pos: 10.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1950 components: - pos: 9.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1951 components: - pos: 8.5,-0.5 @@ -15601,15 +12537,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1952 components: - pos: 7.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1953 components: - pos: 6.5,-0.5 @@ -15617,36 +12549,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1954 components: - pos: 5.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2523 components: - pos: 0.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2524 components: - pos: 1.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2525 components: - pos: 2.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2526 components: - pos: 3.5,12.5 @@ -15654,15 +12576,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2527 components: - pos: 4.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2528 components: - pos: 5.5,12.5 @@ -15670,92 +12588,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2529 components: - pos: 6.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2530 components: - pos: 7.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2531 components: - pos: 8.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2532 components: - pos: 9.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2533 components: - pos: 10.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2534 components: - pos: 11.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2535 components: - pos: 12.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2536 components: - pos: 13.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2537 components: - pos: 14.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2538 components: - pos: 14.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2539 components: - pos: 14.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2540 components: - pos: 14.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2541 components: - pos: 14.5,16.5 @@ -15763,8 +12655,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2542 components: - pos: 14.5,17.5 @@ -15772,8 +12662,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2543 components: - pos: 14.5,18.5 @@ -15781,8 +12669,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2544 components: - pos: 15.5,18.5 @@ -15790,8 +12676,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2545 components: - pos: 15.5,19.5 @@ -15799,22 +12683,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3257 components: - pos: 16.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3523 components: - pos: -1.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3524 components: - pos: -1.5,-6.5 @@ -15822,141 +12700,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3525 components: - pos: -1.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3526 components: - pos: -2.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3527 components: - pos: -3.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3528 components: - pos: -4.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3529 components: - pos: -5.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3530 components: - pos: -6.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3531 components: - pos: -2.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3532 components: - pos: -3.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3533 components: - pos: -4.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3534 components: - pos: -5.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3535 components: - pos: -6.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3536 components: - pos: -6.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3537 components: - pos: -6.5,-2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3538 components: - pos: -6.5,-1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3539 components: - pos: -6.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3540 components: - pos: -6.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3541 components: - pos: -6.5,1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3542 components: - pos: -6.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3543 components: - pos: -6.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3544 components: - pos: -7.5,-0.5 @@ -15964,15 +12802,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3545 components: - pos: -8.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3546 components: - pos: -9.5,-0.5 @@ -15980,183 +12814,131 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3547 components: - pos: -10.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3548 components: - pos: -11.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3549 components: - pos: -12.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3550 components: - pos: -13.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3551 components: - pos: -14.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3552 components: - pos: -15.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3553 components: - pos: -16.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3554 components: - pos: -17.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3555 components: - pos: -18.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3556 components: - pos: -19.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3557 components: - pos: -20.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3558 components: - pos: -19.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3559 components: - pos: -21.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3560 components: - pos: -21.5,1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3561 components: - pos: -21.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3562 components: - pos: -21.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3563 components: - pos: -21.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3564 components: - pos: -21.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3565 components: - pos: -20.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3566 components: - pos: -19.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3567 components: - pos: -18.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3568 components: - pos: -17.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3569 components: - pos: -16.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3570 components: - pos: -15.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3571 components: - pos: -15.5,6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3574 components: - pos: -15.5,4.5 @@ -16164,113 +12946,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3950 components: - pos: -22.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3951 components: - pos: -23.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3952 components: - pos: -24.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3953 components: - pos: -25.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3954 components: - pos: -26.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3955 components: - pos: -27.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3956 components: - pos: -28.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3957 components: - pos: -29.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3958 components: - pos: -30.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3959 components: - pos: -30.5,1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3960 components: - pos: -30.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3961 components: - pos: -30.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3962 components: - pos: -30.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3963 components: - pos: -29.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3964 components: - pos: -28.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3965 components: - pos: -27.5,4.5 @@ -16278,8 +13028,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3966 components: - pos: -27.5,5.5 @@ -16287,15 +13035,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3967 components: - pos: -27.5,6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4359 components: - pos: 22.5,-16.5 @@ -16303,8 +13047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4360 components: - pos: 22.5,-15.5 @@ -16312,29 +13054,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4667 components: - pos: 5.5,-28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4668 components: - pos: 5.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4669 components: - pos: 5.5,-29.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4764 components: - pos: 17.5,-17.5 @@ -16342,8 +13076,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4765 components: - pos: 16.5,-17.5 @@ -16351,8 +13083,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4766 components: - pos: 16.5,-18.5 @@ -16360,99 +13090,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4767 components: - pos: 16.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4768 components: - pos: 16.5,-20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4769 components: - pos: 17.5,-20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4770 components: - pos: 18.5,-20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4771 components: - pos: 19.5,-20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4772 components: - pos: 20.5,-20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4773 components: - pos: 20.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4774 components: - pos: 20.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4775 components: - pos: 20.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4776 components: - pos: 20.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4777 components: - pos: 20.5,-15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4778 components: - pos: 20.5,-14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4779 components: - pos: 16.5,-21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4780 components: - pos: 16.5,-22.5 @@ -16460,232 +13162,166 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4781 components: - pos: 16.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4782 components: - pos: 16.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4783 components: - pos: 16.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4784 components: - pos: 15.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4785 components: - pos: 14.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4786 components: - pos: 13.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4787 components: - pos: 12.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4788 components: - pos: 12.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4789 components: - pos: 12.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4790 components: - pos: 12.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4791 components: - pos: 12.5,-21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4792 components: - pos: 12.5,-20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4793 components: - pos: 12.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4794 components: - pos: 12.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4795 components: - pos: 11.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4796 components: - pos: 10.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4797 components: - pos: 9.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4798 components: - pos: 8.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4799 components: - pos: 7.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4800 components: - pos: 6.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4801 components: - pos: 5.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4802 components: - pos: 4.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4803 components: - pos: 3.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4804 components: - pos: 2.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4805 components: - pos: 1.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4806 components: - pos: 0.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4808 components: - pos: -0.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4809 components: - pos: -0.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4810 components: - pos: -0.5,-15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4811 components: - pos: -0.5,-14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4812 components: - pos: -0.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4813 components: - pos: -0.5,-12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4814 components: - pos: 15.5,-17.5 @@ -16693,22 +13329,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4856 components: - pos: 0.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4972 components: - pos: 15.5,-21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4974 components: - pos: 18.5,-17.5 @@ -16716,15 +13346,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4975 components: - pos: 19.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5071 components: - pos: 22.5,-17.5 @@ -16732,50 +13358,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5072 components: - pos: 23.5,-15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5073 components: - pos: 23.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5074 components: - pos: 23.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5081 components: - pos: 21.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5082 components: - pos: 21.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5083 components: - pos: 21.5,-15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5084 components: - pos: 24.5,-16.5 @@ -16783,8 +13395,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5085 components: - pos: 25.5,-16.5 @@ -16792,8 +13402,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5086 components: - pos: 26.5,-16.5 @@ -16801,8 +13409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5087 components: - pos: 27.5,-16.5 @@ -16810,71 +13416,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5088 components: - pos: 28.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5089 components: - pos: 29.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5090 components: - pos: 30.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5091 components: - pos: 31.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5092 components: - pos: 32.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5093 components: - pos: 32.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5094 components: - pos: 32.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5095 components: - pos: 32.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5096 components: - pos: 32.5,-20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5097 components: - pos: 32.5,-21.5 @@ -16882,8 +13468,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5098 components: - pos: 32.5,-22.5 @@ -16891,8 +13475,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5099 components: - pos: 32.5,-23.5 @@ -16900,8 +13482,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5100 components: - pos: 32.5,-24.5 @@ -16909,8 +13489,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5101 components: - pos: 32.5,-25.5 @@ -16918,8 +13496,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5185 components: - pos: 31.5,-25.5 @@ -16927,8 +13503,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5186 components: - pos: 30.5,-25.5 @@ -16936,8 +13510,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5187 components: - pos: 33.5,-25.5 @@ -16945,8 +13517,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5188 components: - pos: 34.5,-25.5 @@ -16954,8 +13524,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5189 components: - pos: 34.5,-23.5 @@ -16963,8 +13531,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5190 components: - pos: 33.5,-23.5 @@ -16972,8 +13538,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5191 components: - pos: 31.5,-23.5 @@ -16981,8 +13545,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5192 components: - pos: 30.5,-23.5 @@ -16990,8 +13552,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5193 components: - pos: 31.5,-21.5 @@ -16999,8 +13559,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5194 components: - pos: 30.5,-21.5 @@ -17008,8 +13566,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5195 components: - pos: 33.5,-21.5 @@ -17017,8 +13573,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5196 components: - pos: 34.5,-21.5 @@ -17026,344 +13580,246 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5341 components: - pos: 29.5,-21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5342 components: - pos: 29.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5343 components: - pos: 29.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5344 components: - pos: 29.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5807 components: - pos: -3.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5808 components: - pos: 1.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5809 components: - pos: 2.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5810 components: - pos: 3.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5811 components: - pos: 4.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5812 components: - pos: -1.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5813 components: - pos: -2.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6006 components: - pos: 12.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6007 components: - pos: 12.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6008 components: - pos: 12.5,-28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6009 components: - pos: 12.5,-29.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6010 components: - pos: 12.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6011 components: - pos: 12.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6012 components: - pos: 11.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6013 components: - pos: 10.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6014 components: - pos: 9.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6015 components: - pos: 8.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6016 components: - pos: 7.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6017 components: - pos: 6.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6018 components: - pos: 5.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6019 components: - pos: -6.5,-28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6020 components: - pos: -6.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6021 components: - pos: -5.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6022 components: - pos: -0.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6023 components: - pos: 5.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6026 components: - pos: 0.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6027 components: - pos: -4.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6028 components: - pos: -6.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6029 components: - pos: -6.5,-29.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6030 components: - pos: -6.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6031 components: - pos: -7.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6032 components: - pos: -8.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6033 components: - pos: -9.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6034 components: - pos: -10.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6035 components: - pos: -11.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6036 components: - pos: -12.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6037 components: - pos: -13.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6038 components: - pos: -14.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6039 components: - pos: -14.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6040 components: - pos: -14.5,-29.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6041 components: - pos: -14.5,-28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6042 components: - pos: -14.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6043 components: - pos: -14.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6044 components: - pos: -14.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6045 components: - pos: -15.5,-25.5 @@ -17371,15 +13827,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6046 components: - pos: -16.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6047 components: - pos: -17.5,-25.5 @@ -17387,43 +13839,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6048 components: - pos: -18.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6049 components: - pos: -18.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6050 components: - pos: -18.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6051 components: - pos: -18.5,-28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6052 components: - pos: -18.5,-29.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6053 components: - pos: -17.5,-29.5 @@ -17431,8 +13871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6054 components: - pos: -16.5,-29.5 @@ -17440,36 +13878,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6166 components: - pos: -6.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6167 components: - pos: -5.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6168 components: - pos: -4.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6169 components: - pos: -3.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6170 components: - pos: -2.5,-32.5 @@ -17477,8 +13905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6171 components: - pos: -2.5,-33.5 @@ -17486,8 +13912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6172 components: - pos: -2.5,-31.5 @@ -17495,36 +13919,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6173 components: - pos: 5.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6174 components: - pos: 4.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6175 components: - pos: 3.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6176 components: - pos: 2.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6177 components: - pos: 1.5,-32.5 @@ -17532,8 +13946,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6178 components: - pos: 1.5,-33.5 @@ -17541,8 +13953,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6179 components: - pos: 1.5,-31.5 @@ -17550,85 +13960,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6253 components: - pos: -3.5,-33.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6254 components: - pos: -3.5,-34.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6255 components: - pos: -3.5,-35.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6256 components: - pos: -2.5,-35.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6257 components: - pos: -1.5,-35.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6258 components: - pos: -0.5,-35.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6259 components: - pos: 0.5,-35.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6260 components: - pos: 1.5,-35.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6261 components: - pos: 2.5,-35.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6262 components: - pos: 2.5,-34.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6263 components: - pos: 2.5,-33.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6264 components: - pos: -0.5,-34.5 @@ -17636,8 +14022,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6265 components: - pos: 0.5,-34.5 @@ -17645,8 +14029,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6266 components: - pos: -1.5,-34.5 @@ -17654,15 +14036,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6616 components: - pos: 29.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - proto: CableMV entities: - uid: 1146 @@ -17672,8 +14050,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1147 components: - pos: 16.5,-13.5 @@ -17681,64 +14057,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1148 components: - pos: 17.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1149 components: - pos: 17.5,-12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1150 components: - pos: 17.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1151 components: - pos: 18.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1153 components: - pos: 19.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1154 components: - pos: 21.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1155 components: - pos: 22.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1156 components: - pos: 23.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1157 components: - pos: 23.5,-10.5 @@ -17746,64 +14104,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1158 components: - pos: 17.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1159 components: - pos: 17.5,-9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1160 components: - pos: 17.5,-8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1161 components: - pos: 17.5,-7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1162 components: - pos: 17.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1163 components: - pos: 18.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1164 components: - pos: 19.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1165 components: - pos: 20.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1166 components: - pos: 20.5,-7.5 @@ -17811,71 +14151,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1167 components: - pos: 16.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1168 components: - pos: 15.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1169 components: - pos: 13.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1170 components: - pos: 14.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1171 components: - pos: 12.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1172 components: - pos: 11.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1173 components: - pos: 10.5,-6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1174 components: - pos: 10.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1175 components: - pos: 10.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1176 components: - pos: 10.5,-3.5 @@ -17883,57 +14203,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1182 components: - pos: 19.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1321 components: - pos: -3.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1323 components: - pos: 16.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1324 components: - pos: 15.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1325 components: - pos: 14.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1326 components: - pos: 13.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1327 components: - pos: 12.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1328 components: - pos: 12.5,-10.5 @@ -17941,85 +14245,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1329 components: - pos: 11.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1330 components: - pos: 10.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1331 components: - pos: 9.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1332 components: - pos: 8.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1333 components: - pos: 7.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1334 components: - pos: 6.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1335 components: - pos: 5.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1336 components: - pos: 4.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1337 components: - pos: 3.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1338 components: - pos: 3.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1339 components: - pos: 3.5,-9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1340 components: - pos: 3.5,-8.5 @@ -18027,8 +14307,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1805 components: - pos: -3.5,20.5 @@ -18036,43 +14314,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1806 components: - pos: -3.5,21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1807 components: - pos: -4.5,21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1808 components: - pos: -5.5,21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1809 components: - pos: -5.5,20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1810 components: - pos: -5.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1811 components: - pos: -4.5,19.5 @@ -18080,36 +14346,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1812 components: - pos: -6.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1813 components: - pos: -6.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1814 components: - pos: -6.5,17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1815 components: - pos: -5.5,17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1816 components: - pos: -4.5,17.5 @@ -18117,57 +14373,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1817 components: - pos: -6.5,16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1818 components: - pos: -6.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1819 components: - pos: -6.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1820 components: - pos: -6.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1821 components: - pos: -6.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1822 components: - pos: -7.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1823 components: - pos: -8.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1824 components: - pos: -8.5,13.5 @@ -18175,22 +14415,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1825 components: - pos: -5.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1826 components: - pos: -5.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1827 components: - pos: -4.5,11.5 @@ -18198,78 +14432,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1828 components: - pos: -7.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1829 components: - pos: -8.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1830 components: - pos: -9.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1831 components: - pos: -10.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1832 components: - pos: -10.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1833 components: - pos: -10.5,17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1834 components: - pos: -11.5,17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1835 components: - pos: -12.5,17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1836 components: - pos: -13.5,17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1837 components: - pos: -14.5,17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1838 components: - pos: -14.5,18.5 @@ -18277,8 +14489,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1839 components: - pos: 2.5,20.5 @@ -18286,8 +14496,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1840 components: - pos: 1.5,20.5 @@ -18295,8 +14503,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1841 components: - pos: 0.5,20.5 @@ -18304,8 +14510,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1842 components: - pos: -0.5,20.5 @@ -18313,8 +14517,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1843 components: - pos: -0.5,19.5 @@ -18322,8 +14524,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1844 components: - pos: -0.5,18.5 @@ -18331,8 +14531,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1845 components: - pos: -0.5,17.5 @@ -18340,120 +14538,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1846 components: - pos: -0.5,16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1847 components: - pos: -0.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1848 components: - pos: -0.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1849 components: - pos: -0.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1850 components: - pos: -0.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1851 components: - pos: -0.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1852 components: - pos: -0.5,10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1853 components: - pos: -0.5,9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1854 components: - pos: -0.5,8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1855 components: - pos: -0.5,7.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1856 components: - pos: -0.5,6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1857 components: - pos: -0.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1858 components: - pos: -0.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1859 components: - pos: -1.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1860 components: - pos: -2.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1862 components: - pos: -2.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 1863 components: - pos: -2.5,2.5 @@ -18461,22 +14625,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2014 components: - pos: 0.5,16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2015 components: - pos: 1.5,16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2016 components: - pos: 1.5,17.5 @@ -18484,22 +14642,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2017 components: - pos: -0.5,21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2018 components: - pos: -1.5,21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2019 components: - pos: -1.5,22.5 @@ -18507,8 +14659,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2056 components: - pos: -3.5,5.5 @@ -18516,8 +14666,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2947 components: - pos: 15.5,19.5 @@ -18525,8 +14673,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2948 components: - pos: 15.5,18.5 @@ -18534,8 +14680,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2949 components: - pos: 14.5,18.5 @@ -18543,8 +14687,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2950 components: - pos: 14.5,17.5 @@ -18552,8 +14694,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2951 components: - pos: 14.5,16.5 @@ -18561,71 +14701,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2952 components: - pos: 14.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2953 components: - pos: 14.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2954 components: - pos: 14.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2955 components: - pos: 15.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2956 components: - pos: 16.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2957 components: - pos: 17.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2958 components: - pos: 17.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2959 components: - pos: 17.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2960 components: - pos: 17.5,16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2961 components: - pos: 17.5,17.5 @@ -18633,71 +14753,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2962 components: - pos: 17.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2963 components: - pos: 18.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2964 components: - pos: 19.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2965 components: - pos: 20.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2966 components: - pos: 21.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2967 components: - pos: 22.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2968 components: - pos: 23.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2969 components: - pos: 24.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2970 components: - pos: 24.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2971 components: - pos: 24.5,14.5 @@ -18705,78 +14805,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2972 components: - pos: 19.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2973 components: - pos: 19.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2974 components: - pos: 19.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2975 components: - pos: 19.5,16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2976 components: - pos: 19.5,17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2977 components: - pos: 19.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2978 components: - pos: 19.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2979 components: - pos: 19.5,20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2980 components: - pos: 19.5,21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2981 components: - pos: 20.5,21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2982 components: - pos: 21.5,21.5 @@ -18784,127 +14862,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2983 components: - pos: 25.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2984 components: - pos: 26.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2985 components: - pos: 27.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2986 components: - pos: 28.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2987 components: - pos: 29.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2988 components: - pos: 30.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2989 components: - pos: 31.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2990 components: - pos: 32.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2991 components: - pos: 33.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2992 components: - pos: 34.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2993 components: - pos: 34.5,13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2994 components: - pos: 34.5,14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2995 components: - pos: 34.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2996 components: - pos: 34.5,16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2997 components: - pos: 34.5,17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2998 components: - pos: 34.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 2999 components: - pos: 34.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3000 components: - pos: 35.5,19.5 @@ -18912,57 +14954,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3001 components: - pos: 13.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3002 components: - pos: 12.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3003 components: - pos: 11.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3004 components: - pos: 10.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3005 components: - pos: 9.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3006 components: - pos: 8.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3007 components: - pos: 7.5,15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3008 components: - pos: 7.5,16.5 @@ -18970,92 +14996,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3009 components: - pos: 11.5,16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3010 components: - pos: 11.5,17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3011 components: - pos: 11.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3012 components: - pos: 11.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3013 components: - pos: 11.5,20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3014 components: - pos: 11.5,21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3015 components: - pos: 10.5,21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3016 components: - pos: 9.5,21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3017 components: - pos: 9.5,20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3018 components: - pos: 9.5,19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3019 components: - pos: 9.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3020 components: - pos: 8.5,18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3021 components: - pos: 7.5,18.5 @@ -19063,36 +15063,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3022 components: - pos: 9.5,22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3023 components: - pos: 9.5,23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3024 components: - pos: 9.5,24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3025 components: - pos: 9.5,25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3026 components: - pos: 9.5,26.5 @@ -19100,43 +15090,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3027 components: - pos: 9.5,27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3028 components: - pos: 9.5,28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3029 components: - pos: 9.5,29.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3030 components: - pos: 9.5,30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3031 components: - pos: 8.5,30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3032 components: - pos: 7.5,30.5 @@ -19144,22 +15122,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3575 components: - pos: -15.5,6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3576 components: - pos: -15.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3578 components: - pos: -14.5,6.5 @@ -19167,8 +15139,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3579 components: - pos: -13.5,6.5 @@ -19176,64 +15146,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3580 components: - pos: -16.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3581 components: - pos: -17.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3582 components: - pos: -18.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3583 components: - pos: -19.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3584 components: - pos: -20.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3585 components: - pos: -21.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3586 components: - pos: -22.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3587 components: - pos: -22.5,6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3588 components: - pos: -22.5,7.5 @@ -19241,43 +15193,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3589 components: - pos: -22.5,8.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3590 components: - pos: -22.5,9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3591 components: - pos: -22.5,10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3592 components: - pos: -22.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3593 components: - pos: -22.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3594 components: - pos: -22.5,13.5 @@ -19285,57 +15225,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3595 components: - pos: -21.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3596 components: - pos: -20.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3597 components: - pos: -19.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3598 components: - pos: -18.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3599 components: - pos: -17.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3600 components: - pos: -16.5,11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3601 components: - pos: -16.5,12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 3602 components: - pos: -16.5,13.5 @@ -19343,8 +15267,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4105 components: - pos: -31.5,2.5 @@ -19352,57 +15274,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4106 components: - pos: -31.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4107 components: - pos: -31.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4108 components: - pos: -31.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4109 components: - pos: -31.5,6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4110 components: - pos: -30.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4111 components: - pos: -29.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4112 components: - pos: -28.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4113 components: - pos: -27.5,4.5 @@ -19410,8 +15316,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4114 components: - pos: -27.5,5.5 @@ -19419,15 +15323,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4115 components: - pos: -27.5,6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4116 components: - pos: -31.5,7.5 @@ -19435,43 +15335,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4117 components: - pos: -31.5,1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4118 components: - pos: -31.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4119 components: - pos: -31.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4120 components: - pos: -30.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4121 components: - pos: -29.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4122 components: - pos: -28.5,-0.5 @@ -19479,15 +15367,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4123 components: - pos: -27.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4124 components: - pos: -26.5,-0.5 @@ -19495,50 +15379,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4125 components: - pos: -25.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4126 components: - pos: -24.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4127 components: - pos: -23.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4128 components: - pos: -22.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4129 components: - pos: -21.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4130 components: - pos: -21.5,-1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4131 components: - pos: -21.5,-2.5 @@ -19546,43 +15416,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4132 components: - pos: -20.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4133 components: - pos: -19.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4134 components: - pos: -18.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4135 components: - pos: -17.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4136 components: - pos: -17.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4137 components: - pos: -17.5,1.5 @@ -19590,43 +15448,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4138 components: - pos: -16.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4139 components: - pos: -15.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4140 components: - pos: -14.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4141 components: - pos: -13.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4142 components: - pos: -13.5,-1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4143 components: - pos: -13.5,-2.5 @@ -19634,15 +15480,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4807 components: - pos: 0.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4817 components: - pos: 15.5,-17.5 @@ -19650,15 +15492,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4818 components: - pos: 15.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4819 components: - pos: 16.5,-18.5 @@ -19666,29 +15504,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4820 components: - pos: 16.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4821 components: - pos: 16.5,-20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4822 components: - pos: 16.5,-21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4823 components: - pos: 16.5,-22.5 @@ -19696,92 +15526,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4824 components: - pos: 16.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4825 components: - pos: 15.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4826 components: - pos: 14.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4827 components: - pos: 13.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4828 components: - pos: 13.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4829 components: - pos: 12.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4830 components: - pos: 11.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4831 components: - pos: 10.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4832 components: - pos: 9.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4833 components: - pos: 8.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4834 components: - pos: 8.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4835 components: - pos: 8.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4836 components: - pos: 7.5,-24.5 @@ -19789,64 +15593,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4837 components: - pos: 12.5,-21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4838 components: - pos: 12.5,-20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4839 components: - pos: 12.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4840 components: - pos: 11.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4841 components: - pos: 10.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4842 components: - pos: 9.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4843 components: - pos: 8.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4844 components: - pos: 8.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4845 components: - pos: 8.5,-17.5 @@ -19854,64 +15640,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4846 components: - pos: 7.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4847 components: - pos: 6.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4848 components: - pos: 5.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4849 components: - pos: 4.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4850 components: - pos: 3.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4851 components: - pos: 2.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4852 components: - pos: 1.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4853 components: - pos: 1.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4854 components: - pos: 1.5,-20.5 @@ -19919,92 +15687,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4855 components: - pos: 0.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4857 components: - pos: -0.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4858 components: - pos: -0.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4859 components: - pos: -0.5,-15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4860 components: - pos: -0.5,-14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4861 components: - pos: -0.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4862 components: - pos: -0.5,-12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4863 components: - pos: -0.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4864 components: - pos: -0.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4865 components: - pos: -0.5,-9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4866 components: - pos: -1.5,-9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4867 components: - pos: -2.5,-9.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4868 components: - pos: -3.5,-9.5 @@ -20012,71 +15754,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4869 components: - pos: -0.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4870 components: - pos: -0.5,-20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4871 components: - pos: -0.5,-21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4872 components: - pos: -0.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4873 components: - pos: -0.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4874 components: - pos: -0.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4875 components: - pos: -0.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4876 components: - pos: -1.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4877 components: - pos: -2.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4878 components: - pos: -2.5,-24.5 @@ -20084,64 +15806,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4879 components: - pos: -3.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4880 components: - pos: -4.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4881 components: - pos: -5.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4882 components: - pos: -6.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4883 components: - pos: -7.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4884 components: - pos: -8.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4885 components: - pos: -9.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4886 components: - pos: -9.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4887 components: - pos: -8.5,-24.5 @@ -20149,71 +15853,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4888 components: - pos: -1.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4889 components: - pos: -2.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4890 components: - pos: -3.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4891 components: - pos: -4.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4892 components: - pos: -5.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4893 components: - pos: -6.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4894 components: - pos: -7.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4895 components: - pos: -8.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4896 components: - pos: -9.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4897 components: - pos: -9.5,-17.5 @@ -20221,22 +15905,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4966 components: - pos: -1.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4967 components: - pos: -1.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4976 components: - pos: 17.5,-17.5 @@ -20244,8 +15922,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4978 components: - pos: 18.5,-17.5 @@ -20253,50 +15929,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4979 components: - pos: 19.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4980 components: - pos: 20.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4981 components: - pos: 20.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4982 components: - pos: 20.5,-15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4983 components: - pos: 20.5,-14.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4984 components: - pos: 20.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4985 components: - pos: 20.5,-12.5 @@ -20304,43 +15966,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4986 components: - pos: 20.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4987 components: - pos: 21.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4988 components: - pos: 20.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4989 components: - pos: 20.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4990 components: - pos: 19.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 4991 components: - pos: 18.5,-19.5 @@ -20348,71 +15998,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5277 components: - pos: 21.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5278 components: - pos: 22.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5279 components: - pos: 23.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5280 components: - pos: 24.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5281 components: - pos: 25.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5282 components: - pos: 26.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5283 components: - pos: 27.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5284 components: - pos: 28.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5285 components: - pos: 29.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5286 components: - pos: 29.5,-19.5 @@ -20420,36 +16050,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5287 components: - pos: 30.5,-18.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5288 components: - pos: 30.5,-17.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5289 components: - pos: 30.5,-16.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5290 components: - pos: 30.5,-15.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5291 components: - pos: 30.5,-14.5 @@ -20457,64 +16077,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5292 components: - pos: 30.5,-13.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5293 components: - pos: 30.5,-12.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5294 components: - pos: 30.5,-11.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5295 components: - pos: 30.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5296 components: - pos: 31.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5297 components: - pos: 32.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5298 components: - pos: 33.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5299 components: - pos: 34.5,-10.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5300 components: - pos: 34.5,-9.5 @@ -20522,8 +16124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5301 components: - pos: 22.5,-23.5 @@ -20531,50 +16131,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5302 components: - pos: 23.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5303 components: - pos: 24.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5304 components: - pos: 24.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5305 components: - pos: 24.5,-21.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5306 components: - pos: 24.5,-20.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5307 components: - pos: 24.5,-19.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5424 components: - pos: 16.5,-28.5 @@ -20582,99 +16168,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5425 components: - pos: 16.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5426 components: - pos: 16.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5427 components: - pos: 16.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5428 components: - pos: 17.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5429 components: - pos: 18.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5430 components: - pos: 19.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5431 components: - pos: 20.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5432 components: - pos: 21.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5433 components: - pos: 22.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5434 components: - pos: 23.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5435 components: - pos: 24.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5436 components: - pos: 24.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5437 components: - pos: 20.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5438 components: - pos: 20.5,-23.5 @@ -20682,8 +16240,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5439 components: - pos: 21.5,-23.5 @@ -20691,8 +16247,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5440 components: - pos: 19.5,-23.5 @@ -20700,43 +16254,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5832 components: - pos: 10.5,6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5833 components: - pos: 9.5,6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5834 components: - pos: 9.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5835 components: - pos: 9.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5836 components: - pos: 9.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5837 components: - pos: 9.5,2.5 @@ -20744,64 +16286,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5838 components: - pos: 9.5,1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5839 components: - pos: 10.5,1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5840 components: - pos: 10.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5841 components: - pos: 10.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5842 components: - pos: 10.5,-1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5843 components: - pos: 10.5,-2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5844 components: - pos: 11.5,6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5845 components: - pos: 12.5,6.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5846 components: - pos: 12.5,7.5 @@ -20809,8 +16333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5854 components: - pos: 20.5,6.5 @@ -20818,148 +16340,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5855 components: - pos: 20.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5856 components: - pos: 19.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5857 components: - pos: 18.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5858 components: - pos: 17.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5859 components: - pos: 16.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5860 components: - pos: 15.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5861 components: - pos: 14.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5862 components: - pos: 13.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5863 components: - pos: 12.5,5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5865 components: - pos: 20.5,4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5866 components: - pos: 20.5,3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5867 components: - pos: 20.5,2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5868 components: - pos: 20.5,1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5869 components: - pos: 20.5,0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5870 components: - pos: 20.5,-0.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5871 components: - pos: 20.5,-1.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5872 components: - pos: 20.5,-2.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5873 components: - pos: 20.5,-3.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5874 components: - pos: 20.5,-4.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 5875 components: - pos: 20.5,-5.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6055 components: - pos: -16.5,-29.5 @@ -20967,8 +16447,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6056 components: - pos: -16.5,-30.5 @@ -20976,8 +16454,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6057 components: - pos: -17.5,-29.5 @@ -20985,64 +16461,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6058 components: - pos: -18.5,-29.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6059 components: - pos: -18.5,-28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6060 components: - pos: -18.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6061 components: - pos: -18.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6062 components: - pos: -18.5,-25.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6063 components: - pos: -18.5,-24.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6064 components: - pos: -18.5,-23.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6065 components: - pos: -18.5,-22.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6066 components: - pos: -17.5,-22.5 @@ -21050,57 +16508,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6104 components: - pos: -17.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6105 components: - pos: -16.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6106 components: - pos: -15.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6107 components: - pos: -14.5,-26.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6108 components: - pos: -14.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6109 components: - pos: -14.5,-28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6110 components: - pos: -14.5,-28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6111 components: - pos: -15.5,-28.5 @@ -21108,57 +16550,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6182 components: - pos: -14.5,-29.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6183 components: - pos: -14.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6184 components: - pos: -13.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6185 components: - pos: -12.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6186 components: - pos: -11.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6187 components: - pos: -10.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6188 components: - pos: -9.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6189 components: - pos: -8.5,-30.5 @@ -21166,8 +16592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6190 components: - pos: 7.5,-30.5 @@ -21175,148 +16599,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6191 components: - pos: 8.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6192 components: - pos: 9.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6193 components: - pos: 10.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6194 components: - pos: 11.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6195 components: - pos: 12.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6196 components: - pos: 13.5,-30.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6197 components: - pos: 13.5,-29.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6198 components: - pos: 13.5,-28.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6199 components: - pos: 13.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6200 components: - pos: 14.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6201 components: - pos: 15.5,-27.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6336 components: - pos: -8.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6337 components: - pos: -7.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6338 components: - pos: -6.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6339 components: - pos: -5.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6340 components: - pos: -4.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6341 components: - pos: -3.5,-31.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6342 components: - pos: -3.5,-32.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6343 components: - pos: -3.5,-33.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6344 components: - pos: -3.5,-34.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6345 components: - pos: -2.5,-34.5 @@ -21324,78 +16706,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6398 components: - pos: -2.5,-35.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6399 components: - pos: -2.5,-36.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6400 components: - pos: -2.5,-36.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6401 components: - pos: -1.5,-37.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6402 components: - pos: -2.5,-37.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6403 components: - pos: -1.5,-38.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6404 components: - pos: -1.5,-39.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6405 components: - pos: -1.5,-40.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6406 components: - pos: -1.5,-41.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6407 components: - pos: -2.5,-41.5 parent: 1668 type: Transform - - fixtures: {} - type: Fixtures - uid: 6408 components: - pos: -2.5,-40.5 @@ -21403,8 +16763,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableTerminal entities: - uid: 5075 @@ -22830,15 +18188,13 @@ entities: - pos: 11.5,-13.5 parent: 1668 type: Transform + - links: + - 575 + type: DeviceLinkSink - containers: - machine_parts - machine_board type: Construction - - inputs: - CloningPodReceiver: - - port: CloningPodSender - uid: 575 - type: SignalReceiver - proto: ClosetBase entities: - uid: 2491 @@ -23368,6 +18724,13 @@ entities: - pos: -3.5,-23.5 parent: 1668 type: Transform +- proto: ClothingOuterArmorBasic + entities: + - uid: 3723 + components: + - pos: -14.615115,9.379518 + parent: 1668 + type: Transform - proto: ClothingOuterArmorCaptainCarapace entities: - uid: 3771 @@ -23425,13 +18788,6 @@ entities: - pos: 5.655767,-42.432423 parent: 1668 type: Transform -- proto: ClothingOuterVestKevlar - entities: - - uid: 3723 - components: - - pos: -14.615115,9.379518 - parent: 1668 - type: Transform - proto: ClothingShoesBootsLaceup entities: - uid: 3722 @@ -23862,14 +19218,10 @@ entities: pos: 9.5,-13.5 parent: 1668 type: Transform - - outputs: - MedicalScannerSender: - - port: MedicalScannerReceiver - uid: 723 - CloningPodSender: - - port: CloningPodReceiver - uid: 722 - type: SignalTransmitter + - linkedPorts: + 722: + - CloningPodSender: CloningPodReceiver + type: DeviceLinkSource - proto: ComputerComms entities: - uid: 652 @@ -24086,252 +19438,132 @@ entities: pos: -16.5,24.5 parent: 1668 type: Transform - - inputs: - Reverse: - - port: Right - uid: 1588 - Forward: - - port: Left - uid: 1588 - Off: - - port: Middle - uid: 1588 - type: SignalReceiver + - links: + - 1588 + type: DeviceLinkSink - uid: 1577 components: - rot: -1.5707963267948966 rad pos: -15.5,24.5 parent: 1668 type: Transform - - inputs: - Reverse: - - port: Right - uid: 1588 - Forward: - - port: Left - uid: 1588 - Off: - - port: Middle - uid: 1588 - type: SignalReceiver + - links: + - 1588 + type: DeviceLinkSink - uid: 1578 components: - rot: -1.5707963267948966 rad pos: -14.5,24.5 parent: 1668 type: Transform - - inputs: - Reverse: - - port: Right - uid: 1588 - Forward: - - port: Left - uid: 1588 - Off: - - port: Middle - uid: 1588 - type: SignalReceiver + - links: + - 1588 + type: DeviceLinkSink - uid: 1579 components: - rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 1668 type: Transform - - inputs: - Reverse: - - port: Right - uid: 1588 - Forward: - - port: Left - uid: 1588 - Off: - - port: Middle - uid: 1588 - type: SignalReceiver + - links: + - 1588 + type: DeviceLinkSink - uid: 1580 components: - rot: -1.5707963267948966 rad pos: -12.5,24.5 parent: 1668 type: Transform - - inputs: - Reverse: - - port: Right - uid: 1588 - Forward: - - port: Left - uid: 1588 - Off: - - port: Middle - uid: 1588 - type: SignalReceiver + - links: + - 1588 + type: DeviceLinkSink - uid: 1581 components: - rot: -1.5707963267948966 rad pos: -11.5,24.5 parent: 1668 type: Transform - - inputs: - Reverse: - - port: Right - uid: 1588 - Forward: - - port: Left - uid: 1588 - Off: - - port: Middle - uid: 1588 - type: SignalReceiver + - links: + - 1588 + type: DeviceLinkSink - uid: 1582 components: - rot: 1.5707963267948966 rad pos: -16.5,28.5 parent: 1668 type: Transform - - inputs: - Reverse: - - port: Right - uid: 1589 - Forward: - - port: Left - uid: 1589 - Off: - - port: Middle - uid: 1589 - type: SignalReceiver + - links: + - 1589 + type: DeviceLinkSink - uid: 1583 components: - rot: 1.5707963267948966 rad pos: -15.5,28.5 parent: 1668 type: Transform - - inputs: - Reverse: - - port: Right - uid: 1589 - Forward: - - port: Left - uid: 1589 - Off: - - port: Middle - uid: 1589 - type: SignalReceiver + - links: + - 1589 + type: DeviceLinkSink - uid: 1584 components: - rot: 1.5707963267948966 rad pos: -14.5,28.5 parent: 1668 type: Transform - - inputs: - Reverse: - - port: Right - uid: 1589 - Forward: - - port: Left - uid: 1589 - Off: - - port: Middle - uid: 1589 - type: SignalReceiver + - links: + - 1589 + type: DeviceLinkSink - uid: 1585 components: - rot: 1.5707963267948966 rad pos: -13.5,28.5 parent: 1668 type: Transform - - inputs: - Reverse: - - port: Right - uid: 1589 - Forward: - - port: Left - uid: 1589 - Off: - - port: Middle - uid: 1589 - type: SignalReceiver + - links: + - 1589 + type: DeviceLinkSink - uid: 1586 components: - rot: 1.5707963267948966 rad pos: -12.5,28.5 parent: 1668 type: Transform - - inputs: - Reverse: - - port: Right - uid: 1589 - Forward: - - port: Left - uid: 1589 - Off: - - port: Middle - uid: 1589 - type: SignalReceiver + - links: + - 1589 + type: DeviceLinkSink - uid: 1587 components: - rot: 1.5707963267948966 rad pos: -11.5,28.5 parent: 1668 type: Transform - - inputs: - Reverse: - - port: Right - uid: 1589 - Forward: - - port: Left - uid: 1589 - Off: - - port: Middle - uid: 1589 - type: SignalReceiver + - links: + - 1589 + type: DeviceLinkSink - uid: 5902 components: - pos: -19.5,-33.5 parent: 1668 type: Transform - - inputs: - Reverse: - - port: Right - uid: 5906 - Forward: - - port: Left - uid: 5906 - Off: - - port: Middle - uid: 5906 - type: SignalReceiver + - links: + - 5906 + type: DeviceLinkSink - uid: 5903 components: - pos: -19.5,-32.5 parent: 1668 type: Transform - - inputs: - Reverse: - - port: Right - uid: 5906 - Forward: - - port: Left - uid: 5906 - Off: - - port: Middle - uid: 5906 - type: SignalReceiver + - links: + - 5906 + type: DeviceLinkSink - uid: 5904 components: - pos: -19.5,-31.5 parent: 1668 type: Transform - - inputs: - Reverse: - - port: Right - uid: 5906 - Forward: - - port: Left - uid: 5906 - Off: - - port: Middle - uid: 5906 - type: SignalReceiver + - links: + - 5906 + type: DeviceLinkSink - proto: CrateArmoryLaser entities: - uid: 6533 @@ -31529,11 +26761,6 @@ entities: - pos: 9.5,-14.5 parent: 1668 type: Transform - - inputs: - MedicalScannerReceiver: - - port: MedicalScannerSender - uid: 575 - type: SignalReceiver - proto: MedicalTechFab entities: - uid: 616 @@ -34241,17 +29468,9 @@ entities: pos: -19.5,-31.5 parent: 1668 type: Transform - - inputs: - Reverse: - - port: Right - uid: 5907 - Forward: - - port: Left - uid: 5907 - Off: - - port: Middle - uid: 5907 - type: SignalReceiver + - links: + - 5907 + type: DeviceLinkSink - proto: ReinforcedPlasmaWindow entities: - uid: 2791 @@ -35933,15 +31152,14 @@ entities: - pos: -4.5,-8.5 parent: 1668 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 786 - - port: Toggle - uid: 787 - - port: Toggle - uid: 788 - type: SignalTransmitter + - linkedPorts: + 786: + - Pressed: Toggle + 787: + - Pressed: Toggle + 788: + - Pressed: Toggle + type: DeviceLinkSource - uid: 1434 components: - name: North Doors @@ -35949,15 +31167,14 @@ entities: - pos: -1.5,1.5 parent: 1668 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1430 - - port: Toggle - uid: 1431 - - port: Toggle - uid: 1432 - type: SignalTransmitter + - linkedPorts: + 1430: + - Pressed: Toggle + 1431: + - Pressed: Toggle + 1432: + - Pressed: Toggle + type: DeviceLinkSource - uid: 1435 components: - name: East Doors @@ -35965,19 +31182,18 @@ entities: - pos: 0.5,1.5 parent: 1668 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 720 - - port: Toggle - uid: 719 - - port: Toggle - uid: 718 - - port: Toggle - uid: 717 - - port: Toggle - uid: 716 - type: SignalTransmitter + - linkedPorts: + 720: + - Pressed: Toggle + 719: + - Pressed: Toggle + 718: + - Pressed: Toggle + 717: + - Pressed: Toggle + 716: + - Pressed: Toggle + type: DeviceLinkSource - uid: 1436 components: - name: South Doors @@ -35985,67 +31201,62 @@ entities: - pos: 0.5,0.5 parent: 1668 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 786 - - port: Toggle - uid: 787 - - port: Toggle - uid: 788 - type: SignalTransmitter + - linkedPorts: + 786: + - Pressed: Toggle + 787: + - Pressed: Toggle + 788: + - Pressed: Toggle + type: DeviceLinkSource - uid: 1611 components: - pos: -14.5,23.5 parent: 1668 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1607 - - port: Toggle - uid: 1610 - type: SignalTransmitter + - linkedPorts: + 1607: + - Pressed: Toggle + 1610: + - Pressed: Toggle + type: DeviceLinkSource - uid: 1612 components: - pos: -14.5,29.5 parent: 1668 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1608 - - port: Toggle - uid: 1609 - type: SignalTransmitter + - linkedPorts: + 1608: + - Pressed: Toggle + 1609: + - Pressed: Toggle + type: DeviceLinkSource - uid: 1804 components: - pos: -2.5,19.5 parent: 1668 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1552 - type: SignalTransmitter + - linkedPorts: + 1552: + - Pressed: Toggle + type: DeviceLinkSource - uid: 2712 components: - pos: 7.5,17.5 parent: 1668 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2150 - - port: Toggle - uid: 2149 - - port: Toggle - uid: 2148 - - port: Toggle - uid: 2147 - - port: Toggle - uid: 2146 - type: SignalTransmitter + - linkedPorts: + 2150: + - Pressed: Toggle + 2149: + - Pressed: Toggle + 2148: + - Pressed: Toggle + 2147: + - Pressed: Toggle + 2146: + - Pressed: Toggle + type: DeviceLinkSource - uid: 2927 components: - name: le funny admin button @@ -36053,13 +31264,12 @@ entities: - pos: 4.5,32.5 parent: 1668 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2926 - - port: Toggle - uid: 2925 - type: SignalTransmitter + - linkedPorts: + 2926: + - Pressed: Toggle + 2925: + - Pressed: Toggle + type: DeviceLinkSource - uid: 2928 components: - name: le funny admin button @@ -36067,13 +31277,12 @@ entities: - pos: 14.5,32.5 parent: 1668 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2886 - - port: Toggle - uid: 2790 - type: SignalTransmitter + - linkedPorts: + 2886: + - Pressed: Toggle + 2790: + - Pressed: Toggle + type: DeviceLinkSource - uid: 3906 components: - name: Command Room Vault @@ -36081,75 +31290,71 @@ entities: - pos: -19.5,13.5 parent: 1668 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 3789 - - port: Toggle - uid: 3788 - - port: Toggle - uid: 3787 - type: SignalTransmitter + - linkedPorts: + 3789: + - Pressed: Toggle + 3788: + - Pressed: Toggle + 3787: + - Pressed: Toggle + type: DeviceLinkSource - uid: 5242 components: - pos: 28.5,-20.5 parent: 1668 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5238 - - port: Toggle - uid: 5237 - - port: Toggle - uid: 5236 - - port: Toggle - uid: 5235 - - port: Toggle - uid: 5234 - - port: Toggle - uid: 5239 - - port: Toggle - uid: 5241 - - port: Toggle - uid: 5240 - type: SignalTransmitter + - linkedPorts: + 5238: + - Pressed: Toggle + 5237: + - Pressed: Toggle + 5236: + - Pressed: Toggle + 5235: + - Pressed: Toggle + 5234: + - Pressed: Toggle + 5239: + - Pressed: Toggle + 5241: + - Pressed: Toggle + 5240: + - Pressed: Toggle + type: DeviceLinkSource - uid: 6442 components: - pos: 1.5,-40.5 parent: 1668 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6521 - - port: Toggle - uid: 6525 - - port: Toggle - uid: 6524 - - port: Toggle - uid: 6523 - - port: Toggle - uid: 6522 - type: SignalTransmitter + - linkedPorts: + 6521: + - Pressed: Toggle + 6525: + - Pressed: Toggle + 6524: + - Pressed: Toggle + 6523: + - Pressed: Toggle + 6522: + - Pressed: Toggle + type: DeviceLinkSource - uid: 6602 components: - pos: -1.5,0.5 parent: 1668 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1437 - - port: Toggle - uid: 1438 - - port: Toggle - uid: 1439 - - port: Toggle - uid: 1440 - - port: Toggle - uid: 1441 - type: SignalTransmitter + - linkedPorts: + 1437: + - Pressed: Toggle + 1438: + - Pressed: Toggle + 1439: + - Pressed: Toggle + 1440: + - Pressed: Toggle + 1441: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignalButtonExt1 entities: - uid: 715 @@ -38131,47 +33336,32 @@ entities: type: Transform - nextSignalLeft: True type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 1576 - - port: Forward - uid: 1577 - - port: Forward - uid: 1578 - - port: Forward - uid: 1579 - - port: Forward - uid: 1580 - - port: Forward - uid: 1581 - Right: - - port: Reverse - uid: 1576 - - port: Reverse - uid: 1577 - - port: Reverse - uid: 1578 - - port: Reverse - uid: 1579 - - port: Reverse - uid: 1580 - - port: Reverse - uid: 1581 - Middle: - - port: Off - uid: 1576 - - port: Off - uid: 1577 - - port: Off - uid: 1578 - - port: Off - uid: 1579 - - port: Off - uid: 1580 - - port: Off - uid: 1581 - type: SignalTransmitter + - linkedPorts: + 1576: + - Left: Forward + - Right: Reverse + - Middle: Off + 1577: + - Left: Forward + - Right: Reverse + - Middle: Off + 1578: + - Left: Forward + - Right: Reverse + - Middle: Off + 1579: + - Left: Forward + - Right: Reverse + - Middle: Off + 1580: + - Left: Forward + - Right: Reverse + - Middle: Off + 1581: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 1589 components: - pos: -12.5,29.5 @@ -38179,91 +33369,62 @@ entities: type: Transform - nextSignalLeft: True type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 1582 - - port: Forward - uid: 1583 - - port: Forward - uid: 1584 - - port: Forward - uid: 1585 - - port: Forward - uid: 1586 - - port: Forward - uid: 1587 - Right: - - port: Reverse - uid: 1582 - - port: Reverse - uid: 1583 - - port: Reverse - uid: 1584 - - port: Reverse - uid: 1585 - - port: Reverse - uid: 1586 - - port: Reverse - uid: 1587 - Middle: - - port: Off - uid: 1582 - - port: Off - uid: 1583 - - port: Off - uid: 1584 - - port: Off - uid: 1585 - - port: Off - uid: 1586 - - port: Off - uid: 1587 - type: SignalTransmitter + - linkedPorts: + 1582: + - Left: Forward + - Right: Reverse + - Middle: Off + 1583: + - Left: Forward + - Right: Reverse + - Middle: Off + 1584: + - Left: Forward + - Right: Reverse + - Middle: Off + 1585: + - Left: Forward + - Right: Reverse + - Middle: Off + 1586: + - Left: Forward + - Right: Reverse + - Middle: Off + 1587: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 5906 components: - pos: -18.5,-32.5 parent: 1668 type: Transform - - outputs: - Left: - - port: Forward - uid: 5902 - - port: Forward - uid: 5903 - - port: Forward - uid: 5904 - Right: - - port: Reverse - uid: 5902 - - port: Reverse - uid: 5903 - - port: Reverse - uid: 5904 - Middle: - - port: Off - uid: 5902 - - port: Off - uid: 5903 - - port: Off - uid: 5904 - type: SignalTransmitter + - linkedPorts: + 5902: + - Left: Forward + - Right: Reverse + - Middle: Off + 5903: + - Left: Forward + - Right: Reverse + - Middle: Off + 5904: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 5907 components: - pos: -18.5,-31.5 parent: 1668 type: Transform - - outputs: - Left: - - port: Forward - uid: 5908 - Right: - - port: Reverse - uid: 5908 - Middle: - - port: Off - uid: 5908 - type: SignalTransmitter + - linkedPorts: + 5908: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - proto: Vaccinator entities: - uid: 821 @@ -44283,14 +39444,6 @@ entities: - pos: 9.5,16.5 parent: 1668 type: Transform -- proto: WindoorArmoryLocked - entities: - - uid: 2554 - components: - - rot: 3.141592653589793 rad - pos: 9.5,16.5 - parent: 1668 - type: Transform - proto: WindoorBarLocked entities: - uid: 4410 @@ -44299,65 +39452,6 @@ entities: pos: 7.5,-28.5 parent: 1668 type: Transform -- proto: WindoorBrigLocked - entities: - - uid: 2425 - components: - - pos: 28.5,20.5 - parent: 1668 - type: Transform -- proto: WindoorCommandLocked - entities: - - uid: 4230 - components: - - pos: -12.5,-3.5 - parent: 1668 - type: Transform - - uid: 4231 - components: - - pos: -13.5,-3.5 - parent: 1668 - type: Transform - - uid: 4232 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-9.5 - parent: 1668 - type: Transform - - uid: 4233 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-9.5 - parent: 1668 - type: Transform -- proto: WindoorEngineeringLocked - entities: - - uid: 4757 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-22.5 - parent: 1668 - type: Transform -- proto: WindoorMedicalLocked - entities: - - uid: 732 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 1668 - type: Transform - - uid: 734 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-12.5 - parent: 1668 - type: Transform - - uid: 1198 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 1668 - type: Transform - proto: WindoorSecure entities: - uid: 2345 @@ -44399,6 +39493,21 @@ entities: - pos: 3.5,-17.5 parent: 1668 type: Transform +- proto: WindoorSecureArmoryLocked + entities: + - uid: 2554 + components: + - rot: 3.141592653589793 rad + pos: 9.5,16.5 + parent: 1668 + type: Transform +- proto: WindoorSecureBrigLocked + entities: + - uid: 2425 + components: + - pos: 28.5,20.5 + parent: 1668 + type: Transform - proto: WindoorSecureCargoLocked entities: - uid: 1621 @@ -44413,7 +39522,59 @@ entities: pos: -4.5,10.5 parent: 1668 type: Transform -- proto: WindoorSecurityLocked +- proto: WindoorSecureCommandLocked + entities: + - uid: 4230 + components: + - pos: -12.5,-3.5 + parent: 1668 + type: Transform + - uid: 4231 + components: + - pos: -13.5,-3.5 + parent: 1668 + type: Transform + - uid: 4232 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-9.5 + parent: 1668 + type: Transform + - uid: 4233 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-9.5 + parent: 1668 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 4757 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-22.5 + parent: 1668 + type: Transform +- proto: WindoorSecureMedicalLocked + entities: + - uid: 732 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1668 + type: Transform + - uid: 734 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 1668 + type: Transform + - uid: 1198 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 1668 + type: Transform +- proto: WindoorSecureSecurityLocked entities: - uid: 497 components: diff --git a/Resources/Maps/cluster.yml b/Resources/Maps/cluster.yml index ce1217b90d..2ce51e3c72 100644 --- a/Resources/Maps/cluster.yml +++ b/Resources/Maps/cluster.yml @@ -4318,8 +4318,7 @@ entities: - type: RadiationGridResistance - id: Cluster type: BecomesStation - - nextUpdate: 0 - type: SpreaderGrid + - type: SpreaderGrid - type: GridPathfinding - uid: 12281 components: @@ -6803,14 +6802,14 @@ entities: - pos: -34.5,9.5 parent: 1 type: Transform -- proto: AMEController +- proto: AmeController entities: - uid: 6778 components: - pos: 29.5,-6.5 parent: 1 type: Transform -- proto: AMEPart +- proto: AmePart entities: - uid: 6775 components: @@ -7829,51 +7828,34 @@ entities: - pos: 34.5,11.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5388 - - port: Pressed - uid: 5389 - type: SignalReceiver + - links: + - 5388 + - 5389 + type: DeviceLinkSink - uid: 3434 components: - pos: -21.5,-9.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6338 - type: SignalReceiver + - links: + - 6338 + type: DeviceLinkSink - uid: 3435 components: - pos: -21.5,-13.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6337 - type: SignalReceiver + - links: + - 6337 + type: DeviceLinkSink - uid: 3561 components: - pos: -35.5,25.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1978 - type: SignalReceiver + - links: + - 1978 + type: DeviceLinkSink - uid: 3795 components: - pos: 35.5,-24.5 @@ -7884,49 +7866,33 @@ entities: - pos: 10.5,-28.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7436 - type: SignalReceiver + - links: + - 7436 + type: DeviceLinkSink - uid: 7433 components: - pos: 10.5,-31.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7436 - type: SignalReceiver + - links: + - 7436 + type: DeviceLinkSink - uid: 7434 components: - pos: 14.5,-31.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7437 - type: SignalReceiver + - links: + - 7437 + type: DeviceLinkSink - uid: 7435 components: - pos: 14.5,-28.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7437 - type: SignalReceiver + - links: + - 7437 + type: DeviceLinkSink - proto: BlastDoorOpen entities: - uid: 4064 @@ -7934,37 +7900,25 @@ entities: - pos: 5.5,32.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4100 - type: SignalReceiver + - links: + - 4100 + type: DeviceLinkSink - uid: 4065 components: - pos: 4.5,32.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4100 - type: SignalReceiver + - links: + - 4100 + type: DeviceLinkSink - uid: 4066 components: - pos: 3.5,32.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4100 - type: SignalReceiver + - links: + - 4100 + type: DeviceLinkSink - proto: BlockGameArcade entities: - uid: 4945 @@ -8563,48 +8517,18 @@ entities: pos: 11.5,7.5 parent: 1 type: Transform - - outputs: - Start: - - port: Close - uid: 5535 - Timer: - - port: AutoClose - uid: 5535 - - port: Open - uid: 5535 - type: SignalTransmitter - uid: 12486 components: - rot: 3.141592653589793 rad pos: 14.5,7.5 parent: 1 type: Transform - - outputs: - Start: - - port: Close - uid: 5536 - Timer: - - port: AutoClose - uid: 5536 - - port: Open - uid: 5536 - type: SignalTransmitter - uid: 12487 components: - rot: 3.141592653589793 rad pos: 17.5,7.5 parent: 1 type: Transform - - outputs: - Start: - - port: Close - uid: 5537 - Timer: - - port: AutoClose - uid: 5537 - - port: Open - uid: 5537 - type: SignalTransmitter - proto: Brutepack entities: - uid: 9629 @@ -28449,6 +28373,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: ClosetChefFilled entities: @@ -28795,6 +28720,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: ClosetL3JanitorFilled entities: @@ -28831,6 +28757,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: ClosetL3VirologyFilled entities: @@ -29699,8 +29626,6 @@ entities: pos: 16.5,-23.5 parent: 1 type: Transform - - nextPrintTime: 53.0086693 - type: CargoBountyConsole - proto: ComputerCargoOrders entities: - uid: 4919 @@ -29972,331 +29897,171 @@ entities: - pos: 10.5,-31.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 7429 - Forward: - - port: Left - uid: 7429 - Off: - - port: Middle - uid: 7429 - type: SignalReceiver + - links: + - 7429 + type: DeviceLinkSink - uid: 1731 components: - pos: 10.5,-30.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 7429 - Forward: - - port: Left - uid: 7429 - Off: - - port: Middle - uid: 7429 - type: SignalReceiver + - links: + - 7429 + type: DeviceLinkSink - uid: 1732 components: - pos: 10.5,-29.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 7429 - Forward: - - port: Left - uid: 7429 - Off: - - port: Middle - uid: 7429 - type: SignalReceiver + - links: + - 7429 + type: DeviceLinkSink - uid: 1733 components: - pos: 10.5,-28.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 7429 - Forward: - - port: Left - uid: 7429 - Off: - - port: Middle - uid: 7429 - type: SignalReceiver + - links: + - 7429 + type: DeviceLinkSink - uid: 1734 components: - pos: 10.5,-27.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 7429 - Forward: - - port: Left - uid: 7429 - Off: - - port: Middle - uid: 7429 - type: SignalReceiver + - links: + - 7429 + type: DeviceLinkSink - uid: 1735 components: - pos: 14.5,-31.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 7430 - Forward: - - port: Left - uid: 7430 - Off: - - port: Middle - uid: 7430 - type: SignalReceiver + - links: + - 7430 + type: DeviceLinkSink - uid: 1736 components: - pos: 14.5,-30.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 7430 - Forward: - - port: Left - uid: 7430 - Off: - - port: Middle - uid: 7430 - type: SignalReceiver + - links: + - 7430 + type: DeviceLinkSink - uid: 1737 components: - pos: 14.5,-29.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 7430 - Forward: - - port: Left - uid: 7430 - Off: - - port: Middle - uid: 7430 - type: SignalReceiver + - links: + - 7430 + type: DeviceLinkSink - uid: 1738 components: - pos: 14.5,-28.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 7430 - Forward: - - port: Left - uid: 7430 - Off: - - port: Middle - uid: 7430 - type: SignalReceiver + - links: + - 7430 + type: DeviceLinkSink - uid: 1739 components: - pos: 14.5,-27.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 7430 - Forward: - - port: Left - uid: 7430 - Off: - - port: Middle - uid: 7430 - type: SignalReceiver + - links: + - 7430 + type: DeviceLinkSink - uid: 1740 components: - rot: -1.5707963267948966 rad pos: 6.5,-23.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 7431 - Forward: - - port: Left - uid: 7431 - Off: - - port: Middle - uid: 7431 - type: SignalReceiver + - links: + - 7431 + type: DeviceLinkSink - uid: 1741 components: - rot: -1.5707963267948966 rad pos: 7.5,-23.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 7431 - Forward: - - port: Left - uid: 7431 - Off: - - port: Middle - uid: 7431 - type: SignalReceiver + - links: + - 7431 + type: DeviceLinkSink - uid: 1742 components: - rot: -1.5707963267948966 rad pos: 8.5,-23.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 7431 - Forward: - - port: Left - uid: 7431 - Off: - - port: Middle - uid: 7431 - type: SignalReceiver + - links: + - 7431 + type: DeviceLinkSink - uid: 3563 components: - rot: -1.5707963267948966 rad pos: -36.5,25.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9199 - Forward: - - port: Left - uid: 9199 - Off: - - port: Middle - uid: 9199 - type: SignalReceiver + - links: + - 9199 + type: DeviceLinkSink - uid: 3564 components: - rot: -1.5707963267948966 rad pos: -35.5,25.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9199 - Forward: - - port: Left - uid: 9199 - Off: - - port: Middle - uid: 9199 - type: SignalReceiver + - links: + - 9199 + type: DeviceLinkSink - uid: 3565 components: - rot: -1.5707963267948966 rad pos: -34.5,25.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9199 - Forward: - - port: Left - uid: 9199 - Off: - - port: Middle - uid: 9199 - type: SignalReceiver + - links: + - 9199 + type: DeviceLinkSink - uid: 3566 components: - rot: -1.5707963267948966 rad pos: -33.5,25.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9199 - Forward: - - port: Left - uid: 9199 - Off: - - port: Middle - uid: 9199 - type: SignalReceiver + - links: + - 9199 + type: DeviceLinkSink - uid: 3567 components: - rot: 3.141592653589793 rad pos: -33.5,24.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9199 - Forward: - - port: Left - uid: 9199 - Off: - - port: Middle - uid: 9199 - type: SignalReceiver + - links: + - 9199 + type: DeviceLinkSink - uid: 3568 components: - rot: 3.141592653589793 rad pos: -33.5,23.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9199 - Forward: - - port: Left - uid: 9199 - Off: - - port: Middle - uid: 9199 - type: SignalReceiver + - links: + - 9199 + type: DeviceLinkSink - uid: 3569 components: - rot: 3.141592653589793 rad pos: -33.5,22.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9199 - Forward: - - port: Left - uid: 9199 - Off: - - port: Middle - uid: 9199 - type: SignalReceiver + - links: + - 9199 + type: DeviceLinkSink - proto: CowToolboxFilled entities: - uid: 12285 @@ -30391,6 +30156,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: CrateEngineeringCableBulk entities: @@ -57922,32 +57688,6 @@ entities: - pos: -1.4981794,24.932814 parent: 1 type: Transform -- proto: Intercom - entities: - - uid: 3910 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,53.5 - parent: 1 - type: Transform - - uid: 3911 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,51.5 - parent: 1 - type: Transform - - uid: 3912 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,53.5 - parent: 1 - type: Transform - - uid: 3913 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,51.5 - parent: 1 - type: Transform - proto: IntercomAll entities: - uid: 5491 @@ -57981,6 +57721,32 @@ entities: pos: 6.5,23.5 parent: 1 type: Transform +- proto: IntercomCommon + entities: + - uid: 3910 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,53.5 + parent: 1 + type: Transform + - uid: 3911 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,51.5 + parent: 1 + type: Transform + - uid: 3912 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,53.5 + parent: 1 + type: Transform + - uid: 3913 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,51.5 + parent: 1 + type: Transform - proto: IntercomEngineering entities: - uid: 9272 @@ -58296,8 +58062,6 @@ entities: - pos: 16.489933,-23.942678 parent: 1 type: Transform - - nextSound: 69.5709563 - type: EmitSoundOnCollide - uid: 8246 components: - pos: -9.624902,-11.094046 @@ -58445,6 +58209,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: LockerChemistryFilled entities: @@ -58487,6 +58252,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: LockerChiefMedicalOfficerFilled entities: @@ -58522,6 +58288,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: LockerDetectiveFilled entities: @@ -58558,6 +58325,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: LockerElectricalSuppliesFilled entities: @@ -58661,6 +58429,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: LockerHeadOfPersonnelFilled entities: @@ -58697,6 +58466,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: LockerHeadOfSecurityFilled entities: @@ -58732,6 +58502,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: LockerMedicalFilled entities: @@ -58796,6 +58567,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: LockerResearchDirectorFilled entities: @@ -58831,6 +58603,7 @@ entities: paper_label: !type:ContainerSlot showEnts: False occludes: True + ent: null type: ContainerContainer - proto: LockerSalvageSpecialistFilled entities: @@ -59815,8 +59588,6 @@ entities: - pos: -23.538898,5.5020247 parent: 1 type: Transform - - lastUseAttempt: 436.1594336 - type: NetworkConfigurator - proto: NitrogenCanister entities: - uid: 6803 @@ -60844,8 +60615,6 @@ entities: - pos: 16.646183,-24.473928 parent: 1 type: Transform - - nextSound: 72.2420037 - type: EmitSoundOnCollide - uid: 9606 components: - pos: 45.826847,31.663486 @@ -60890,8 +60659,6 @@ entities: - pos: 16.333683,-24.473928 parent: 1 type: Transform - - nextSound: 72.9959438 - type: EmitSoundOnCollide - uid: 12435 components: - pos: -9.253772,-11.803861 @@ -65198,17 +64965,9 @@ entities: pos: -33.5,24.5 parent: 1 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9199 - Forward: - - port: Left - uid: 9199 - Off: - - port: Middle - uid: 9199 - type: SignalReceiver + - links: + - 9199 + type: DeviceLinkSink - proto: ReinforcedPlasmaWindow entities: - uid: 521 @@ -67589,73 +67348,49 @@ entities: - pos: -8.5,-10.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1799 - type: SignalReceiver + - links: + - 1799 + type: DeviceLinkSink - uid: 3432 components: - pos: -7.5,-10.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1799 - type: SignalReceiver + - links: + - 1799 + type: DeviceLinkSink - uid: 3433 components: - pos: -6.5,-10.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1799 - type: SignalReceiver + - links: + - 1799 + type: DeviceLinkSink - uid: 3436 components: - pos: -29.5,-6.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9264 - type: SignalReceiver + - links: + - 9264 + type: DeviceLinkSink - uid: 5459 components: - pos: 14.5,0.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7670 - type: SignalReceiver + - links: + - 7670 + type: DeviceLinkSink - uid: 5460 components: - pos: 15.5,0.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7670 - type: SignalReceiver + - links: + - 7670 + type: DeviceLinkSink - proto: ShuttersNormalOpen entities: - uid: 1796 @@ -67663,145 +67398,97 @@ entities: - pos: 14.5,4.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5448 - type: SignalReceiver + - links: + - 5448 + type: DeviceLinkSink - uid: 1797 components: - pos: 15.5,4.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5448 - type: SignalReceiver + - links: + - 5448 + type: DeviceLinkSink - uid: 1798 components: - pos: 17.5,4.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5449 - type: SignalReceiver + - links: + - 5449 + type: DeviceLinkSink - uid: 1824 components: - pos: 11.5,4.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5447 - type: SignalReceiver + - links: + - 5447 + type: DeviceLinkSink - uid: 1847 components: - pos: 12.5,4.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5447 - type: SignalReceiver + - links: + - 5447 + type: DeviceLinkSink - uid: 1866 components: - pos: 18.5,4.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5449 - type: SignalReceiver + - links: + - 5449 + type: DeviceLinkSink - uid: 1936 components: - pos: -21.5,4.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1896 - type: SignalReceiver + - links: + - 1896 + type: DeviceLinkSink - uid: 1937 components: - pos: -20.5,4.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1896 - type: SignalReceiver + - links: + - 1896 + type: DeviceLinkSink - uid: 1938 components: - pos: -18.5,4.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1897 - type: SignalReceiver + - links: + - 1897 + type: DeviceLinkSink - uid: 1939 components: - pos: -17.5,4.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1897 - type: SignalReceiver + - links: + - 1897 + type: DeviceLinkSink - uid: 1940 components: - pos: -15.5,4.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1898 - type: SignalReceiver + - links: + - 1898 + type: DeviceLinkSink - uid: 1941 components: - pos: -14.5,4.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1898 - type: SignalReceiver + - links: + - 1898 + type: DeviceLinkSink - uid: 3618 components: - pos: -6.5,50.5 @@ -67827,373 +67514,249 @@ entities: - pos: -2.5,18.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5072 - type: SignalReceiver + - links: + - 5072 + type: DeviceLinkSink - uid: 5068 components: - pos: -1.5,18.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5072 - type: SignalReceiver + - links: + - 5072 + type: DeviceLinkSink - uid: 5069 components: - pos: -0.5,18.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5072 - type: SignalReceiver + - links: + - 5072 + type: DeviceLinkSink - uid: 5070 components: - pos: 1.5,18.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5072 - type: SignalReceiver + - links: + - 5072 + type: DeviceLinkSink - uid: 5450 components: - pos: 11.5,7.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5447 - type: SignalReceiver + - links: + - 5447 + type: DeviceLinkSink - uid: 5451 components: - pos: 14.5,7.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5448 - type: SignalReceiver + - links: + - 5448 + type: DeviceLinkSink - uid: 5452 components: - pos: 17.5,7.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5449 - type: SignalReceiver + - links: + - 5449 + type: DeviceLinkSink - uid: 5683 components: - pos: 18.5,-12.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5671 - type: SignalReceiver + - links: + - 5671 + type: DeviceLinkSink - uid: 5684 components: - pos: 19.5,-12.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5671 - type: SignalReceiver + - links: + - 5671 + type: DeviceLinkSink - uid: 5685 components: - pos: 20.5,-12.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5671 - type: SignalReceiver + - links: + - 5671 + type: DeviceLinkSink - uid: 5686 components: - pos: 16.5,-12.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5671 - type: SignalReceiver + - links: + - 5671 + type: DeviceLinkSink - uid: 5687 components: - pos: 21.5,-15.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5671 - type: SignalReceiver + - links: + - 5671 + type: DeviceLinkSink - uid: 7438 components: - pos: 5.5,-18.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7439 - type: SignalReceiver + - links: + - 7439 + type: DeviceLinkSink - uid: 7485 components: - pos: 10.5,15.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7484 - type: SignalReceiver + - links: + - 7484 + type: DeviceLinkSink - uid: 11721 components: - pos: -1.5,7.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11713 - type: SignalReceiver + - links: + - 11713 + type: DeviceLinkSink - uid: 11722 components: - pos: -0.5,7.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11713 - type: SignalReceiver + - links: + - 11713 + type: DeviceLinkSink - uid: 11723 components: - pos: 0.5,7.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11713 - type: SignalReceiver + - links: + - 11713 + type: DeviceLinkSink - uid: 11724 components: - pos: 1.5,7.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11713 - type: SignalReceiver + - links: + - 11713 + type: DeviceLinkSink - uid: 11725 components: - pos: 2.5,7.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11713 - type: SignalReceiver + - links: + - 11713 + type: DeviceLinkSink - uid: 11726 components: - pos: 3.5,7.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11713 - type: SignalReceiver + - links: + - 11713 + type: DeviceLinkSink - uid: 11727 components: - pos: 4.5,7.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11713 - type: SignalReceiver + - links: + - 11713 + type: DeviceLinkSink - uid: 11730 components: - pos: -3.5,6.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11713 - type: SignalReceiver + - links: + - 11713 + type: DeviceLinkSink - uid: 11731 components: - pos: -3.5,5.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11713 - type: SignalReceiver + - links: + - 11713 + type: DeviceLinkSink - uid: 11732 components: - pos: 6.5,6.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11713 - type: SignalReceiver + - links: + - 11713 + type: DeviceLinkSink - uid: 11733 components: - pos: 6.5,5.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11713 - type: SignalReceiver + - links: + - 11713 + type: DeviceLinkSink - uid: 12444 components: - pos: 10.5,12.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7484 - type: SignalReceiver + - links: + - 7484 + type: DeviceLinkSink - uid: 12445 components: - pos: 10.5,10.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7484 - type: SignalReceiver + - links: + - 7484 + type: DeviceLinkSink - uid: 12446 components: - pos: 10.5,9.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7484 - type: SignalReceiver + - links: + - 7484 + type: DeviceLinkSink - uid: 12447 components: - pos: 10.5,8.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7484 - type: SignalReceiver + - links: + - 7484 + type: DeviceLinkSink - uid: 12448 components: - pos: 13.5,12.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7484 - type: SignalReceiver + - links: + - 7484 + type: DeviceLinkSink - uid: 12449 components: - pos: 13.5,15.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7484 - type: SignalReceiver + - links: + - 7484 + type: DeviceLinkSink - proto: ShuttersWindowOpen entities: - uid: 5071 @@ -68201,61 +67764,41 @@ entities: - pos: 0.5,18.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5072 - type: SignalReceiver + - links: + - 5072 + type: DeviceLinkSink - uid: 11728 components: - pos: -2.5,7.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11713 - type: SignalReceiver + - links: + - 11713 + type: DeviceLinkSink - uid: 11729 components: - pos: 5.5,7.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11713 - type: SignalReceiver + - links: + - 11713 + type: DeviceLinkSink - uid: 12450 components: - pos: 13.5,14.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7484 - type: SignalReceiver + - links: + - 7484 + type: DeviceLinkSink - uid: 12451 components: - pos: 13.5,13.5 parent: 1 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7484 - type: SignalReceiver + - links: + - 7484 + type: DeviceLinkSink - proto: ShuttleConsoleCircuitboard entities: - uid: 9523 @@ -68293,109 +67836,101 @@ entities: pos: -9.5,-13.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 3430 - - port: Toggle - uid: 3432 - - port: Toggle - uid: 3433 - type: SignalTransmitter + - linkedPorts: + 3430: + - Pressed: Toggle + 3432: + - Pressed: Toggle + 3433: + - Pressed: Toggle + type: DeviceLinkSource - uid: 1896 components: - rot: 3.141592653589793 rad pos: -19.5,7.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1937 - - port: Toggle - uid: 1936 - type: SignalTransmitter + - linkedPorts: + 1937: + - Pressed: Toggle + 1936: + - Pressed: Toggle + type: DeviceLinkSource - uid: 1897 components: - rot: 3.141592653589793 rad pos: -16.5,7.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1939 - - port: Toggle - uid: 1938 - type: SignalTransmitter + - linkedPorts: + 1939: + - Pressed: Toggle + 1938: + - Pressed: Toggle + type: DeviceLinkSource - uid: 1898 components: - rot: 3.141592653589793 rad pos: -13.5,7.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1941 - - port: Toggle - uid: 1940 - type: SignalTransmitter + - linkedPorts: + 1941: + - Pressed: Toggle + 1940: + - Pressed: Toggle + type: DeviceLinkSource - uid: 1978 components: - rot: -1.5707963267948966 rad pos: -30.5,23.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 3561 - type: SignalTransmitter + - linkedPorts: + 3561: + - Pressed: Toggle + type: DeviceLinkSource - uid: 4100 components: - rot: -1.5707963267948966 rad pos: 5.5,30.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4064 - - port: Toggle - uid: 4065 - - port: Toggle - uid: 4066 - type: SignalTransmitter + - linkedPorts: + 4064: + - Pressed: Toggle + 4065: + - Pressed: Toggle + 4066: + - Pressed: Toggle + type: DeviceLinkSource - uid: 5072 components: - rot: -1.5707963267948966 rad pos: 2.5,20.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5070 - - port: Toggle - uid: 5071 - - port: Toggle - uid: 5069 - - port: Toggle - uid: 5068 - - port: Toggle - uid: 5067 - type: SignalTransmitter + - linkedPorts: + 5070: + - Pressed: Toggle + 5071: + - Pressed: Toggle + 5069: + - Pressed: Toggle + 5068: + - Pressed: Toggle + 5067: + - Pressed: Toggle + type: DeviceLinkSource - uid: 5388 components: - pos: 28.5,15.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 3218 - type: SignalTransmitter + - linkedPorts: + 3218: + - Pressed: Toggle + type: DeviceLinkSource - type: ItemCooldown - uid: 5389 components: @@ -68405,11 +67940,10 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 3218 - type: SignalTransmitter + - linkedPorts: + 3218: + - Pressed: Toggle + type: DeviceLinkSource - type: ItemCooldown - uid: 5447 components: @@ -68417,208 +67951,195 @@ entities: pos: 13.5,7.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5450 - - port: Toggle - uid: 1824 - - port: Toggle - uid: 1847 - type: SignalTransmitter + - linkedPorts: + 5450: + - Pressed: Toggle + 1824: + - Pressed: Toggle + 1847: + - Pressed: Toggle + type: DeviceLinkSource - uid: 5448 components: - rot: 3.141592653589793 rad pos: 16.5,7.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5451 - - port: Toggle - uid: 1796 - - port: Toggle - uid: 1797 - type: SignalTransmitter + - linkedPorts: + 5451: + - Pressed: Toggle + 1796: + - Pressed: Toggle + 1797: + - Pressed: Toggle + type: DeviceLinkSource - uid: 5449 components: - rot: 3.141592653589793 rad pos: 19.5,7.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5452 - - port: Toggle - uid: 1798 - - port: Toggle - uid: 1866 - type: SignalTransmitter + - linkedPorts: + 5452: + - Pressed: Toggle + 1798: + - Pressed: Toggle + 1866: + - Pressed: Toggle + type: DeviceLinkSource - uid: 5671 components: - rot: -1.5707963267948966 rad pos: 21.5,-14.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5687 - - port: Toggle - uid: 5685 - - port: Toggle - uid: 5684 - - port: Toggle - uid: 5683 - - port: Toggle - uid: 5686 - type: SignalTransmitter + - linkedPorts: + 5687: + - Pressed: Toggle + 5685: + - Pressed: Toggle + 5684: + - Pressed: Toggle + 5683: + - Pressed: Toggle + 5686: + - Pressed: Toggle + type: DeviceLinkSource - uid: 6337 components: - rot: 1.5707963267948966 rad pos: -18.5,-15.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 3435 - type: SignalTransmitter + - linkedPorts: + 3435: + - Pressed: Toggle + type: DeviceLinkSource - uid: 6338 components: - rot: 1.5707963267948966 rad pos: -18.5,-11.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 3434 - type: SignalTransmitter + - linkedPorts: + 3434: + - Pressed: Toggle + type: DeviceLinkSource - uid: 7436 components: - rot: 3.141592653589793 rad pos: 8.5,-28.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7432 - - port: Toggle - uid: 7433 - type: SignalTransmitter + - linkedPorts: + 7432: + - Pressed: Toggle + 7433: + - Pressed: Toggle + type: DeviceLinkSource - uid: 7437 components: - rot: 3.141592653589793 rad pos: 16.5,-28.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7435 - - port: Toggle - uid: 7434 - type: SignalTransmitter + - linkedPorts: + 7435: + - Pressed: Toggle + 7434: + - Pressed: Toggle + type: DeviceLinkSource - uid: 7439 components: - rot: -1.5707963267948966 rad pos: 7.5,-16.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7438 - type: SignalTransmitter + - linkedPorts: + 7438: + - Pressed: Toggle + type: DeviceLinkSource - uid: 7484 components: - rot: -1.5707963267948966 rad pos: 16.5,13.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 12448 - - port: Toggle - uid: 12451 - - port: Toggle - uid: 12450 - - port: Toggle - uid: 12449 - - port: Toggle - uid: 7485 - - port: Toggle - uid: 12444 - - port: Toggle - uid: 12445 - - port: Toggle - uid: 12446 - - port: Toggle - uid: 12447 - type: SignalTransmitter + - linkedPorts: + 12448: + - Pressed: Toggle + 12451: + - Pressed: Toggle + 12450: + - Pressed: Toggle + 12449: + - Pressed: Toggle + 7485: + - Pressed: Toggle + 12444: + - Pressed: Toggle + 12445: + - Pressed: Toggle + 12446: + - Pressed: Toggle + 12447: + - Pressed: Toggle + type: DeviceLinkSource - uid: 7670 components: - rot: 3.141592653589793 rad pos: 14.5,-2.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5459 - - port: Toggle - uid: 5460 - type: SignalTransmitter + - linkedPorts: + 5459: + - Pressed: Toggle + 5460: + - Pressed: Toggle + type: DeviceLinkSource - uid: 9264 components: - pos: -25.5,-4.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 3436 - type: SignalTransmitter + - linkedPorts: + 3436: + - Pressed: Toggle + type: DeviceLinkSource - uid: 11713 components: - rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 1 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11733 - - port: Toggle - uid: 11732 - - port: Toggle - uid: 11729 - - port: Toggle - uid: 11727 - - port: Toggle - uid: 11726 - - port: Toggle - uid: 11725 - - port: Toggle - uid: 11724 - - port: Toggle - uid: 11723 - - port: Toggle - uid: 11722 - - port: Toggle - uid: 11721 - - port: Toggle - uid: 11728 - - port: Toggle - uid: 11730 - - port: Toggle - uid: 11731 - type: SignalTransmitter + - linkedPorts: + 11733: + - Pressed: Toggle + 11732: + - Pressed: Toggle + 11729: + - Pressed: Toggle + 11727: + - Pressed: Toggle + 11726: + - Pressed: Toggle + 11725: + - Pressed: Toggle + 11724: + - Pressed: Toggle + 11723: + - Pressed: Toggle + 11722: + - Pressed: Toggle + 11721: + - Pressed: Toggle + 11728: + - Pressed: Toggle + 11730: + - Pressed: Toggle + 11731: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignAnomaly entities: - uid: 6077 @@ -73401,167 +72922,113 @@ entities: - pos: 9.5,-27.5 parent: 1 type: Transform - - outputs: - Left: - - port: Forward - uid: 1734 - - port: Forward - uid: 1733 - - port: Forward - uid: 1732 - - port: Forward - uid: 1731 - - port: Forward - uid: 1730 - Right: - - port: Reverse - uid: 1734 - - port: Reverse - uid: 1733 - - port: Reverse - uid: 1732 - - port: Reverse - uid: 1731 - - port: Reverse - uid: 1730 - Middle: - - port: Off - uid: 1734 - - port: Off - uid: 1733 - - port: Off - uid: 1732 - - port: Off - uid: 1731 - - port: Off - uid: 1730 - type: SignalTransmitter + - linkedPorts: + 1734: + - Left: Forward + - Right: Reverse + - Middle: Off + 1733: + - Left: Forward + - Right: Reverse + - Middle: Off + 1732: + - Left: Forward + - Right: Reverse + - Middle: Off + 1731: + - Left: Forward + - Right: Reverse + - Middle: Off + 1730: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 7430 components: - pos: 15.5,-27.5 parent: 1 type: Transform - - outputs: - Left: - - port: Forward - uid: 1739 - - port: Forward - uid: 1738 - - port: Forward - uid: 1737 - - port: Forward - uid: 1736 - - port: Forward - uid: 1735 - Right: - - port: Reverse - uid: 1739 - - port: Reverse - uid: 1738 - - port: Reverse - uid: 1737 - - port: Reverse - uid: 1736 - - port: Reverse - uid: 1735 - Middle: - - port: Off - uid: 1739 - - port: Off - uid: 1738 - - port: Off - uid: 1737 - - port: Off - uid: 1736 - - port: Off - uid: 1735 - type: SignalTransmitter + - linkedPorts: + 1739: + - Left: Forward + - Right: Reverse + - Middle: Off + 1738: + - Left: Forward + - Right: Reverse + - Middle: Off + 1737: + - Left: Forward + - Right: Reverse + - Middle: Off + 1736: + - Left: Forward + - Right: Reverse + - Middle: Off + 1735: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 7431 components: - pos: 9.5,-22.5 parent: 1 type: Transform - - outputs: - Left: - - port: Forward - uid: 1742 - - port: Forward - uid: 1741 - - port: Forward - uid: 1740 - Right: - - port: Reverse - uid: 1742 - - port: Reverse - uid: 1741 - - port: Reverse - uid: 1740 - Middle: - - port: Off - uid: 1742 - - port: Off - uid: 1741 - - port: Off - uid: 1740 - type: SignalTransmitter + - linkedPorts: + 1742: + - Left: Forward + - Right: Reverse + - Middle: Off + 1741: + - Left: Forward + - Right: Reverse + - Middle: Off + 1740: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 9199 components: - pos: -32.5,23.5 parent: 1 type: Transform - - outputs: - Left: - - port: Forward - uid: 3569 - - port: Forward - uid: 3568 - - port: Forward - uid: 3570 - - port: Forward - uid: 3567 - - port: Forward - uid: 3566 - - port: Forward - uid: 3565 - - port: Forward - uid: 3564 - - port: Forward - uid: 3563 - Right: - - port: Reverse - uid: 3569 - - port: Reverse - uid: 3568 - - port: Reverse - uid: 3570 - - port: Reverse - uid: 3567 - - port: Reverse - uid: 3566 - - port: Reverse - uid: 3565 - - port: Reverse - uid: 3564 - - port: Reverse - uid: 3563 - Middle: - - port: Off - uid: 3569 - - port: Off - uid: 3568 - - port: Off - uid: 3570 - - port: Off - uid: 3567 - - port: Off - uid: 3566 - - port: Off - uid: 3565 - - port: Off - uid: 3564 - - port: Off - uid: 3563 - type: SignalTransmitter + - linkedPorts: + 3569: + - Left: Forward + - Right: Reverse + - Middle: Off + 3568: + - Left: Forward + - Right: Reverse + - Middle: Off + 3570: + - Left: Forward + - Right: Reverse + - Middle: Off + 3567: + - Left: Forward + - Right: Reverse + - Middle: Off + 3566: + - Left: Forward + - Right: Reverse + - Middle: Off + 3565: + - Left: Forward + - Right: Reverse + - Middle: Off + 3564: + - Left: Forward + - Right: Reverse + - Middle: Off + 3563: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - proto: UnfinishedMachineFrame entities: - uid: 1926 @@ -83477,52 +82944,16 @@ entities: - pos: 12.5,7.5 parent: 1 type: Transform - - inputs: - Open: - - port: Timer - uid: 12485 - Close: - - port: Start - uid: 12485 - Toggle: [] - AutoClose: - - port: Timer - uid: 12485 - type: SignalReceiver - uid: 5536 components: - pos: 15.5,7.5 parent: 1 type: Transform - - inputs: - Open: - - port: Timer - uid: 12486 - Close: - - port: Start - uid: 12486 - Toggle: [] - AutoClose: - - port: Timer - uid: 12486 - type: SignalReceiver - uid: 5537 components: - pos: 18.5,7.5 parent: 1 type: Transform - - inputs: - Open: - - port: Timer - uid: 12487 - Close: - - port: Start - uid: 12487 - Toggle: [] - AutoClose: - - port: Timer - uid: 12487 - type: SignalReceiver - uid: 12003 components: - pos: 36.5,13.5 diff --git a/Resources/Maps/core.yml b/Resources/Maps/core.yml index 0a5bb69d5f..b4f89185a3 100644 --- a/Resources/Maps/core.yml +++ b/Resources/Maps/core.yml @@ -48891,9 +48891,6 @@ entities: - linkedPorts: 11256: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - registeredSinks: - ArtifactAnalyzerSender: - - 11256 type: DeviceLinkSource - uid: 6152 components: @@ -48903,9 +48900,6 @@ entities: - linkedPorts: 11255: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - registeredSinks: - ArtifactAnalyzerSender: - - 11255 type: DeviceLinkSource - proto: computerBodyScanner entities: @@ -101908,9 +101902,6 @@ entities: - linkedPorts: 18154: - Pressed: Toggle - registeredSinks: - Pressed: - - 18154 type: DeviceLinkSource - canCollide: False type: Physics @@ -101926,9 +101917,6 @@ entities: - linkedPorts: 18902: - Pressed: Toggle - registeredSinks: - Pressed: - - 18902 type: DeviceLinkSource - canCollide: False type: Physics @@ -101943,9 +101931,6 @@ entities: - linkedPorts: 18154: - Pressed: Toggle - registeredSinks: - Pressed: - - 18154 type: DeviceLinkSource - canCollide: False type: Physics @@ -102687,18 +102672,6 @@ entities: - Pressed: Toggle 12974: - Pressed: Toggle - registeredSinks: - Pressed: - - 18049 - - 13124 - - 12978 - - 12979 - - 12980 - - 12981 - - 12982 - - 12977 - - 12976 - - 12974 type: DeviceLinkSource - uid: 12986 components: @@ -102713,10 +102686,6 @@ entities: - Pressed: Toggle 817: - Pressed: Toggle - registeredSinks: - Pressed: - - 818 - - 817 type: DeviceLinkSource - type: ItemCooldown - uid: 12987 @@ -102729,10 +102698,6 @@ entities: - Pressed: Toggle 12958: - Pressed: Toggle - registeredSinks: - Pressed: - - 12957 - - 12958 type: DeviceLinkSource - uid: 12988 components: @@ -102750,13 +102715,6 @@ entities: - Pressed: Toggle 12965: - Pressed: Toggle - registeredSinks: - Pressed: - - 12961 - - 12962 - - 12963 - - 12964 - - 12965 type: DeviceLinkSource - uid: 12989 components: @@ -102770,11 +102728,6 @@ entities: - Pressed: Toggle 12966: - Pressed: Toggle - registeredSinks: - Pressed: - - 12968 - - 12967 - - 12966 type: DeviceLinkSource - uid: 12990 components: @@ -102788,11 +102741,6 @@ entities: - Pressed: Toggle 12971: - Pressed: Toggle - registeredSinks: - Pressed: - - 12970 - - 12969 - - 12971 type: DeviceLinkSource - uid: 12992 components: @@ -102804,9 +102752,6 @@ entities: - linkedPorts: 825: - Pressed: Toggle - registeredSinks: - Pressed: - - 825 type: DeviceLinkSource - uid: 12993 components: @@ -102818,9 +102763,6 @@ entities: - linkedPorts: 824: - Pressed: Toggle - registeredSinks: - Pressed: - - 824 type: DeviceLinkSource - uid: 12994 components: @@ -102852,20 +102794,6 @@ entities: - Pressed: Toggle 831: - Pressed: Toggle - registeredSinks: - Pressed: - - 829 - - 830 - - 834 - - 835 - - 836 - - 837 - - 828 - - 827 - - 826 - - 833 - - 832 - - 831 type: DeviceLinkSource - uid: 15866 components: @@ -102885,10 +102813,6 @@ entities: - Pressed: Toggle 14566: - Pressed: Toggle - registeredSinks: - Pressed: - - 10734 - - 14566 type: DeviceLinkSource - uid: 18254 components: @@ -102905,11 +102829,6 @@ entities: - Pressed: Toggle 18255: - Pressed: Toggle - registeredSinks: - Pressed: - - 18269 - - 10946 - - 18255 type: DeviceLinkSource - uid: 18925 components: @@ -102924,10 +102843,6 @@ entities: - Pressed: Toggle 18929: - Pressed: Toggle - registeredSinks: - Pressed: - - 18928 - - 18929 type: DeviceLinkSource - uid: 18926 components: @@ -102942,10 +102857,6 @@ entities: - Pressed: Toggle 18927: - Pressed: Toggle - registeredSinks: - Pressed: - - 18924 - - 18927 type: DeviceLinkSource - proto: SignalButtonExt1 entities: @@ -110134,25 +110045,6 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - registeredSinks: - Left: - - 6215 - - 6206 - - 6208 - - 6207 - - 6209 - Right: - - 6215 - - 6206 - - 6208 - - 6207 - - 6209 - Middle: - - 6215 - - 6206 - - 6208 - - 6207 - - 6209 type: DeviceLinkSource - uid: 14059 components: @@ -110180,25 +110072,6 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - registeredSinks: - Left: - - 6212 - - 6210 - - 6213 - - 6214 - - 6211 - Right: - - 6212 - - 6210 - - 6213 - - 6214 - - 6211 - Middle: - - 6212 - - 6210 - - 6213 - - 6214 - - 6211 type: DeviceLinkSource - uid: 14060 components: @@ -110240,34 +110113,6 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - registeredSinks: - Left: - - 6218 - - 6219 - - 6220 - - 6216 - - 6217 - - 6222 - - 6221 - - 6223 - Right: - - 6218 - - 6219 - - 6220 - - 6216 - - 6217 - - 6222 - - 6221 - - 6223 - Middle: - - 6218 - - 6219 - - 6220 - - 6216 - - 6217 - - 6222 - - 6221 - - 6223 type: DeviceLinkSource - proto: UnfinishedMachineFrame entities: diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index da179acaa7..fb926a2fc5 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -28361,193 +28361,129 @@ entities: - pos: 22.5,10.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8645 - type: SignalReceiver + - links: + - 8645 + type: DeviceLinkSink - uid: 8642 components: - pos: 22.5,11.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8645 - type: SignalReceiver + - links: + - 8645 + type: DeviceLinkSink - uid: 11541 components: - pos: 1.5,-34.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11543 - type: SignalReceiver + - links: + - 11543 + type: DeviceLinkSink - uid: 11542 components: - pos: 1.5,-38.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11543 - type: SignalReceiver + - links: + - 11543 + type: DeviceLinkSink - uid: 15301 components: - pos: 60.5,-31.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15398 - type: SignalReceiver + - links: + - 15398 + type: DeviceLinkSink - uid: 15302 components: - pos: 61.5,-31.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15398 - type: SignalReceiver + - links: + - 15398 + type: DeviceLinkSink - uid: 15303 components: - pos: 62.5,-31.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15398 - type: SignalReceiver + - links: + - 15398 + type: DeviceLinkSink - uid: 20428 components: - pos: 99.5,-25.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20586 - type: SignalReceiver + - links: + - 20586 + type: DeviceLinkSink - uid: 20471 components: - pos: 99.5,-26.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20586 - type: SignalReceiver + - links: + - 20586 + type: DeviceLinkSink - uid: 20588 components: - pos: 94.5,-26.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20585 - type: SignalReceiver + - links: + - 20585 + type: DeviceLinkSink - uid: 20589 components: - pos: 99.5,-27.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20586 - type: SignalReceiver + - links: + - 20586 + type: DeviceLinkSink - uid: 25540 components: - pos: 92.5,-13.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25543 - type: SignalReceiver + - links: + - 25543 + type: DeviceLinkSink - uid: 25541 components: - pos: 93.5,-13.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25543 - type: SignalReceiver + - links: + - 25543 + type: DeviceLinkSink - uid: 25542 components: - pos: 94.5,-13.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25543 - type: SignalReceiver + - links: + - 25543 + type: DeviceLinkSink - uid: 26442 components: - pos: 108.5,-36.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26443 - type: SignalReceiver + - links: + - 26443 + type: DeviceLinkSink - uid: 34659 components: - pos: 129.5,-3.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 32424 - type: SignalReceiver + - links: + - 32424 + type: DeviceLinkSink - proto: BlastDoorOpen entities: - uid: 1975 @@ -28555,133 +28491,89 @@ entities: - pos: -10.5,-2.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1976 - type: SignalReceiver + - links: + - 1976 + type: DeviceLinkSink - uid: 9400 components: - pos: 52.5,20.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9399 - type: SignalReceiver + - links: + - 9399 + type: DeviceLinkSink - uid: 9401 components: - pos: 52.5,21.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9399 - type: SignalReceiver + - links: + - 9399 + type: DeviceLinkSink - uid: 9403 components: - pos: 52.5,22.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9399 - type: SignalReceiver + - links: + - 9399 + type: DeviceLinkSink - uid: 9404 components: - pos: 52.5,23.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9399 - type: SignalReceiver + - links: + - 9399 + type: DeviceLinkSink - uid: 9405 components: - pos: 52.5,24.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9399 - type: SignalReceiver + - links: + - 9399 + type: DeviceLinkSink - uid: 14605 components: - pos: 45.5,-19.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14608 - type: SignalReceiver + - links: + - 14608 + type: DeviceLinkSink - uid: 14606 components: - pos: 46.5,-19.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14608 - type: SignalReceiver + - links: + - 14608 + type: DeviceLinkSink - uid: 14607 components: - pos: 47.5,-19.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14608 - type: SignalReceiver + - links: + - 14608 + type: DeviceLinkSink - uid: 24021 components: - pos: 64.5,-13.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24020 - type: SignalReceiver + - links: + - 24020 + type: DeviceLinkSink - uid: 24022 components: - pos: 63.5,-13.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24020 - type: SignalReceiver + - links: + - 24020 + type: DeviceLinkSink - uid: 29875 components: - pos: 97.5,53.5 @@ -28702,109 +28594,73 @@ entities: - pos: 71.5,43.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 31488 - type: SignalReceiver + - links: + - 31488 + type: DeviceLinkSink - uid: 31485 components: - pos: 72.5,43.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 31488 - type: SignalReceiver + - links: + - 31488 + type: DeviceLinkSink - uid: 31486 components: - pos: 73.5,43.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 31488 - type: SignalReceiver + - links: + - 31488 + type: DeviceLinkSink - uid: 31487 components: - pos: 74.5,43.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 31488 - type: SignalReceiver + - links: + - 31488 + type: DeviceLinkSink - uid: 32358 components: - pos: 26.5,-9.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 32351 - type: SignalReceiver + - links: + - 32351 + type: DeviceLinkSink - uid: 32359 components: - pos: 26.5,-5.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 32351 - type: SignalReceiver + - links: + - 32351 + type: DeviceLinkSink - uid: 32360 components: - pos: 27.5,-14.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 32351 - type: SignalReceiver + - links: + - 32351 + type: DeviceLinkSink - uid: 32361 components: - pos: 28.5,-3.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 32351 - type: SignalReceiver + - links: + - 32351 + type: DeviceLinkSink - uid: 32362 components: - pos: 29.5,-14.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 32351 - type: SignalReceiver + - links: + - 32351 + type: DeviceLinkSink - proto: BlockGameArcade entities: - uid: 1076 @@ -29786,61 +29642,21 @@ entities: - pos: 26.5,4.5 parent: 13329 type: Transform - - outputs: - Start: - - port: Close - uid: 9333 - Timer: - - port: AutoClose - uid: 9333 - - port: Open - uid: 9333 - type: SignalTransmitter - uid: 10578 components: - pos: 35.5,4.5 parent: 13329 type: Transform - - outputs: - Start: - - port: Close - uid: 9336 - Timer: - - port: AutoClose - uid: 9336 - - port: Open - uid: 9336 - type: SignalTransmitter - uid: 10583 components: - pos: 29.5,4.5 parent: 13329 type: Transform - - outputs: - Start: - - port: Close - uid: 9334 - Timer: - - port: AutoClose - uid: 9334 - - port: Open - uid: 9334 - type: SignalTransmitter - uid: 10586 components: - pos: 32.5,4.5 parent: 13329 type: Transform - - outputs: - Start: - - port: Close - uid: 9335 - Timer: - - port: AutoClose - uid: 9335 - - port: Open - uid: 9335 - type: SignalTransmitter - proto: BrokenBottle entities: - uid: 18218 @@ -102318,11 +102134,6 @@ entities: pos: 58.5,-31.5 parent: 13329 type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 15396 - type: SignalTransmitter - uid: 15486 components: - rot: 3.141592653589793 rad @@ -103153,708 +102964,372 @@ entities: - pos: 7.5,-15.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11497 - Forward: - - port: Left - uid: 11497 - Off: - - port: Middle - uid: 11497 - type: SignalReceiver + - links: + - 11497 + type: DeviceLinkSink - uid: 11496 components: - pos: 7.5,-14.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11497 - Forward: - - port: Left - uid: 11497 - Off: - - port: Middle - uid: 11497 - type: SignalReceiver + - links: + - 11497 + type: DeviceLinkSink - uid: 11518 components: - rot: -1.5707963267948966 rad pos: 10.5,-38.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver + - links: + - 11550 + type: DeviceLinkSink - uid: 11519 components: - rot: -1.5707963267948966 rad pos: 9.5,-38.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver + - links: + - 11550 + type: DeviceLinkSink - uid: 11520 components: - rot: -1.5707963267948966 rad pos: 8.5,-38.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver + - links: + - 11550 + type: DeviceLinkSink - uid: 11521 components: - rot: -1.5707963267948966 rad pos: 7.5,-38.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver + - links: + - 11550 + type: DeviceLinkSink - uid: 11522 components: - rot: -1.5707963267948966 rad pos: 6.5,-38.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver + - links: + - 11550 + type: DeviceLinkSink - uid: 11523 components: - rot: -1.5707963267948966 rad pos: 5.5,-38.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver + - links: + - 11550 + type: DeviceLinkSink - uid: 11524 components: - rot: -1.5707963267948966 rad pos: 4.5,-38.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver + - links: + - 11550 + type: DeviceLinkSink - uid: 11525 components: - rot: -1.5707963267948966 rad pos: 3.5,-38.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver + - links: + - 11550 + type: DeviceLinkSink - uid: 11526 components: - rot: -1.5707963267948966 rad pos: 2.5,-38.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver + - links: + - 11550 + type: DeviceLinkSink - uid: 11527 components: - rot: -1.5707963267948966 rad pos: 1.5,-38.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver + - links: + - 11550 + type: DeviceLinkSink - uid: 11528 components: - pos: 10.5,-37.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver + - links: + - 11550 + type: DeviceLinkSink - uid: 11529 components: - pos: 10.5,-36.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver + - links: + - 11550 + type: DeviceLinkSink - uid: 11530 components: - pos: 10.5,-35.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver + - links: + - 11550 + type: DeviceLinkSink - uid: 11531 components: - pos: 10.5,-34.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver + - links: + - 11550 + type: DeviceLinkSink - uid: 11532 components: - pos: 10.5,-33.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver + - links: + - 11550 + type: DeviceLinkSink - uid: 11533 components: - rot: 1.5707963267948966 rad pos: 1.5,-34.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11551 - Forward: - - port: Left - uid: 11551 - Off: - - port: Middle - uid: 11551 - type: SignalReceiver + - links: + - 11551 + type: DeviceLinkSink - uid: 11534 components: - rot: 1.5707963267948966 rad pos: 2.5,-34.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11551 - Forward: - - port: Left - uid: 11551 - Off: - - port: Middle - uid: 11551 - type: SignalReceiver + - links: + - 11551 + type: DeviceLinkSink - uid: 11535 components: - rot: 1.5707963267948966 rad pos: 3.5,-34.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11551 - Forward: - - port: Left - uid: 11551 - Off: - - port: Middle - uid: 11551 - type: SignalReceiver + - links: + - 11551 + type: DeviceLinkSink - uid: 11536 components: - rot: 1.5707963267948966 rad pos: 4.5,-34.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11551 - Forward: - - port: Left - uid: 11551 - Off: - - port: Middle - uid: 11551 - type: SignalReceiver + - links: + - 11551 + type: DeviceLinkSink - uid: 11537 components: - rot: 3.141592653589793 rad pos: 5.5,-34.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11551 - Forward: - - port: Left - uid: 11551 - Off: - - port: Middle - uid: 11551 - type: SignalReceiver + - links: + - 11551 + type: DeviceLinkSink - uid: 11538 components: - rot: 3.141592653589793 rad pos: 5.5,-33.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11551 - Forward: - - port: Left - uid: 11551 - Off: - - port: Middle - uid: 11551 - type: SignalReceiver + - links: + - 11551 + type: DeviceLinkSink - uid: 11539 components: - rot: 3.141592653589793 rad pos: 5.5,-32.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11551 - Forward: - - port: Left - uid: 11551 - Off: - - port: Middle - uid: 11551 - type: SignalReceiver + - links: + - 11551 + type: DeviceLinkSink - uid: 11540 components: - rot: 3.141592653589793 rad pos: 5.5,-31.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11551 - Forward: - - port: Left - uid: 11551 - Off: - - port: Middle - uid: 11551 - type: SignalReceiver + - links: + - 11551 + type: DeviceLinkSink - uid: 11827 components: - rot: -1.5707963267948966 rad pos: 22.5,-8.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11835 - Forward: - - port: Left - uid: 11835 - Off: - - port: Middle - uid: 11835 - type: SignalReceiver + - links: + - 11835 + type: DeviceLinkSink - uid: 11828 components: - rot: -1.5707963267948966 rad pos: 21.5,-8.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11835 - Forward: - - port: Left - uid: 11835 - Off: - - port: Middle - uid: 11835 - type: SignalReceiver + - links: + - 11835 + type: DeviceLinkSink - uid: 11829 components: - rot: -1.5707963267948966 rad pos: 20.5,-8.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11835 - Forward: - - port: Left - uid: 11835 - Off: - - port: Middle - uid: 11835 - type: SignalReceiver + - links: + - 11835 + type: DeviceLinkSink - uid: 11830 components: - rot: -1.5707963267948966 rad pos: 19.5,-8.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11835 - Forward: - - port: Left - uid: 11835 - Off: - - port: Middle - uid: 11835 - type: SignalReceiver + - links: + - 11835 + type: DeviceLinkSink - uid: 27053 components: - rot: 1.5707963267948966 rad pos: 130.5,-3.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver + - links: + - 27080 + type: DeviceLinkSink - uid: 27054 components: - rot: 1.5707963267948966 rad pos: 129.5,-3.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver + - links: + - 27080 + type: DeviceLinkSink - uid: 27055 components: - rot: 1.5707963267948966 rad pos: 125.5,-8.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver + - links: + - 27080 + type: DeviceLinkSink - uid: 27056 components: - rot: 1.5707963267948966 rad pos: 124.5,-8.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver + - links: + - 27080 + type: DeviceLinkSink - uid: 27057 components: - rot: 1.5707963267948966 rad pos: 123.5,-8.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver + - links: + - 27080 + type: DeviceLinkSink - uid: 27058 components: - rot: 3.141592653589793 rad pos: 126.5,-8.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver + - links: + - 27080 + type: DeviceLinkSink - uid: 27059 components: - rot: 3.141592653589793 rad pos: 126.5,-7.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver + - links: + - 27080 + type: DeviceLinkSink - uid: 27060 components: - rot: 3.141592653589793 rad pos: 126.5,-6.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver + - links: + - 27080 + type: DeviceLinkSink - uid: 27061 components: - rot: 3.141592653589793 rad pos: 126.5,-5.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver + - links: + - 27080 + type: DeviceLinkSink - uid: 27062 components: - rot: 3.141592653589793 rad pos: 126.5,-4.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver + - links: + - 27080 + type: DeviceLinkSink - uid: 27063 components: - rot: 1.5707963267948966 rad pos: 126.5,-3.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver + - links: + - 27080 + type: DeviceLinkSink - uid: 27064 components: - rot: 1.5707963267948966 rad pos: 127.5,-3.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver + - links: + - 27080 + type: DeviceLinkSink - uid: 34655 components: - rot: 1.5707963267948966 rad pos: 131.5,-3.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver + - links: + - 27080 + type: DeviceLinkSink - proto: CrateAirlockKit entities: - uid: 13122 @@ -170477,7 +169952,47 @@ entities: - pos: 10.353264,25.591267 parent: 13329 type: Transform -- proto: Intercom +- proto: IntercomAll + entities: + - uid: 35380 + components: + - pos: 124.5,50.5 + parent: 13329 + type: Transform +- proto: IntercomCommand + entities: + - uid: 9640 + components: + - pos: 29.5,-7.5 + parent: 13329 + type: Transform + - uid: 27873 + components: + - pos: 92.5,34.5 + parent: 13329 + type: Transform + - uid: 30725 + components: + - pos: 83.5,52.5 + parent: 13329 + type: Transform + - uid: 30782 + components: + - rot: 3.141592653589793 rad + pos: 88.5,45.5 + parent: 13329 + type: Transform + - uid: 31525 + components: + - pos: 62.5,58.5 + parent: 13329 + type: Transform + - uid: 31628 + components: + - pos: 62.5,51.5 + parent: 13329 + type: Transform +- proto: IntercomCommon entities: - uid: 1106 components: @@ -170545,46 +170060,6 @@ entities: - pos: 63.5,28.5 parent: 13329 type: Transform -- proto: IntercomAll - entities: - - uid: 35380 - components: - - pos: 124.5,50.5 - parent: 13329 - type: Transform -- proto: IntercomCommand - entities: - - uid: 9640 - components: - - pos: 29.5,-7.5 - parent: 13329 - type: Transform - - uid: 27873 - components: - - pos: 92.5,34.5 - parent: 13329 - type: Transform - - uid: 30725 - components: - - pos: 83.5,52.5 - parent: 13329 - type: Transform - - uid: 30782 - components: - - rot: 3.141592653589793 rad - pos: 88.5,45.5 - parent: 13329 - type: Transform - - uid: 31525 - components: - - pos: 62.5,58.5 - parent: 13329 - type: Transform - - uid: 31628 - components: - - pos: 62.5,51.5 - parent: 13329 - type: Transform - proto: IntercomMedical entities: - uid: 18711 @@ -173464,11 +172939,6 @@ entities: - pos: 61.5,-30.5 parent: 13329 type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 15397 - type: SignalReceiver - proto: MachineFrame entities: - uid: 13346 @@ -187362,17 +186832,9 @@ entities: pos: 128.5,-3.5 parent: 13329 type: Transform - - inputs: - Reverse: - - port: Right - uid: 27081 - Forward: - - port: Left - uid: 27081 - Off: - - port: Middle - uid: 27081 - type: SignalReceiver + - links: + - 27081 + type: DeviceLinkSink - proto: ReinforcedPlasmaWindow entities: - uid: 5633 @@ -191696,13 +191158,12 @@ entities: - pos: 29.673782,9.548224 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 8641 - - port: Toggle - uid: 8642 - type: SignalTransmitter + - linkedPorts: + 8641: + - Pressed: Toggle + 8642: + - Pressed: Toggle + type: DeviceLinkSource - uid: 9399 components: - name: Perma Window Blast Doors @@ -191710,19 +191171,18 @@ entities: - pos: 31.745594,9.565589 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9405 - - port: Toggle - uid: 9404 - - port: Toggle - uid: 9403 - - port: Toggle - uid: 9401 - - port: Toggle - uid: 9400 - type: SignalTransmitter + - linkedPorts: + 9405: + - Pressed: Toggle + 9404: + - Pressed: Toggle + 9403: + - Pressed: Toggle + 9401: + - Pressed: Toggle + 9400: + - Pressed: Toggle + type: DeviceLinkSource - uid: 9406 components: - name: Cell Window Shutters @@ -191730,29 +191190,6 @@ entities: - pos: 31.410873,9.561931 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9389 - - port: Toggle - uid: 9390 - - port: Toggle - uid: 9391 - - port: Toggle - uid: 9392 - - port: Toggle - uid: 9393 - - port: Toggle - uid: 9394 - - port: Toggle - uid: 9395 - - port: Toggle - uid: 9396 - - port: Toggle - uid: 9397 - - port: Toggle - uid: 9398 - type: SignalTransmitter - uid: 11854 components: - name: Mailroom Garage Door Opener @@ -191760,13 +191197,6 @@ entities: - pos: 21.53215,-13.842299 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9596 - - port: Toggle - uid: 9595 - type: SignalTransmitter - uid: 31585 components: - pos: 81.384796,57.5874 @@ -192195,113 +191625,71 @@ entities: - pos: 3.5,7.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1494 - type: SignalReceiver + - links: + - 1494 + type: DeviceLinkSink - uid: 1493 components: - pos: 4.5,7.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1494 - type: SignalReceiver + - links: + - 1494 + type: DeviceLinkSink - uid: 9595 components: - rot: 1.5707963267948966 rad pos: 22.5,-17.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11854 - type: SignalReceiver - uid: 9596 components: - rot: 1.5707963267948966 rad pos: 22.5,-16.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11854 - type: SignalReceiver - uid: 9774 components: - pos: -1.5,-8.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9777 - type: SignalReceiver + - links: + - 9777 + type: DeviceLinkSink - uid: 9775 components: - pos: -0.5,-8.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9777 - type: SignalReceiver + - links: + - 9777 + type: DeviceLinkSink - uid: 9776 components: - pos: 0.5,-8.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9777 - type: SignalReceiver + - links: + - 9777 + type: DeviceLinkSink - uid: 15304 components: - rot: -1.5707963267948966 rad pos: 26.5,-20.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15306 - type: SignalReceiver + - links: + - 15306 + type: DeviceLinkSink - uid: 15305 components: - rot: -1.5707963267948966 rad pos: 26.5,-19.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15306 - type: SignalReceiver + - links: + - 15306 + type: DeviceLinkSink - proto: ShuttersNormalOpen entities: - uid: 921 @@ -192309,805 +191697,515 @@ entities: - pos: -18.5,23.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 940 - type: SignalReceiver + - links: + - 940 + type: DeviceLinkSink - uid: 922 components: - pos: -17.5,23.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 940 - type: SignalReceiver + - links: + - 940 + type: DeviceLinkSink - uid: 923 components: - pos: -16.5,23.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 940 - type: SignalReceiver + - links: + - 940 + type: DeviceLinkSink - uid: 924 components: - pos: -15.5,23.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 940 - type: SignalReceiver + - links: + - 940 + type: DeviceLinkSink - uid: 925 components: - pos: -14.5,23.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 940 - type: SignalReceiver + - links: + - 940 + type: DeviceLinkSink - uid: 926 components: - pos: -13.5,23.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 940 - type: SignalReceiver + - links: + - 940 + type: DeviceLinkSink - uid: 927 components: - pos: -8.5,16.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1073 - type: SignalReceiver + - links: + - 1073 + type: DeviceLinkSink - uid: 928 components: - pos: -4.5,16.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1073 - type: SignalReceiver + - links: + - 1073 + type: DeviceLinkSink - uid: 929 components: - rot: 1.5707963267948966 rad pos: -3.5,18.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 939 - type: SignalReceiver + - links: + - 939 + type: DeviceLinkSink - uid: 930 components: - rot: 1.5707963267948966 rad pos: -3.5,19.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 939 - type: SignalReceiver + - links: + - 939 + type: DeviceLinkSink - uid: 931 components: - rot: 1.5707963267948966 rad pos: -3.5,20.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 939 - type: SignalReceiver + - links: + - 939 + type: DeviceLinkSink - uid: 932 components: - rot: 1.5707963267948966 rad pos: -3.5,21.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 939 - type: SignalReceiver + - links: + - 939 + type: DeviceLinkSink - uid: 933 components: - rot: 1.5707963267948966 rad pos: -3.5,22.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 939 - type: SignalReceiver + - links: + - 939 + type: DeviceLinkSink - uid: 934 components: - rot: -1.5707963267948966 rad pos: -9.5,18.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 938 - type: SignalReceiver + - links: + - 938 + type: DeviceLinkSink - uid: 935 components: - rot: -1.5707963267948966 rad pos: -9.5,19.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 938 - type: SignalReceiver + - links: + - 938 + type: DeviceLinkSink - uid: 936 components: - rot: -1.5707963267948966 rad pos: -9.5,20.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 938 - type: SignalReceiver + - links: + - 938 + type: DeviceLinkSink - uid: 937 components: - rot: -1.5707963267948966 rad pos: -9.5,21.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 938 - type: SignalReceiver + - links: + - 938 + type: DeviceLinkSink - uid: 1072 components: - pos: -11.5,23.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1073 - type: SignalReceiver + - links: + - 1073 + type: DeviceLinkSink - uid: 1311 components: - pos: -2.5,34.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1317 - type: SignalReceiver + - links: + - 1317 + type: DeviceLinkSink - uid: 1312 components: - pos: -2.5,35.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1317 - type: SignalReceiver + - links: + - 1317 + type: DeviceLinkSink - uid: 1313 components: - pos: -2.5,36.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1317 - type: SignalReceiver + - links: + - 1317 + type: DeviceLinkSink - uid: 1314 components: - pos: -2.5,39.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1317 - type: SignalReceiver + - links: + - 1317 + type: DeviceLinkSink - uid: 1315 components: - pos: -8.5,43.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1317 - type: SignalReceiver + - links: + - 1317 + type: DeviceLinkSink - uid: 1316 components: - pos: -11.5,43.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1317 - type: SignalReceiver + - links: + - 1317 + type: DeviceLinkSink - uid: 1432 components: - pos: -12.5,25.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1431 - type: SignalReceiver + - links: + - 1431 + type: DeviceLinkSink - uid: 4518 components: - rot: -1.5707963267948966 rad pos: -26.5,38.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4523 - type: SignalReceiver + - links: + - 4523 + type: DeviceLinkSink - uid: 4519 components: - rot: -1.5707963267948966 rad pos: -26.5,39.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4523 - type: SignalReceiver + - links: + - 4523 + type: DeviceLinkSink - uid: 4520 components: - rot: -1.5707963267948966 rad pos: -26.5,40.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4523 - type: SignalReceiver + - links: + - 4523 + type: DeviceLinkSink - uid: 4521 components: - pos: -22.5,43.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4523 - type: SignalReceiver + - links: + - 4523 + type: DeviceLinkSink - uid: 4522 components: - pos: -21.5,43.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4523 - type: SignalReceiver + - links: + - 4523 + type: DeviceLinkSink - uid: 4748 components: - rot: -1.5707963267948966 rad pos: -25.5,30.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4751 - type: SignalReceiver + - links: + - 4751 + type: DeviceLinkSink - uid: 4749 components: - rot: -1.5707963267948966 rad pos: -25.5,31.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4751 - type: SignalReceiver + - links: + - 4751 + type: DeviceLinkSink - uid: 4750 components: - rot: -1.5707963267948966 rad pos: -25.5,32.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4751 - type: SignalReceiver + - links: + - 4751 + type: DeviceLinkSink - uid: 9389 components: - pos: 27.5,0.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9406 - type: SignalReceiver - uid: 9390 components: - pos: 28.5,0.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9406 - type: SignalReceiver - uid: 9391 components: - pos: 30.5,0.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9406 - type: SignalReceiver - uid: 9392 components: - pos: 31.5,0.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9406 - type: SignalReceiver - uid: 9393 components: - pos: 33.5,0.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9406 - type: SignalReceiver - uid: 9394 components: - pos: 34.5,0.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9406 - type: SignalReceiver - uid: 9395 components: - pos: 36.5,0.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9406 - type: SignalReceiver - uid: 9396 components: - pos: 37.5,0.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9406 - type: SignalReceiver - uid: 9397 components: - pos: 38.5,0.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9406 - type: SignalReceiver - uid: 9398 components: - pos: 39.5,0.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9406 - type: SignalReceiver - uid: 10588 components: - pos: 42.5,16.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10587 - type: SignalReceiver + - links: + - 10587 + type: DeviceLinkSink - uid: 10589 components: - pos: 45.5,16.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10587 - type: SignalReceiver + - links: + - 10587 + type: DeviceLinkSink - uid: 10590 components: - pos: 47.5,16.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10587 - type: SignalReceiver + - links: + - 10587 + type: DeviceLinkSink - uid: 10591 components: - pos: 50.5,16.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10587 - type: SignalReceiver + - links: + - 10587 + type: DeviceLinkSink - uid: 10879 components: - rot: -1.5707963267948966 rad pos: 7.5,-1.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10877 - type: SignalReceiver + - links: + - 10877 + type: DeviceLinkSink - uid: 10880 components: - rot: -1.5707963267948966 rad pos: 7.5,-0.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10877 - type: SignalReceiver + - links: + - 10877 + type: DeviceLinkSink - uid: 10881 components: - rot: -1.5707963267948966 rad pos: 7.5,0.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10877 - type: SignalReceiver + - links: + - 10877 + type: DeviceLinkSink - uid: 10882 components: - rot: -1.5707963267948966 rad pos: 7.5,2.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10878 - type: SignalReceiver + - links: + - 10878 + type: DeviceLinkSink - uid: 10883 components: - rot: -1.5707963267948966 rad pos: 7.5,3.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10878 - type: SignalReceiver + - links: + - 10878 + type: DeviceLinkSink - uid: 10884 components: - rot: -1.5707963267948966 rad pos: 7.5,4.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10878 - type: SignalReceiver + - links: + - 10878 + type: DeviceLinkSink - uid: 18460 components: - pos: 18.5,35.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver + - links: + - 18464 + type: DeviceLinkSink - uid: 18461 components: - pos: 20.5,35.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver + - links: + - 18464 + type: DeviceLinkSink - uid: 18462 components: - pos: 22.5,35.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver + - links: + - 18464 + type: DeviceLinkSink - uid: 18463 components: - pos: 24.5,35.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver + - links: + - 18464 + type: DeviceLinkSink - uid: 18498 components: - pos: 20.5,42.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver + - links: + - 18464 + type: DeviceLinkSink - uid: 18499 components: - pos: 21.5,42.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver + - links: + - 18464 + type: DeviceLinkSink - uid: 18500 components: - pos: 22.5,42.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver + - links: + - 18464 + type: DeviceLinkSink - uid: 18501 components: - pos: 24.5,42.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver + - links: + - 18464 + type: DeviceLinkSink - uid: 18502 components: - pos: 25.5,42.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver + - links: + - 18464 + type: DeviceLinkSink - uid: 18503 components: - rot: -1.5707963267948966 rad pos: 16.5,36.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver + - links: + - 18464 + type: DeviceLinkSink - uid: 18504 components: - rot: -1.5707963267948966 rad pos: 16.5,37.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver + - links: + - 18464 + type: DeviceLinkSink - uid: 18505 components: - rot: -1.5707963267948966 rad pos: 16.5,38.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver + - links: + - 18464 + type: DeviceLinkSink - uid: 18758 components: - rot: -1.5707963267948966 rad @@ -193140,25 +192238,17 @@ entities: - pos: 65.5,41.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 31552 - type: SignalReceiver + - links: + - 31552 + type: DeviceLinkSink - uid: 31551 components: - pos: 56.5,42.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 31552 - type: SignalReceiver + - links: + - 31552 + type: DeviceLinkSink - proto: ShuttersRadiationOpen entities: - uid: 25901 @@ -193166,234 +192256,158 @@ entities: - pos: 94.5,-9.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25903 - type: SignalReceiver + - links: + - 25903 + type: DeviceLinkSink - uid: 25902 components: - pos: 94.5,-1.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25904 - type: SignalReceiver + - links: + - 25904 + type: DeviceLinkSink - uid: 34676 components: - rot: 1.5707963267948966 rad pos: 117.5,-7.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34695 - type: SignalReceiver + - links: + - 34695 + type: DeviceLinkSink - uid: 34677 components: - rot: 1.5707963267948966 rad pos: 117.5,-6.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34695 - type: SignalReceiver + - links: + - 34695 + type: DeviceLinkSink - uid: 34678 components: - rot: 1.5707963267948966 rad pos: 117.5,-5.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34695 - type: SignalReceiver + - links: + - 34695 + type: DeviceLinkSink - uid: 34679 components: - rot: 1.5707963267948966 rad pos: 117.5,-4.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34695 - type: SignalReceiver + - links: + - 34695 + type: DeviceLinkSink - uid: 34680 components: - rot: 1.5707963267948966 rad pos: 117.5,-3.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34695 - type: SignalReceiver + - links: + - 34695 + type: DeviceLinkSink - uid: 34681 components: - pos: 110.5,3.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34692 - type: SignalReceiver + - links: + - 34692 + type: DeviceLinkSink - uid: 34682 components: - pos: 109.5,3.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34692 - type: SignalReceiver + - links: + - 34692 + type: DeviceLinkSink - uid: 34683 components: - pos: 108.5,3.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34692 - type: SignalReceiver + - links: + - 34692 + type: DeviceLinkSink - uid: 34684 components: - pos: 107.5,3.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34692 - type: SignalReceiver + - links: + - 34692 + type: DeviceLinkSink - uid: 34685 components: - pos: 106.5,3.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34692 - type: SignalReceiver + - links: + - 34692 + type: DeviceLinkSink - uid: 34686 components: - pos: 110.5,-14.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34691 - type: SignalReceiver + - links: + - 34691 + type: DeviceLinkSink - uid: 34687 components: - pos: 109.5,-14.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34691 - type: SignalReceiver + - links: + - 34691 + type: DeviceLinkSink - uid: 34688 components: - pos: 108.5,-14.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34691 - type: SignalReceiver + - links: + - 34691 + type: DeviceLinkSink - uid: 34689 components: - pos: 107.5,-14.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34691 - type: SignalReceiver + - links: + - 34691 + type: DeviceLinkSink - uid: 34690 components: - pos: 106.5,-14.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34691 - type: SignalReceiver + - links: + - 34691 + type: DeviceLinkSink - uid: 35310 components: - pos: 96.5,-0.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 35312 - type: SignalReceiver + - links: + - 35312 + type: DeviceLinkSink - uid: 35311 components: - pos: 99.5,-0.5 parent: 13329 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 35312 - type: SignalReceiver + - links: + - 35312 + type: DeviceLinkSink - proto: ShuttleConsoleCircuitboard entities: - uid: 13064 @@ -193415,17 +192429,16 @@ entities: - pos: -7.5,25.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 934 - - port: Toggle - uid: 935 - - port: Toggle - uid: 936 - - port: Toggle - uid: 937 - type: SignalTransmitter + - linkedPorts: + 934: + - Pressed: Toggle + 935: + - Pressed: Toggle + 936: + - Pressed: Toggle + 937: + - Pressed: Toggle + type: DeviceLinkSource - uid: 939 components: - name: Hallway Windows @@ -193433,19 +192446,18 @@ entities: - pos: -5.5,25.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 933 - - port: Toggle - uid: 932 - - port: Toggle - uid: 931 - - port: Toggle - uid: 930 - - port: Toggle - uid: 929 - type: SignalTransmitter + - linkedPorts: + 933: + - Pressed: Toggle + 932: + - Pressed: Toggle + 931: + - Pressed: Toggle + 930: + - Pressed: Toggle + 929: + - Pressed: Toggle + type: DeviceLinkSource - uid: 940 components: - name: Shutters @@ -193453,21 +192465,20 @@ entities: - pos: -18.5,27.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 921 - - port: Toggle - uid: 922 - - port: Toggle - uid: 923 - - port: Toggle - uid: 924 - - port: Toggle - uid: 925 - - port: Toggle - uid: 926 - type: SignalTransmitter + - linkedPorts: + 921: + - Pressed: Toggle + 922: + - Pressed: Toggle + 923: + - Pressed: Toggle + 924: + - Pressed: Toggle + 925: + - Pressed: Toggle + 926: + - Pressed: Toggle + type: DeviceLinkSource - uid: 1073 components: - name: Window shutters @@ -193475,15 +192486,14 @@ entities: - pos: -11.5,27.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1072 - - port: Toggle - uid: 927 - - port: Toggle - uid: 928 - type: SignalTransmitter + - linkedPorts: + 1072: + - Pressed: Toggle + 927: + - Pressed: Toggle + 928: + - Pressed: Toggle + type: DeviceLinkSource - uid: 1317 components: - name: Window Shutters @@ -193491,21 +192501,20 @@ entities: - pos: -7.5,37.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1316 - - port: Toggle - uid: 1315 - - port: Toggle - uid: 1314 - - port: Toggle - uid: 1313 - - port: Toggle - uid: 1312 - - port: Toggle - uid: 1311 - type: SignalTransmitter + - linkedPorts: + 1316: + - Pressed: Toggle + 1315: + - Pressed: Toggle + 1314: + - Pressed: Toggle + 1313: + - Pressed: Toggle + 1312: + - Pressed: Toggle + 1311: + - Pressed: Toggle + type: DeviceLinkSource - uid: 1431 components: - name: Bar-Kitchen Button @@ -193513,79 +192522,73 @@ entities: - pos: -12.5,26.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1432 - type: SignalTransmitter + - linkedPorts: + 1432: + - Pressed: Toggle + type: DeviceLinkSource - uid: 1494 components: - pos: 6.5,11.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1493 - - port: Toggle - uid: 1492 - type: SignalTransmitter + - linkedPorts: + 1493: + - Pressed: Toggle + 1492: + - Pressed: Toggle + type: DeviceLinkSource - uid: 1976 components: - pos: -8.5,3.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1975 - type: SignalTransmitter + - linkedPorts: + 1975: + - Pressed: Toggle + type: DeviceLinkSource - uid: 4523 components: - pos: -25.5,36.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4518 - - port: Toggle - uid: 4519 - - port: Toggle - uid: 4520 - - port: Toggle - uid: 4521 - - port: Toggle - uid: 4522 - type: SignalTransmitter + - linkedPorts: + 4518: + - Pressed: Toggle + 4519: + - Pressed: Toggle + 4520: + - Pressed: Toggle + 4521: + - Pressed: Toggle + 4522: + - Pressed: Toggle + type: DeviceLinkSource - uid: 4751 components: - pos: -22.5,29.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4748 - - port: Toggle - uid: 4749 - - port: Toggle - uid: 4750 - type: SignalTransmitter + - linkedPorts: + 4748: + - Pressed: Toggle + 4749: + - Pressed: Toggle + 4750: + - Pressed: Toggle + type: DeviceLinkSource - uid: 9777 components: - pos: 1.5,-14.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9774 - - port: Toggle - uid: 9775 - - port: Toggle - uid: 9776 - type: SignalTransmitter + - linkedPorts: + 9774: + - Pressed: Toggle + 9775: + - Pressed: Toggle + 9776: + - Pressed: Toggle + type: DeviceLinkSource - uid: 10587 components: - name: Room Shutters @@ -193593,266 +192596,247 @@ entities: - pos: 46.5,12.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10588 - - port: Toggle - uid: 10589 - - port: Toggle - uid: 10590 - - port: Toggle - uid: 10591 - type: SignalTransmitter + - linkedPorts: + 10588: + - Pressed: Toggle + 10589: + - Pressed: Toggle + 10590: + - Pressed: Toggle + 10591: + - Pressed: Toggle + type: DeviceLinkSource - uid: 10877 components: - pos: 12.5,-1.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10879 - - port: Toggle - uid: 10880 - - port: Toggle - uid: 10881 - type: SignalTransmitter + - linkedPorts: + 10879: + - Pressed: Toggle + 10880: + - Pressed: Toggle + 10881: + - Pressed: Toggle + type: DeviceLinkSource - uid: 10878 components: - pos: 12.5,4.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10884 - - port: Toggle - uid: 10883 - - port: Toggle - uid: 10882 - type: SignalTransmitter + - linkedPorts: + 10884: + - Pressed: Toggle + 10883: + - Pressed: Toggle + 10882: + - Pressed: Toggle + type: DeviceLinkSource - uid: 11543 components: - pos: 4.5,-36.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11541 - - port: Toggle - uid: 11542 - type: SignalTransmitter + - linkedPorts: + 11541: + - Pressed: Toggle + 11542: + - Pressed: Toggle + type: DeviceLinkSource - uid: 14608 components: - rot: 1.5707963267948966 rad pos: 49.5,-19.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 14607 - - port: Toggle - uid: 14606 - - port: Toggle - uid: 14605 - type: SignalTransmitter + - linkedPorts: + 14607: + - Pressed: Toggle + 14606: + - Pressed: Toggle + 14605: + - Pressed: Toggle + type: DeviceLinkSource - uid: 15306 components: - pos: 31.5,-21.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15304 - - port: Toggle - uid: 15305 - type: SignalTransmitter + - linkedPorts: + 15304: + - Pressed: Toggle + 15305: + - Pressed: Toggle + type: DeviceLinkSource - uid: 15398 components: - pos: 59.5,-28.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15301 - - port: Toggle - uid: 15302 - - port: Toggle - uid: 15303 - type: SignalTransmitter + - linkedPorts: + 15301: + - Pressed: Toggle + 15302: + - Pressed: Toggle + 15303: + - Pressed: Toggle + type: DeviceLinkSource - uid: 18464 components: - pos: 26.5,38.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 18463 - - port: Toggle - uid: 18462 - - port: Toggle - uid: 18461 - - port: Toggle - uid: 18460 - - port: Toggle - uid: 18502 - - port: Toggle - uid: 18501 - - port: Toggle - uid: 18500 - - port: Toggle - uid: 18499 - - port: Toggle - uid: 18498 - - port: Toggle - uid: 18503 - - port: Toggle - uid: 18504 - - port: Toggle - uid: 18505 - type: SignalTransmitter + - linkedPorts: + 18463: + - Pressed: Toggle + 18462: + - Pressed: Toggle + 18461: + - Pressed: Toggle + 18460: + - Pressed: Toggle + 18502: + - Pressed: Toggle + 18501: + - Pressed: Toggle + 18500: + - Pressed: Toggle + 18499: + - Pressed: Toggle + 18498: + - Pressed: Toggle + 18503: + - Pressed: Toggle + 18504: + - Pressed: Toggle + 18505: + - Pressed: Toggle + type: DeviceLinkSource - uid: 20585 components: - pos: 94.5,-28.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 20588 - type: SignalTransmitter + - linkedPorts: + 20588: + - Pressed: Toggle + type: DeviceLinkSource - uid: 20586 components: - pos: 99.5,-28.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 20589 - - port: Toggle - uid: 20471 - - port: Toggle - uid: 20428 - type: SignalTransmitter + - linkedPorts: + 20589: + - Pressed: Toggle + 20471: + - Pressed: Toggle + 20428: + - Pressed: Toggle + type: DeviceLinkSource - uid: 24020 components: - pos: 62.5,-16.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 24022 - - port: Toggle - uid: 24021 - type: SignalTransmitter + - linkedPorts: + 24022: + - Pressed: Toggle + 24021: + - Pressed: Toggle + type: DeviceLinkSource - uid: 25543 components: - pos: 91.5,-13.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 25540 - - port: Toggle - uid: 25541 - - port: Toggle - uid: 25542 - type: SignalTransmitter + - linkedPorts: + 25540: + - Pressed: Toggle + 25541: + - Pressed: Toggle + 25542: + - Pressed: Toggle + type: DeviceLinkSource - uid: 25903 components: - pos: 92.5,-8.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 25901 - type: SignalTransmitter + - linkedPorts: + 25901: + - Pressed: Toggle + type: DeviceLinkSource - uid: 25904 components: - pos: 92.5,-2.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 25902 - type: SignalTransmitter + - linkedPorts: + 25902: + - Pressed: Toggle + type: DeviceLinkSource - uid: 26443 components: - pos: 104.5,-34.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 26442 - type: SignalTransmitter + - linkedPorts: + 26442: + - Pressed: Toggle + type: DeviceLinkSource - uid: 31488 components: - pos: 70.5,44.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 31484 - - port: Toggle - uid: 31485 - - port: Toggle - uid: 31486 - - port: Toggle - uid: 31487 - type: SignalTransmitter + - linkedPorts: + 31484: + - Pressed: Toggle + 31485: + - Pressed: Toggle + 31486: + - Pressed: Toggle + 31487: + - Pressed: Toggle + type: DeviceLinkSource - uid: 31552 components: - pos: 62.5,49.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 31551 - - port: Toggle - uid: 31550 - type: SignalTransmitter + - linkedPorts: + 31551: + - Pressed: Toggle + 31550: + - Pressed: Toggle + type: DeviceLinkSource - uid: 32351 components: - pos: 30.5,-11.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 32360 - - port: Toggle - uid: 32358 - - port: Toggle - uid: 32359 - - port: Toggle - uid: 32361 - - port: Toggle - uid: 32362 - type: SignalTransmitter + - linkedPorts: + 32360: + - Pressed: Toggle + 32358: + - Pressed: Toggle + 32359: + - Pressed: Toggle + 32361: + - Pressed: Toggle + 32362: + - Pressed: Toggle + type: DeviceLinkSource - uid: 32424 components: - pos: 127.5,-5.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 34659 - type: SignalTransmitter + - linkedPorts: + 34659: + - Pressed: Toggle + type: DeviceLinkSource - uid: 34691 components: - name: South Window Shutters @@ -193860,19 +192844,18 @@ entities: - pos: 105.5,-15.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 34690 - - port: Toggle - uid: 34689 - - port: Toggle - uid: 34688 - - port: Toggle - uid: 34687 - - port: Toggle - uid: 34686 - type: SignalTransmitter + - linkedPorts: + 34690: + - Pressed: Toggle + 34689: + - Pressed: Toggle + 34688: + - Pressed: Toggle + 34687: + - Pressed: Toggle + 34686: + - Pressed: Toggle + type: DeviceLinkSource - uid: 34692 components: - name: North Window Shutters @@ -193880,19 +192863,18 @@ entities: - pos: 99.5,2.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 34685 - - port: Toggle - uid: 34684 - - port: Toggle - uid: 34683 - - port: Toggle - uid: 34682 - - port: Toggle - uid: 34681 - type: SignalTransmitter + - linkedPorts: + 34685: + - Pressed: Toggle + 34684: + - Pressed: Toggle + 34683: + - Pressed: Toggle + 34682: + - Pressed: Toggle + 34681: + - Pressed: Toggle + type: DeviceLinkSource - uid: 34695 components: - name: East Rad Shutters @@ -193900,19 +192882,18 @@ entities: - pos: 117.5,-2.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 34680 - - port: Toggle - uid: 34679 - - port: Toggle - uid: 34678 - - port: Toggle - uid: 34677 - - port: Toggle - uid: 34676 - type: SignalTransmitter + - linkedPorts: + 34680: + - Pressed: Toggle + 34679: + - Pressed: Toggle + 34678: + - Pressed: Toggle + 34677: + - Pressed: Toggle + 34676: + - Pressed: Toggle + type: DeviceLinkSource - uid: 35312 components: - name: Airlock Shutters @@ -193920,13 +192901,12 @@ entities: - pos: 96.5,2.5 parent: 13329 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 35310 - - port: Toggle - uid: 35311 - type: SignalTransmitter + - linkedPorts: + 35310: + - Pressed: Toggle + 35311: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignAnomaly entities: - uid: 20083 @@ -207144,7 +206124,7 @@ entities: - pos: 115.47477,35.418278 parent: 13329 type: Transform -- proto: ToyAssistant +- proto: ToyFigurinePassenger entities: - uid: 6985 components: @@ -207267,319 +206247,215 @@ entities: - pos: 6.5,-15.5 parent: 13329 type: Transform - - outputs: - Left: - - port: Forward - uid: 11495 - - port: Forward - uid: 11496 - Right: - - port: Reverse - uid: 11495 - - port: Reverse - uid: 11496 - Middle: - - port: Off - uid: 11495 - - port: Off - uid: 11496 - type: SignalTransmitter + - linkedPorts: + 11495: + - Left: Forward + - Right: Reverse + - Middle: Off + 11496: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 11550 components: - pos: 9.5,-37.5 parent: 13329 type: Transform - - outputs: - Left: - - port: Forward - uid: 11532 - - port: Forward - uid: 11531 - - port: Forward - uid: 11530 - - port: Forward - uid: 11529 - - port: Forward - uid: 11528 - - port: Forward - uid: 11518 - - port: Forward - uid: 11519 - - port: Forward - uid: 11520 - - port: Forward - uid: 11521 - - port: Forward - uid: 11522 - - port: Forward - uid: 11523 - - port: Forward - uid: 11524 - - port: Forward - uid: 11525 - - port: Forward - uid: 11526 - - port: Forward - uid: 11527 - Right: - - port: Reverse - uid: 11532 - - port: Reverse - uid: 11531 - - port: Reverse - uid: 11530 - - port: Reverse - uid: 11529 - - port: Reverse - uid: 11528 - - port: Reverse - uid: 11518 - - port: Reverse - uid: 11519 - - port: Reverse - uid: 11520 - - port: Reverse - uid: 11521 - - port: Reverse - uid: 11522 - - port: Reverse - uid: 11523 - - port: Reverse - uid: 11524 - - port: Reverse - uid: 11525 - - port: Reverse - uid: 11526 - - port: Reverse - uid: 11527 - Middle: - - port: Off - uid: 11532 - - port: Off - uid: 11531 - - port: Off - uid: 11530 - - port: Off - uid: 11529 - - port: Off - uid: 11528 - - port: Off - uid: 11518 - - port: Off - uid: 11519 - - port: Off - uid: 11520 - - port: Off - uid: 11521 - - port: Off - uid: 11522 - - port: Off - uid: 11523 - - port: Off - uid: 11524 - - port: Off - uid: 11525 - - port: Off - uid: 11526 - - port: Off - uid: 11527 - type: SignalTransmitter + - linkedPorts: + 11532: + - Left: Forward + - Right: Reverse + - Middle: Off + 11531: + - Left: Forward + - Right: Reverse + - Middle: Off + 11530: + - Left: Forward + - Right: Reverse + - Middle: Off + 11529: + - Left: Forward + - Right: Reverse + - Middle: Off + 11528: + - Left: Forward + - Right: Reverse + - Middle: Off + 11518: + - Left: Forward + - Right: Reverse + - Middle: Off + 11519: + - Left: Forward + - Right: Reverse + - Middle: Off + 11520: + - Left: Forward + - Right: Reverse + - Middle: Off + 11521: + - Left: Forward + - Right: Reverse + - Middle: Off + 11522: + - Left: Forward + - Right: Reverse + - Middle: Off + 11523: + - Left: Forward + - Right: Reverse + - Middle: Off + 11524: + - Left: Forward + - Right: Reverse + - Middle: Off + 11525: + - Left: Forward + - Right: Reverse + - Middle: Off + 11526: + - Left: Forward + - Right: Reverse + - Middle: Off + 11527: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 11551 components: - pos: 6.5,-34.5 parent: 13329 type: Transform - - outputs: - Left: - - port: Forward - uid: 11533 - - port: Forward - uid: 11534 - - port: Forward - uid: 11535 - - port: Forward - uid: 11536 - - port: Forward - uid: 11537 - - port: Forward - uid: 11538 - - port: Forward - uid: 11539 - - port: Forward - uid: 11540 - Right: - - port: Reverse - uid: 11533 - - port: Reverse - uid: 11534 - - port: Reverse - uid: 11535 - - port: Reverse - uid: 11536 - - port: Reverse - uid: 11537 - - port: Reverse - uid: 11538 - - port: Reverse - uid: 11539 - - port: Reverse - uid: 11540 - Middle: - - port: Off - uid: 11533 - - port: Off - uid: 11534 - - port: Off - uid: 11535 - - port: Off - uid: 11536 - - port: Off - uid: 11537 - - port: Off - uid: 11538 - - port: Off - uid: 11539 - - port: Off - uid: 11540 - type: SignalTransmitter + - linkedPorts: + 11533: + - Left: Forward + - Right: Reverse + - Middle: Off + 11534: + - Left: Forward + - Right: Reverse + - Middle: Off + 11535: + - Left: Forward + - Right: Reverse + - Middle: Off + 11536: + - Left: Forward + - Right: Reverse + - Middle: Off + 11537: + - Left: Forward + - Right: Reverse + - Middle: Off + 11538: + - Left: Forward + - Right: Reverse + - Middle: Off + 11539: + - Left: Forward + - Right: Reverse + - Middle: Off + 11540: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 11835 components: - pos: 17.5,-9.5 parent: 13329 type: Transform - - outputs: - Left: - - port: Forward - uid: 11830 - - port: Forward - uid: 11829 - - port: Forward - uid: 11828 - - port: Forward - uid: 11827 - Right: - - port: Reverse - uid: 11830 - - port: Reverse - uid: 11829 - - port: Reverse - uid: 11828 - - port: Reverse - uid: 11827 - Middle: - - port: Off - uid: 11830 - - port: Off - uid: 11829 - - port: Off - uid: 11828 - - port: Off - uid: 11827 - type: SignalTransmitter + - linkedPorts: + 11830: + - Left: Forward + - Right: Reverse + - Middle: Off + 11829: + - Left: Forward + - Right: Reverse + - Middle: Off + 11828: + - Left: Forward + - Right: Reverse + - Middle: Off + 11827: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 27080 components: - pos: 125.5,-7.5 parent: 13329 type: Transform - - outputs: - Left: - - port: Forward - uid: 27057 - - port: Forward - uid: 27056 - - port: Forward - uid: 27055 - - port: Forward - uid: 27058 - - port: Forward - uid: 27059 - - port: Forward - uid: 27060 - - port: Forward - uid: 27061 - - port: Forward - uid: 27062 - - port: Forward - uid: 27063 - - port: Forward - uid: 27064 - - port: Forward - uid: 27054 - - port: Forward - uid: 27053 - - port: Forward - uid: 34655 - Right: - - port: Reverse - uid: 27057 - - port: Reverse - uid: 27056 - - port: Reverse - uid: 27055 - - port: Reverse - uid: 27058 - - port: Reverse - uid: 27059 - - port: Reverse - uid: 27060 - - port: Reverse - uid: 27061 - - port: Reverse - uid: 27062 - - port: Reverse - uid: 27063 - - port: Reverse - uid: 27064 - - port: Reverse - uid: 27054 - - port: Reverse - uid: 27053 - - port: Reverse - uid: 34655 - Middle: - - port: Off - uid: 27057 - - port: Off - uid: 27056 - - port: Off - uid: 27055 - - port: Off - uid: 27058 - - port: Off - uid: 27059 - - port: Off - uid: 27060 - - port: Off - uid: 27061 - - port: Off - uid: 27062 - - port: Off - uid: 27063 - - port: Off - uid: 27064 - - port: Off - uid: 27054 - - port: Off - uid: 27053 - - port: Off - uid: 34655 - type: SignalTransmitter + - linkedPorts: + 27057: + - Left: Forward + - Right: Reverse + - Middle: Off + 27056: + - Left: Forward + - Right: Reverse + - Middle: Off + 27055: + - Left: Forward + - Right: Reverse + - Middle: Off + 27058: + - Left: Forward + - Right: Reverse + - Middle: Off + 27059: + - Left: Forward + - Right: Reverse + - Middle: Off + 27060: + - Left: Forward + - Right: Reverse + - Middle: Off + 27061: + - Left: Forward + - Right: Reverse + - Middle: Off + 27062: + - Left: Forward + - Right: Reverse + - Middle: Off + 27063: + - Left: Forward + - Right: Reverse + - Middle: Off + 27064: + - Left: Forward + - Right: Reverse + - Middle: Off + 27054: + - Left: Forward + - Right: Reverse + - Middle: Off + 27053: + - Left: Forward + - Right: Reverse + - Middle: Off + 34655: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 27081 components: - pos: 125.5,-3.5 parent: 13329 type: Transform - - outputs: - Left: - - port: Forward - uid: 27052 - Right: - - port: Reverse - uid: 27052 - Middle: - - port: Off - uid: 27052 - type: SignalTransmitter + - linkedPorts: + 27052: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - proto: UnfinishedMachineFrame entities: - uid: 12083 @@ -233227,18 +232103,6 @@ entities: pos: 28.5,4.5 parent: 13329 type: Transform - - inputs: - Open: - - port: Timer - uid: 10576 - Close: - - port: Start - uid: 10576 - Toggle: [] - AutoClose: - - port: Timer - uid: 10576 - type: SignalReceiver - uid: 9334 components: - name: cell 2 @@ -233247,18 +232111,6 @@ entities: pos: 31.5,4.5 parent: 13329 type: Transform - - inputs: - Open: - - port: Timer - uid: 10583 - Close: - - port: Start - uid: 10583 - Toggle: [] - AutoClose: - - port: Timer - uid: 10583 - type: SignalReceiver - uid: 9335 components: - name: cell 3 @@ -233267,18 +232119,6 @@ entities: pos: 34.5,4.5 parent: 13329 type: Transform - - inputs: - Open: - - port: Timer - uid: 10586 - Close: - - port: Start - uid: 10586 - Toggle: [] - AutoClose: - - port: Timer - uid: 10586 - type: SignalReceiver - uid: 9336 components: - name: Drunk Tank @@ -233287,18 +232127,6 @@ entities: pos: 37.5,4.5 parent: 13329 type: Transform - - inputs: - Open: - - port: Timer - uid: 10578 - Close: - - port: Start - uid: 10578 - Toggle: [] - AutoClose: - - port: Timer - uid: 10578 - type: SignalReceiver - uid: 9423 components: - rot: 1.5707963267948966 rad diff --git a/Resources/Maps/infiltrator.yml b/Resources/Maps/infiltrator.yml index aaf706212a..a082f92a13 100644 --- a/Resources/Maps/infiltrator.yml +++ b/Resources/Maps/infiltrator.yml @@ -4,15 +4,15 @@ meta: tilemap: 0: Space 3: FloorArcadeRed - 22: FloorDark - 58: FloorReinforced - 64: FloorShuttleRed - 65: FloorShuttleWhite - 68: FloorSteel - 74: FloorSteelMono - 91: FloorWood - 93: Lattice - 94: Plating + 23: FloorDark + 59: FloorReinforced + 65: FloorShuttleRed + 66: FloorShuttleWhite + 69: FloorSteel + 75: FloorSteelMono + 92: FloorWood + 94: Lattice + 95: Plating entities: - proto: "" entities: @@ -26,16 +26,16 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAARYAAAIWAAABFgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAQAAAABYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAEAAAAAWAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABAAAAAFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAWAAABFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAFgAAAhYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAWAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAkAAAAAWAAACFgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACSgAAAEEAAAAWAAADFgAAABYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAA0EAAABKAAABQAAAABYAAAAWAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABEAAAARAAAA0AAAAAWAAACFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAARcAAAIXAAABFwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAQQAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEEAAAAXAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABBAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAXAAABFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAFwAAAhcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAXAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAkEAAAAXAAACFwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAACSwAAAEIAAAAXAAADFwAAABcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAA0IAAABLAAABQQAAABcAAAAXAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABFAAAARQAAA0EAAAAXAAACFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABBAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-1: ind: 0,-1 - tiles: FgAAARYAAAEWAAABFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACQAAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAkAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAFAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAV4AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAANeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAUAAAABbAAADXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAMWAAAAFgAAAFsAAANbAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAQAAAAFsAAAADAAAAWwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAA0AAAABeAAAAAwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FwAAARcAAAEXAAABFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACQQAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAkEAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAFBAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAV8AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAANfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAUEAAABcAAADXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAAAFwAAAFwAAANcAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAQQAAAFwAAAADAAAAXAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAA0EAAABfAAAAAwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAMWAAABFgAAAV4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAADXgAAABYAAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAV4AAAAWAAACXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAFeAAAAFgAAAUAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAACXgAAABYAAANAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAhYAAAEWAAABQAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAAWAAAAFgAAAEAAAABeAAAAFgAAABYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAFgAAAxYAAABAAAAAFgAAAxYAAAAWAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAEAAAAAWAAAAQAAAAF4AAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAABFgAAABYAAAMWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAAV4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAMXAAABFwAAAV8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAADXwAAABcAAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAV8AAAAXAAACXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAFfAAAAFwAAAUEAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACXwAAABcAAANBAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAhcAAAEXAAABQQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAAXAAAAFwAAAEEAAABfAAAAFwAAABcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAFwAAAxcAAABBAAAAFwAAAxcAAAAXAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEEAAAAXAAAAQQAAAF8AAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAABFwAAABcAAAMXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAFwAAAV8AAABfAAAAXwAAAA== 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAADoAAABeAAAAOgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAAA6AAAAXgAAADoAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAOgAAAF4AAAA6AAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAFgAAAV4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAEWAAADFgAAARYAAAMWAAABQAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADFgAAAhYAAAAWAAACFgAAA14AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAIWAAAAFgAAAxYAAAFeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABFgAAABYAAAEWAAADXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAWAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAADsAAABfAAAAOwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAAA7AAAAXwAAADsAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAOwAAAF8AAAA7AAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEXAAADFwAAARcAAAMXAAABQQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAAhcAAAAXAAACFwAAA18AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAIXAAAAFwAAAxcAAAFfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABFwAAABcAAAEXAAADXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAXAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -447,12 +447,11 @@ entities: - type: OccluderTree - type: Shuttle - type: RadiationGridResistance - - nextShake: 0 - shakeTimes: 10 + - shakeTimes: 10 type: GravityShake - type: GasTileOverlay - - nextUpdate: 0 - type: SpreaderGrid + - type: SpreaderGrid + - type: GridPathfinding - proto: AirlockExternal entities: - uid: 442 @@ -547,14 +546,14 @@ entities: pos: -9.5,-16.5 parent: 73 type: Transform -- proto: AMEController +- proto: AmeController entities: - uid: 725 components: - pos: -5.5,-23.5 parent: 73 type: Transform -- proto: AMEJar +- proto: AmeJar entities: - uid: 651 components: @@ -576,7 +575,7 @@ entities: - pos: -6.2820926,-22.42969 parent: 73 type: Transform -- proto: AMEShielding +- proto: AmeShielding entities: - uid: 69 components: @@ -786,29 +785,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 250 components: - pos: -3.5,-17.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 251 components: - pos: -3.5,-16.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 252 components: - pos: -4.5,-16.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 253 components: - pos: -5.5,-16.5 @@ -816,8 +807,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 254 components: - pos: -6.5,-16.5 @@ -825,8 +814,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 255 components: - pos: -7.5,-16.5 @@ -834,8 +821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 256 components: - pos: -8.5,-16.5 @@ -843,8 +828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 257 components: - pos: -6.5,-15.5 @@ -852,8 +835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 258 components: - pos: -6.5,-17.5 @@ -861,15 +842,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 259 components: - pos: -4.5,-15.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 260 components: - pos: -4.5,-14.5 @@ -877,8 +854,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 261 components: - pos: -4.5,-13.5 @@ -886,8 +861,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 262 components: - pos: -4.5,-12.5 @@ -895,8 +868,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 263 components: - pos: -4.5,-11.5 @@ -904,8 +875,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 264 components: - pos: -4.5,-10.5 @@ -913,8 +882,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 265 components: - pos: -5.5,-12.5 @@ -922,8 +889,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 266 components: - pos: -6.5,-12.5 @@ -931,8 +896,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 267 components: - pos: -2.5,-16.5 @@ -940,8 +903,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 268 components: - pos: -1.5,-16.5 @@ -949,8 +910,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 269 components: - pos: -0.5,-16.5 @@ -958,8 +917,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 270 components: - pos: 0.5,-16.5 @@ -967,8 +924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 271 components: - pos: 1.5,-16.5 @@ -976,22 +931,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 272 components: - pos: 2.5,-16.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 273 components: - pos: 3.5,-16.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 274 components: - pos: 4.5,-16.5 @@ -999,8 +948,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 275 components: - pos: 5.5,-16.5 @@ -1008,8 +955,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 276 components: - pos: 5.5,-15.5 @@ -1017,8 +962,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 277 components: - pos: 5.5,-17.5 @@ -1026,8 +969,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 278 components: - pos: 6.5,-16.5 @@ -1035,8 +976,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 279 components: - pos: 7.5,-16.5 @@ -1044,15 +983,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 280 components: - pos: 3.5,-15.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 281 components: - pos: 3.5,-14.5 @@ -1060,8 +995,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 282 components: - pos: 3.5,-13.5 @@ -1069,8 +1002,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 283 components: - pos: 3.5,-12.5 @@ -1078,8 +1009,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 284 components: - pos: 3.5,-11.5 @@ -1087,8 +1016,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 285 components: - pos: 3.5,-11.5 @@ -1096,8 +1023,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 286 components: - pos: 3.5,-10.5 @@ -1105,8 +1030,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 287 components: - pos: 4.5,-12.5 @@ -1114,8 +1037,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 288 components: - pos: 5.5,-12.5 @@ -1123,43 +1044,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 290 components: - pos: -0.5,-6.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 291 components: - pos: -0.5,-7.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 292 components: - pos: -0.5,-8.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 293 components: - pos: -0.5,-9.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 294 components: - pos: -0.5,-10.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 295 components: - pos: -0.5,-11.5 @@ -1167,8 +1076,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 296 components: - pos: -0.5,-12.5 @@ -1176,8 +1083,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 297 components: - pos: -0.5,-13.5 @@ -1185,162 +1090,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 298 components: - pos: -0.5,-14.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 299 components: - pos: -1.5,-12.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 300 components: - pos: 0.5,-12.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 301 components: - pos: -0.5,-5.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 302 components: - pos: 0.5,-5.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 303 components: - pos: 1.5,-5.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 304 components: - pos: 2.5,-5.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 305 components: - pos: 3.5,-5.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 306 components: - pos: 3.5,-4.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 307 components: - pos: -0.5,-4.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 308 components: - pos: -0.5,-3.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 309 components: - pos: -0.5,-2.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 310 components: - pos: 0.5,-2.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 311 components: - pos: 1.5,-2.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 312 components: - pos: -1.5,-2.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 313 components: - pos: -2.5,-2.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 314 components: - pos: -1.5,-4.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 315 components: - pos: -3.5,-4.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 316 components: - pos: -2.5,-4.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 317 components: - pos: -4.5,-4.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 318 components: - pos: -5.5,-4.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 319 components: - pos: -5.5,-5.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 320 components: - pos: -5.5,-6.5 @@ -1348,8 +1207,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 321 components: - pos: -5.5,-3.5 @@ -1357,15 +1214,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 322 components: - pos: 4.5,-4.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 323 components: - pos: 4.5,-3.5 @@ -1373,8 +1226,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 324 components: - pos: 3.5,-6.5 @@ -1382,169 +1233,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 325 components: - pos: -0.5,-17.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 326 components: - pos: -3.5,-20.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 327 components: - pos: -3.5,-19.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 328 components: - pos: -3.5,-21.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 329 components: - pos: -4.5,-21.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 330 components: - pos: -4.5,-22.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 331 components: - pos: -4.5,-23.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 332 components: - pos: -4.5,-24.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 333 components: - pos: -4.5,-25.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 334 components: - pos: -4.5,-25.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 335 components: - pos: -4.5,-26.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 336 components: - pos: -4.5,-27.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 337 components: - pos: -5.5,-27.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 338 components: - pos: -6.5,-27.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 339 components: - pos: -6.5,-26.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 340 components: - pos: -6.5,-25.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 341 components: - pos: -6.5,-24.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 342 components: - pos: -6.5,-23.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 343 components: - pos: -6.5,-22.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 344 components: - pos: -2.5,-20.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 345 components: - pos: -1.5,-20.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 346 components: - pos: -0.5,-20.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 347 components: - pos: -0.5,-21.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 348 components: - pos: -0.5,-23.5 @@ -1552,8 +1355,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 349 components: - pos: -0.5,-22.5 @@ -1561,8 +1362,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 350 components: - pos: -0.5,-24.5 @@ -1570,8 +1369,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 351 components: - pos: -0.5,-25.5 @@ -1579,64 +1376,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 352 components: - pos: -0.5,-19.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 353 components: - pos: 0.5,-20.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 354 components: - pos: 1.5,-20.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 355 components: - pos: 2.5,-20.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 356 components: - pos: 3.5,-20.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 357 components: - pos: 4.5,-20.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 358 components: - pos: 3.5,-21.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 359 components: - pos: 3.5,-22.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 360 components: - pos: 3.5,-23.5 @@ -1644,8 +1423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 361 components: - pos: 3.5,-24.5 @@ -1653,29 +1430,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 362 components: - pos: 3.5,-25.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 363 components: - pos: 3.5,-26.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 364 components: - pos: 3.5,-27.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 365 components: - pos: 4.5,-27.5 @@ -1683,29 +1452,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 366 components: - pos: 5.5,-27.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 367 components: - pos: 5.5,-26.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 368 components: - pos: 5.5,-25.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 369 components: - pos: 5.5,-24.5 @@ -1713,8 +1474,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 370 components: - pos: 5.5,-23.5 @@ -1722,15 +1481,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 632 components: - pos: 0.5,-8.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 650 components: - pos: 1.5,-26.5 @@ -1738,8 +1493,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 659 components: - pos: 1.5,-8.5 @@ -1747,8 +1500,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 671 components: - pos: -0.5,-26.5 @@ -1756,8 +1507,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 691 components: - pos: -1.5,-26.5 @@ -1765,8 +1514,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 751 components: - pos: 0.5,-26.5 @@ -1774,8 +1521,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 752 components: - pos: -2.5,-26.5 @@ -1783,8 +1528,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 814 components: - pos: -2.5,-27.5 @@ -1792,8 +1535,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 816 components: - pos: 1.5,-27.5 @@ -1801,8 +1542,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 825 components: - pos: -6.5,-28.5 @@ -1810,8 +1549,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 826 components: - pos: -6.5,-29.5 @@ -1819,8 +1556,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 827 components: - pos: -2.5,-28.5 @@ -1828,8 +1563,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 828 components: - pos: -2.5,-29.5 @@ -1837,8 +1570,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 829 components: - pos: -2.5,-30.5 @@ -1846,8 +1577,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 830 components: - pos: -3.5,-30.5 @@ -1855,8 +1584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 831 components: - pos: -4.5,-30.5 @@ -1864,8 +1591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 832 components: - pos: -5.5,-30.5 @@ -1873,8 +1598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 833 components: - pos: 1.5,-28.5 @@ -1882,8 +1605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 834 components: - pos: 1.5,-29.5 @@ -1891,8 +1612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 835 components: - pos: 1.5,-30.5 @@ -1900,8 +1619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 836 components: - pos: 2.5,-30.5 @@ -1909,8 +1626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 837 components: - pos: 3.5,-30.5 @@ -1918,8 +1633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 838 components: - pos: 4.5,-30.5 @@ -1927,8 +1640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 839 components: - pos: 5.5,-28.5 @@ -1936,8 +1647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 840 components: - pos: 5.5,-29.5 @@ -1945,8 +1654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableHV entities: - uid: 65 @@ -1956,15 +1663,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 204 components: - pos: -5.5,-27.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 205 components: - pos: -5.5,-26.5 @@ -1972,8 +1675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 206 components: - pos: -5.5,-25.5 @@ -1981,8 +1682,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 207 components: - pos: -5.5,-24.5 @@ -1990,8 +1689,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 208 components: - pos: -5.5,-23.5 @@ -1999,57 +1696,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 209 components: - pos: -5.5,-22.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 214 components: - pos: -5.5,-20.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 215 components: - pos: -4.5,-20.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 216 components: - pos: -5.5,-19.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 217 components: - pos: -4.5,-19.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 218 components: - pos: -3.5,-19.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 663 components: - pos: -2.5,-20.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 664 components: - pos: -2.5,-19.5 @@ -2057,15 +1738,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 712 components: - pos: -6.5,-23.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 853 components: - pos: -5.5,-18.5 @@ -2073,8 +1750,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 854 components: - pos: -4.5,-18.5 @@ -2082,8 +1757,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 855 components: - pos: -3.5,-18.5 @@ -2091,29 +1764,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 856 components: - pos: -3.5,-21.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 857 components: - pos: -4.5,-21.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 858 components: - pos: -4.5,-22.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - proto: CableMV entities: - uid: 222 @@ -2121,8 +1786,6 @@ entities: - pos: -3.5,-19.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 223 components: - pos: -3.5,-18.5 @@ -2130,22 +1793,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 224 components: - pos: -3.5,-17.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 225 components: - pos: -3.5,-16.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 226 components: - pos: -2.5,-16.5 @@ -2153,8 +1810,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 227 components: - pos: -0.5,-16.5 @@ -2162,8 +1817,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 228 components: - pos: -1.5,-16.5 @@ -2171,22 +1824,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 229 components: - pos: -0.5,-15.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 230 components: - pos: -0.5,-14.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 231 components: - pos: -0.5,-13.5 @@ -2194,8 +1841,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 232 components: - pos: -0.5,-12.5 @@ -2203,8 +1848,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 233 components: - pos: -0.5,-11.5 @@ -2212,92 +1855,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 234 components: - pos: -0.5,-10.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 235 components: - pos: -0.5,-9.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 236 components: - pos: -0.5,-8.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 240 components: - pos: -3.5,-20.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 241 components: - pos: -3.5,-21.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 242 components: - pos: -4.5,-21.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 243 components: - pos: -4.5,-22.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 244 components: - pos: -4.5,-23.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 245 components: - pos: -4.5,-24.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 246 components: - pos: -4.5,-25.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 247 components: - pos: -4.5,-26.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 248 components: - pos: -4.5,-27.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - uid: 643 components: - pos: 1.5,-8.5 @@ -2305,15 +1922,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 661 components: - pos: 0.5,-8.5 parent: 73 type: Transform - - fixtures: {} - type: Fixtures - proto: CableTerminal entities: - uid: 212 @@ -4093,8 +3706,6 @@ entities: - pos: -2.4227936,-2.3320491 parent: 73 type: Transform - - nextAttack: 1689.1141067 - type: MeleeWeapon - proto: PosterContrabandC20r entities: - uid: 778 @@ -4506,145 +4117,97 @@ entities: - pos: -6.5,-4.5 parent: 73 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 238 - type: SignalReceiver + - links: + - 238 + type: DeviceLinkSink - uid: 38 components: - pos: 5.5,-4.5 parent: 73 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 630 - type: SignalReceiver + - links: + - 630 + type: DeviceLinkSink - uid: 48 components: - pos: 1.5,-9.5 parent: 73 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 143 - type: SignalReceiver + - links: + - 143 + type: DeviceLinkSink - uid: 140 components: - pos: -2.5,-9.5 parent: 73 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 143 - type: SignalReceiver + - links: + - 143 + type: DeviceLinkSink - uid: 160 components: - pos: -4.5,-2.5 parent: 73 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 238 - type: SignalReceiver + - links: + - 238 + type: DeviceLinkSink - uid: 189 components: - pos: 3.5,-2.5 parent: 73 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 630 - type: SignalReceiver + - links: + - 630 + type: DeviceLinkSink - uid: 193 components: - pos: 1.5,-1.5 parent: 73 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 238 - type: SignalReceiver + - links: + - 238 + type: DeviceLinkSink - uid: 511 components: - pos: -0.5,-1.5 parent: 73 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 238 - type: SignalReceiver + - links: + - 238 + type: DeviceLinkSink - uid: 577 components: - pos: 5.5,-19.5 parent: 73 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 578 - type: SignalReceiver + - links: + - 578 + type: DeviceLinkSink - uid: 670 components: - pos: -1.5,-1.5 parent: 73 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 238 - type: SignalReceiver + - links: + - 238 + type: DeviceLinkSink - uid: 687 components: - pos: 0.5,-1.5 parent: 73 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 238 - type: SignalReceiver + - links: + - 238 + type: DeviceLinkSink - uid: 693 components: - pos: -2.5,-1.5 parent: 73 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 238 - type: SignalReceiver + - links: + - 238 + type: DeviceLinkSink - proto: SignalButton entities: - uid: 143 @@ -4652,57 +4215,53 @@ entities: - pos: -2.5,-10.5 parent: 73 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 140 - - port: Toggle - uid: 48 - type: SignalTransmitter + - linkedPorts: + 140: + - Pressed: Toggle + 48: + - Pressed: Toggle + type: DeviceLinkSource - uid: 238 components: - pos: -2.5,-7.5 parent: 73 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4 - - port: Toggle - uid: 160 - - port: Toggle - uid: 693 - - port: Toggle - uid: 670 - - port: Toggle - uid: 511 - - port: Toggle - uid: 687 - - port: Toggle - uid: 193 - type: SignalTransmitter + - linkedPorts: + 4: + - Pressed: Toggle + 160: + - Pressed: Toggle + 693: + - Pressed: Toggle + 670: + - Pressed: Toggle + 511: + - Pressed: Toggle + 687: + - Pressed: Toggle + 193: + - Pressed: Toggle + type: DeviceLinkSource - uid: 578 components: - pos: 5.5,-20.5 parent: 73 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 577 - type: SignalTransmitter + - linkedPorts: + 577: + - Pressed: Toggle + type: DeviceLinkSource - uid: 630 components: - pos: 3.5,-6.5 parent: 73 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 189 - - port: Toggle - uid: 38 - type: SignalTransmitter + - linkedPorts: + 189: + - Pressed: Toggle + 38: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignDirectionalEvac entities: - uid: 568 @@ -5873,8 +5432,6 @@ entities: - pos: -6.522632,-21.426788 parent: 73 type: Transform - - nextAttack: 781.8510677 - type: MeleeWeapon - uid: 545 components: - pos: 5.4749,-23.512577 diff --git a/Resources/Maps/kettle.yml b/Resources/Maps/kettle.yml index 90816b69e8..1c2998bba6 100644 --- a/Resources/Maps/kettle.yml +++ b/Resources/Maps/kettle.yml @@ -10108,6 +10108,8 @@ entities: - parallax: KettleStation type: Parallax - type: LoadedMap + - type: GridTree + - type: MovedGrids - proto: AccordionInstrument entities: - uid: 21533 @@ -11867,13 +11869,9 @@ entities: - pos: 15.5,-11.5 parent: 82 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver + - links: + - 25958 + type: DeviceLinkSink - uid: 10526 components: - pos: 17.5,-11.5 @@ -12212,10 +12210,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 2988 - - 2987 type: DeviceLinkSource - uid: 2987 components: @@ -12235,10 +12229,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 6854 - - 2719 type: DeviceLinkSource - uid: 2988 components: @@ -12258,10 +12248,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 6854 - - 2719 type: DeviceLinkSource - uid: 6854 components: @@ -12281,10 +12267,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 2988 - - 2987 type: DeviceLinkSource - proto: AirlockExternalGlassEngineeringLocked entities: @@ -12314,10 +12296,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 7295 - - 1881 type: DeviceLinkSource - uid: 1883 components: @@ -12336,10 +12314,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 7295 - - 1881 type: DeviceLinkSource - uid: 7295 components: @@ -12359,10 +12333,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 1882 - - 1883 type: DeviceLinkSource - proto: AirlockExternalGlassLocked entities: @@ -12379,9 +12349,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 7774 type: DeviceLinkSource - uid: 7362 components: @@ -12396,9 +12363,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 7365 type: DeviceLinkSource - uid: 7365 components: @@ -12413,9 +12377,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 7362 type: DeviceLinkSource - uid: 7774 components: @@ -12430,9 +12391,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 2844 type: DeviceLinkSource - uid: 9155 components: @@ -12447,9 +12405,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 9157 type: DeviceLinkSource - uid: 9156 components: @@ -12464,9 +12419,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 9158 type: DeviceLinkSource - uid: 9157 components: @@ -12481,9 +12433,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 9155 type: DeviceLinkSource - uid: 9158 components: @@ -12498,9 +12447,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 9156 type: DeviceLinkSource - uid: 9384 components: @@ -12545,9 +12491,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 10219 type: DeviceLinkSource - uid: 10219 components: @@ -12562,9 +12505,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 10218 type: DeviceLinkSource - uid: 10384 components: @@ -12584,9 +12524,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 10748 type: DeviceLinkSource - uid: 10748 components: @@ -12601,9 +12538,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 10747 type: DeviceLinkSource - uid: 11463 components: @@ -12623,10 +12557,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 3911 - - 3912 type: DeviceLinkSource - uid: 11464 components: @@ -12646,10 +12576,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 3911 - - 3912 type: DeviceLinkSource - uid: 11465 components: @@ -12669,10 +12595,6 @@ entities: - DoorStatus: AutoClose - DoorStatus: DoorBolt - DoorStatus: Close - registeredSinks: - DoorStatus: - - 3909 - - 3910 type: DeviceLinkSource - uid: 11466 components: @@ -12692,10 +12614,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 3910 - - 3909 type: DeviceLinkSource - uid: 15269 components: @@ -14237,10 +14155,6 @@ entities: - DoorStatus: AutoClose - DoorStatus: DoorBolt - DoorStatus: Close - registeredSinks: - DoorStatus: - - 11466 - - 11465 type: DeviceLinkSource - uid: 3910 components: @@ -14260,10 +14174,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 11466 - - 11465 type: DeviceLinkSource - uid: 3911 components: @@ -14283,10 +14193,6 @@ entities: - DoorStatus: AutoClose - DoorStatus: Close - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 11463 - - 11464 type: DeviceLinkSource - uid: 3912 components: @@ -14306,10 +14212,6 @@ entities: - DoorStatus: Close - DoorStatus: AutoClose - DoorStatus: DoorBolt - registeredSinks: - DoorStatus: - - 11464 - - 11463 type: DeviceLinkSource - uid: 3919 components: @@ -14633,7 +14535,7 @@ entities: - pos: -15.5,14.5 parent: 82 type: Transform -- proto: AMEController +- proto: AmeController entities: - uid: 6038 components: @@ -18798,37 +18700,25 @@ entities: - pos: 13.5,6.5 parent: 82 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25191 - type: SignalReceiver + - links: + - 25191 + type: DeviceLinkSink - uid: 27 components: - pos: 7.5,6.5 parent: 82 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25190 - type: SignalReceiver + - links: + - 25190 + type: DeviceLinkSink - uid: 28 components: - pos: 1.5,6.5 parent: 82 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25189 - type: SignalReceiver + - links: + - 25189 + type: DeviceLinkSink - uid: 83 components: - pos: 34.5,12.5 @@ -18840,13 +18730,6 @@ entities: - links: - 11588 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11588 - type: SignalReceiver - uid: 103 components: - pos: 34.5,14.5 @@ -18858,13 +18741,6 @@ entities: - links: - 11588 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11588 - type: SignalReceiver - uid: 699 components: - pos: 46.5,20.5 @@ -18873,13 +18749,6 @@ entities: - links: - 25321 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25321 - type: SignalReceiver - uid: 700 components: - pos: 46.5,24.5 @@ -18888,13 +18757,6 @@ entities: - links: - 25323 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25323 - type: SignalReceiver - uid: 1028 components: - pos: 34.5,13.5 @@ -18906,13 +18768,6 @@ entities: - links: - 11588 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11588 - type: SignalReceiver - uid: 1424 components: - pos: 49.5,20.5 @@ -18921,13 +18776,6 @@ entities: - links: - 25322 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25322 - type: SignalReceiver - uid: 1425 components: - pos: 49.5,24.5 @@ -18936,13 +18784,6 @@ entities: - links: - 25324 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25324 - type: SignalReceiver - uid: 3789 components: - pos: 53.5,-25.5 @@ -18951,13 +18792,9 @@ entities: - SecondsUntilStateChange: -491944.06 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver + - links: + - 8852 + type: DeviceLinkSink - uid: 3790 components: - pos: 53.5,-26.5 @@ -18966,13 +18803,9 @@ entities: - SecondsUntilStateChange: -491944.06 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver + - links: + - 8852 + type: DeviceLinkSink - uid: 3791 components: - pos: 53.5,-27.5 @@ -18981,13 +18814,9 @@ entities: - SecondsUntilStateChange: -491944.06 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver + - links: + - 8852 + type: DeviceLinkSink - uid: 3792 components: - pos: 53.5,-28.5 @@ -18996,13 +18825,9 @@ entities: - SecondsUntilStateChange: -491944.06 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver + - links: + - 8852 + type: DeviceLinkSink - uid: 3793 components: - pos: 53.5,-29.5 @@ -19011,13 +18836,9 @@ entities: - SecondsUntilStateChange: -491944.06 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver + - links: + - 8852 + type: DeviceLinkSink - uid: 3794 components: - pos: 53.5,-30.5 @@ -19026,13 +18847,9 @@ entities: - SecondsUntilStateChange: -491944.06 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver + - links: + - 8852 + type: DeviceLinkSink - uid: 3795 components: - pos: 56.5,-25.5 @@ -19041,13 +18858,9 @@ entities: - SecondsUntilStateChange: -491944.06 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver + - links: + - 8852 + type: DeviceLinkSink - uid: 3796 components: - pos: 56.5,-26.5 @@ -19056,13 +18869,9 @@ entities: - SecondsUntilStateChange: -491944.06 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver + - links: + - 8852 + type: DeviceLinkSink - uid: 3797 components: - pos: 56.5,-27.5 @@ -19071,13 +18880,9 @@ entities: - SecondsUntilStateChange: -491944.06 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver + - links: + - 8852 + type: DeviceLinkSink - uid: 3798 components: - pos: 56.5,-28.5 @@ -19086,13 +18891,9 @@ entities: - SecondsUntilStateChange: -491944.06 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver + - links: + - 8852 + type: DeviceLinkSink - uid: 3799 components: - pos: 56.5,-29.5 @@ -19101,13 +18902,9 @@ entities: - SecondsUntilStateChange: -491944.06 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver + - links: + - 8852 + type: DeviceLinkSink - uid: 3800 components: - pos: 56.5,-30.5 @@ -19116,13 +18913,9 @@ entities: - SecondsUntilStateChange: -491944.06 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver + - links: + - 8852 + type: DeviceLinkSink - uid: 6284 components: - pos: -21.5,50.5 @@ -19134,13 +18927,6 @@ entities: - links: - 23015 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 23015 - type: SignalReceiver - uid: 6285 components: - pos: -21.5,48.5 @@ -19152,13 +18938,6 @@ entities: - links: - 23015 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 23015 - type: SignalReceiver - uid: 6780 components: - pos: -21.5,49.5 @@ -19170,13 +18949,6 @@ entities: - links: - 23015 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 23015 - type: SignalReceiver - uid: 6782 components: - pos: -21.5,47.5 @@ -19188,13 +18960,6 @@ entities: - links: - 23015 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 23015 - type: SignalReceiver - uid: 7702 components: - pos: 74.5,16.5 @@ -19223,13 +18988,6 @@ entities: - links: - 11472 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11472 - type: SignalReceiver - uid: 25725 components: - pos: 32.5,77.5 @@ -19238,13 +18996,6 @@ entities: - links: - 25817 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25817 - type: SignalReceiver - uid: 25726 components: - pos: 32.5,78.5 @@ -19253,13 +19004,6 @@ entities: - links: - 25817 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25817 - type: SignalReceiver - uid: 25727 components: - pos: 32.5,79.5 @@ -19268,13 +19012,6 @@ entities: - links: - 25817 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25817 - type: SignalReceiver - proto: BlastDoorOpen entities: - uid: 957 @@ -19288,13 +19025,6 @@ entities: - links: - 22394 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22394 - type: SignalReceiver - uid: 958 components: - pos: 23.5,13.5 @@ -19306,13 +19036,6 @@ entities: - links: - 22394 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22394 - type: SignalReceiver - uid: 959 components: - pos: 23.5,12.5 @@ -19324,13 +19047,6 @@ entities: - links: - 22394 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22394 - type: SignalReceiver - proto: BlockGameArcadeComputerCircuitboard entities: - uid: 4216 @@ -20128,15 +19844,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1128 components: - pos: 16.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 1403 components: - pos: 26.5,30.5 @@ -20144,8 +19856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1412 components: - pos: 16.5,-20.5 @@ -20153,8 +19863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1493 components: - pos: 14.5,-20.5 @@ -20162,15 +19870,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1646 components: - pos: 72.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 2022 components: - pos: 15.5,-20.5 @@ -20178,8 +19882,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2039 components: - pos: 14.5,-21.5 @@ -20187,57 +19889,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2172 components: - pos: 13.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 2524 components: - pos: -37.5,-40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 2530 components: - pos: -38.5,-40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 2714 components: - pos: -40.5,-45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 2787 components: - pos: 26.5,27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 2994 components: - pos: 14.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 3046 components: - pos: 10.5,-48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 3100 components: - pos: 16.5,-17.5 @@ -20245,64 +19931,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3181 components: - pos: 27.5,24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 3239 components: - pos: 27.5,27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 3240 components: - pos: 28.5,25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 3241 components: - pos: 23.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 3242 components: - pos: 26.5,25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 3243 components: - pos: 25.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 3244 components: - pos: 26.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 3300 components: - pos: -9.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 3765 components: - pos: 31.5,71.5 @@ -20310,8 +19978,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3775 components: - pos: 16.5,17.5 @@ -20319,8 +19985,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3823 components: - pos: 16.5,18.5 @@ -20328,8 +19992,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3824 components: - pos: 16.5,19.5 @@ -20337,8 +19999,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3825 components: - pos: 16.5,20.5 @@ -20346,8 +20006,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3826 components: - pos: 16.5,21.5 @@ -20355,8 +20013,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3827 components: - pos: 16.5,22.5 @@ -20364,8 +20020,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3828 components: - pos: 16.5,23.5 @@ -20373,8 +20027,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3829 components: - pos: 16.5,24.5 @@ -20382,8 +20034,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3830 components: - pos: 16.5,25.5 @@ -20391,8 +20041,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3832 components: - pos: 8.5,18.5 @@ -20400,8 +20048,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3833 components: - pos: 9.5,18.5 @@ -20409,8 +20055,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3834 components: - pos: 10.5,18.5 @@ -20418,8 +20062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3835 components: - pos: 11.5,18.5 @@ -20427,8 +20069,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3836 components: - pos: 12.5,18.5 @@ -20436,8 +20076,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3838 components: - pos: 13.5,18.5 @@ -20445,8 +20083,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3839 components: - pos: 14.5,18.5 @@ -20454,8 +20090,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3840 components: - pos: 15.5,18.5 @@ -20463,43 +20097,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5517 components: - pos: -43.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5568 components: - pos: 17.5,74.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5727 components: - pos: 86.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5983 components: - pos: -41.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6101 components: - pos: -42.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6282 components: - pos: -22.5,61.5 @@ -20507,8 +20129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6283 components: - pos: -27.5,61.5 @@ -20516,8 +20136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6319 components: - pos: 16.5,-16.5 @@ -20525,8 +20143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6320 components: - pos: 16.5,-19.5 @@ -20534,8 +20150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6662 components: - pos: 31.5,66.5 @@ -20543,8 +20157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6663 components: - pos: 31.5,67.5 @@ -20552,8 +20164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6751 components: - pos: -22.5,57.5 @@ -20561,113 +20171,81 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6752 components: - pos: -23.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6753 components: - pos: -23.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6754 components: - pos: -23.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6755 components: - pos: -23.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6756 components: - pos: -23.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6757 components: - pos: -24.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6758 components: - pos: -25.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6759 components: - pos: -26.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6760 components: - pos: -27.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6761 components: - pos: -27.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6762 components: - pos: -27.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6763 components: - pos: -27.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6764 components: - pos: -27.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6765 components: - pos: -27.5,58.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6766 components: - pos: -27.5,59.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6767 components: - pos: -27.5,60.5 @@ -20675,8 +20253,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6768 components: - pos: -26.5,60.5 @@ -20684,8 +20260,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6769 components: - pos: -25.5,60.5 @@ -20693,8 +20267,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6770 components: - pos: -24.5,60.5 @@ -20702,8 +20274,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6771 components: - pos: -23.5,60.5 @@ -20711,8 +20281,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6775 components: - pos: -20.5,61.5 @@ -20720,8 +20288,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6776 components: - pos: -19.5,61.5 @@ -20729,8 +20295,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6777 components: - pos: -21.5,61.5 @@ -20738,8 +20302,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6778 components: - pos: -23.5,61.5 @@ -20747,8 +20309,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6779 components: - pos: -28.5,61.5 @@ -20756,8 +20316,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6925 components: - pos: 19.5,-88.5 @@ -20765,8 +20323,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6926 components: - pos: 21.5,-88.5 @@ -20774,22 +20330,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6927 components: - pos: 22.5,-90.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6928 components: - pos: 22.5,-89.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6929 components: - pos: 22.5,-88.5 @@ -20797,36 +20347,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6930 components: - pos: 22.5,-87.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6931 components: - pos: 22.5,-86.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6932 components: - pos: 18.5,-90.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6933 components: - pos: 18.5,-89.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6934 components: - pos: 18.5,-88.5 @@ -20834,99 +20374,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6935 components: - pos: 18.5,-87.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6949 components: - pos: 72.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6997 components: - pos: 86.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7055 components: - pos: 73.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7058 components: - pos: 85.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7104 components: - pos: -9.5,-40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7105 components: - pos: -9.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7239 components: - pos: 19.5,74.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7240 components: - pos: 20.5,74.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7241 components: - pos: 18.5,74.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7256 components: - pos: 12.5,72.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7257 components: - pos: 11.5,72.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7258 components: - pos: 10.5,72.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7270 components: - pos: 13.5,71.5 @@ -20934,50 +20446,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7271 components: - pos: 13.5,72.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7317 components: - pos: 21.5,69.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7318 components: - pos: 21.5,70.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7338 components: - pos: 18.5,70.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7343 components: - pos: 86.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7350 components: - pos: 86.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7370 components: - pos: -63.5,-39.5 @@ -20985,8 +20483,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7398 components: - pos: 17.5,70.5 @@ -20994,8 +20490,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7399 components: - pos: 16.5,70.5 @@ -21003,8 +20497,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7400 components: - pos: 15.5,70.5 @@ -21012,8 +20504,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7405 components: - pos: 14.5,70.5 @@ -21021,8 +20511,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7406 components: - pos: 13.5,70.5 @@ -21030,85 +20518,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7573 components: - pos: 86.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7574 components: - pos: 86.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7575 components: - pos: 86.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7576 components: - pos: 86.5,0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7584 components: - pos: 86.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7585 components: - pos: 86.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7586 components: - pos: 86.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7590 components: - pos: 72.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7591 components: - pos: 86.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7696 components: - pos: -9.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7697 components: - pos: -9.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7773 components: - pos: 32.5,71.5 @@ -21116,127 +20580,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 7799 components: - pos: 72.5,0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7800 components: - pos: 72.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7801 components: - pos: 72.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7802 components: - pos: 72.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7822 components: - pos: 72.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7823 components: - pos: 72.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7859 components: - pos: 72.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7866 components: - pos: 72.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7867 components: - pos: 72.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7873 components: - pos: -53.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7880 components: - pos: -53.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7881 components: - pos: -53.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7890 components: - pos: -53.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7918 components: - pos: -42.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7926 components: - pos: -44.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 8256 components: - pos: 9.5,-50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 8257 components: - pos: 10.5,-50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 8267 components: - pos: 10.5,-47.5 @@ -21244,8 +20672,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8347 components: - pos: 10.5,-49.5 @@ -21253,8 +20679,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8388 components: - pos: 9.5,-51.5 @@ -21262,8 +20686,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8713 components: - pos: -46.5,-47.5 @@ -21271,8 +20693,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8768 components: - pos: -46.5,-48.5 @@ -21280,29 +20700,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 8769 components: - pos: -46.5,-49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 9185 components: - pos: -47.5,-49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 10012 components: - pos: 9.5,72.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 10289 components: - pos: -10.5,-9.5 @@ -21310,106 +20722,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10460 components: - pos: -10.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 10498 components: - pos: -10.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 10499 components: - pos: -11.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 10598 components: - pos: -9.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 10699 components: - pos: 24.5,75.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 10700 components: - pos: 24.5,76.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 10841 components: - pos: 9.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 10899 components: - pos: 10.5,74.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 10946 components: - pos: 24.5,74.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 11280 components: - pos: 11.5,74.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 11281 components: - pos: 9.5,74.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 11349 components: - pos: 12.5,74.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 11357 components: - pos: 13.5,74.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 11468 components: - pos: 65.5,-21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 11986 components: - pos: 28.5,-24.5 @@ -21417,365 +20799,261 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11987 components: - pos: 28.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 11988 components: - pos: 28.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 11989 components: - pos: 27.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 11990 components: - pos: 26.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 11991 components: - pos: 29.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 11992 components: - pos: 30.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 11993 components: - pos: 31.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 11994 components: - pos: 31.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 11995 components: - pos: 25.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 11996 components: - pos: 25.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 11997 components: - pos: 28.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 11998 components: - pos: 28.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 11999 components: - pos: 28.5,-21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12000 components: - pos: 28.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12001 components: - pos: 28.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12002 components: - pos: 28.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12003 components: - pos: 28.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12004 components: - pos: 28.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12005 components: - pos: 28.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12006 components: - pos: 28.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12007 components: - pos: 29.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12008 components: - pos: 30.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12009 components: - pos: 31.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12010 components: - pos: 32.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12011 components: - pos: 24.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12012 components: - pos: 25.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12013 components: - pos: 26.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12014 components: - pos: 27.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12015 components: - pos: 28.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12016 components: - pos: 29.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12017 components: - pos: 30.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12018 components: - pos: 31.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12019 components: - pos: 32.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12020 components: - pos: 33.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12021 components: - pos: 34.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12022 components: - pos: 34.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12023 components: - pos: 34.5,-21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12024 components: - pos: 34.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12025 components: - pos: 34.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12026 components: - pos: 32.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12027 components: - pos: 32.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12028 components: - pos: 32.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12029 components: - pos: 31.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12030 components: - pos: 31.5,-21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12031 components: - pos: 31.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12032 components: - pos: 25.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12033 components: - pos: 25.5,-21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12034 components: - pos: 25.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12035 components: - pos: 25.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12036 components: - pos: 25.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12037 components: - pos: 25.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12102 components: - pos: 5.5,-43.5 @@ -21783,50 +21061,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12103 components: - pos: 5.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12104 components: - pos: 6.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12105 components: - pos: 6.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12106 components: - pos: 6.5,-40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12107 components: - pos: 6.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12108 components: - pos: 5.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12109 components: - pos: 4.5,-44.5 @@ -21834,15 +21098,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12110 components: - pos: 3.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12111 components: - pos: 3.5,-45.5 @@ -21850,50 +21110,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12112 components: - pos: 2.5,-45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12113 components: - pos: 1.5,-45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12114 components: - pos: 1.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12115 components: - pos: 0.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12116 components: - pos: -0.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12117 components: - pos: -1.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12118 components: - pos: 3.5,-43.5 @@ -21901,50 +21147,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12119 components: - pos: 2.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12120 components: - pos: 1.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12121 components: - pos: 1.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12122 components: - pos: 0.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12123 components: - pos: -0.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12124 components: - pos: -1.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12125 components: - pos: 3.5,-42.5 @@ -21952,8 +21184,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12126 components: - pos: 3.5,-41.5 @@ -21961,183 +21191,131 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12127 components: - pos: 3.5,-40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12128 components: - pos: 3.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12129 components: - pos: 3.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12130 components: - pos: 3.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12131 components: - pos: 3.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12132 components: - pos: 3.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12133 components: - pos: 4.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12134 components: - pos: 5.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12135 components: - pos: 5.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12136 components: - pos: 2.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12137 components: - pos: 1.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12138 components: - pos: 1.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12139 components: - pos: 1.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12140 components: - pos: 1.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12141 components: - pos: 1.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12142 components: - pos: 0.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12143 components: - pos: -0.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12144 components: - pos: -1.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12145 components: - pos: -1.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12146 components: - pos: -1.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12147 components: - pos: -1.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12148 components: - pos: -1.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12149 components: - pos: 12.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12150 components: - pos: 12.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12151 components: - pos: 11.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12152 components: - pos: 12.5,-40.5 @@ -22145,15 +21323,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12153 components: - pos: 12.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12154 components: - pos: 11.5,-41.5 @@ -22161,8 +21335,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12155 components: - pos: 11.5,-42.5 @@ -22170,176 +21342,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12156 components: - pos: 11.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12157 components: - pos: 6.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12158 components: - pos: 7.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12159 components: - pos: 7.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12160 components: - pos: 7.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12161 components: - pos: 7.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12162 components: - pos: 11.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12163 components: - pos: 11.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12164 components: - pos: 11.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12165 components: - pos: 10.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12166 components: - pos: 9.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12167 components: - pos: 12.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12168 components: - pos: 13.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12169 components: - pos: 13.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12170 components: - pos: 13.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12171 components: - pos: 13.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12172 components: - pos: 13.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12173 components: - pos: 14.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12174 components: - pos: 15.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12175 components: - pos: 16.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12176 components: - pos: 16.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12177 components: - pos: 16.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12178 components: - pos: 16.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12179 components: - pos: 16.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12180 components: - pos: 16.5,-40.5 @@ -22347,78 +21469,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12181 components: - pos: 16.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12182 components: - pos: 16.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12183 components: - pos: 16.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12184 components: - pos: 16.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12421 components: - pos: 24.5,77.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12425 components: - pos: 25.5,79.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12426 components: - pos: 27.5,79.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12427 components: - pos: 24.5,78.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12439 components: - pos: 14.5,74.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12440 components: - pos: 21.5,76.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12506 components: - pos: 31.5,56.5 @@ -22426,8 +21526,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12507 components: - pos: 31.5,58.5 @@ -22435,8 +21533,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12508 components: - pos: 31.5,60.5 @@ -22444,8 +21540,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12737 components: - pos: 31.5,61.5 @@ -22453,8 +21547,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12738 components: - pos: 31.5,59.5 @@ -22462,8 +21554,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12739 components: - pos: 31.5,57.5 @@ -22471,8 +21561,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12740 components: - pos: 31.5,55.5 @@ -22480,15 +21568,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12881 components: - pos: 21.5,71.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13984 components: - pos: -34.5,-25.5 @@ -22496,134 +21580,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13987 components: - pos: -38.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13988 components: - pos: -37.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13990 components: - pos: -37.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14024 components: - pos: 31.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14045 components: - pos: 10.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14046 components: - pos: 9.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14047 components: - pos: 8.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14048 components: - pos: 7.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14049 components: - pos: 6.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14050 components: - pos: 5.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14051 components: - pos: 4.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14052 components: - pos: 3.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14053 components: - pos: 2.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14054 components: - pos: 1.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14055 components: - pos: 0.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14056 components: - pos: 0.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14057 components: - pos: 0.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14058 components: - pos: 1.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14059 components: - pos: 1.5,-12.5 @@ -22631,8 +21677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14060 components: - pos: 2.5,-12.5 @@ -22640,197 +21684,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14061 components: - pos: 1.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14062 components: - pos: 1.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14063 components: - pos: 1.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14064 components: - pos: 1.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14065 components: - pos: 1.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14066 components: - pos: 2.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14067 components: - pos: 2.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14068 components: - pos: 3.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14069 components: - pos: 4.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14070 components: - pos: 5.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14071 components: - pos: 5.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14072 components: - pos: 5.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14073 components: - pos: 5.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14074 components: - pos: 4.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14075 components: - pos: 3.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14076 components: - pos: 3.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14077 components: - pos: 3.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14078 components: - pos: 3.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14079 components: - pos: 3.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14080 components: - pos: 4.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14081 components: - pos: 5.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14082 components: - pos: 6.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14083 components: - pos: 7.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14084 components: - pos: 8.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14085 components: - pos: 9.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14086 components: - pos: 9.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14087 components: - pos: 9.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14088 components: - pos: 9.5,-14.5 @@ -22838,204 +21826,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14089 components: - pos: 9.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14090 components: - pos: 9.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14091 components: - pos: 9.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14092 components: - pos: 9.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14093 components: - pos: 10.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14094 components: - pos: 11.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14095 components: - pos: 12.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14096 components: - pos: 12.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14097 components: - pos: 12.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14098 components: - pos: 12.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14099 components: - pos: 12.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14100 components: - pos: 11.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14101 components: - pos: 11.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14102 components: - pos: 11.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14103 components: - pos: 11.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14104 components: - pos: 10.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14105 components: - pos: 10.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14106 components: - pos: 12.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14107 components: - pos: 13.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14108 components: - pos: 14.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14109 components: - pos: 14.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14110 components: - pos: 14.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14111 components: - pos: 13.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14112 components: - pos: 12.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14113 components: - pos: 11.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14114 components: - pos: 15.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14115 components: - pos: -0.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14116 components: - pos: 29.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14117 components: - pos: 29.5,-11.5 @@ -23043,8 +21973,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14118 components: - pos: 29.5,-12.5 @@ -23052,8 +21980,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14119 components: - pos: 28.5,-11.5 @@ -23061,8 +21987,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14120 components: - pos: 27.5,-11.5 @@ -23070,8 +21994,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14121 components: - pos: 26.5,-11.5 @@ -23079,8 +22001,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14122 components: - pos: 25.5,-11.5 @@ -23088,8 +22008,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14123 components: - pos: 24.5,-11.5 @@ -23097,8 +22015,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14124 components: - pos: 23.5,-11.5 @@ -23106,8 +22022,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14125 components: - pos: 22.5,-11.5 @@ -23115,8 +22029,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14126 components: - pos: 22.5,-12.5 @@ -23124,8 +22036,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14127 components: - pos: 30.5,-11.5 @@ -23133,8 +22043,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14128 components: - pos: 31.5,-11.5 @@ -23142,8 +22050,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14129 components: - pos: 31.5,-10.5 @@ -23151,8 +22057,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14130 components: - pos: 31.5,-9.5 @@ -23160,22 +22064,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14131 components: - pos: 28.5,27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14139 components: - pos: 26.5,28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14140 components: - pos: 31.5,-8.5 @@ -23183,8 +22081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14141 components: - pos: 31.5,-7.5 @@ -23192,8 +22088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14142 components: - pos: 31.5,-6.5 @@ -23201,8 +22095,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14143 components: - pos: 31.5,-5.5 @@ -23210,8 +22102,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14144 components: - pos: 31.5,-4.5 @@ -23219,127 +22109,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14146 components: - pos: 29.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14147 components: - pos: 29.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14148 components: - pos: 29.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14149 components: - pos: 29.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14150 components: - pos: 29.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14151 components: - pos: 28.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14152 components: - pos: 27.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14153 components: - pos: 26.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14154 components: - pos: 25.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14155 components: - pos: 24.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14156 components: - pos: 23.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14157 components: - pos: 22.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14158 components: - pos: 22.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14160 components: - pos: 22.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14161 components: - pos: 22.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14162 components: - pos: 25.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14163 components: - pos: 25.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14295 components: - pos: 25.5,30.5 @@ -23347,8 +22201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14296 components: - pos: 24.5,30.5 @@ -23356,29 +22208,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14299 components: - pos: 21.5,72.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14300 components: - pos: 21.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14301 components: - pos: 21.5,74.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14321 components: - pos: 20.5,-98.5 @@ -23386,281 +22230,201 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14322 components: - pos: 20.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14323 components: - pos: 19.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14324 components: - pos: 18.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14325 components: - pos: 17.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14326 components: - pos: 16.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14327 components: - pos: 16.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14328 components: - pos: 16.5,-101.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14329 components: - pos: 16.5,-102.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14330 components: - pos: 16.5,-103.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14331 components: - pos: 16.5,-104.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14332 components: - pos: 16.5,-105.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14333 components: - pos: 16.5,-106.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14334 components: - pos: 17.5,-106.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14335 components: - pos: 18.5,-106.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14336 components: - pos: 19.5,-106.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14337 components: - pos: 20.5,-106.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14338 components: - pos: 21.5,-106.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14339 components: - pos: 22.5,-106.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14340 components: - pos: 23.5,-106.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14341 components: - pos: 24.5,-106.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14342 components: - pos: 24.5,-105.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14343 components: - pos: 24.5,-104.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14344 components: - pos: 24.5,-103.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14345 components: - pos: 24.5,-102.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14346 components: - pos: 24.5,-101.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14347 components: - pos: 24.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14348 components: - pos: 24.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14349 components: - pos: 23.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14350 components: - pos: 22.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14351 components: - pos: 21.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14352 components: - pos: 15.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14353 components: - pos: 14.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14354 components: - pos: 13.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14355 components: - pos: 12.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14356 components: - pos: 25.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14357 components: - pos: 26.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14358 components: - pos: 27.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14359 components: - pos: 28.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14360 components: - pos: 20.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14361 components: - pos: 20.5,-101.5 @@ -23668,92 +22432,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14362 components: - pos: 20.5,-102.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14363 components: - pos: 20.5,-103.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14364 components: - pos: 18.5,-105.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14365 components: - pos: 18.5,-104.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14366 components: - pos: 22.5,-105.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14367 components: - pos: 22.5,-104.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14368 components: - pos: 18.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14369 components: - pos: 22.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14370 components: - pos: 18.5,-101.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14371 components: - pos: 22.5,-101.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14419 components: - pos: 28.5,-92.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14420 components: - pos: 27.5,-92.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14421 components: - pos: 29.5,-92.5 @@ -23761,316 +22499,226 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14422 components: - pos: 30.5,-92.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14423 components: - pos: 31.5,-92.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14424 components: - pos: 31.5,-93.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14425 components: - pos: 31.5,-94.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14426 components: - pos: 31.5,-95.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14427 components: - pos: 31.5,-96.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14428 components: - pos: 31.5,-97.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14429 components: - pos: 31.5,-98.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14430 components: - pos: 31.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14431 components: - pos: 31.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14432 components: - pos: 31.5,-91.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14433 components: - pos: 31.5,-90.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14434 components: - pos: 31.5,-89.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14435 components: - pos: 31.5,-88.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14436 components: - pos: 31.5,-87.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14437 components: - pos: 30.5,-87.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14438 components: - pos: 29.5,-87.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14439 components: - pos: 28.5,-87.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14440 components: - pos: 27.5,-87.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14441 components: - pos: 27.5,-88.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14442 components: - pos: 26.5,-88.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14443 components: - pos: 25.5,-88.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14444 components: - pos: 25.5,-87.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14445 components: - pos: 25.5,-86.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14446 components: - pos: 24.5,-86.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14447 components: - pos: 23.5,-86.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14448 components: - pos: 17.5,-86.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14449 components: - pos: 18.5,-86.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14450 components: - pos: 16.5,-86.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14451 components: - pos: 15.5,-86.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14452 components: - pos: 15.5,-87.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14453 components: - pos: 15.5,-88.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14454 components: - pos: 14.5,-88.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14455 components: - pos: 13.5,-88.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14456 components: - pos: 12.5,-88.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14457 components: - pos: 12.5,-87.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14458 components: - pos: 11.5,-88.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14459 components: - pos: 10.5,-88.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14460 components: - pos: 9.5,-88.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14461 components: - pos: 9.5,-89.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14462 components: - pos: 9.5,-90.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14463 components: - pos: 9.5,-91.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14464 components: - pos: 9.5,-92.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14465 components: - pos: 10.5,-92.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14466 components: - pos: 11.5,-92.5 @@ -24078,71 +22726,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14467 components: - pos: 12.5,-92.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14468 components: - pos: 9.5,-93.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14469 components: - pos: 9.5,-94.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14470 components: - pos: 9.5,-95.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14471 components: - pos: 9.5,-96.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14472 components: - pos: 9.5,-97.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14473 components: - pos: 9.5,-98.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14474 components: - pos: 9.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14475 components: - pos: 9.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14477 components: - pos: 15.5,-46.5 @@ -24150,141 +22778,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14479 components: - pos: 15.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14480 components: - pos: 15.5,-48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14481 components: - pos: 15.5,-49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14482 components: - pos: 15.5,-50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14483 components: - pos: 16.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14484 components: - pos: 17.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14485 components: - pos: 18.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14486 components: - pos: 19.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14487 components: - pos: 19.5,-48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14488 components: - pos: 19.5,-49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14489 components: - pos: 19.5,-50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14490 components: - pos: 19.5,-51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14491 components: - pos: 19.5,-52.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14492 components: - pos: 19.5,-53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14493 components: - pos: 19.5,-54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14494 components: - pos: 19.5,-55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14495 components: - pos: 19.5,-56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14496 components: - pos: 19.5,-57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14497 components: - pos: 20.5,-57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14498 components: - pos: 20.5,-58.5 @@ -24292,64 +22880,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14499 components: - pos: 20.5,-59.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14500 components: - pos: 20.5,-60.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14501 components: - pos: 20.5,-61.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14502 components: - pos: 19.5,-61.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14503 components: - pos: 18.5,-61.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14504 components: - pos: 21.5,-61.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14505 components: - pos: 22.5,-61.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14506 components: - pos: 19.5,-62.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14507 components: - pos: 19.5,-63.5 @@ -24357,8 +22927,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14508 components: - pos: 19.5,-64.5 @@ -24366,15 +22934,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14509 components: - pos: 21.5,-62.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14510 components: - pos: 21.5,-63.5 @@ -24382,8 +22946,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14511 components: - pos: 21.5,-64.5 @@ -24391,8 +22953,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14512 components: - pos: 21.5,-65.5 @@ -24400,8 +22960,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14513 components: - pos: 19.5,-65.5 @@ -24409,15 +22967,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14514 components: - pos: 14.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14515 components: - pos: 11.5,-44.5 @@ -24425,8 +22979,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14516 components: - pos: 11.5,-45.5 @@ -24434,22 +22986,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14517 components: - pos: 10.5,-45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14518 components: - pos: 9.5,-45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14568 components: - pos: 20.5,30.5 @@ -24457,8 +23003,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14569 components: - pos: 21.5,30.5 @@ -24466,8 +23010,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14570 components: - pos: 23.5,30.5 @@ -24475,8 +23017,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14571 components: - pos: 22.5,30.5 @@ -24484,8 +23024,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14572 components: - pos: 23.5,31.5 @@ -24493,8 +23031,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14573 components: - pos: 23.5,32.5 @@ -24502,57 +23038,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14980 components: - pos: 27.5,25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14981 components: - pos: 24.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14982 components: - pos: 26.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14983 components: - pos: 47.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14988 components: - pos: 21.5,75.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15011 components: - pos: 27.5,23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15012 components: - pos: 27.5,22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15013 components: - pos: 20.5,29.5 @@ -24560,8 +23080,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15014 components: - pos: 20.5,28.5 @@ -24569,8 +23087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15015 components: - pos: 20.5,27.5 @@ -24578,8 +23094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15016 components: - pos: 20.5,26.5 @@ -24587,8 +23101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15017 components: - pos: 20.5,25.5 @@ -24596,8 +23108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15018 components: - pos: 20.5,24.5 @@ -24605,8 +23115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15019 components: - pos: 20.5,23.5 @@ -24614,8 +23122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15020 components: - pos: 20.5,22.5 @@ -24623,8 +23129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15021 components: - pos: 21.5,22.5 @@ -24632,8 +23136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15022 components: - pos: 22.5,22.5 @@ -24641,8 +23143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15023 components: - pos: 23.5,22.5 @@ -24650,8 +23150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15024 components: - pos: 23.5,21.5 @@ -24659,8 +23157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15025 components: - pos: 23.5,20.5 @@ -24668,8 +23164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15026 components: - pos: 24.5,20.5 @@ -24677,8 +23171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15027 components: - pos: 25.5,20.5 @@ -24686,8 +23178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15028 components: - pos: 26.5,20.5 @@ -24695,8 +23185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15029 components: - pos: 27.5,20.5 @@ -24704,8 +23192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15030 components: - pos: 28.5,20.5 @@ -24713,8 +23199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15031 components: - pos: 27.5,30.5 @@ -24722,8 +23206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15032 components: - pos: 28.5,30.5 @@ -24731,8 +23213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15033 components: - pos: 26.5,31.5 @@ -24740,15 +23220,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15034 components: - pos: 26.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15035 components: - pos: 26.5,33.5 @@ -24756,92 +23232,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15036 components: - pos: 26.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15037 components: - pos: 27.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15038 components: - pos: 28.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15039 components: - pos: 28.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15040 components: - pos: 28.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15041 components: - pos: 28.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15042 components: - pos: 27.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15043 components: - pos: 26.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15044 components: - pos: 25.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15045 components: - pos: 25.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15046 components: - pos: 25.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15047 components: - pos: 25.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15048 components: - pos: 20.5,31.5 @@ -24849,8 +23299,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15049 components: - pos: 20.5,32.5 @@ -24858,8 +23306,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15050 components: - pos: 20.5,33.5 @@ -24867,8 +23313,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15051 components: - pos: 20.5,34.5 @@ -24876,8 +23320,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15052 components: - pos: 20.5,35.5 @@ -24885,15 +23327,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15053 components: - pos: 20.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15054 components: - pos: 20.5,37.5 @@ -24901,15 +23339,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15055 components: - pos: 20.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15056 components: - pos: 20.5,39.5 @@ -24917,8 +23351,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15057 components: - pos: 20.5,40.5 @@ -24926,8 +23358,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15058 components: - pos: 21.5,40.5 @@ -24935,8 +23365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15060 components: - pos: 23.5,40.5 @@ -24944,15 +23372,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15061 components: - pos: 24.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15062 components: - pos: 25.5,40.5 @@ -24960,8 +23384,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15063 components: - pos: 26.5,40.5 @@ -24969,15 +23391,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15064 components: - pos: 27.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15066 components: - pos: 27.5,44.5 @@ -24985,8 +23403,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15067 components: - pos: 27.5,45.5 @@ -24994,36 +23410,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15068 components: - pos: 27.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15070 components: - pos: 21.5,-86.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15071 components: - pos: 21.5,-85.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15072 components: - pos: 21.5,-84.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15073 components: - pos: 20.5,41.5 @@ -25031,8 +23437,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15074 components: - pos: 20.5,42.5 @@ -25040,8 +23444,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15075 components: - pos: 20.5,43.5 @@ -25049,15 +23451,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15076 components: - pos: 21.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15132 components: - pos: 44.5,14.5 @@ -25065,8 +23463,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15133 components: - pos: 44.5,15.5 @@ -25074,8 +23470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15134 components: - pos: 44.5,13.5 @@ -25083,8 +23477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15135 components: - pos: 44.5,12.5 @@ -25092,29 +23484,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15136 components: - pos: 45.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15137 components: - pos: 46.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15138 components: - pos: 47.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15139 components: - pos: 48.5,12.5 @@ -25122,8 +23506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15140 components: - pos: 48.5,13.5 @@ -25131,8 +23513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15141 components: - pos: 48.5,14.5 @@ -25140,71 +23520,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15142 components: - pos: 47.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15143 components: - pos: 47.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15144 components: - pos: 47.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15145 components: - pos: 47.5,27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15146 components: - pos: 47.5,17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15147 components: - pos: 47.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15148 components: - pos: 46.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15149 components: - pos: 45.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15150 components: - pos: 44.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15151 components: - pos: 46.5,22.5 @@ -25212,267 +23572,191 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15152 components: - pos: 43.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15153 components: - pos: 42.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15154 components: - pos: 43.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15155 components: - pos: 42.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15156 components: - pos: 41.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15157 components: - pos: 41.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15158 components: - pos: 41.5,13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15159 components: - pos: 41.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15160 components: - pos: 42.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15161 components: - pos: 43.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15162 components: - pos: 40.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15163 components: - pos: 39.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15164 components: - pos: 38.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15165 components: - pos: 37.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15166 components: - pos: 37.5,13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15167 components: - pos: 37.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15168 components: - pos: 38.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15169 components: - pos: 39.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15171 components: - pos: 41.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15172 components: - pos: 41.5,17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15173 components: - pos: 41.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15174 components: - pos: 44.5,19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15175 components: - pos: 44.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15176 components: - pos: 44.5,21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15177 components: - pos: 44.5,22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15178 components: - pos: 44.5,23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15179 components: - pos: 44.5,24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15180 components: - pos: 44.5,25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15181 components: - pos: 44.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15182 components: - pos: 44.5,27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15183 components: - pos: 45.5,27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15184 components: - pos: 46.5,27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15185 components: - pos: 44.5,28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15186 components: - pos: 44.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15187 components: - pos: 45.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15188 components: - pos: 46.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15189 components: - pos: 47.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15190 components: - pos: 48.5,29.5 @@ -25480,8 +23764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15191 components: - pos: 48.5,28.5 @@ -25489,8 +23771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15192 components: - pos: 48.5,27.5 @@ -25498,15 +23778,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15193 components: - pos: 45.5,22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15194 components: - pos: 47.5,22.5 @@ -25514,8 +23790,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15195 components: - pos: 48.5,22.5 @@ -25523,22 +23797,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15196 components: - pos: 48.5,23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15197 components: - pos: 48.5,21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15198 components: - pos: 37.5,22.5 @@ -25546,78 +23814,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15199 components: - pos: 37.5,23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15200 components: - pos: 37.5,24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15201 components: - pos: 37.5,25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15202 components: - pos: 37.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15203 components: - pos: 37.5,27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15204 components: - pos: 37.5,28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15205 components: - pos: 37.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15206 components: - pos: 37.5,30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15207 components: - pos: 36.5,30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15208 components: - pos: 35.5,30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15209 components: - pos: 34.5,30.5 @@ -25625,22 +23871,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15210 components: - pos: 34.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15211 components: - pos: 34.5,28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15212 components: - pos: 34.5,27.5 @@ -25648,8 +23888,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15213 components: - pos: 34.5,26.5 @@ -25657,22 +23895,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15214 components: - pos: 34.5,25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15215 components: - pos: 34.5,24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15216 components: - pos: 34.5,23.5 @@ -25680,260 +23912,186 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15217 components: - pos: 35.5,23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15218 components: - pos: 36.5,23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15219 components: - pos: 38.5,24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15220 components: - pos: 39.5,24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15221 components: - pos: 40.5,24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15222 components: - pos: 41.5,24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15223 components: - pos: 37.5,21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15224 components: - pos: 37.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15225 components: - pos: 36.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15226 components: - pos: 35.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15227 components: - pos: 34.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15228 components: - pos: 33.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15229 components: - pos: 32.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15230 components: - pos: 32.5,19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15231 components: - pos: 32.5,17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15232 components: - pos: 32.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15233 components: - pos: 32.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15234 components: - pos: 32.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15235 components: - pos: 32.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15236 components: - pos: 32.5,13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15237 components: - pos: 32.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15238 components: - pos: 32.5,21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15239 components: - pos: 32.5,22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15240 components: - pos: 32.5,23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15241 components: - pos: 33.5,23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15242 components: - pos: 32.5,24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15243 components: - pos: 32.5,25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15244 components: - pos: 32.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15245 components: - pos: 32.5,27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15246 components: - pos: 32.5,28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15247 components: - pos: 32.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15248 components: - pos: 32.5,30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15249 components: - pos: 33.5,30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15250 components: - pos: 38.5,30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15251 components: - pos: 39.5,30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15252 components: - pos: 40.5,30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15253 components: - pos: 41.5,30.5 @@ -25941,15 +24099,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15254 components: - pos: 42.5,30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15255 components: - pos: 41.5,29.5 @@ -25957,15 +24111,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15256 components: - pos: 41.5,28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15257 components: - pos: 41.5,27.5 @@ -25973,8 +24123,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15258 components: - pos: 41.5,26.5 @@ -25982,8 +24130,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15259 components: - pos: 41.5,25.5 @@ -25991,57 +24137,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15260 components: - pos: 41.5,23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15261 components: - pos: 41.5,22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15262 components: - pos: 41.5,21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15263 components: - pos: 41.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15264 components: - pos: 40.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15265 components: - pos: 39.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15266 components: - pos: 38.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15563 components: - pos: -6.5,3.5 @@ -26049,575 +24179,411 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15564 components: - pos: -6.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15565 components: - pos: -6.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15566 components: - pos: -5.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15567 components: - pos: -7.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15568 components: - pos: -8.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15569 components: - pos: -9.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15570 components: - pos: -10.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15571 components: - pos: -11.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15572 components: - pos: -12.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15573 components: - pos: -12.5,0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15574 components: - pos: -12.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15575 components: - pos: -12.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15576 components: - pos: -12.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15577 components: - pos: -12.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15578 components: - pos: -12.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15579 components: - pos: -11.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15580 components: - pos: -10.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15581 components: - pos: 16.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15582 components: - pos: 17.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15583 components: - pos: -9.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15584 components: - pos: -8.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15585 components: - pos: -7.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15586 components: - pos: -6.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15587 components: - pos: -5.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15588 components: - pos: -4.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15589 components: - pos: -3.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15590 components: - pos: -2.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15591 components: - pos: -1.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15592 components: - pos: -0.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15593 components: - pos: 0.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15594 components: - pos: 1.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15595 components: - pos: 2.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15596 components: - pos: 3.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15597 components: - pos: 4.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15598 components: - pos: 5.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15599 components: - pos: 6.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15600 components: - pos: 7.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15601 components: - pos: 8.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15602 components: - pos: 9.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15603 components: - pos: 10.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15604 components: - pos: 11.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15605 components: - pos: 12.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15606 components: - pos: 13.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15607 components: - pos: 14.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15608 components: - pos: 15.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15609 components: - pos: 17.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15610 components: - pos: 17.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15611 components: - pos: 16.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15612 components: - pos: 15.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15613 components: - pos: 14.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15614 components: - pos: 13.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15615 components: - pos: 12.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15616 components: - pos: 11.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15617 components: - pos: 10.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15618 components: - pos: 9.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15619 components: - pos: 8.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15620 components: - pos: 7.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15621 components: - pos: 6.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15622 components: - pos: 5.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15623 components: - pos: 4.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15624 components: - pos: 3.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15625 components: - pos: 2.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15626 components: - pos: 1.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15627 components: - pos: 0.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15628 components: - pos: -0.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15629 components: - pos: -1.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15630 components: - pos: -2.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15631 components: - pos: -3.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15632 components: - pos: -4.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15633 components: - pos: -5.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15634 components: - pos: -6.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15635 components: - pos: -7.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15636 components: - pos: -8.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15637 components: - pos: -9.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15638 components: - pos: -10.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15639 components: - pos: -11.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15640 components: - pos: -12.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15641 components: - pos: -8.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15642 components: - pos: -8.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15643 components: - pos: -4.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15644 components: - pos: -4.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15645 components: - pos: -6.5,4.5 @@ -26625,8 +24591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15646 components: - pos: -7.5,4.5 @@ -26634,8 +24598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15647 components: - pos: -8.5,4.5 @@ -26643,8 +24605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15648 components: - pos: -9.5,4.5 @@ -26652,8 +24612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15649 components: - pos: -10.5,4.5 @@ -26661,8 +24619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15650 components: - pos: -11.5,4.5 @@ -26670,8 +24626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15651 components: - pos: -12.5,4.5 @@ -26679,8 +24633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15652 components: - pos: -13.5,4.5 @@ -26688,8 +24640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15653 components: - pos: -14.5,4.5 @@ -26697,8 +24647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15654 components: - pos: -15.5,4.5 @@ -26706,8 +24654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15655 components: - pos: -16.5,4.5 @@ -26715,8 +24661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15656 components: - pos: -16.5,3.5 @@ -26724,8 +24668,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15657 components: - pos: -16.5,2.5 @@ -26733,8 +24675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15658 components: - pos: -16.5,1.5 @@ -26742,8 +24682,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15659 components: - pos: -16.5,0.5 @@ -26751,8 +24689,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15660 components: - pos: -16.5,-0.5 @@ -26760,8 +24696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15661 components: - pos: -15.5,-0.5 @@ -26769,8 +24703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15662 components: - pos: -14.5,-0.5 @@ -26778,92 +24710,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15663 components: - pos: -14.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15664 components: - pos: -14.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15665 components: - pos: -13.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15666 components: - pos: -15.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15667 components: - pos: -16.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15668 components: - pos: -17.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15669 components: - pos: -17.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15670 components: - pos: -17.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15671 components: - pos: -16.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15672 components: - pos: -15.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15673 components: - pos: -14.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15674 components: - pos: -13.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15675 components: - pos: -10.5,5.5 @@ -26871,8 +24777,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15676 components: - pos: -10.5,6.5 @@ -26880,8 +24784,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15677 components: - pos: -10.5,7.5 @@ -26889,8 +24791,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15678 components: - pos: -10.5,8.5 @@ -26898,8 +24798,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15679 components: - pos: -10.5,9.5 @@ -26907,8 +24805,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15680 components: - pos: -10.5,10.5 @@ -26916,8 +24812,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15681 components: - pos: -10.5,11.5 @@ -26925,8 +24819,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15719 components: - pos: -6.5,14.5 @@ -26934,15 +24826,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15720 components: - pos: -7.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15721 components: - pos: -8.5,14.5 @@ -26950,8 +24838,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15722 components: - pos: -9.5,14.5 @@ -26959,8 +24845,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15723 components: - pos: -8.5,15.5 @@ -26968,8 +24852,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15724 components: - pos: -8.5,16.5 @@ -26977,8 +24859,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15725 components: - pos: -8.5,17.5 @@ -26986,8 +24866,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15726 components: - pos: -8.5,18.5 @@ -26995,8 +24873,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15727 components: - pos: -8.5,19.5 @@ -27004,8 +24880,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15728 components: - pos: -7.5,19.5 @@ -27013,8 +24887,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15729 components: - pos: -6.5,19.5 @@ -27022,8 +24894,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15730 components: - pos: -5.5,19.5 @@ -27031,99 +24901,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15731 components: - pos: -5.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15732 components: - pos: -5.5,17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15733 components: - pos: -5.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15734 components: - pos: -5.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15735 components: - pos: -5.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15736 components: - pos: -5.5,13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15737 components: - pos: -5.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15738 components: - pos: -5.5,11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15739 components: - pos: -5.5,10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15740 components: - pos: -5.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15741 components: - pos: -6.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15742 components: - pos: -6.5,8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15743 components: - pos: -6.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15744 components: - pos: -5.5,7.5 @@ -27131,8 +24973,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15745 components: - pos: -4.5,7.5 @@ -27140,8 +24980,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15746 components: - pos: -3.5,7.5 @@ -27149,8 +24987,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15747 components: - pos: -2.5,7.5 @@ -27158,8 +24994,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15748 components: - pos: -1.5,7.5 @@ -27167,8 +25001,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15749 components: - pos: -0.5,7.5 @@ -27176,8 +25008,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15750 components: - pos: 0.5,7.5 @@ -27185,8 +25015,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15751 components: - pos: 1.5,7.5 @@ -27194,8 +25022,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15752 components: - pos: 2.5,7.5 @@ -27203,8 +25029,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15753 components: - pos: 3.5,7.5 @@ -27212,8 +25036,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15754 components: - pos: 4.5,7.5 @@ -27221,8 +25043,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15755 components: - pos: 5.5,7.5 @@ -27230,8 +25050,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15756 components: - pos: -4.5,12.5 @@ -27239,8 +25057,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15757 components: - pos: -1.5,6.5 @@ -27248,8 +25064,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15758 components: - pos: -1.5,5.5 @@ -27257,8 +25071,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15759 components: - pos: -1.5,4.5 @@ -27266,8 +25078,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15760 components: - pos: -1.5,3.5 @@ -27275,8 +25085,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15761 components: - pos: -1.5,2.5 @@ -27284,8 +25092,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15762 components: - pos: -1.5,1.5 @@ -27293,8 +25099,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15763 components: - pos: -0.5,1.5 @@ -27302,8 +25106,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15764 components: - pos: 0.5,1.5 @@ -27311,8 +25113,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15765 components: - pos: 1.5,1.5 @@ -27320,8 +25120,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15766 components: - pos: 2.5,1.5 @@ -27329,8 +25127,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15767 components: - pos: 3.5,1.5 @@ -27338,8 +25134,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15768 components: - pos: 4.5,1.5 @@ -27347,8 +25141,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15769 components: - pos: 5.5,1.5 @@ -27356,8 +25148,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15770 components: - pos: 6.5,1.5 @@ -27365,8 +25155,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15771 components: - pos: 4.5,2.5 @@ -27374,8 +25162,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15772 components: - pos: 4.5,3.5 @@ -27383,8 +25169,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15773 components: - pos: 4.5,4.5 @@ -27392,8 +25176,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15774 components: - pos: 4.5,5.5 @@ -27401,8 +25183,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15775 components: - pos: 4.5,6.5 @@ -27410,8 +25190,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15776 components: - pos: 1.5,2.5 @@ -27419,8 +25197,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15777 components: - pos: 7.5,1.5 @@ -27428,8 +25204,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15778 components: - pos: 7.5,2.5 @@ -27437,8 +25211,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15779 components: - pos: -3.5,12.5 @@ -27446,8 +25218,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15780 components: - pos: -2.5,12.5 @@ -27455,8 +25225,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15781 components: - pos: -1.5,12.5 @@ -27464,8 +25232,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15782 components: - pos: -0.5,12.5 @@ -27473,8 +25239,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15783 components: - pos: 0.5,12.5 @@ -27482,8 +25246,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15784 components: - pos: 1.5,12.5 @@ -27491,8 +25253,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15785 components: - pos: 2.5,12.5 @@ -27500,8 +25260,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15786 components: - pos: 3.5,12.5 @@ -27509,8 +25267,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15787 components: - pos: 4.5,12.5 @@ -27518,8 +25274,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15788 components: - pos: 5.5,12.5 @@ -27527,8 +25281,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15789 components: - pos: 6.5,12.5 @@ -27536,8 +25288,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15790 components: - pos: -4.5,16.5 @@ -27545,8 +25295,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15791 components: - pos: -3.5,16.5 @@ -27554,8 +25302,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15792 components: - pos: -2.5,16.5 @@ -27563,8 +25309,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15793 components: - pos: -1.5,16.5 @@ -27572,8 +25316,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15794 components: - pos: -0.5,16.5 @@ -27581,8 +25323,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15795 components: - pos: 0.5,16.5 @@ -27590,8 +25330,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15796 components: - pos: 1.5,16.5 @@ -27599,8 +25337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15797 components: - pos: 2.5,16.5 @@ -27608,8 +25344,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15798 components: - pos: 3.5,16.5 @@ -27617,8 +25351,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15799 components: - pos: 4.5,16.5 @@ -27626,8 +25358,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15800 components: - pos: 5.5,16.5 @@ -27635,8 +25365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15801 components: - pos: 6.5,16.5 @@ -27644,8 +25372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15802 components: - pos: -1.5,17.5 @@ -27653,8 +25379,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15803 components: - pos: -1.5,18.5 @@ -27662,8 +25386,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15804 components: - pos: -0.5,18.5 @@ -27671,8 +25393,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15805 components: - pos: 0.5,18.5 @@ -27680,8 +25400,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15806 components: - pos: 1.5,18.5 @@ -27689,8 +25407,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15807 components: - pos: 2.5,18.5 @@ -27698,8 +25414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15808 components: - pos: 3.5,18.5 @@ -27707,8 +25421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15809 components: - pos: 4.5,18.5 @@ -27716,8 +25428,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15810 components: - pos: 5.5,18.5 @@ -27725,8 +25435,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15811 components: - pos: 6.5,18.5 @@ -27734,8 +25442,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15812 components: - pos: -1.5,19.5 @@ -27743,8 +25449,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15813 components: - pos: -1.5,20.5 @@ -27752,8 +25456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15814 components: - pos: -1.5,21.5 @@ -27761,8 +25463,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15815 components: - pos: -1.5,22.5 @@ -27770,8 +25470,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15816 components: - pos: -1.5,23.5 @@ -27779,8 +25477,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15817 components: - pos: -1.5,24.5 @@ -27788,8 +25484,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15818 components: - pos: -1.5,25.5 @@ -27797,8 +25491,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15819 components: - pos: -0.5,25.5 @@ -27806,8 +25498,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15820 components: - pos: 0.5,25.5 @@ -27815,8 +25505,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15821 components: - pos: 1.5,25.5 @@ -27824,8 +25512,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15822 components: - pos: 2.5,25.5 @@ -27833,8 +25519,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15823 components: - pos: 3.5,25.5 @@ -27842,8 +25526,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15824 components: - pos: 4.5,25.5 @@ -27851,8 +25533,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15825 components: - pos: 5.5,25.5 @@ -27860,8 +25540,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15826 components: - pos: 6.5,25.5 @@ -27869,8 +25547,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15827 components: - pos: -0.5,21.5 @@ -27878,8 +25554,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15828 components: - pos: 0.5,21.5 @@ -27887,8 +25561,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15829 components: - pos: 1.5,21.5 @@ -27896,8 +25568,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15830 components: - pos: 2.5,21.5 @@ -27905,8 +25575,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15831 components: - pos: 3.5,21.5 @@ -27914,8 +25582,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15832 components: - pos: 4.5,21.5 @@ -27923,8 +25589,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15833 components: - pos: 5.5,21.5 @@ -27932,8 +25596,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15834 components: - pos: 6.5,21.5 @@ -27941,8 +25603,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15835 components: - pos: 8.5,21.5 @@ -27950,8 +25610,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15836 components: - pos: 9.5,21.5 @@ -27959,8 +25617,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15837 components: - pos: 10.5,21.5 @@ -27968,8 +25624,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15838 components: - pos: 11.5,21.5 @@ -27977,8 +25631,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15839 components: - pos: 12.5,21.5 @@ -27986,8 +25638,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15840 components: - pos: 13.5,21.5 @@ -27995,8 +25645,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15841 components: - pos: 14.5,21.5 @@ -28004,8 +25652,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15842 components: - pos: 15.5,21.5 @@ -28013,8 +25659,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15843 components: - pos: 16.5,21.5 @@ -28022,8 +25666,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15844 components: - pos: 16.5,22.5 @@ -28031,8 +25673,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15845 components: - pos: 16.5,23.5 @@ -28040,8 +25680,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15846 components: - pos: 16.5,24.5 @@ -28049,8 +25687,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15847 components: - pos: 16.5,25.5 @@ -28058,8 +25694,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15848 components: - pos: 15.5,25.5 @@ -28067,8 +25701,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15849 components: - pos: 14.5,25.5 @@ -28076,8 +25708,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15850 components: - pos: 13.5,25.5 @@ -28085,8 +25715,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15851 components: - pos: 12.5,25.5 @@ -28094,8 +25722,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15852 components: - pos: 11.5,25.5 @@ -28103,8 +25729,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15853 components: - pos: 10.5,25.5 @@ -28112,8 +25736,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15854 components: - pos: 9.5,25.5 @@ -28121,8 +25743,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15855 components: - pos: 8.5,25.5 @@ -28130,8 +25750,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15856 components: - pos: 8.5,12.5 @@ -28139,8 +25757,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15857 components: - pos: 9.5,12.5 @@ -28148,8 +25764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15858 components: - pos: 10.5,12.5 @@ -28157,8 +25771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15859 components: - pos: 11.5,12.5 @@ -28166,8 +25778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15860 components: - pos: 12.5,12.5 @@ -28175,8 +25785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15861 components: - pos: 13.5,12.5 @@ -28184,8 +25792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15862 components: - pos: 14.5,12.5 @@ -28193,8 +25799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15863 components: - pos: 15.5,12.5 @@ -28202,8 +25806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15864 components: - pos: 16.5,12.5 @@ -28211,8 +25813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15865 components: - pos: 17.5,12.5 @@ -28220,8 +25820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15866 components: - pos: 18.5,12.5 @@ -28229,8 +25827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15867 components: - pos: 19.5,12.5 @@ -28238,29 +25834,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15868 components: - pos: 20.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15869 components: - pos: 21.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15870 components: - pos: 22.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15871 components: - pos: 8.5,16.5 @@ -28268,8 +25856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15872 components: - pos: 9.5,16.5 @@ -28277,8 +25863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15873 components: - pos: 10.5,16.5 @@ -28286,8 +25870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15874 components: - pos: 11.5,16.5 @@ -28295,8 +25877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15875 components: - pos: 12.5,16.5 @@ -28304,8 +25884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15876 components: - pos: 13.5,16.5 @@ -28313,8 +25891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15877 components: - pos: 14.5,16.5 @@ -28322,8 +25898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15878 components: - pos: 15.5,16.5 @@ -28331,8 +25905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15879 components: - pos: 16.5,16.5 @@ -28340,8 +25912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15880 components: - pos: 17.5,16.5 @@ -28349,8 +25919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15881 components: - pos: 18.5,16.5 @@ -28358,8 +25926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15882 components: - pos: 19.5,16.5 @@ -28367,57 +25933,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15883 components: - pos: 20.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15884 components: - pos: 21.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15885 components: - pos: 22.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15886 components: - pos: 22.5,13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15887 components: - pos: 22.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15888 components: - pos: 22.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15889 components: - pos: 21.5,17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15890 components: - pos: -5.5,20.5 @@ -28425,8 +25975,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15891 components: - pos: -5.5,21.5 @@ -28434,8 +25982,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15892 components: - pos: -5.5,22.5 @@ -28443,8 +25989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15893 components: - pos: -5.5,23.5 @@ -28452,8 +25996,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15894 components: - pos: -5.5,24.5 @@ -28461,8 +26003,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15895 components: - pos: -5.5,25.5 @@ -28470,8 +26010,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15896 components: - pos: -5.5,26.5 @@ -28479,8 +26017,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15897 components: - pos: -5.5,27.5 @@ -28488,15 +26024,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15898 components: - pos: -6.5,22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15899 components: - pos: -7.5,22.5 @@ -28504,8 +26036,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15900 components: - pos: -8.5,22.5 @@ -28513,8 +26043,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15904 components: - pos: 23.5,15.5 @@ -28522,148 +26050,106 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15905 components: - pos: 24.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15906 components: - pos: 25.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15907 components: - pos: 26.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15908 components: - pos: 27.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15909 components: - pos: 28.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15910 components: - pos: 29.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15914 components: - pos: 26.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15915 components: - pos: 26.5,13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15916 components: - pos: 26.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15917 components: - pos: 25.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15918 components: - pos: 24.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15919 components: - pos: 23.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15920 components: - pos: 27.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15921 components: - pos: 28.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15922 components: - pos: 28.5,11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15923 components: - pos: 28.5,10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15924 components: - pos: 28.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15925 components: - pos: 28.5,8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15926 components: - pos: 28.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15927 components: - pos: 28.5,6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15928 components: - pos: 28.5,5.5 @@ -28671,36 +26157,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15929 components: - pos: 28.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15930 components: - pos: 28.5,3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15931 components: - pos: 27.5,3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15932 components: - pos: 26.5,3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15933 components: - pos: 25.5,3.5 @@ -28708,8 +26184,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15934 components: - pos: 24.5,3.5 @@ -28717,134 +26191,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15935 components: - pos: 24.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15936 components: - pos: 24.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15937 components: - pos: 24.5,0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15938 components: - pos: 24.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15939 components: - pos: 23.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15940 components: - pos: 22.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15941 components: - pos: 22.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15942 components: - pos: 22.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15943 components: - pos: 23.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15944 components: - pos: 24.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15945 components: - pos: 25.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15946 components: - pos: 26.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15947 components: - pos: 27.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15948 components: - pos: 27.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15949 components: - pos: 27.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15950 components: - pos: 27.5,0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15951 components: - pos: 27.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15952 components: - pos: 27.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15953 components: - pos: 23.5,3.5 @@ -28852,8 +26288,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15954 components: - pos: 22.5,3.5 @@ -28861,8 +26295,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15955 components: - pos: 21.5,3.5 @@ -28870,8 +26302,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15956 components: - pos: 20.5,3.5 @@ -28879,8 +26309,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15957 components: - pos: 19.5,3.5 @@ -28888,8 +26316,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15958 components: - pos: 19.5,2.5 @@ -28897,8 +26323,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15959 components: - pos: 19.5,1.5 @@ -28906,8 +26330,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15960 components: - pos: 19.5,0.5 @@ -28915,8 +26337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15961 components: - pos: 19.5,-0.5 @@ -28924,358 +26344,256 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15962 components: - pos: 19.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15963 components: - pos: 19.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15964 components: - pos: 20.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15965 components: - pos: 21.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15966 components: - pos: 19.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15967 components: - pos: 19.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15968 components: - pos: 20.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15969 components: - pos: 21.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15970 components: - pos: 22.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15971 components: - pos: 23.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15972 components: - pos: 24.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15973 components: - pos: 25.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15974 components: - pos: 26.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15975 components: - pos: 27.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15976 components: - pos: 28.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15977 components: - pos: 29.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15978 components: - pos: 29.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15979 components: - pos: 29.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15980 components: - pos: 29.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15981 components: - pos: 29.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15982 components: - pos: 29.5,0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15983 components: - pos: 29.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15984 components: - pos: 29.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15985 components: - pos: 30.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15986 components: - pos: 31.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15987 components: - pos: 32.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15988 components: - pos: 33.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15989 components: - pos: 33.5,3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15990 components: - pos: 33.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15991 components: - pos: 29.5,3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16001 components: - pos: 29.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16002 components: - pos: 30.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16003 components: - pos: 31.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16004 components: - pos: 31.5,5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16005 components: - pos: 31.5,6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16006 components: - pos: 32.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16007 components: - pos: 33.5,5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16008 components: - pos: 33.5,6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16009 components: - pos: 31.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16010 components: - pos: 31.5,8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16011 components: - pos: 31.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16012 components: - pos: 30.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16013 components: - pos: 29.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16014 components: - pos: 33.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16015 components: - pos: 33.5,8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16016 components: - pos: 33.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16017 components: - pos: 32.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16018 components: - pos: 33.5,10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16019 components: - pos: 31.5,10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16051 components: - pos: 20.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16052 components: - pos: 20.5,45.5 @@ -29283,8 +26601,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16053 components: - pos: 20.5,46.5 @@ -29292,8 +26608,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16055 components: - pos: 0.5,40.5 @@ -29301,71 +26615,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16056 components: - pos: 0.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16057 components: - pos: 0.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16058 components: - pos: 0.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16059 components: - pos: 0.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16060 components: - pos: 0.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16061 components: - pos: 0.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16062 components: - pos: 0.5,33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16063 components: - pos: -0.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16064 components: - pos: -1.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16065 components: - pos: -2.5,35.5 @@ -29373,141 +26667,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16066 components: - pos: -3.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16067 components: - pos: -3.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16068 components: - pos: -3.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16069 components: - pos: -3.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16070 components: - pos: -3.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16071 components: - pos: -3.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16072 components: - pos: -3.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16073 components: - pos: -3.5,42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16074 components: - pos: -3.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16075 components: - pos: 0.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16076 components: - pos: 0.5,42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16077 components: - pos: 0.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16078 components: - pos: -0.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16079 components: - pos: -1.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16080 components: - pos: -2.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16081 components: - pos: 1.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16082 components: - pos: 2.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16083 components: - pos: 2.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16084 components: - pos: 2.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16085 components: - pos: 2.5,46.5 @@ -29515,106 +26769,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16087 components: - pos: -3.5,33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16088 components: - pos: -3.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16089 components: - pos: -3.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16090 components: - pos: -2.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16091 components: - pos: -1.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16092 components: - pos: -0.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16093 components: - pos: 0.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16094 components: - pos: 1.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16095 components: - pos: 2.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16096 components: - pos: 3.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16097 components: - pos: 4.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16098 components: - pos: 5.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16099 components: - pos: 6.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16100 components: - pos: 6.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16101 components: - pos: 6.5,33.5 @@ -29622,8 +26846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16102 components: - pos: 6.5,34.5 @@ -29631,8 +26853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16103 components: - pos: 6.5,35.5 @@ -29640,8 +26860,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16104 components: - pos: 6.5,36.5 @@ -29649,8 +26867,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16105 components: - pos: 6.5,37.5 @@ -29658,8 +26874,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16106 components: - pos: 6.5,38.5 @@ -29667,8 +26881,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16107 components: - pos: 6.5,39.5 @@ -29676,8 +26888,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16108 components: - pos: 6.5,40.5 @@ -29685,8 +26895,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16109 components: - pos: 6.5,41.5 @@ -29694,22 +26902,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16110 components: - pos: 5.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16111 components: - pos: 4.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16112 components: - pos: 3.5,34.5 @@ -29717,8 +26919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16113 components: - pos: 5.5,39.5 @@ -29726,36 +26926,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16114 components: - pos: 4.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16115 components: - pos: 3.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16116 components: - pos: 2.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16117 components: - pos: 1.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16118 components: - pos: 5.5,41.5 @@ -29763,8 +26953,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16119 components: - pos: 5.5,42.5 @@ -29772,8 +26960,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16120 components: - pos: 5.5,43.5 @@ -29781,8 +26967,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16121 components: - pos: 5.5,44.5 @@ -29790,8 +26974,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16122 components: - pos: 5.5,45.5 @@ -29799,8 +26981,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16123 components: - pos: 5.5,46.5 @@ -29808,15 +26988,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16124 components: - pos: 4.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16125 components: - pos: 3.5,46.5 @@ -29824,29 +27000,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16126 components: - pos: 6.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16127 components: - pos: 7.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16128 components: - pos: 8.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16129 components: - pos: 7.5,41.5 @@ -29854,8 +27022,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16130 components: - pos: 8.5,41.5 @@ -29863,8 +27029,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16131 components: - pos: 9.5,41.5 @@ -29872,8 +27036,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16132 components: - pos: 10.5,41.5 @@ -29881,8 +27043,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16133 components: - pos: 11.5,41.5 @@ -29890,8 +27050,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16134 components: - pos: 11.5,42.5 @@ -29899,8 +27057,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16135 components: - pos: 11.5,43.5 @@ -29908,8 +27064,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16136 components: - pos: 11.5,44.5 @@ -29917,8 +27071,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16137 components: - pos: 11.5,45.5 @@ -29926,8 +27078,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16138 components: - pos: 10.5,44.5 @@ -29935,8 +27085,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16139 components: - pos: 9.5,44.5 @@ -29944,155 +27092,111 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16140 components: - pos: 9.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16141 components: - pos: 9.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16142 components: - pos: 9.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16143 components: - pos: 9.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16144 components: - pos: 9.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16145 components: - pos: 9.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16146 components: - pos: 9.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16147 components: - pos: 9.5,33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16148 components: - pos: 7.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16149 components: - pos: 8.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16150 components: - pos: 9.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16151 components: - pos: 10.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16152 components: - pos: 10.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16153 components: - pos: 10.5,33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16154 components: - pos: 11.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16155 components: - pos: 12.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16156 components: - pos: 13.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16157 components: - pos: 14.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16158 components: - pos: 15.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16159 components: - pos: 16.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16160 components: - pos: 17.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16161 components: - pos: 12.5,45.5 @@ -30100,8 +27204,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16162 components: - pos: 13.5,45.5 @@ -30109,8 +27211,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16163 components: - pos: 14.5,45.5 @@ -30118,8 +27218,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16164 components: - pos: 15.5,45.5 @@ -30127,8 +27225,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16165 components: - pos: 16.5,45.5 @@ -30136,8 +27232,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16188 components: - pos: -8.5,48.5 @@ -30145,743 +27239,531 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16189 components: - pos: -9.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16190 components: - pos: -9.5,49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16191 components: - pos: -9.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16192 components: - pos: -9.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16193 components: - pos: -9.5,52.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16194 components: - pos: -9.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16195 components: - pos: -10.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16196 components: - pos: -11.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16197 components: - pos: -12.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16198 components: - pos: -13.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16199 components: - pos: -14.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16200 components: - pos: -15.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16201 components: - pos: -16.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16202 components: - pos: -16.5,52.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16203 components: - pos: -16.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16204 components: - pos: -16.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16205 components: - pos: -16.5,49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16206 components: - pos: -16.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16207 components: - pos: -15.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16208 components: - pos: -14.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16209 components: - pos: -13.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16210 components: - pos: -12.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16211 components: - pos: -11.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16212 components: - pos: -10.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16213 components: - pos: -12.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16214 components: - pos: -12.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16215 components: - pos: -12.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16216 components: - pos: -12.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16217 components: - pos: -11.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16218 components: - pos: -10.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16219 components: - pos: -9.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16220 components: - pos: -8.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16221 components: - pos: -7.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16222 components: - pos: -6.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16223 components: - pos: -5.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16224 components: - pos: -5.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16225 components: - pos: -5.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16226 components: - pos: -5.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16227 components: - pos: -5.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16228 components: - pos: -5.5,49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16229 components: - pos: -5.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16230 components: - pos: -5.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16231 components: - pos: -5.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16232 components: - pos: -5.5,42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16233 components: - pos: -5.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16234 components: - pos: -5.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16235 components: - pos: -5.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16236 components: - pos: -5.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16237 components: - pos: -13.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16238 components: - pos: -14.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16239 components: - pos: -15.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16240 components: - pos: -16.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16241 components: - pos: -17.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16242 components: - pos: -12.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16243 components: - pos: -12.5,42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16244 components: - pos: -12.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16245 components: - pos: -12.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16246 components: - pos: -12.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16247 components: - pos: -12.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16248 components: - pos: -12.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16249 components: - pos: -12.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16250 components: - pos: -12.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16251 components: - pos: -11.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16252 components: - pos: -10.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16253 components: - pos: -9.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16254 components: - pos: -8.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16255 components: - pos: -8.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16256 components: - pos: -8.5,33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16257 components: - pos: -9.5,33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16258 components: - pos: -10.5,33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16259 components: - pos: -10.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16260 components: - pos: -13.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16261 components: - pos: -14.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16262 components: - pos: -15.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16263 components: - pos: -16.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16264 components: - pos: -16.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16265 components: - pos: -16.5,33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16266 components: - pos: -16.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16267 components: - pos: -16.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16268 components: - pos: -15.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16269 components: - pos: -14.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16270 components: - pos: -13.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16271 components: - pos: -12.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16272 components: - pos: -11.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16273 components: - pos: -10.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16274 components: - pos: -9.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16275 components: - pos: -8.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16276 components: - pos: -7.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16277 components: - pos: -6.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16278 components: - pos: -5.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16279 components: - pos: -5.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16280 components: - pos: -5.5,33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16281 components: - pos: -5.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16282 components: - pos: -5.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16283 components: - pos: -5.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16284 components: - pos: -5.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16285 components: - pos: -5.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16286 components: - pos: -16.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16287 components: - pos: -16.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16288 components: - pos: -16.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16289 components: - pos: -16.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16290 components: - pos: -16.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16291 components: - pos: -15.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16292 components: - pos: -14.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16293 components: - pos: -13.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16315 components: - pos: -22.5,40.5 @@ -30889,127 +27771,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16316 components: - pos: -22.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16317 components: - pos: -22.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16318 components: - pos: -22.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16319 components: - pos: -22.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16320 components: - pos: -23.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16321 components: - pos: -24.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16322 components: - pos: -25.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16323 components: - pos: -26.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16324 components: - pos: -27.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16325 components: - pos: -27.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16326 components: - pos: -27.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16327 components: - pos: -27.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16328 components: - pos: -26.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16329 components: - pos: -25.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16330 components: - pos: -24.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16331 components: - pos: -23.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16332 components: - pos: -22.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16333 components: - pos: -22.5,42.5 @@ -31017,8 +27863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16334 components: - pos: -22.5,43.5 @@ -31026,8 +27870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16335 components: - pos: -22.5,44.5 @@ -31035,57 +27877,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16336 components: - pos: -22.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16337 components: - pos: -23.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16338 components: - pos: -24.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16339 components: - pos: -25.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16340 components: - pos: -26.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16341 components: - pos: -27.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16342 components: - pos: -28.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16343 components: - pos: -28.5,44.5 @@ -31093,8 +27919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16344 components: - pos: -28.5,43.5 @@ -31102,8 +27926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16345 components: - pos: -28.5,42.5 @@ -31111,260 +27933,186 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16346 components: - pos: -28.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16347 components: - pos: -27.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16348 components: - pos: -26.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16349 components: - pos: -25.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16350 components: - pos: -24.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16351 components: - pos: -23.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16352 components: - pos: -21.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16353 components: - pos: -20.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16354 components: - pos: -20.5,42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16355 components: - pos: -20.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16356 components: - pos: -20.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16357 components: - pos: -20.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16358 components: - pos: -20.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16359 components: - pos: -20.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16360 components: - pos: -20.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16361 components: - pos: -20.5,49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16362 components: - pos: -20.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16363 components: - pos: -21.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16364 components: - pos: -22.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16365 components: - pos: -23.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16366 components: - pos: -24.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16367 components: - pos: -25.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16368 components: - pos: -26.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16369 components: - pos: -27.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16370 components: - pos: -28.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16371 components: - pos: -28.5,49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16372 components: - pos: -28.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16373 components: - pos: -28.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16374 components: - pos: -27.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16375 components: - pos: -26.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16376 components: - pos: -25.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16377 components: - pos: -24.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16378 components: - pos: -23.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16379 components: - pos: -22.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16380 components: - pos: -21.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16381 components: - pos: -28.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16382 components: - pos: -29.5,37.5 @@ -31372,8 +28120,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16383 components: - pos: -30.5,37.5 @@ -31381,8 +28127,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16384 components: - pos: -30.5,38.5 @@ -31390,8 +28134,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16385 components: - pos: -30.5,39.5 @@ -31399,8 +28141,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16386 components: - pos: -30.5,40.5 @@ -31408,8 +28148,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16387 components: - pos: -30.5,41.5 @@ -31417,8 +28155,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16388 components: - pos: -30.5,42.5 @@ -31426,8 +28162,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16389 components: - pos: -30.5,43.5 @@ -31435,8 +28169,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16390 components: - pos: -30.5,44.5 @@ -31444,8 +28176,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16391 components: - pos: -30.5,45.5 @@ -31453,8 +28183,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16392 components: - pos: -30.5,46.5 @@ -31462,8 +28190,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16393 components: - pos: -30.5,47.5 @@ -31471,8 +28197,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16394 components: - pos: -30.5,48.5 @@ -31480,8 +28204,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16395 components: - pos: -30.5,49.5 @@ -31489,8 +28211,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16396 components: - pos: -30.5,50.5 @@ -31498,8 +28218,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16397 components: - pos: -31.5,50.5 @@ -31507,8 +28225,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16398 components: - pos: -31.5,42.5 @@ -31516,8 +28232,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16399 components: - pos: -30.5,36.5 @@ -31525,8 +28239,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16400 components: - pos: -30.5,35.5 @@ -31534,8 +28246,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16401 components: - pos: -30.5,34.5 @@ -31543,8 +28253,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16402 components: - pos: -31.5,34.5 @@ -31552,8 +28260,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16403 components: - pos: -31.5,33.5 @@ -31561,183 +28267,131 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16404 components: - pos: -31.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16405 components: - pos: -31.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16406 components: - pos: -30.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16407 components: - pos: -29.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16408 components: - pos: -28.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16409 components: - pos: -27.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16410 components: - pos: -26.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16411 components: - pos: -25.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16412 components: - pos: -24.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16413 components: - pos: -23.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16414 components: - pos: -22.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16415 components: - pos: -21.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16416 components: - pos: -20.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16417 components: - pos: -19.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16418 components: - pos: -19.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16419 components: - pos: -19.5,33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16420 components: - pos: -19.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16421 components: - pos: -19.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16422 components: - pos: -19.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16423 components: - pos: -19.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16424 components: - pos: -19.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16425 components: - pos: -20.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16426 components: - pos: -21.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16427 components: - pos: -20.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16428 components: - pos: -20.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16430 components: - pos: -29.5,34.5 @@ -31745,8 +28399,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16431 components: - pos: -28.5,34.5 @@ -31754,8 +28406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16432 components: - pos: -27.5,34.5 @@ -31763,8 +28413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16503 components: - pos: -35.5,26.5 @@ -31772,8 +28420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16504 components: - pos: -34.5,26.5 @@ -31781,15 +28427,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16505 components: - pos: -33.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16506 components: - pos: -32.5,26.5 @@ -31797,218 +28439,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16507 components: - pos: -31.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16508 components: - pos: -30.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16509 components: - pos: -29.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16510 components: - pos: -28.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16511 components: - pos: -27.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16512 components: - pos: -26.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16513 components: - pos: -25.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16514 components: - pos: -25.5,27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16515 components: - pos: -25.5,28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16516 components: - pos: -25.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16517 components: - pos: -26.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16518 components: - pos: -27.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16519 components: - pos: -28.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16520 components: - pos: -29.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16521 components: - pos: -30.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16522 components: - pos: -31.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16523 components: - pos: -32.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16524 components: - pos: -33.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16525 components: - pos: -34.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16526 components: - pos: -35.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16527 components: - pos: -36.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16528 components: - pos: -37.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16529 components: - pos: -38.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16530 components: - pos: -39.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16531 components: - pos: -39.5,28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16532 components: - pos: -39.5,27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16533 components: - pos: -39.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16534 components: - pos: -37.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16535 components: - pos: -38.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16536 components: - pos: -36.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16537 components: - pos: -34.5,27.5 @@ -32016,15 +28596,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16538 components: - pos: -34.5,28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16539 components: - pos: -34.5,25.5 @@ -32032,8 +28608,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16540 components: - pos: -34.5,24.5 @@ -32041,8 +28615,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16541 components: - pos: -34.5,23.5 @@ -32050,8 +28622,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16542 components: - pos: -35.5,23.5 @@ -32059,8 +28629,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16543 components: - pos: -36.5,23.5 @@ -32068,8 +28636,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16544 components: - pos: -37.5,23.5 @@ -32077,8 +28643,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16545 components: - pos: -38.5,23.5 @@ -32086,8 +28650,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16546 components: - pos: -39.5,23.5 @@ -32095,8 +28657,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16547 components: - pos: -40.5,23.5 @@ -32104,8 +28664,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16548 components: - pos: -41.5,23.5 @@ -32113,8 +28671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16549 components: - pos: -42.5,23.5 @@ -32122,8 +28678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16550 components: - pos: -43.5,23.5 @@ -32131,8 +28685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16551 components: - pos: -44.5,23.5 @@ -32140,8 +28692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16552 components: - pos: -45.5,23.5 @@ -32149,8 +28699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16553 components: - pos: -46.5,23.5 @@ -32158,8 +28706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16554 components: - pos: -47.5,23.5 @@ -32167,8 +28713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16555 components: - pos: -47.5,22.5 @@ -32176,8 +28720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16556 components: - pos: -47.5,21.5 @@ -32185,8 +28727,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16557 components: - pos: -47.5,20.5 @@ -32194,8 +28734,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16558 components: - pos: -47.5,19.5 @@ -32203,8 +28741,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16559 components: - pos: -47.5,18.5 @@ -32212,8 +28748,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16560 components: - pos: -47.5,17.5 @@ -32221,8 +28755,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16561 components: - pos: -47.5,16.5 @@ -32230,8 +28762,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16562 components: - pos: -47.5,15.5 @@ -32239,8 +28769,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16563 components: - pos: -47.5,14.5 @@ -32248,8 +28776,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16564 components: - pos: -48.5,14.5 @@ -32257,8 +28783,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16565 components: - pos: -48.5,13.5 @@ -32266,8 +28790,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16566 components: - pos: -48.5,12.5 @@ -32275,8 +28797,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16567 components: - pos: -48.5,11.5 @@ -32284,8 +28804,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16568 components: - pos: -48.5,10.5 @@ -32293,8 +28811,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16569 components: - pos: -48.5,9.5 @@ -32302,8 +28818,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16570 components: - pos: -48.5,8.5 @@ -32311,8 +28825,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16571 components: - pos: -48.5,7.5 @@ -32320,8 +28832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16572 components: - pos: -46.5,24.5 @@ -32329,8 +28839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16573 components: - pos: -46.5,25.5 @@ -32338,8 +28846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16574 components: - pos: -46.5,26.5 @@ -32347,8 +28853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16575 components: - pos: -46.5,27.5 @@ -32356,645 +28860,461 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16576 components: - pos: -46.5,28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16577 components: - pos: -46.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16578 components: - pos: -45.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16579 components: - pos: -44.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16580 components: - pos: -43.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16581 components: - pos: -42.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16582 components: - pos: -41.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16583 components: - pos: -40.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16584 components: - pos: -47.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16585 components: - pos: -48.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16586 components: - pos: -49.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16587 components: - pos: -50.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16588 components: - pos: -51.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16589 components: - pos: -52.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16590 components: - pos: -53.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16591 components: - pos: -54.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16592 components: - pos: -55.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16593 components: - pos: -56.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16594 components: - pos: -57.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16595 components: - pos: -57.5,30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16596 components: - pos: -57.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16597 components: - pos: -57.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16598 components: - pos: -57.5,33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16599 components: - pos: -57.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16600 components: - pos: -57.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16601 components: - pos: -57.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16605 components: - pos: -57.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16606 components: - pos: -57.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16607 components: - pos: -57.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16608 components: - pos: -57.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16609 components: - pos: -57.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16610 components: - pos: -57.5,42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16611 components: - pos: -57.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16612 components: - pos: -57.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16613 components: - pos: -57.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16614 components: - pos: -57.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16615 components: - pos: -57.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16616 components: - pos: -57.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16617 components: - pos: -57.5,49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16618 components: - pos: -57.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16619 components: - pos: -57.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16620 components: - pos: -57.5,52.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16621 components: - pos: -57.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16622 components: - pos: -57.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16623 components: - pos: -58.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16624 components: - pos: -59.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16625 components: - pos: -60.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16626 components: - pos: -61.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16627 components: - pos: -61.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16628 components: - pos: -61.5,52.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16629 components: - pos: -61.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16630 components: - pos: -61.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16631 components: - pos: -61.5,49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16632 components: - pos: -61.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16633 components: - pos: -61.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16634 components: - pos: -61.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16635 components: - pos: -61.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16636 components: - pos: -61.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16637 components: - pos: -61.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16638 components: - pos: -61.5,42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16639 components: - pos: -61.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16640 components: - pos: -61.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16641 components: - pos: -61.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16642 components: - pos: -61.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16643 components: - pos: -61.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16644 components: - pos: -61.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16645 components: - pos: -61.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16646 components: - pos: -60.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16647 components: - pos: -59.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16648 components: - pos: -58.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16649 components: - pos: -62.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16650 components: - pos: -63.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16651 components: - pos: -63.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16652 components: - pos: -64.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16653 components: - pos: -65.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16654 components: - pos: -66.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16655 components: - pos: -63.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16656 components: - pos: -64.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16657 components: - pos: -65.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16658 components: - pos: -66.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16659 components: - pos: -62.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16660 components: - pos: -63.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16661 components: - pos: -64.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16662 components: - pos: -65.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16663 components: - pos: -66.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16664 components: - pos: -62.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16665 components: - pos: -63.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16666 components: - pos: -64.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16667 components: - pos: -65.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16668 components: - pos: -66.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16672 components: - pos: -12.5,13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16673 components: - pos: -11.5,13.5 @@ -33002,92 +29322,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16674 components: - pos: -13.5,13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16675 components: - pos: -14.5,13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16676 components: - pos: -15.5,13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16677 components: - pos: -16.5,13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16678 components: - pos: -17.5,13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16679 components: - pos: -18.5,13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16680 components: - pos: -18.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16681 components: - pos: -18.5,11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16682 components: - pos: -18.5,10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16683 components: - pos: -18.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16684 components: - pos: -18.5,8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16685 components: - pos: -18.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16686 components: - pos: -18.5,6.5 @@ -33095,8 +29389,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16687 components: - pos: -17.5,6.5 @@ -33104,8 +29396,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16688 components: - pos: -16.5,6.5 @@ -33113,281 +29403,201 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16689 components: - pos: -17.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16690 components: - pos: -17.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16691 components: - pos: -17.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16692 components: - pos: -17.5,17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16693 components: - pos: -17.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16694 components: - pos: -17.5,19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16695 components: - pos: -17.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16696 components: - pos: -17.5,21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16697 components: - pos: -16.5,21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16698 components: - pos: -15.5,21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16699 components: - pos: -14.5,21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16700 components: - pos: -13.5,21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16701 components: - pos: -12.5,21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16702 components: - pos: -12.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16703 components: - pos: -12.5,19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16704 components: - pos: -12.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16705 components: - pos: -12.5,17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16706 components: - pos: -12.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16707 components: - pos: -12.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16708 components: - pos: -12.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16709 components: - pos: -18.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16710 components: - pos: -19.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16711 components: - pos: -20.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16712 components: - pos: -21.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16713 components: - pos: -21.5,17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16714 components: - pos: -22.5,17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16715 components: - pos: -23.5,17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16720 components: - pos: -21.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16721 components: - pos: -21.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16722 components: - pos: -21.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16723 components: - pos: -21.5,13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16724 components: - pos: -21.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16725 components: - pos: -21.5,11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16726 components: - pos: -21.5,10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16727 components: - pos: -21.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16728 components: - pos: -21.5,8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16729 components: - pos: -21.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16730 components: - pos: -21.5,6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16731 components: - pos: -20.5,6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16732 components: - pos: -19.5,6.5 @@ -33395,274 +29605,196 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16733 components: - pos: -21.5,5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16734 components: - pos: -21.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16735 components: - pos: -21.5,3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16736 components: - pos: -21.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16737 components: - pos: -21.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16738 components: - pos: -21.5,0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16739 components: - pos: -22.5,0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16740 components: - pos: -23.5,0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16741 components: - pos: -23.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16742 components: - pos: -24.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16743 components: - pos: -25.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16744 components: - pos: -26.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16745 components: - pos: -27.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16746 components: - pos: -28.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16747 components: - pos: -29.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16748 components: - pos: -29.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16749 components: - pos: -29.5,3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16750 components: - pos: -29.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16751 components: - pos: -28.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16752 components: - pos: -27.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16753 components: - pos: -26.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16754 components: - pos: -25.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16755 components: - pos: -24.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16756 components: - pos: -23.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16757 components: - pos: -23.5,5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16758 components: - pos: -23.5,6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16759 components: - pos: -23.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16760 components: - pos: -23.5,8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16761 components: - pos: -23.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16762 components: - pos: -23.5,10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16763 components: - pos: -23.5,11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16764 components: - pos: -23.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16765 components: - pos: -23.5,13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16766 components: - pos: -23.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16767 components: - pos: -23.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16768 components: - pos: -23.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16769 components: - pos: -23.5,17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16770 components: - pos: -24.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16771 components: - pos: -25.5,9.5 @@ -33670,8 +29802,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16772 components: - pos: -26.5,9.5 @@ -33679,8 +29809,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16773 components: - pos: -27.5,9.5 @@ -33688,8 +29816,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16774 components: - pos: -28.5,9.5 @@ -33697,8 +29823,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16775 components: - pos: -29.5,9.5 @@ -33706,8 +29830,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16776 components: - pos: -30.5,9.5 @@ -33715,8 +29837,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16777 components: - pos: -31.5,9.5 @@ -33724,8 +29844,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16778 components: - pos: -31.5,8.5 @@ -33733,8 +29851,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16779 components: - pos: -32.5,8.5 @@ -33742,8 +29858,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16780 components: - pos: -33.5,8.5 @@ -33751,8 +29865,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16781 components: - pos: -34.5,8.5 @@ -33760,8 +29872,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16782 components: - pos: -35.5,8.5 @@ -33769,8 +29879,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16783 components: - pos: -36.5,8.5 @@ -33778,8 +29886,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16784 components: - pos: -37.5,8.5 @@ -33787,8 +29893,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16785 components: - pos: -38.5,8.5 @@ -33796,8 +29900,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16786 components: - pos: -39.5,8.5 @@ -33805,8 +29907,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16787 components: - pos: -40.5,8.5 @@ -33814,8 +29914,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16788 components: - pos: -41.5,8.5 @@ -33823,8 +29921,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16789 components: - pos: -42.5,8.5 @@ -33832,8 +29928,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16790 components: - pos: -43.5,8.5 @@ -33841,8 +29935,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16791 components: - pos: -44.5,8.5 @@ -33850,8 +29942,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16792 components: - pos: -45.5,8.5 @@ -33859,8 +29949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16793 components: - pos: -45.5,7.5 @@ -33868,8 +29956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16794 components: - pos: -45.5,6.5 @@ -33877,281 +29963,201 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16795 components: - pos: -45.5,5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16796 components: - pos: -21.5,19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16797 components: - pos: -21.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16798 components: - pos: -21.5,21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16799 components: - pos: -21.5,22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16800 components: - pos: -21.5,23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16801 components: - pos: -21.5,24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16802 components: - pos: -21.5,25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16803 components: - pos: -21.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16804 components: - pos: -20.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16805 components: - pos: -19.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16806 components: - pos: -18.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16807 components: - pos: -17.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16808 components: - pos: -16.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16809 components: - pos: -15.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16810 components: - pos: -14.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16811 components: - pos: -13.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16812 components: - pos: -12.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16813 components: - pos: -16.5,25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16814 components: - pos: -18.5,25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16815 components: - pos: -14.5,25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16816 components: - pos: -12.5,27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16817 components: - pos: -12.5,28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16818 components: - pos: -12.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16819 components: - pos: -11.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16820 components: - pos: -10.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16821 components: - pos: -9.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16822 components: - pos: -8.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16823 components: - pos: -13.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16824 components: - pos: -14.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16825 components: - pos: -15.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16826 components: - pos: -16.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16827 components: - pos: -17.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16828 components: - pos: -18.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16829 components: - pos: -19.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16830 components: - pos: -20.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16831 components: - pos: -21.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16832 components: - pos: -21.5,28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16833 components: - pos: -21.5,27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16835 components: - pos: -2.5,56.5 @@ -34159,295 +30165,211 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16836 components: - pos: -1.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16837 components: - pos: -0.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16838 components: - pos: 0.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16839 components: - pos: 0.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16840 components: - pos: 1.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16841 components: - pos: 2.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16842 components: - pos: 2.5,58.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16843 components: - pos: 2.5,59.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16844 components: - pos: 2.5,60.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16845 components: - pos: 2.5,61.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16846 components: - pos: 1.5,61.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16847 components: - pos: 0.5,61.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16848 components: - pos: -0.5,61.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16849 components: - pos: -1.5,61.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16850 components: - pos: -1.5,60.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16851 components: - pos: -1.5,59.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16852 components: - pos: -1.5,58.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16853 components: - pos: -1.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16854 components: - pos: -0.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16855 components: - pos: 0.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16856 components: - pos: 0.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16857 components: - pos: 0.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16858 components: - pos: 0.5,52.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16859 components: - pos: 0.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16860 components: - pos: -0.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16861 components: - pos: -1.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16862 components: - pos: -2.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16863 components: - pos: -3.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16864 components: - pos: 1.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16865 components: - pos: 2.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16866 components: - pos: 3.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16867 components: - pos: 4.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16868 components: - pos: 5.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16869 components: - pos: 6.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16870 components: - pos: 7.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16871 components: - pos: 8.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16872 components: - pos: 9.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16873 components: - pos: 10.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16874 components: - pos: 11.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16875 components: - pos: 3.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16876 components: - pos: 8.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16924 components: - pos: 21.5,68.5 @@ -34455,211 +30377,151 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16925 components: - pos: 21.5,69.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16926 components: - pos: 16.5,74.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16927 components: - pos: 15.5,74.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16930 components: - pos: 19.5,70.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16931 components: - pos: 9.5,76.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16933 components: - pos: 9.5,75.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16943 components: - pos: 20.5,70.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16972 components: - pos: 21.5,67.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16973 components: - pos: 22.5,67.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16974 components: - pos: 23.5,67.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16975 components: - pos: 23.5,68.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16976 components: - pos: 23.5,69.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16977 components: - pos: 23.5,70.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16978 components: - pos: 23.5,71.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16979 components: - pos: 23.5,72.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16980 components: - pos: 23.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16984 components: - pos: 24.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16985 components: - pos: 25.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16986 components: - pos: 26.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16987 components: - pos: 30.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16988 components: - pos: 28.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16989 components: - pos: 27.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16997 components: - pos: 24.5,69.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16998 components: - pos: 25.5,69.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16999 components: - pos: 26.5,69.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17000 components: - pos: 27.5,69.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17001 components: - pos: 28.5,69.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17002 components: - pos: 29.5,69.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17003 components: - pos: 29.5,68.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17005 components: - pos: 31.5,68.5 @@ -34667,15 +30529,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17006 components: - pos: 31.5,69.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17007 components: - pos: 31.5,70.5 @@ -34683,127 +30541,91 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17008 components: - pos: 20.5,67.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17009 components: - pos: 19.5,67.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17010 components: - pos: 18.5,67.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17011 components: - pos: 18.5,66.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17012 components: - pos: 18.5,65.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17013 components: - pos: 18.5,64.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17014 components: - pos: 17.5,64.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17015 components: - pos: 16.5,64.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17016 components: - pos: 15.5,64.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17017 components: - pos: 14.5,64.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17018 components: - pos: 13.5,64.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17019 components: - pos: 12.5,64.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17020 components: - pos: 11.5,64.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17021 components: - pos: 12.5,63.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17022 components: - pos: 12.5,62.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17023 components: - pos: 12.5,65.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17024 components: - pos: 12.5,66.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17025 components: - pos: 17.5,57.5 @@ -34811,603 +30633,431 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17026 components: - pos: 16.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17027 components: - pos: 15.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17028 components: - pos: 14.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17029 components: - pos: 13.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17030 components: - pos: 12.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17031 components: - pos: 12.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17032 components: - pos: 12.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17033 components: - pos: 12.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17034 components: - pos: 12.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17038 components: - pos: 16.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17039 components: - pos: 16.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17040 components: - pos: 16.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17041 components: - pos: 16.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17042 components: - pos: 18.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17043 components: - pos: 19.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17044 components: - pos: 20.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17045 components: - pos: 20.5,58.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17046 components: - pos: 20.5,59.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17047 components: - pos: 20.5,60.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17048 components: - pos: 20.5,61.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17049 components: - pos: 20.5,62.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17050 components: - pos: 20.5,63.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17051 components: - pos: 20.5,64.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17052 components: - pos: 20.5,65.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17053 components: - pos: 21.5,65.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17054 components: - pos: 22.5,65.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17055 components: - pos: 23.5,65.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17056 components: - pos: 24.5,65.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17057 components: - pos: 18.5,63.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17058 components: - pos: 18.5,62.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17059 components: - pos: 18.5,61.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17060 components: - pos: 21.5,60.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17061 components: - pos: 22.5,60.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17062 components: - pos: 23.5,60.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17063 components: - pos: 24.5,60.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17064 components: - pos: 25.5,60.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17065 components: - pos: 26.5,60.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17066 components: - pos: 27.5,60.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17067 components: - pos: 28.5,60.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17068 components: - pos: 29.5,60.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17069 components: - pos: 27.5,61.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17070 components: - pos: 27.5,62.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17071 components: - pos: 27.5,63.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17072 components: - pos: 27.5,64.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17073 components: - pos: 27.5,65.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17074 components: - pos: 28.5,65.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17075 components: - pos: 27.5,59.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17076 components: - pos: 27.5,58.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17077 components: - pos: 27.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17078 components: - pos: 27.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17079 components: - pos: 27.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17080 components: - pos: 26.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17081 components: - pos: 25.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17082 components: - pos: 24.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17083 components: - pos: 23.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17084 components: - pos: 22.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17085 components: - pos: 21.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17086 components: - pos: 20.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17087 components: - pos: 20.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17088 components: - pos: 18.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17089 components: - pos: 18.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17090 components: - pos: 18.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17091 components: - pos: 19.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17092 components: - pos: 20.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17093 components: - pos: 27.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17094 components: - pos: 27.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17095 components: - pos: 27.5,52.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17096 components: - pos: 27.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17097 components: - pos: 26.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17098 components: - pos: 25.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17099 components: - pos: 24.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17100 components: - pos: 23.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17101 components: - pos: 22.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17102 components: - pos: 21.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17103 components: - pos: 20.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17104 components: - pos: 19.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17105 components: - pos: 18.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17106 components: - pos: 17.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17107 components: - pos: 16.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17108 components: - pos: 15.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17109 components: - pos: 14.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17110 components: - pos: 28.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17111 components: - pos: 29.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17112 components: - pos: 30.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17113 components: - pos: 31.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17114 components: - pos: 31.5,52.5 @@ -35415,8 +31065,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17115 components: - pos: 31.5,53.5 @@ -35424,8 +31072,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17116 components: - pos: 31.5,54.5 @@ -35433,8 +31079,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17124 components: - pos: 31.5,62.5 @@ -35442,8 +31086,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17125 components: - pos: 31.5,63.5 @@ -35451,8 +31093,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17126 components: - pos: 31.5,64.5 @@ -35460,8 +31100,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17127 components: - pos: 31.5,65.5 @@ -35469,288 +31107,206 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17134 components: - pos: 41.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17135 components: - pos: 40.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17136 components: - pos: 39.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17137 components: - pos: 38.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17138 components: - pos: 37.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17139 components: - pos: 36.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17140 components: - pos: 35.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17141 components: - pos: 34.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17142 components: - pos: 33.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17143 components: - pos: 33.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17144 components: - pos: 33.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17145 components: - pos: 33.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17146 components: - pos: 33.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17147 components: - pos: 33.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17148 components: - pos: 33.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17149 components: - pos: 33.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17150 components: - pos: 33.5,42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17151 components: - pos: 33.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17152 components: - pos: 33.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17153 components: - pos: 33.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17154 components: - pos: 33.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17155 components: - pos: 33.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17156 components: - pos: 33.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17157 components: - pos: 33.5,49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17158 components: - pos: 33.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17159 components: - pos: 33.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17160 components: - pos: 34.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17161 components: - pos: 35.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17162 components: - pos: 36.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17163 components: - pos: 37.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17164 components: - pos: 37.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17165 components: - pos: 38.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17166 components: - pos: 38.5,49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17167 components: - pos: 38.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17168 components: - pos: 38.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17169 components: - pos: 37.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17170 components: - pos: 36.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17171 components: - pos: 35.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17172 components: - pos: 34.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17173 components: - pos: 34.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17174 components: - pos: 34.5,46.5 @@ -35758,8 +31314,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17175 components: - pos: 35.5,46.5 @@ -35767,8 +31321,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17176 components: - pos: 36.5,46.5 @@ -35776,8 +31328,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17177 components: - pos: 37.5,46.5 @@ -35785,8 +31335,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17178 components: - pos: 38.5,46.5 @@ -35794,8 +31342,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17179 components: - pos: 39.5,46.5 @@ -35803,8 +31349,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17180 components: - pos: 39.5,45.5 @@ -35812,8 +31356,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17181 components: - pos: 39.5,44.5 @@ -35821,8 +31363,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17182 components: - pos: 39.5,43.5 @@ -35830,8 +31370,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17183 components: - pos: 39.5,42.5 @@ -35839,8 +31377,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17184 components: - pos: 39.5,41.5 @@ -35848,8 +31384,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17185 components: - pos: 39.5,40.5 @@ -35857,8 +31391,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17186 components: - pos: 39.5,39.5 @@ -35866,8 +31398,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17187 components: - pos: 39.5,38.5 @@ -35875,8 +31405,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17188 components: - pos: 39.5,37.5 @@ -35884,8 +31412,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17189 components: - pos: 40.5,39.5 @@ -35893,8 +31419,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17190 components: - pos: 41.5,39.5 @@ -35902,8 +31426,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17191 components: - pos: 42.5,39.5 @@ -35911,8 +31433,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17192 components: - pos: 43.5,39.5 @@ -35920,8 +31440,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17193 components: - pos: 44.5,39.5 @@ -35929,8 +31447,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17194 components: - pos: 45.5,39.5 @@ -35938,57 +31454,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17195 components: - pos: 45.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17196 components: - pos: 45.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17197 components: - pos: 45.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17198 components: - pos: 45.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17199 components: - pos: 44.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17200 components: - pos: 43.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17201 components: - pos: 42.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17202 components: - pos: 41.5,35.5 @@ -35996,225 +31496,161 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17203 components: - pos: 45.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17204 components: - pos: 45.5,33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17205 components: - pos: 45.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17206 components: - pos: 44.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17207 components: - pos: 43.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17208 components: - pos: 42.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17209 components: - pos: 41.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17210 components: - pos: 40.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17211 components: - pos: 39.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17212 components: - pos: 38.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17213 components: - pos: 37.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17214 components: - pos: 36.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17215 components: - pos: 35.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17216 components: - pos: 35.5,33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17217 components: - pos: 33.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17218 components: - pos: 32.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17219 components: - pos: 31.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17220 components: - pos: 31.5,33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17221 components: - pos: 31.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17222 components: - pos: 31.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17223 components: - pos: 31.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17224 components: - pos: 31.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17225 components: - pos: 31.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17226 components: - pos: 32.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17227 components: - pos: 32.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17228 components: - pos: 32.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17229 components: - pos: 31.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17230 components: - pos: 31.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17231 components: - pos: 31.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17232 components: - pos: 46.5,33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17233 components: - pos: 47.5,33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17234 components: - pos: 48.5,33.5 @@ -36222,8 +31658,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17235 components: - pos: 49.5,33.5 @@ -36231,8 +31665,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17236 components: - pos: 50.5,33.5 @@ -36240,8 +31672,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17237 components: - pos: 50.5,34.5 @@ -36249,8 +31679,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17238 components: - pos: 50.5,35.5 @@ -36258,8 +31686,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17239 components: - pos: 50.5,36.5 @@ -36267,8 +31693,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17240 components: - pos: 50.5,37.5 @@ -36276,8 +31700,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17241 components: - pos: 51.5,37.5 @@ -36285,8 +31707,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17242 components: - pos: 52.5,37.5 @@ -36294,8 +31714,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17243 components: - pos: 53.5,37.5 @@ -36303,8 +31721,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17244 components: - pos: 54.5,37.5 @@ -36312,8 +31728,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17245 components: - pos: 55.5,37.5 @@ -36321,8 +31735,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17246 components: - pos: 56.5,37.5 @@ -36330,8 +31742,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17247 components: - pos: 46.5,39.5 @@ -36339,8 +31749,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17248 components: - pos: 47.5,39.5 @@ -36348,8 +31756,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17249 components: - pos: 47.5,40.5 @@ -36357,8 +31763,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17250 components: - pos: 47.5,41.5 @@ -36366,8 +31770,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17251 components: - pos: 47.5,42.5 @@ -36375,8 +31777,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17252 components: - pos: 47.5,43.5 @@ -36384,8 +31784,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17253 components: - pos: 47.5,44.5 @@ -36393,8 +31791,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17254 components: - pos: 47.5,45.5 @@ -36402,8 +31798,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17255 components: - pos: 47.5,46.5 @@ -36411,8 +31805,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17256 components: - pos: 47.5,47.5 @@ -36420,8 +31812,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17257 components: - pos: 47.5,48.5 @@ -36429,8 +31819,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17258 components: - pos: 47.5,49.5 @@ -36438,8 +31826,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17259 components: - pos: 47.5,50.5 @@ -36447,8 +31833,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17260 components: - pos: 46.5,50.5 @@ -36456,8 +31840,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17261 components: - pos: 45.5,50.5 @@ -36465,8 +31847,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17262 components: - pos: 44.5,50.5 @@ -36474,8 +31854,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17263 components: - pos: 43.5,50.5 @@ -36483,8 +31861,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17264 components: - pos: 42.5,50.5 @@ -36492,8 +31868,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17265 components: - pos: 41.5,50.5 @@ -36501,8 +31875,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17266 components: - pos: 40.5,50.5 @@ -36510,8 +31882,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17267 components: - pos: 40.5,49.5 @@ -36519,8 +31889,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17268 components: - pos: 40.5,48.5 @@ -36528,8 +31896,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17269 components: - pos: 40.5,47.5 @@ -36537,8 +31903,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17270 components: - pos: 40.5,46.5 @@ -36546,8 +31910,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17271 components: - pos: 45.5,51.5 @@ -36555,8 +31917,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17272 components: - pos: 45.5,52.5 @@ -36564,8 +31924,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17273 components: - pos: 45.5,53.5 @@ -36573,8 +31931,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17274 components: - pos: 45.5,54.5 @@ -36582,8 +31938,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17275 components: - pos: 43.5,51.5 @@ -36591,8 +31945,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17276 components: - pos: 43.5,52.5 @@ -36600,8 +31952,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17277 components: - pos: 43.5,53.5 @@ -36609,8 +31959,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17278 components: - pos: 43.5,54.5 @@ -36618,8 +31966,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17279 components: - pos: 43.5,55.5 @@ -36627,8 +31973,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17280 components: - pos: 40.5,44.5 @@ -36636,8 +31980,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17282 components: - pos: 42.5,44.5 @@ -36645,8 +31987,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17283 components: - pos: 43.5,44.5 @@ -36654,8 +31994,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17284 components: - pos: 43.5,43.5 @@ -36663,8 +32001,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17285 components: - pos: 43.5,42.5 @@ -36672,15 +32008,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17286 components: - pos: 42.5,11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17287 components: - pos: 42.5,10.5 @@ -36688,8 +32020,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17288 components: - pos: 42.5,9.5 @@ -36697,8 +32027,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17289 components: - pos: 41.5,9.5 @@ -36706,8 +32034,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17290 components: - pos: 41.5,8.5 @@ -36715,8 +32041,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17291 components: - pos: 40.5,8.5 @@ -36724,8 +32048,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17292 components: - pos: 39.5,8.5 @@ -36733,8 +32055,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17293 components: - pos: 38.5,8.5 @@ -36742,8 +32062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17294 components: - pos: 37.5,8.5 @@ -36751,8 +32069,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17295 components: - pos: 36.5,8.5 @@ -36760,8 +32076,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17298 components: - pos: 43.5,9.5 @@ -36769,8 +32083,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17299 components: - pos: 44.5,9.5 @@ -36778,8 +32090,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17300 components: - pos: 45.5,9.5 @@ -36787,8 +32097,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17301 components: - pos: 46.5,9.5 @@ -36796,8 +32104,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17302 components: - pos: 47.5,9.5 @@ -36805,8 +32111,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17303 components: - pos: 48.5,9.5 @@ -36814,8 +32118,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17304 components: - pos: 49.5,9.5 @@ -36823,8 +32125,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17305 components: - pos: 50.5,9.5 @@ -36832,8 +32132,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17306 components: - pos: 51.5,9.5 @@ -36841,8 +32139,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17307 components: - pos: 52.5,9.5 @@ -36850,8 +32146,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17308 components: - pos: 53.5,9.5 @@ -36859,8 +32153,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17309 components: - pos: 54.5,9.5 @@ -36868,8 +32160,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17310 components: - pos: 54.5,8.5 @@ -36877,8 +32167,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17311 components: - pos: 54.5,7.5 @@ -36886,8 +32174,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17312 components: - pos: 55.5,7.5 @@ -36895,8 +32181,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17313 components: - pos: 56.5,7.5 @@ -36904,8 +32188,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17372 components: - pos: 79.5,1.5 @@ -36913,645 +32195,461 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17373 components: - pos: 79.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17374 components: - pos: 79.5,3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17375 components: - pos: 79.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17376 components: - pos: 78.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17377 components: - pos: 77.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17378 components: - pos: 76.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17379 components: - pos: 75.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17380 components: - pos: 74.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17381 components: - pos: 73.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17382 components: - pos: 72.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17383 components: - pos: 71.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17384 components: - pos: 70.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17385 components: - pos: 69.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17386 components: - pos: 69.5,3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17387 components: - pos: 69.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17388 components: - pos: 70.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17389 components: - pos: 71.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17390 components: - pos: 72.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17391 components: - pos: 72.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17405 components: - pos: 73.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17406 components: - pos: 74.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17407 components: - pos: 75.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17408 components: - pos: 76.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17409 components: - pos: 77.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17410 components: - pos: 78.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17411 components: - pos: 80.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17412 components: - pos: 81.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17413 components: - pos: 82.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17414 components: - pos: 83.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17415 components: - pos: 84.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17416 components: - pos: 85.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17417 components: - pos: 86.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17418 components: - pos: 86.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17434 components: - pos: 80.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17435 components: - pos: 81.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17436 components: - pos: 82.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17437 components: - pos: 83.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17438 components: - pos: 84.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17439 components: - pos: 85.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17440 components: - pos: 86.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17441 components: - pos: 86.5,3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17442 components: - pos: 83.5,5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17443 components: - pos: 83.5,6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17444 components: - pos: 83.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17445 components: - pos: 83.5,8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17446 components: - pos: 83.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17447 components: - pos: 83.5,10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17448 components: - pos: 83.5,11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17449 components: - pos: 83.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17450 components: - pos: 83.5,13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17451 components: - pos: 83.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17452 components: - pos: 83.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17453 components: - pos: 75.5,5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17454 components: - pos: 75.5,6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17455 components: - pos: 75.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17456 components: - pos: 75.5,8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17457 components: - pos: 75.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17458 components: - pos: 75.5,10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17459 components: - pos: 75.5,11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17460 components: - pos: 75.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17461 components: - pos: 75.5,13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17462 components: - pos: 75.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17463 components: - pos: 75.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17464 components: - pos: 76.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17465 components: - pos: 77.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17466 components: - pos: 78.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17467 components: - pos: 79.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17468 components: - pos: 80.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17469 components: - pos: 81.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17470 components: - pos: 82.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17471 components: - pos: 68.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17472 components: - pos: 67.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17473 components: - pos: 66.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17474 components: - pos: 65.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17550 components: - pos: 53.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17551 components: - pos: 52.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17552 components: - pos: 51.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17553 components: - pos: 51.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17554 components: - pos: 51.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17555 components: - pos: 51.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17556 components: - pos: 51.5,-40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17557 components: - pos: 51.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17558 components: - pos: 51.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17559 components: - pos: 51.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17560 components: - pos: 51.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17561 components: - pos: 51.5,-45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17562 components: - pos: 51.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17563 components: - pos: 52.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17564 components: - pos: 52.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17565 components: - pos: 52.5,-48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17566 components: - pos: 52.5,-49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17567 components: - pos: 52.5,-50.5 @@ -37559,15 +32657,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17568 components: - pos: 53.5,-48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17569 components: - pos: 54.5,-48.5 @@ -37575,22 +32669,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17570 components: - pos: 52.5,-45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17571 components: - pos: 53.5,-45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17572 components: - pos: 54.5,-45.5 @@ -37598,64 +32686,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17573 components: - pos: 52.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17574 components: - pos: 53.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17575 components: - pos: 54.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17576 components: - pos: 55.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17577 components: - pos: 56.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17578 components: - pos: 57.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17579 components: - pos: 58.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17580 components: - pos: 59.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17581 components: - pos: 60.5,-41.5 @@ -37663,8 +32733,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17582 components: - pos: 60.5,-40.5 @@ -37672,15 +32740,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17583 components: - pos: 57.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17584 components: - pos: 57.5,-43.5 @@ -37688,8 +32752,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17585 components: - pos: 56.5,-43.5 @@ -37697,8 +32759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17586 components: - pos: 58.5,-43.5 @@ -37706,57 +32766,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17587 components: - pos: 58.5,-40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17588 components: - pos: 58.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17589 components: - pos: 54.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17590 components: - pos: 55.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17591 components: - pos: 56.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17592 components: - pos: 57.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17593 components: - pos: 58.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17594 components: - pos: 53.5,-35.5 @@ -37764,15 +32808,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17595 components: - pos: 55.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17596 components: - pos: 55.5,-34.5 @@ -37780,8 +32820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17597 components: - pos: 55.5,-33.5 @@ -37789,8 +32827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17598 components: - pos: 55.5,-32.5 @@ -37798,8 +32834,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17599 components: - pos: 55.5,-31.5 @@ -37807,8 +32841,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17600 components: - pos: 55.5,-30.5 @@ -37816,8 +32848,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17601 components: - pos: 55.5,-25.5 @@ -37825,8 +32855,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17602 components: - pos: 55.5,-24.5 @@ -37834,8 +32862,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17603 components: - pos: 55.5,-23.5 @@ -37843,8 +32869,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17604 components: - pos: 55.5,-22.5 @@ -37852,8 +32876,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17605 components: - pos: 55.5,-21.5 @@ -37861,36 +32883,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17606 components: - pos: 55.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17607 components: - pos: 55.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17608 components: - pos: 56.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17609 components: - pos: 57.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17610 components: - pos: 57.5,-20.5 @@ -37898,78 +32910,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17715 components: - pos: 54.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17716 components: - pos: 54.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17717 components: - pos: 50.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17718 components: - pos: 49.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17719 components: - pos: 48.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17720 components: - pos: 47.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17721 components: - pos: 46.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17722 components: - pos: 45.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17723 components: - pos: 44.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17724 components: - pos: 44.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17725 components: - pos: 44.5,-40.5 @@ -37977,15 +32967,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17726 components: - pos: 43.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17727 components: - pos: 42.5,-42.5 @@ -37993,15 +32979,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17728 components: - pos: 46.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17729 components: - pos: 46.5,-40.5 @@ -38009,8 +32991,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17730 components: - pos: 47.5,-40.5 @@ -38018,8 +32998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17731 components: - pos: 48.5,-40.5 @@ -38027,64 +33005,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17732 components: - pos: 48.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17733 components: - pos: 46.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17734 components: - pos: 46.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17735 components: - pos: 46.5,-45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17736 components: - pos: 46.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17737 components: - pos: 45.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17738 components: - pos: 44.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17739 components: - pos: 43.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17740 components: - pos: 42.5,-46.5 @@ -38092,8 +33052,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17741 components: - pos: 42.5,-45.5 @@ -38101,29 +33059,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17742 components: - pos: 44.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17743 components: - pos: 44.5,-48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17744 components: - pos: 44.5,-49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17745 components: - pos: 44.5,-50.5 @@ -38131,15 +33081,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17746 components: - pos: 43.5,-48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17747 components: - pos: 42.5,-48.5 @@ -38147,43 +33093,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17748 components: - pos: 47.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17749 components: - pos: 48.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17750 components: - pos: 48.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17751 components: - pos: 48.5,-48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17752 components: - pos: 48.5,-49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17753 components: - pos: 48.5,-50.5 @@ -38191,218 +33125,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17754 components: - pos: 49.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17755 components: - pos: 50.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17756 components: - pos: 58.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17757 components: - pos: 59.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17758 components: - pos: 60.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17759 components: - pos: 61.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17760 components: - pos: 61.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17761 components: - pos: 61.5,-21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17762 components: - pos: 62.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17763 components: - pos: 63.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17771 components: - pos: 65.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17789 components: - pos: 54.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17797 components: - pos: 52.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17798 components: - pos: 52.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17799 components: - pos: 53.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17800 components: - pos: 54.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17801 components: - pos: 55.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17802 components: - pos: 56.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17803 components: - pos: 56.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17804 components: - pos: 56.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17805 components: - pos: 56.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17806 components: - pos: 56.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17807 components: - pos: 56.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17808 components: - pos: 56.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17809 components: - pos: 58.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17810 components: - pos: 58.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17811 components: - pos: 58.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17812 components: - pos: 58.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17813 components: - pos: 58.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17814 components: - pos: 58.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17815 components: - pos: 59.5,-14.5 @@ -38410,8 +33282,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17816 components: - pos: 59.5,-15.5 @@ -38419,57 +33289,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17817 components: - pos: 60.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17818 components: - pos: 61.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17819 components: - pos: 62.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17820 components: - pos: 61.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17821 components: - pos: 61.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17822 components: - pos: 61.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17823 components: - pos: 60.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17825 components: - pos: 57.5,-7.5 @@ -38477,8 +33331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17826 components: - pos: 57.5,-6.5 @@ -38486,8 +33338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17828 components: - pos: 57.5,-8.5 @@ -38495,15 +33345,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17829 components: - pos: 57.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17830 components: - pos: 57.5,-10.5 @@ -38511,8 +33357,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17831 components: - pos: 57.5,-11.5 @@ -38520,8 +33364,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17832 components: - pos: 58.5,-6.5 @@ -38529,8 +33371,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17833 components: - pos: 59.5,-6.5 @@ -38538,8 +33378,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17834 components: - pos: 60.5,-6.5 @@ -38547,8 +33385,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17835 components: - pos: 61.5,-6.5 @@ -38556,8 +33392,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17836 components: - pos: 62.5,-6.5 @@ -38565,8 +33399,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17837 components: - pos: 63.5,-6.5 @@ -38574,8 +33406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17838 components: - pos: 63.5,-7.5 @@ -38583,8 +33413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17839 components: - pos: 63.5,-8.5 @@ -38592,8 +33420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17840 components: - pos: 63.5,-9.5 @@ -38601,8 +33427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17841 components: - pos: 63.5,-10.5 @@ -38610,8 +33434,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17842 components: - pos: 63.5,-11.5 @@ -38619,8 +33441,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17843 components: - pos: 63.5,-12.5 @@ -38628,8 +33448,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17844 components: - pos: 62.5,-12.5 @@ -38637,71 +33455,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17845 components: - pos: 57.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17846 components: - pos: 57.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17847 components: - pos: 58.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17848 components: - pos: 59.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17849 components: - pos: 59.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17850 components: - pos: 59.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17851 components: - pos: 59.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17852 components: - pos: 59.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17853 components: - pos: 59.5,0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17854 components: - pos: 59.5,1.5 @@ -38709,8 +33507,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17855 components: - pos: 60.5,1.5 @@ -38718,8 +33514,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17856 components: - pos: 61.5,1.5 @@ -38727,372 +33521,266 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17857 components: - pos: 61.5,0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17858 components: - pos: 61.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17859 components: - pos: 61.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17860 components: - pos: 61.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17861 components: - pos: 61.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17862 components: - pos: 61.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17863 components: - pos: 60.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17864 components: - pos: 59.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17865 components: - pos: 58.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17866 components: - pos: 61.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17867 components: - pos: 62.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17868 components: - pos: 63.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17869 components: - pos: 64.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17870 components: - pos: 57.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17871 components: - pos: 56.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17872 components: - pos: 55.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17873 components: - pos: 54.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17874 components: - pos: 53.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17875 components: - pos: 52.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17876 components: - pos: 51.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17877 components: - pos: 50.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17878 components: - pos: 56.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17879 components: - pos: 56.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17880 components: - pos: 56.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17881 components: - pos: 55.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17882 components: - pos: 54.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17883 components: - pos: 53.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17884 components: - pos: 52.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17885 components: - pos: 56.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17886 components: - pos: 55.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17887 components: - pos: 54.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17888 components: - pos: 53.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17889 components: - pos: 52.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17890 components: - pos: 51.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17891 components: - pos: 50.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17892 components: - pos: 50.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17893 components: - pos: 50.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17894 components: - pos: 50.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17895 components: - pos: 50.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17896 components: - pos: 50.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17897 components: - pos: 51.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17898 components: - pos: 52.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17899 components: - pos: 53.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17900 components: - pos: 53.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17901 components: - pos: 53.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17902 components: - pos: 53.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17903 components: - pos: 53.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17904 components: - pos: 54.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17905 components: - pos: 55.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17906 components: - pos: 56.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17907 components: - pos: 56.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17908 components: - pos: 56.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17917 components: - pos: 34.5,-5.5 @@ -39100,302 +33788,216 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17918 components: - pos: 35.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17919 components: - pos: 36.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17920 components: - pos: 37.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17921 components: - pos: 38.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17922 components: - pos: 39.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17923 components: - pos: 40.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17924 components: - pos: 41.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17925 components: - pos: 42.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17926 components: - pos: 43.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17927 components: - pos: 44.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17928 components: - pos: 45.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17929 components: - pos: 46.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17930 components: - pos: 46.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17931 components: - pos: 46.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17932 components: - pos: 46.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17933 components: - pos: 46.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17934 components: - pos: 46.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17935 components: - pos: 46.5,0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17936 components: - pos: 46.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17937 components: - pos: 46.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17938 components: - pos: 47.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17939 components: - pos: 48.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17940 components: - pos: 48.5,3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17941 components: - pos: 48.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17942 components: - pos: 47.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17943 components: - pos: 46.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17944 components: - pos: 45.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17945 components: - pos: 44.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17946 components: - pos: 43.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17947 components: - pos: 42.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17948 components: - pos: 41.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17949 components: - pos: 40.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17950 components: - pos: 39.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17951 components: - pos: 38.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17952 components: - pos: 37.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17953 components: - pos: 36.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17954 components: - pos: 36.5,3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17955 components: - pos: 36.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17956 components: - pos: 37.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17957 components: - pos: 38.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17958 components: - pos: 39.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17959 components: - pos: 40.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17960 components: - pos: 40.5,1.5 @@ -39403,71 +34005,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17961 components: - pos: 40.5,0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17962 components: - pos: 41.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17963 components: - pos: 42.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17964 components: - pos: 43.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17965 components: - pos: 44.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17966 components: - pos: 45.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17967 components: - pos: 43.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17968 components: - pos: 43.5,0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17969 components: - pos: 43.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17970 components: - pos: 43.5,-1.5 @@ -39475,8 +34057,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17971 components: - pos: 47.5,-1.5 @@ -39484,15 +34064,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17972 components: - pos: 40.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17973 components: - pos: 40.5,-1.5 @@ -39500,449 +34076,321 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17974 components: - pos: 40.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17975 components: - pos: 41.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17976 components: - pos: 42.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17977 components: - pos: 43.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17978 components: - pos: 44.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17979 components: - pos: 45.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17980 components: - pos: 39.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17981 components: - pos: 38.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17982 components: - pos: 37.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17983 components: - pos: 36.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17984 components: - pos: 35.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17985 components: - pos: 35.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17986 components: - pos: 35.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17987 components: - pos: 34.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17988 components: - pos: 33.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17989 components: - pos: 33.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17990 components: - pos: 35.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17991 components: - pos: 35.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17992 components: - pos: 35.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17993 components: - pos: 35.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17994 components: - pos: 35.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17995 components: - pos: 35.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17996 components: - pos: 35.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17997 components: - pos: 35.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17998 components: - pos: 35.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17999 components: - pos: 36.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18000 components: - pos: 37.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18001 components: - pos: 38.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18002 components: - pos: 39.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18003 components: - pos: 40.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18004 components: - pos: 41.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18005 components: - pos: 42.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18006 components: - pos: 43.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18007 components: - pos: 44.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18008 components: - pos: 45.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18009 components: - pos: 46.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18012 components: - pos: 48.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18013 components: - pos: 48.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18014 components: - pos: 48.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18016 components: - pos: 46.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18017 components: - pos: 46.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18018 components: - pos: 46.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18019 components: - pos: 46.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18020 components: - pos: 47.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18021 components: - pos: 48.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18022 components: - pos: 49.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18023 components: - pos: 46.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18024 components: - pos: 46.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18025 components: - pos: 45.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18026 components: - pos: 44.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18027 components: - pos: 43.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18028 components: - pos: 42.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18029 components: - pos: 41.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18030 components: - pos: 40.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18031 components: - pos: 39.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18032 components: - pos: 38.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18033 components: - pos: 37.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18034 components: - pos: 36.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18035 components: - pos: 41.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18036 components: - pos: 41.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18037 components: - pos: 41.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18038 components: - pos: 41.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18039 components: - pos: 41.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18040 components: - pos: 38.5,-10.5 @@ -39950,29 +34398,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18041 components: - pos: 38.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18042 components: - pos: 38.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18043 components: - pos: 38.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18044 components: - pos: 38.5,-6.5 @@ -39980,8 +34420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18045 components: - pos: 43.5,-9.5 @@ -39989,8 +34427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18046 components: - pos: 43.5,-8.5 @@ -39998,8 +34434,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18047 components: - pos: 43.5,-7.5 @@ -40007,932 +34441,666 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18048 components: - pos: 42.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18049 components: - pos: 44.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18050 components: - pos: 45.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18051 components: - pos: 41.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18052 components: - pos: 41.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18053 components: - pos: 41.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18054 components: - pos: 41.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18055 components: - pos: 40.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18056 components: - pos: 40.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18057 components: - pos: 40.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18058 components: - pos: 39.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18059 components: - pos: 38.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18060 components: - pos: 37.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18061 components: - pos: 37.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18062 components: - pos: 37.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18063 components: - pos: 42.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18064 components: - pos: 43.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18065 components: - pos: 43.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18066 components: - pos: 43.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18067 components: - pos: 44.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18068 components: - pos: 45.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18069 components: - pos: 46.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18070 components: - pos: 46.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18071 components: - pos: 46.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18078 components: - pos: 36.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18079 components: - pos: 36.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18080 components: - pos: 23.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18081 components: - pos: 22.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18082 components: - pos: 21.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18083 components: - pos: 20.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18084 components: - pos: 20.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18085 components: - pos: 20.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18086 components: - pos: 20.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18087 components: - pos: 20.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18088 components: - pos: 20.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18089 components: - pos: 20.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18090 components: - pos: 20.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18091 components: - pos: 20.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18092 components: - pos: 20.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18093 components: - pos: 20.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18094 components: - pos: 20.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18095 components: - pos: 20.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18096 components: - pos: 20.5,-21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18097 components: - pos: 20.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18098 components: - pos: 20.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18099 components: - pos: 20.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18100 components: - pos: 20.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18101 components: - pos: 20.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18102 components: - pos: 20.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18103 components: - pos: 20.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18104 components: - pos: 20.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18105 components: - pos: 20.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18106 components: - pos: 19.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18107 components: - pos: 18.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18108 components: - pos: 17.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18109 components: - pos: 21.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18110 components: - pos: 22.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18111 components: - pos: 23.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18112 components: - pos: 24.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18113 components: - pos: 25.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18114 components: - pos: 26.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18115 components: - pos: 27.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18116 components: - pos: 28.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18117 components: - pos: 29.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18118 components: - pos: 30.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18119 components: - pos: 31.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18120 components: - pos: 31.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18121 components: - pos: 31.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18122 components: - pos: 31.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18123 components: - pos: 31.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18124 components: - pos: 30.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18125 components: - pos: 29.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18126 components: - pos: 28.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18127 components: - pos: 27.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18128 components: - pos: 26.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18129 components: - pos: 25.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18130 components: - pos: 24.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18131 components: - pos: 23.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18132 components: - pos: 22.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18133 components: - pos: 21.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18134 components: - pos: 20.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18135 components: - pos: 20.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18136 components: - pos: 20.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18137 components: - pos: 20.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18138 components: - pos: 17.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18139 components: - pos: 18.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18140 components: - pos: 19.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18141 components: - pos: 19.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18142 components: - pos: 20.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18143 components: - pos: 21.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18144 components: - pos: 19.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18145 components: - pos: 19.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18146 components: - pos: 19.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18147 components: - pos: 19.5,-40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18148 components: - pos: 19.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18149 components: - pos: 19.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18150 components: - pos: 19.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18151 components: - pos: 18.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18152 components: - pos: 17.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18153 components: - pos: 20.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18154 components: - pos: 21.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18155 components: - pos: 21.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18156 components: - pos: 21.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18157 components: - pos: 21.5,-40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18158 components: - pos: 21.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18159 components: - pos: 21.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18160 components: - pos: 19.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18161 components: - pos: 19.5,-45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18162 components: - pos: 21.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18163 components: - pos: 21.5,-45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18164 components: - pos: 21.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18165 components: - pos: -1.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18166 components: - pos: -1.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18167 components: - pos: -1.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18168 components: - pos: -0.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18169 components: - pos: 0.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18170 components: - pos: 1.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18171 components: - pos: 2.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18172 components: - pos: 3.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18173 components: - pos: 4.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18174 components: - pos: 5.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18175 components: - pos: 6.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18176 components: - pos: 7.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18177 components: - pos: 8.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18178 components: - pos: 9.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18179 components: - pos: 10.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18180 components: - pos: 11.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18181 components: - pos: 12.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18182 components: - pos: 13.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18183 components: - pos: 14.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18184 components: - pos: 15.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18185 components: - pos: 16.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18231 components: - pos: -13.5,-31.5 @@ -40940,8 +35108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18232 components: - pos: -12.5,-31.5 @@ -40949,624 +35115,446 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18233 components: - pos: -11.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18234 components: - pos: -11.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18235 components: - pos: -11.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18236 components: - pos: -12.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18237 components: - pos: -13.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18238 components: - pos: -10.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18239 components: - pos: -9.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18240 components: - pos: -11.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18241 components: - pos: -11.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18242 components: - pos: -12.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18243 components: - pos: -13.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18244 components: - pos: -14.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18245 components: - pos: -15.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18246 components: - pos: -16.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18247 components: - pos: -17.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18248 components: - pos: -18.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18249 components: - pos: -18.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18250 components: - pos: -18.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18251 components: - pos: -18.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18252 components: - pos: -18.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18253 components: - pos: -18.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18254 components: - pos: -18.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18255 components: - pos: -18.5,-40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18256 components: - pos: -18.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18257 components: - pos: -18.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18258 components: - pos: -17.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18259 components: - pos: -16.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18260 components: - pos: -15.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18261 components: - pos: -14.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18262 components: - pos: -13.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18263 components: - pos: -12.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18264 components: - pos: -11.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18265 components: - pos: -10.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18266 components: - pos: -9.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18267 components: - pos: -9.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18274 components: - pos: -9.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18275 components: - pos: -9.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18276 components: - pos: -10.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18277 components: - pos: -8.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18278 components: - pos: -7.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18279 components: - pos: -7.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18280 components: - pos: -7.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18281 components: - pos: -6.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18282 components: - pos: -6.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18283 components: - pos: -6.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18284 components: - pos: -6.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18285 components: - pos: -6.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18286 components: - pos: -6.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18287 components: - pos: -6.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18288 components: - pos: -6.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18289 components: - pos: -6.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18290 components: - pos: -6.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18291 components: - pos: -7.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18292 components: - pos: -8.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18293 components: - pos: -9.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18294 components: - pos: -10.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18295 components: - pos: -10.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18296 components: - pos: -6.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18297 components: - pos: -6.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18298 components: - pos: -6.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18299 components: - pos: -6.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18300 components: - pos: -6.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18301 components: - pos: -6.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18302 components: - pos: -6.5,-40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18303 components: - pos: -6.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18304 components: - pos: -6.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18305 components: - pos: -6.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18306 components: - pos: -6.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18307 components: - pos: -6.5,-45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18308 components: - pos: -6.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18309 components: - pos: -6.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18310 components: - pos: -6.5,-48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18311 components: - pos: -6.5,-49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18312 components: - pos: -7.5,-49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18313 components: - pos: -8.5,-49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18314 components: - pos: -9.5,-49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18315 components: - pos: -10.5,-49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18316 components: - pos: -11.5,-49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18317 components: - pos: -12.5,-49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18318 components: - pos: -6.5,-50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18319 components: - pos: -6.5,-51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18320 components: - pos: -7.5,-51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18321 components: - pos: -8.5,-51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18322 components: - pos: -9.5,-51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18323 components: - pos: -11.5,-51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18324 components: - pos: -10.5,-51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18325 components: - pos: -12.5,-51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18326 components: - pos: 3.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18327 components: - pos: 3.5,-47.5 @@ -41574,8 +35562,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18328 components: - pos: 3.5,-48.5 @@ -41583,8 +35569,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18329 components: - pos: 3.5,-49.5 @@ -41592,8 +35576,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18330 components: - pos: 2.5,-49.5 @@ -41601,8 +35583,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18331 components: - pos: 1.5,-49.5 @@ -41610,8 +35590,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18332 components: - pos: 0.5,-49.5 @@ -41619,8 +35597,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18333 components: - pos: -0.5,-49.5 @@ -41628,8 +35604,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18334 components: - pos: -1.5,-49.5 @@ -41637,8 +35611,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18335 components: - pos: -2.5,-49.5 @@ -41646,8 +35618,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18336 components: - pos: -2.5,-50.5 @@ -41655,8 +35625,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18337 components: - pos: 3.5,-49.5 @@ -41664,8 +35632,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18338 components: - pos: 4.5,-49.5 @@ -41673,8 +35639,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18339 components: - pos: 5.5,-49.5 @@ -41682,8 +35646,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18340 components: - pos: 6.5,-49.5 @@ -41691,8 +35653,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18341 components: - pos: 6.5,-48.5 @@ -41700,8 +35660,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18342 components: - pos: 6.5,-47.5 @@ -41709,8 +35667,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18343 components: - pos: 7.5,-47.5 @@ -41718,8 +35674,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18344 components: - pos: 8.5,-47.5 @@ -41727,8 +35681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18345 components: - pos: 9.5,-47.5 @@ -41736,15 +35688,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18346 components: - pos: -7.5,-45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18347 components: - pos: -8.5,-45.5 @@ -41752,8 +35700,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18348 components: - pos: -9.5,-45.5 @@ -41761,8 +35707,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18349 components: - pos: -10.5,-45.5 @@ -41770,8 +35714,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18350 components: - pos: -11.5,-45.5 @@ -41779,8 +35721,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18351 components: - pos: -12.5,-45.5 @@ -41788,8 +35728,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18352 components: - pos: -13.5,-45.5 @@ -41797,8 +35735,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18353 components: - pos: -14.5,-45.5 @@ -41806,8 +35742,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18354 components: - pos: -15.5,-45.5 @@ -41815,8 +35749,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18355 components: - pos: -16.5,-45.5 @@ -41824,8 +35756,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18356 components: - pos: -16.5,-46.5 @@ -41833,8 +35763,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18357 components: - pos: -17.5,-46.5 @@ -41842,8 +35770,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18358 components: - pos: -18.5,-46.5 @@ -41851,435 +35777,311 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18359 components: - pos: -18.5,-45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18360 components: - pos: -18.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18361 components: - pos: -18.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18400 components: - pos: -28.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18401 components: - pos: -28.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18402 components: - pos: -28.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18403 components: - pos: -27.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18404 components: - pos: -26.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18405 components: - pos: -25.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18406 components: - pos: -25.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18407 components: - pos: -25.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18408 components: - pos: -25.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18409 components: - pos: -25.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18410 components: - pos: -25.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18411 components: - pos: -25.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18412 components: - pos: -24.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18413 components: - pos: -23.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18414 components: - pos: -22.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18415 components: - pos: -21.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18416 components: - pos: -20.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18417 components: - pos: -19.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18418 components: - pos: -18.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18419 components: - pos: -17.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18420 components: - pos: -16.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18421 components: - pos: -15.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18422 components: - pos: -14.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18423 components: - pos: -13.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18424 components: - pos: -13.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18425 components: - pos: -13.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18426 components: - pos: -14.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18427 components: - pos: -15.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18428 components: - pos: -16.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18429 components: - pos: -17.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18430 components: - pos: -18.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18431 components: - pos: -19.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18432 components: - pos: -20.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18433 components: - pos: -21.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18434 components: - pos: -22.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18435 components: - pos: -23.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18436 components: - pos: -23.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18437 components: - pos: -23.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18438 components: - pos: -23.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18439 components: - pos: -22.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18440 components: - pos: -21.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18441 components: - pos: -20.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18442 components: - pos: -19.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18443 components: - pos: -18.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18444 components: - pos: -17.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18445 components: - pos: -23.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18446 components: - pos: -23.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18447 components: - pos: -23.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18448 components: - pos: -23.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18449 components: - pos: -23.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18450 components: - pos: -22.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18451 components: - pos: -23.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18452 components: - pos: -24.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18453 components: - pos: -25.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18454 components: - pos: -26.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18455 components: - pos: -27.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18456 components: - pos: -27.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18457 components: - pos: -27.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18458 components: - pos: -28.5,-33.5 @@ -42287,92 +36089,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18459 components: - pos: -24.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18460 components: - pos: -24.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18461 components: - pos: -24.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18462 components: - pos: -25.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18463 components: - pos: -26.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18464 components: - pos: -27.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18465 components: - pos: -23.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18466 components: - pos: -22.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18467 components: - pos: -22.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18468 components: - pos: -21.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18469 components: - pos: -23.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18470 components: - pos: -23.5,-40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18471 components: - pos: -23.5,-41.5 @@ -42380,8 +36156,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18472 components: - pos: -23.5,-42.5 @@ -42389,8 +36163,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18473 components: - pos: -23.5,-43.5 @@ -42398,8 +36170,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18474 components: - pos: -23.5,-44.5 @@ -42407,8 +36177,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18475 components: - pos: -22.5,-44.5 @@ -42416,8 +36184,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18476 components: - pos: -21.5,-44.5 @@ -42425,8 +36191,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18477 components: - pos: -22.5,-46.5 @@ -42434,8 +36198,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18478 components: - pos: -22.5,-45.5 @@ -42443,8 +36205,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18479 components: - pos: -23.5,-46.5 @@ -42452,225 +36212,161 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18495 components: - pos: -33.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18496 components: - pos: -32.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18497 components: - pos: -31.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18498 components: - pos: -30.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18499 components: - pos: -29.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18500 components: - pos: -29.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18501 components: - pos: -29.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18502 components: - pos: -29.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18503 components: - pos: -30.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18504 components: - pos: -31.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18505 components: - pos: -32.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18506 components: - pos: -33.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18507 components: - pos: -34.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18508 components: - pos: -35.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18509 components: - pos: -36.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18510 components: - pos: -37.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18511 components: - pos: -37.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18512 components: - pos: -37.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18513 components: - pos: -36.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18514 components: - pos: -35.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18515 components: - pos: -34.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18516 components: - pos: -33.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18517 components: - pos: -36.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18518 components: - pos: -36.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18519 components: - pos: -36.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18520 components: - pos: -35.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18521 components: - pos: -34.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18522 components: - pos: -33.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18523 components: - pos: -32.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18524 components: - pos: -31.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18525 components: - pos: -30.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18539 components: - pos: -40.5,-36.5 @@ -42678,407 +36374,291 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18540 components: - pos: -39.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18541 components: - pos: -38.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18542 components: - pos: -37.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18543 components: - pos: -36.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18544 components: - pos: -35.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18545 components: - pos: -34.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18546 components: - pos: -33.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18547 components: - pos: -32.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18548 components: - pos: -31.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18549 components: - pos: -30.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18550 components: - pos: -29.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18551 components: - pos: -34.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18552 components: - pos: -34.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18553 components: - pos: -35.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18554 components: - pos: -33.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18555 components: - pos: -39.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18556 components: - pos: -39.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18557 components: - pos: -39.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18558 components: - pos: -39.5,-40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18562 components: - pos: -39.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18563 components: - pos: -40.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18564 components: - pos: -40.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18565 components: - pos: -41.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18566 components: - pos: -42.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18567 components: - pos: -42.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18568 components: - pos: -42.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18569 components: - pos: -42.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18570 components: - pos: -42.5,-40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18571 components: - pos: -42.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18572 components: - pos: -42.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18573 components: - pos: -42.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18574 components: - pos: -41.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18575 components: - pos: -40.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18576 components: - pos: -29.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18577 components: - pos: -29.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18578 components: - pos: -29.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18579 components: - pos: -34.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18580 components: - pos: -34.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18581 components: - pos: -34.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18582 components: - pos: -34.5,-40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18583 components: - pos: -34.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18584 components: - pos: -34.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18585 components: - pos: -34.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18586 components: - pos: -34.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18587 components: - pos: -33.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18588 components: - pos: -33.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18589 components: - pos: -32.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18590 components: - pos: -32.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18591 components: - pos: -31.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18592 components: - pos: -30.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18593 components: - pos: -30.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18594 components: - pos: -31.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18595 components: - pos: -29.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18596 components: - pos: -29.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18597 components: - pos: -28.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18598 components: - pos: -29.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18599 components: - pos: -29.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18600 components: - pos: -27.5,-43.5 @@ -43086,8 +36666,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18601 components: - pos: -26.5,-43.5 @@ -43095,8 +36673,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18602 components: - pos: -27.5,-44.5 @@ -43104,8 +36680,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18603 components: - pos: -27.5,-45.5 @@ -43113,8 +36687,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18604 components: - pos: -27.5,-46.5 @@ -43122,8 +36694,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18605 components: - pos: -28.5,-46.5 @@ -43131,8 +36701,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18606 components: - pos: -29.5,-46.5 @@ -43140,8 +36708,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18607 components: - pos: -30.5,-46.5 @@ -43149,8 +36715,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18608 components: - pos: -31.5,-46.5 @@ -43158,8 +36722,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18609 components: - pos: -32.5,-46.5 @@ -43167,8 +36729,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18610 components: - pos: -33.5,-46.5 @@ -43176,8 +36736,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18611 components: - pos: -34.5,-46.5 @@ -43185,8 +36743,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18612 components: - pos: -35.5,-46.5 @@ -43194,8 +36750,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18613 components: - pos: -36.5,-46.5 @@ -43203,8 +36757,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18614 components: - pos: -37.5,-46.5 @@ -43212,22 +36764,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18616 components: - pos: -37.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18617 components: - pos: -37.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18619 components: - pos: -38.5,-46.5 @@ -43235,8 +36781,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18620 components: - pos: -39.5,-46.5 @@ -43244,8 +36788,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18621 components: - pos: -40.5,-46.5 @@ -43253,8 +36795,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18622 components: - pos: -41.5,-46.5 @@ -43262,8 +36802,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18623 components: - pos: -41.5,-47.5 @@ -43271,15 +36809,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18624 components: - pos: -41.5,-48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18625 components: - pos: -41.5,-49.5 @@ -43287,8 +36821,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18626 components: - pos: -41.5,-50.5 @@ -43296,8 +36828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18627 components: - pos: -41.5,-51.5 @@ -43305,8 +36835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18628 components: - pos: -41.5,-52.5 @@ -43314,8 +36842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18629 components: - pos: -42.5,-46.5 @@ -43323,8 +36849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18630 components: - pos: -43.5,-46.5 @@ -43332,8 +36856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18631 components: - pos: -44.5,-46.5 @@ -43341,8 +36863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18632 components: - pos: -45.5,-46.5 @@ -43350,8 +36870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18633 components: - pos: -45.5,-45.5 @@ -43359,8 +36877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18634 components: - pos: -45.5,-44.5 @@ -43368,8 +36884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18635 components: - pos: -45.5,-43.5 @@ -43377,8 +36891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18636 components: - pos: -45.5,-42.5 @@ -43386,8 +36898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18637 components: - pos: -45.5,-41.5 @@ -43395,8 +36905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18638 components: - pos: -45.5,-40.5 @@ -43404,8 +36912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18639 components: - pos: -46.5,-46.5 @@ -43413,8 +36919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18640 components: - pos: -47.5,-46.5 @@ -43422,8 +36926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18641 components: - pos: -48.5,-46.5 @@ -43431,8 +36933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18642 components: - pos: -49.5,-46.5 @@ -43440,8 +36940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18643 components: - pos: -50.5,-46.5 @@ -43449,8 +36947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18644 components: - pos: -51.5,-46.5 @@ -43458,8 +36954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18645 components: - pos: -52.5,-46.5 @@ -43467,8 +36961,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18663 components: - pos: -43.5,-23.5 @@ -43476,274 +36968,196 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18664 components: - pos: -43.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18665 components: - pos: -44.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18666 components: - pos: -45.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18667 components: - pos: -46.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18668 components: - pos: -46.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18669 components: - pos: -46.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18670 components: - pos: -46.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18671 components: - pos: -46.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18672 components: - pos: -45.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18673 components: - pos: -44.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18674 components: - pos: -43.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18675 components: - pos: -42.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18676 components: - pos: -42.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18677 components: - pos: -42.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18678 components: - pos: -42.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18679 components: - pos: -42.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18680 components: - pos: -41.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18681 components: - pos: -40.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18682 components: - pos: -40.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18683 components: - pos: -40.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18684 components: - pos: -40.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18685 components: - pos: -40.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18686 components: - pos: -40.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18687 components: - pos: -41.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18702 components: - pos: -52.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18703 components: - pos: -54.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18704 components: - pos: -55.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18705 components: - pos: -55.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18706 components: - pos: -56.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18707 components: - pos: -55.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18708 components: - pos: -55.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18709 components: - pos: -55.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18710 components: - pos: -55.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18711 components: - pos: -55.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18712 components: - pos: -55.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18713 components: - pos: -55.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18714 components: - pos: -55.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18715 components: - pos: -55.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18716 components: - pos: -55.5,-22.5 @@ -43751,8 +37165,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18717 components: - pos: -54.5,-22.5 @@ -43760,8 +37172,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18718 components: - pos: -53.5,-22.5 @@ -43769,8 +37179,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18719 components: - pos: -52.5,-22.5 @@ -43778,50 +37186,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18720 components: - pos: -51.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18721 components: - pos: -50.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18722 components: - pos: -49.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18723 components: - pos: -48.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18724 components: - pos: -51.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18725 components: - pos: -50.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18726 components: - pos: -53.5,-32.5 @@ -43829,78 +37223,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18727 components: - pos: -50.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18728 components: - pos: -50.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18729 components: - pos: -50.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18730 components: - pos: -49.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18731 components: - pos: -48.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18732 components: - pos: -48.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18733 components: - pos: -48.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18734 components: - pos: -48.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18735 components: - pos: -50.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18736 components: - pos: -51.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18744 components: - pos: -53.5,-38.5 @@ -43908,8 +37280,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18745 components: - pos: -54.5,-38.5 @@ -43917,8 +37287,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18746 components: - pos: -54.5,-37.5 @@ -43926,8 +37294,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18747 components: - pos: -54.5,-36.5 @@ -43935,8 +37301,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18748 components: - pos: -54.5,-35.5 @@ -43944,8 +37308,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18749 components: - pos: -54.5,-34.5 @@ -43953,8 +37315,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18750 components: - pos: -55.5,-34.5 @@ -43962,15 +37322,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18751 components: - pos: -55.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18752 components: - pos: -56.5,-34.5 @@ -43978,8 +37334,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18753 components: - pos: -57.5,-34.5 @@ -43987,8 +37341,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18754 components: - pos: -58.5,-34.5 @@ -43996,8 +37348,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18755 components: - pos: -59.5,-34.5 @@ -44005,8 +37355,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18756 components: - pos: -60.5,-34.5 @@ -44014,8 +37362,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18757 components: - pos: -60.5,-35.5 @@ -44023,36 +37369,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18758 components: - pos: -61.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18759 components: - pos: -62.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18760 components: - pos: -63.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18761 components: - pos: -63.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18762 components: - pos: -59.5,-33.5 @@ -44060,8 +37396,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18763 components: - pos: -59.5,-32.5 @@ -44069,8 +37403,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18764 components: - pos: -59.5,-31.5 @@ -44078,8 +37410,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18765 components: - pos: -59.5,-30.5 @@ -44087,8 +37417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18766 components: - pos: -59.5,-29.5 @@ -44096,8 +37424,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18767 components: - pos: -59.5,-28.5 @@ -44105,8 +37431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18768 components: - pos: -59.5,-27.5 @@ -44114,8 +37438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18769 components: - pos: -59.5,-26.5 @@ -44123,8 +37445,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18770 components: - pos: -59.5,-25.5 @@ -44132,8 +37452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18771 components: - pos: -60.5,-25.5 @@ -44141,15 +37459,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18772 components: - pos: -61.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18773 components: - pos: -62.5,-25.5 @@ -44157,8 +37471,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18774 components: - pos: -63.5,-25.5 @@ -44166,8 +37478,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18775 components: - pos: -64.5,-25.5 @@ -44175,8 +37485,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18776 components: - pos: -65.5,-25.5 @@ -44184,8 +37492,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18777 components: - pos: -56.5,-22.5 @@ -44193,8 +37499,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18778 components: - pos: -57.5,-22.5 @@ -44202,8 +37506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18779 components: - pos: -58.5,-22.5 @@ -44211,8 +37513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18780 components: - pos: -59.5,-22.5 @@ -44220,8 +37520,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18781 components: - pos: -59.5,-23.5 @@ -44229,8 +37527,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18782 components: - pos: -59.5,-24.5 @@ -44238,15 +37534,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18783 components: - pos: -49.5,11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18784 components: - pos: -50.5,11.5 @@ -44254,8 +37546,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18785 components: - pos: -51.5,11.5 @@ -44263,8 +37553,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18786 components: - pos: -51.5,11.5 @@ -44272,8 +37560,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18787 components: - pos: -52.5,11.5 @@ -44281,8 +37567,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18788 components: - pos: -53.5,11.5 @@ -44290,8 +37574,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18789 components: - pos: -54.5,11.5 @@ -44299,71 +37581,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18796 components: - pos: -48.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18797 components: - pos: -48.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18798 components: - pos: -49.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18799 components: - pos: -50.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18800 components: - pos: -50.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18801 components: - pos: -49.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18802 components: - pos: -49.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18803 components: - pos: -49.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18804 components: - pos: -49.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19025 components: - pos: 40.5,53.5 @@ -44371,8 +37633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19026 components: - pos: 39.5,53.5 @@ -44380,8 +37640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19027 components: - pos: 38.5,53.5 @@ -44389,8 +37647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19028 components: - pos: 37.5,53.5 @@ -44398,8 +37654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19029 components: - pos: 36.5,53.5 @@ -44407,8 +37661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19030 components: - pos: 36.5,54.5 @@ -44416,8 +37668,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19031 components: - pos: 36.5,55.5 @@ -44425,8 +37675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19032 components: - pos: 36.5,56.5 @@ -44434,8 +37682,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19033 components: - pos: 40.5,54.5 @@ -44443,8 +37689,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19034 components: - pos: 40.5,55.5 @@ -44452,8 +37696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19035 components: - pos: 40.5,56.5 @@ -44461,8 +37703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19344 components: - pos: 9.5,7.5 @@ -44470,8 +37710,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19345 components: - pos: 10.5,7.5 @@ -44479,8 +37717,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19346 components: - pos: 10.5,6.5 @@ -44488,8 +37724,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19347 components: - pos: 10.5,5.5 @@ -44497,8 +37731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19348 components: - pos: 10.5,4.5 @@ -44506,8 +37738,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19349 components: - pos: 10.5,3.5 @@ -44515,8 +37745,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19350 components: - pos: 10.5,2.5 @@ -44524,8 +37752,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19351 components: - pos: 10.5,1.5 @@ -44533,8 +37759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19352 components: - pos: 8.5,7.5 @@ -44542,8 +37766,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19353 components: - pos: 7.5,7.5 @@ -44551,8 +37773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19354 components: - pos: 7.5,6.5 @@ -44560,8 +37780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19355 components: - pos: 11.5,7.5 @@ -44569,8 +37787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19356 components: - pos: 12.5,7.5 @@ -44578,8 +37794,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19357 components: - pos: 13.5,7.5 @@ -44587,8 +37801,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19358 components: - pos: 14.5,7.5 @@ -44596,8 +37808,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19359 components: - pos: 15.5,7.5 @@ -44605,8 +37815,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19360 components: - pos: 16.5,7.5 @@ -44614,8 +37822,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19361 components: - pos: 17.5,7.5 @@ -44623,8 +37829,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19362 components: - pos: 18.5,7.5 @@ -44632,8 +37836,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19363 components: - pos: 19.5,7.5 @@ -44641,8 +37843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19364 components: - pos: 20.5,7.5 @@ -44650,134 +37850,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19365 components: - pos: 21.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19366 components: - pos: 22.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19367 components: - pos: 22.5,8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19368 components: - pos: 22.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19369 components: - pos: 22.5,10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19370 components: - pos: 22.5,11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19371 components: - pos: 24.5,8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19372 components: - pos: 23.5,8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19373 components: - pos: 25.5,8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19374 components: - pos: 25.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19375 components: - pos: 26.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19376 components: - pos: 27.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19377 components: - pos: -22.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19378 components: - pos: -21.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19379 components: - pos: -20.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19380 components: - pos: -20.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19381 components: - pos: -20.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19382 components: - pos: -20.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19383 components: - pos: -20.5,57.5 @@ -44785,8 +37947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19384 components: - pos: -20.5,58.5 @@ -44794,8 +37954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19385 components: - pos: -20.5,59.5 @@ -44803,15 +37961,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19413 components: - pos: 23.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19455 components: - pos: -15.5,-16.5 @@ -44819,141 +37973,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19456 components: - pos: -16.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19457 components: - pos: -17.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19458 components: - pos: -18.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19459 components: - pos: -19.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19460 components: - pos: -20.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19461 components: - pos: -21.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19462 components: - pos: -21.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19463 components: - pos: -21.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19464 components: - pos: -21.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19465 components: - pos: -21.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19466 components: - pos: -22.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19467 components: - pos: -23.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19468 components: - pos: -24.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19469 components: - pos: -25.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19470 components: - pos: -26.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19471 components: - pos: -26.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19472 components: - pos: -26.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19473 components: - pos: -26.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19474 components: - pos: -26.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19475 components: - pos: -26.5,-15.5 @@ -44961,22 +38075,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19476 components: - pos: -26.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19477 components: - pos: -26.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19478 components: - pos: -26.5,-12.5 @@ -44984,358 +38092,256 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19479 components: - pos: -26.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19480 components: - pos: -26.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19481 components: - pos: -25.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19482 components: - pos: -25.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19483 components: - pos: -25.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19484 components: - pos: -25.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19485 components: - pos: -25.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19486 components: - pos: -24.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19487 components: - pos: -23.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19489 components: - pos: -21.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19490 components: - pos: -20.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19491 components: - pos: -19.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19492 components: - pos: -18.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19493 components: - pos: -18.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19494 components: - pos: -18.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19495 components: - pos: -18.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19496 components: - pos: -18.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19497 components: - pos: -19.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19498 components: - pos: -20.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19499 components: - pos: -21.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19500 components: - pos: -22.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19501 components: - pos: -21.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19502 components: - pos: -23.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19503 components: - pos: -22.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19504 components: - pos: -22.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19505 components: - pos: -22.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19506 components: - pos: -21.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19507 components: - pos: -20.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19508 components: - pos: -19.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19509 components: - pos: -21.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19510 components: - pos: -21.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19511 components: - pos: -21.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19512 components: - pos: -18.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19513 components: - pos: -17.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19514 components: - pos: -16.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19515 components: - pos: -16.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19516 components: - pos: -16.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19517 components: - pos: -16.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19518 components: - pos: -16.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19519 components: - pos: -16.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19520 components: - pos: -16.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19521 components: - pos: -16.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19522 components: - pos: -16.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19523 components: - pos: -20.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19524 components: - pos: -19.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19525 components: - pos: -18.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19526 components: - pos: -17.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19527 components: - pos: -16.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19528 components: - pos: -16.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19529 components: - pos: -15.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19530 components: - pos: -14.5,-16.5 @@ -45343,8 +38349,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19531 components: - pos: -14.5,-15.5 @@ -45352,8 +38356,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19532 components: - pos: -14.5,-14.5 @@ -45361,8 +38363,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19533 components: - pos: -14.5,-13.5 @@ -45370,8 +38370,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19534 components: - pos: -14.5,-17.5 @@ -45379,8 +38377,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19535 components: - pos: -14.5,-18.5 @@ -45388,8 +38384,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19536 components: - pos: -14.5,-19.5 @@ -45397,8 +38391,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19537 components: - pos: -13.5,-19.5 @@ -45406,8 +38398,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19538 components: - pos: -12.5,-19.5 @@ -45415,8 +38405,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19539 components: - pos: -11.5,-19.5 @@ -45424,8 +38412,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19540 components: - pos: -10.5,-19.5 @@ -45433,29 +38419,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19541 components: - pos: -13.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19542 components: - pos: -12.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19543 components: - pos: -11.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19544 components: - pos: -10.5,-17.5 @@ -45463,8 +38441,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19545 components: - pos: -10.5,-16.5 @@ -45472,8 +38448,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19546 components: - pos: -9.5,-16.5 @@ -45481,8 +38455,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19547 components: - pos: -8.5,-16.5 @@ -45490,8 +38462,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19548 components: - pos: -8.5,-16.5 @@ -45499,8 +38469,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19549 components: - pos: -7.5,-16.5 @@ -45508,8 +38476,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19550 components: - pos: -6.5,-16.5 @@ -45517,246 +38483,176 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19551 components: - pos: -5.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19552 components: - pos: -5.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19553 components: - pos: -5.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19554 components: - pos: -5.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19555 components: - pos: -5.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19556 components: - pos: -5.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19557 components: - pos: -5.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19558 components: - pos: -5.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19559 components: - pos: -5.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19560 components: - pos: -5.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19561 components: - pos: -4.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19562 components: - pos: -5.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19563 components: - pos: -5.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19564 components: - pos: -5.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19565 components: - pos: -5.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19566 components: - pos: -5.5,-21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19567 components: - pos: -5.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19568 components: - pos: -4.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19569 components: - pos: -3.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19570 components: - pos: -3.5,-21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19571 components: - pos: -3.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19572 components: - pos: -3.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19573 components: - pos: -3.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19574 components: - pos: -3.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19575 components: - pos: -3.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19576 components: - pos: -3.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19577 components: - pos: -3.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19578 components: - pos: -3.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19579 components: - pos: -3.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19580 components: - pos: -3.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19581 components: - pos: -3.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19582 components: - pos: -3.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19583 components: - pos: -3.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19584 components: - pos: -3.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19585 components: - pos: -10.5,-20.5 @@ -45764,8 +38660,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19586 components: - pos: -10.5,-21.5 @@ -45773,8 +38667,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19587 components: - pos: -10.5,-22.5 @@ -45782,8 +38674,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19588 components: - pos: -11.5,-22.5 @@ -45791,8 +38681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19589 components: - pos: -12.5,-22.5 @@ -45800,8 +38688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19590 components: - pos: -13.5,-22.5 @@ -45809,8 +38695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19591 components: - pos: -14.5,-22.5 @@ -45818,8 +38702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19592 components: - pos: -15.5,-22.5 @@ -45827,8 +38709,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19593 components: - pos: -16.5,-22.5 @@ -45836,8 +38716,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19594 components: - pos: -17.5,-22.5 @@ -45845,78 +38723,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19595 components: - pos: -20.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19596 components: - pos: -20.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19597 components: - pos: -20.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19598 components: - pos: -20.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19599 components: - pos: -22.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19600 components: - pos: -21.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19601 components: - pos: -23.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19602 components: - pos: -24.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19603 components: - pos: -24.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19604 components: - pos: -24.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19605 components: - pos: -24.5,-5.5 @@ -45924,8 +38780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19608 components: - pos: -34.5,-16.5 @@ -45933,134 +38787,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19609 components: - pos: -34.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19610 components: - pos: -34.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19611 components: - pos: -34.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19612 components: - pos: -33.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19613 components: - pos: -32.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19614 components: - pos: -31.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19615 components: - pos: -30.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19616 components: - pos: -35.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19617 components: - pos: -36.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19618 components: - pos: -37.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19619 components: - pos: -38.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19620 components: - pos: -37.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19621 components: - pos: -37.5,-21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19622 components: - pos: -37.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19623 components: - pos: -36.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19624 components: - pos: -36.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19625 components: - pos: -36.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19626 components: - pos: -35.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19627 components: - pos: -34.5,-24.5 @@ -46068,64 +38884,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19628 components: - pos: -34.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19629 components: - pos: -33.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19630 components: - pos: -32.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19631 components: - pos: -32.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19632 components: - pos: -31.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19633 components: - pos: -30.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19634 components: - pos: -30.5,-21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19635 components: - pos: -30.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19636 components: - pos: -32.5,-9.5 @@ -46133,78 +38931,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19637 components: - pos: -32.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19638 components: - pos: -33.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19639 components: - pos: -33.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19640 components: - pos: -33.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19641 components: - pos: -34.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19642 components: - pos: -35.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19643 components: - pos: -36.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19644 components: - pos: -37.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19645 components: - pos: -38.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19646 components: - pos: -38.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19647 components: - pos: -39.5,-12.5 @@ -46212,50 +38988,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19648 components: - pos: -40.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19649 components: - pos: -41.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19650 components: - pos: -42.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19651 components: - pos: -42.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19652 components: - pos: -42.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19653 components: - pos: -43.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19654 components: - pos: -44.5,-13.5 @@ -46263,8 +39025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19655 components: - pos: -44.5,-12.5 @@ -46272,8 +39032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19656 components: - pos: -44.5,-11.5 @@ -46281,8 +39039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19657 components: - pos: -45.5,-11.5 @@ -46290,8 +39046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19658 components: - pos: -46.5,-11.5 @@ -46299,8 +39053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19659 components: - pos: -47.5,-11.5 @@ -46308,8 +39060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19660 components: - pos: -47.5,-10.5 @@ -46317,8 +39067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19661 components: - pos: -47.5,-9.5 @@ -46326,8 +39074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19662 components: - pos: -47.5,-8.5 @@ -46335,8 +39081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19663 components: - pos: -47.5,-7.5 @@ -46344,8 +39088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19664 components: - pos: -47.5,-6.5 @@ -46353,8 +39095,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19665 components: - pos: -47.5,-5.5 @@ -46362,8 +39102,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19666 components: - pos: -47.5,-4.5 @@ -46371,8 +39109,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19667 components: - pos: -47.5,-3.5 @@ -46380,8 +39116,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19668 components: - pos: -47.5,-2.5 @@ -46389,8 +39123,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19669 components: - pos: -48.5,-2.5 @@ -46398,8 +39130,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19670 components: - pos: -48.5,-1.5 @@ -46407,8 +39137,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19671 components: - pos: -48.5,-0.5 @@ -46416,8 +39144,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19672 components: - pos: -48.5,0.5 @@ -46425,8 +39151,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19673 components: - pos: -48.5,1.5 @@ -46434,64 +39158,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19674 components: - pos: -49.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19675 components: - pos: -50.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19676 components: - pos: -51.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19677 components: - pos: -52.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19678 components: - pos: -53.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19679 components: - pos: -54.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19680 components: - pos: -54.5,0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19681 components: - pos: -54.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19682 components: - pos: -48.5,-5.5 @@ -46499,8 +39205,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19683 components: - pos: -49.5,-5.5 @@ -46508,8 +39212,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19684 components: - pos: -50.5,-5.5 @@ -46517,8 +39219,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19685 components: - pos: -51.5,-5.5 @@ -46526,8 +39226,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19686 components: - pos: -52.5,-5.5 @@ -46535,8 +39233,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19687 components: - pos: -53.5,-5.5 @@ -46544,8 +39240,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19688 components: - pos: -54.5,-5.5 @@ -46553,8 +39247,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19689 components: - pos: -54.5,-6.5 @@ -46562,8 +39254,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19690 components: - pos: -54.5,-7.5 @@ -46571,8 +39261,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19691 components: - pos: -54.5,-8.5 @@ -46580,8 +39268,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19692 components: - pos: -54.5,-9.5 @@ -46589,8 +39275,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19693 components: - pos: -54.5,-10.5 @@ -46598,8 +39282,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19694 components: - pos: -54.5,-11.5 @@ -46607,8 +39289,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19695 components: - pos: -54.5,-12.5 @@ -46616,8 +39296,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19696 components: - pos: -54.5,-13.5 @@ -46625,8 +39303,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19697 components: - pos: -54.5,-14.5 @@ -46634,8 +39310,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19698 components: - pos: -54.5,-15.5 @@ -46643,8 +39317,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19699 components: - pos: -54.5,-16.5 @@ -46652,8 +39324,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19700 components: - pos: -54.5,-17.5 @@ -46661,8 +39331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19701 components: - pos: -54.5,-18.5 @@ -46670,8 +39338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19702 components: - pos: -54.5,-19.5 @@ -46679,8 +39345,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19703 components: - pos: -53.5,-18.5 @@ -46688,8 +39352,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19704 components: - pos: -52.5,-18.5 @@ -46697,8 +39359,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19705 components: - pos: -52.5,-19.5 @@ -46706,8 +39366,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19706 components: - pos: -51.5,-19.5 @@ -46715,8 +39373,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19707 components: - pos: -50.5,-19.5 @@ -46724,8 +39380,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19708 components: - pos: -49.5,-19.5 @@ -46733,8 +39387,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19709 components: - pos: -48.5,-19.5 @@ -46742,8 +39394,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19710 components: - pos: -47.5,-19.5 @@ -46751,8 +39401,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19711 components: - pos: -46.5,-19.5 @@ -46760,8 +39408,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19712 components: - pos: -45.5,-19.5 @@ -46769,8 +39415,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19713 components: - pos: -44.5,-19.5 @@ -46778,8 +39422,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19714 components: - pos: -44.5,-18.5 @@ -46787,8 +39429,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19715 components: - pos: -44.5,-17.5 @@ -46796,8 +39436,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19716 components: - pos: -44.5,-16.5 @@ -46805,8 +39443,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19717 components: - pos: -44.5,-15.5 @@ -46814,8 +39450,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19718 components: - pos: -44.5,-14.5 @@ -46823,57 +39457,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19719 components: - pos: -42.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19720 components: - pos: -42.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19721 components: - pos: -42.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19722 components: - pos: -42.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19723 components: - pos: -42.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19724 components: - pos: -42.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19725 components: - pos: -42.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19726 components: - pos: -45.5,-10.5 @@ -46881,8 +39499,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19727 components: - pos: -45.5,-9.5 @@ -46890,8 +39506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19728 components: - pos: -45.5,-8.5 @@ -46899,8 +39513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19729 components: - pos: -45.5,-7.5 @@ -46908,8 +39520,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19730 components: - pos: -45.5,-6.5 @@ -46917,29 +39527,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19731 components: - pos: -33.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19732 components: - pos: -33.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19733 components: - pos: -33.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19734 components: - pos: -33.5,-5.5 @@ -46947,106 +39549,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19735 components: - pos: -33.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19736 components: - pos: -33.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19737 components: - pos: -33.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19738 components: - pos: -34.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19739 components: - pos: -35.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19740 components: - pos: -36.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19741 components: - pos: -37.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19742 components: - pos: -38.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19743 components: - pos: -39.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19744 components: - pos: -40.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19745 components: - pos: -41.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19746 components: - pos: -42.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19747 components: - pos: -42.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19748 components: - pos: -42.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19749 components: - pos: -34.5,-8.5 @@ -47054,8 +39626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19750 components: - pos: -35.5,-8.5 @@ -47063,15 +39633,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19751 components: - pos: -36.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19752 components: - pos: -37.5,-8.5 @@ -47079,15 +39645,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19753 components: - pos: -38.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19754 components: - pos: -39.5,-8.5 @@ -47095,197 +39657,141 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19755 components: - pos: -40.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19756 components: - pos: -41.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19757 components: - pos: -32.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19758 components: - pos: -31.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19759 components: - pos: -30.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19760 components: - pos: -29.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19761 components: - pos: -29.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19762 components: - pos: -29.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19763 components: - pos: -31.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19764 components: - pos: -30.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19765 components: - pos: -29.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19766 components: - pos: -28.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19767 components: - pos: -28.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19768 components: - pos: -28.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19769 components: - pos: -28.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19770 components: - pos: -28.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19771 components: - pos: -29.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19772 components: - pos: -30.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19773 components: - pos: -31.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19774 components: - pos: -32.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19775 components: - pos: -33.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19776 components: - pos: -34.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19777 components: - pos: -35.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19778 components: - pos: -36.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19779 components: - pos: -37.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 20270 components: - pos: -56.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 20271 components: - pos: -55.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 20272 components: - pos: -54.5,38.5 @@ -47293,22 +39799,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20273 components: - pos: -56.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 20274 components: - pos: -55.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 20275 components: - pos: -54.5,47.5 @@ -47316,15 +39816,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20669 components: - pos: 21.5,-83.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 20686 components: - pos: -43.5,-19.5 @@ -47332,8 +39828,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21498 components: - pos: -46.5,16.5 @@ -47341,8 +39835,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21499 components: - pos: -45.5,16.5 @@ -47350,22 +39842,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21718 components: - pos: 14.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21719 components: - pos: 14.5,49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21824 components: - pos: 1.5,46.5 @@ -47373,29 +39859,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21942 components: - pos: 10.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21943 components: - pos: 11.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21944 components: - pos: 12.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21977 components: - pos: 16.5,16.5 @@ -47403,15 +39881,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22007 components: - pos: -64.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22008 components: - pos: -65.5,-35.5 @@ -47419,8 +39893,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22009 components: - pos: -65.5,-34.5 @@ -47428,8 +39900,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22010 components: - pos: -65.5,-33.5 @@ -47437,8 +39907,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22013 components: - pos: -59.5,-40.5 @@ -47446,8 +39914,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22014 components: - pos: -58.5,-40.5 @@ -47455,8 +39921,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22015 components: - pos: -57.5,-40.5 @@ -47464,8 +39928,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22021 components: - pos: -62.5,-40.5 @@ -47473,8 +39935,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22022 components: - pos: -62.5,-41.5 @@ -47482,8 +39942,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22023 components: - pos: -62.5,-42.5 @@ -47491,8 +39949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22063 components: - pos: 16.5,6.5 @@ -47500,8 +39956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22064 components: - pos: 16.5,5.5 @@ -47509,8 +39963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22065 components: - pos: 16.5,4.5 @@ -47518,8 +39970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22066 components: - pos: 16.5,3.5 @@ -47527,8 +39977,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22067 components: - pos: 16.5,2.5 @@ -47536,8 +39984,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22068 components: - pos: 16.5,1.5 @@ -47545,8 +39991,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22069 components: - pos: 15.5,1.5 @@ -47554,8 +39998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22070 components: - pos: 14.5,1.5 @@ -47563,8 +40005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22071 components: - pos: 13.5,1.5 @@ -47572,8 +40012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22072 components: - pos: 12.5,1.5 @@ -47581,8 +40019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22073 components: - pos: 11.5,1.5 @@ -47590,8 +40026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22074 components: - pos: 10.5,1.5 @@ -47599,8 +40033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22075 components: - pos: 13.5,2.5 @@ -47608,8 +40040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22363 components: - pos: 10.5,-8.5 @@ -47617,8 +40047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22364 components: - pos: -14.5,-31.5 @@ -47626,29 +40054,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22365 components: - pos: -14.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22582 components: - pos: -3.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22638 components: - pos: 40.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22703 components: - pos: 15.5,-18.5 @@ -47656,8 +40076,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22704 components: - pos: 16.5,-18.5 @@ -47665,8 +40083,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22740 components: - pos: -36.5,37.5 @@ -47674,8 +40090,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22822 components: - pos: -31.5,37.5 @@ -47683,8 +40097,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22823 components: - pos: -32.5,37.5 @@ -47692,8 +40104,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22824 components: - pos: -33.5,37.5 @@ -47701,8 +40111,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22825 components: - pos: -34.5,37.5 @@ -47710,8 +40118,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22826 components: - pos: -35.5,37.5 @@ -47719,169 +40125,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22887 components: - pos: 66.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22892 components: - pos: 63.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22911 components: - pos: 65.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22917 components: - pos: 64.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22922 components: - pos: 67.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22963 components: - pos: 50.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22964 components: - pos: 50.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22965 components: - pos: 50.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22966 components: - pos: 49.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22967 components: - pos: 48.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22968 components: - pos: 48.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22969 components: - pos: 48.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22998 components: - pos: 29.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 23016 components: - pos: -6.5,-52.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 23017 components: - pos: -6.5,-53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 23018 components: - pos: -6.5,-54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 23019 components: - pos: -6.5,-55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 23020 components: - pos: -6.5,-56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 23021 components: - pos: -6.5,-58.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 23022 components: - pos: -6.5,-59.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 23023 components: - pos: -6.5,-61.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 23024 components: - pos: -5.5,-61.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 23025 components: - pos: -4.5,-62.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 23026 components: - pos: -4.5,-63.5 @@ -47889,43 +40247,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23033 components: - pos: 24.5,79.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 23034 components: - pos: 26.5,79.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 23038 components: - pos: -6.5,-57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 23039 components: - pos: -6.5,-60.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 23040 components: - pos: -6.5,-62.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 23041 components: - pos: -6.5,-63.5 @@ -47933,8 +40279,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23042 components: - pos: -6.5,-64.5 @@ -47942,15 +40286,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23043 components: - pos: -4.5,-61.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 23044 components: - pos: -4.5,-64.5 @@ -47958,15 +40298,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23487 components: - pos: 0.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 23488 components: - pos: -0.5,-15.5 @@ -47974,8 +40310,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23489 components: - pos: -1.5,-15.5 @@ -47983,8 +40317,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23490 components: - pos: -1.5,-14.5 @@ -47992,8 +40324,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23491 components: - pos: -1.5,-13.5 @@ -48001,8 +40331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23492 components: - pos: -1.5,-16.5 @@ -48010,8 +40338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23728 components: - pos: -1.5,-17.5 @@ -48019,8 +40345,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23734 components: - pos: -1.5,-18.5 @@ -48028,8 +40352,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24127 components: - pos: -56.5,11.5 @@ -48037,8 +40359,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24128 components: - pos: -55.5,11.5 @@ -48046,8 +40366,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24130 components: - pos: -1.5,-19.5 @@ -48055,8 +40373,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24212 components: - pos: -1.5,-20.5 @@ -48064,43 +40380,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24482 components: - pos: -54.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24483 components: - pos: -52.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24488 components: - pos: -54.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24494 components: - pos: -53.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24603 components: - pos: -12.5,25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24796 components: - pos: -0.5,-20.5 @@ -48108,8 +40412,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24798 components: - pos: 0.5,-20.5 @@ -48117,8 +40419,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24804 components: - pos: 0.5,-21.5 @@ -48126,29 +40426,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25113 components: - pos: 13.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25115 components: - pos: 14.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25117 components: - pos: 15.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25188 components: - pos: 21.5,-82.5 @@ -48156,8 +40448,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25253 components: - pos: -64.5,-39.5 @@ -48165,15 +40455,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25311 components: - pos: 34.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25312 components: - pos: 21.5,-81.5 @@ -48181,36 +40467,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25313 components: - pos: 19.5,-86.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25314 components: - pos: 19.5,-85.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25315 components: - pos: 19.5,-84.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25316 components: - pos: 19.5,-83.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25317 components: - pos: 19.5,-82.5 @@ -48218,8 +40494,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25318 components: - pos: 19.5,-81.5 @@ -48227,50 +40501,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25339 components: - pos: -12.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25340 components: - pos: -10.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25341 components: - pos: -11.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25342 components: - pos: -12.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25343 components: - pos: -12.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25344 components: - pos: -10.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25387 components: - pos: 55.5,9.5 @@ -48278,8 +40538,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25388 components: - pos: 56.5,9.5 @@ -48287,8 +40545,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25389 components: - pos: 57.5,9.5 @@ -48296,8 +40552,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25390 components: - pos: 58.5,9.5 @@ -48305,8 +40559,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25391 components: - pos: 59.5,9.5 @@ -48314,8 +40566,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25392 components: - pos: 60.5,9.5 @@ -48323,8 +40573,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25393 components: - pos: 61.5,9.5 @@ -48332,8 +40580,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25394 components: - pos: 62.5,9.5 @@ -48341,8 +40587,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25395 components: - pos: 63.5,9.5 @@ -48350,8 +40594,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25396 components: - pos: 64.5,9.5 @@ -48359,8 +40601,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25397 components: - pos: 65.5,9.5 @@ -48368,8 +40608,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25398 components: - pos: 66.5,9.5 @@ -48377,8 +40615,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25399 components: - pos: 67.5,9.5 @@ -48386,8 +40622,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25400 components: - pos: 68.5,9.5 @@ -48395,8 +40629,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25401 components: - pos: 69.5,9.5 @@ -48404,8 +40636,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25402 components: - pos: 70.5,9.5 @@ -48413,8 +40643,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25403 components: - pos: 71.5,9.5 @@ -48422,15 +40650,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25404 components: - pos: 72.5,5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25405 components: - pos: 72.5,6.5 @@ -48438,8 +40662,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25406 components: - pos: 72.5,7.5 @@ -48447,36 +40669,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25407 components: - pos: 73.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25408 components: - pos: 74.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25453 components: - pos: -37.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25454 components: - pos: -37.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25455 components: - pos: -37.5,-5.5 @@ -48484,22 +40696,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25544 components: - pos: -36.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25545 components: - pos: -35.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25546 components: - pos: -34.5,45.5 @@ -48507,8 +40713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25547 components: - pos: -33.5,45.5 @@ -48516,8 +40720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25548 components: - pos: -33.5,46.5 @@ -48525,8 +40727,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25549 components: - pos: -37.5,45.5 @@ -48534,8 +40734,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25550 components: - pos: -33.5,47.5 @@ -48543,8 +40741,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25551 components: - pos: -33.5,48.5 @@ -48552,8 +40748,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25552 components: - pos: -37.5,47.5 @@ -48561,8 +40755,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25553 components: - pos: -37.5,48.5 @@ -48570,8 +40762,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25554 components: - pos: -37.5,46.5 @@ -48579,8 +40769,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25555 components: - pos: -37.5,49.5 @@ -48588,8 +40776,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25556 components: - pos: -33.5,49.5 @@ -48597,8 +40783,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25557 components: - pos: -34.5,49.5 @@ -48606,8 +40790,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25558 components: - pos: -35.5,49.5 @@ -48615,8 +40797,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25559 components: - pos: -36.5,49.5 @@ -48624,22 +40804,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25718 components: - pos: 30.5,74.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25719 components: - pos: 30.5,75.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25720 components: - pos: 30.5,76.5 @@ -48647,29 +40821,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25721 components: - pos: 30.5,77.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25722 components: - pos: 30.5,78.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25835 components: - pos: 30.5,79.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25836 components: - pos: 30.5,80.5 @@ -48677,8 +40843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25837 components: - pos: 29.5,80.5 @@ -48686,8 +40850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25838 components: - pos: 28.5,80.5 @@ -48695,8 +40857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25839 components: - pos: 27.5,80.5 @@ -48704,8 +40864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25840 components: - pos: 26.5,80.5 @@ -48713,8 +40871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25841 components: - pos: 31.5,80.5 @@ -48722,15 +40878,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25842 components: - pos: 31.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25843 components: - pos: 32.5,73.5 @@ -48738,8 +40890,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25844 components: - pos: 32.5,74.5 @@ -48747,8 +40897,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25845 components: - pos: 32.5,75.5 @@ -48756,50 +40904,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25963 components: - pos: 50.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25988 components: - pos: -4.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25989 components: - pos: -3.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26011 components: - pos: -56.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26012 components: - pos: -55.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26013 components: - pos: -54.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26014 components: - pos: -54.5,52.5 @@ -48807,8 +40941,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26015 components: - pos: -54.5,53.5 @@ -48816,8 +40948,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26016 components: - pos: -53.5,53.5 @@ -48825,8 +40955,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26017 components: - pos: -52.5,53.5 @@ -48834,8 +40962,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26018 components: - pos: -51.5,53.5 @@ -48843,8 +40969,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26019 components: - pos: -50.5,53.5 @@ -48852,8 +40976,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26020 components: - pos: -49.5,53.5 @@ -48861,8 +40983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26021 components: - pos: -48.5,53.5 @@ -48870,8 +40990,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26022 components: - pos: -47.5,53.5 @@ -48879,8 +40997,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26023 components: - pos: -47.5,54.5 @@ -48888,8 +41004,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26024 components: - pos: -46.5,54.5 @@ -48897,8 +41011,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26025 components: - pos: -45.5,54.5 @@ -48906,8 +41018,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26026 components: - pos: -44.5,54.5 @@ -48915,8 +41025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26027 components: - pos: -43.5,54.5 @@ -48924,8 +41032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26028 components: - pos: -42.5,54.5 @@ -48933,8 +41039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26029 components: - pos: -41.5,54.5 @@ -48942,8 +41046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26030 components: - pos: -40.5,54.5 @@ -48951,8 +41053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26126 components: - pos: -45.5,-39.5 @@ -48960,22 +41060,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26127 components: - pos: -46.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26131 components: - pos: -47.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26215 components: - pos: -26.5,19.5 @@ -48983,134 +41077,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26216 components: - pos: -26.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26217 components: - pos: -25.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26218 components: - pos: -27.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26219 components: - pos: -27.5,17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26220 components: - pos: -27.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26221 components: - pos: -28.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26222 components: - pos: -29.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26223 components: - pos: -30.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26224 components: - pos: -31.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26225 components: - pos: -32.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26226 components: - pos: -33.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26227 components: - pos: -27.5,19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26228 components: - pos: -28.5,19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26229 components: - pos: -29.5,19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26230 components: - pos: -30.5,19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26231 components: - pos: -31.5,19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26232 components: - pos: -32.5,19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26233 components: - pos: -33.5,19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 26234 components: - pos: -34.5,19.5 @@ -49118,8 +41174,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26235 components: - pos: -34.5,18.5 @@ -49127,8 +41181,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26236 components: - pos: -34.5,17.5 @@ -49136,8 +41188,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 26237 components: - pos: -34.5,16.5 @@ -49145,8 +41195,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableApcStack entities: - uid: 4173 @@ -49277,8 +41325,6 @@ entities: - pos: 14.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 354 components: - pos: 16.5,-18.5 @@ -49286,8 +41332,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 361 components: - pos: 16.5,-17.5 @@ -49295,8 +41339,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1081 components: - pos: 14.5,-21.5 @@ -49304,8 +41346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2220 components: - pos: 16.5,-20.5 @@ -49313,8 +41353,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2225 components: - pos: 16.5,-13.5 @@ -49322,15 +41360,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 2230 components: - pos: 16.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 3684 components: - pos: 15.5,-20.5 @@ -49338,8 +41372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3777 components: - pos: 15.5,-13.5 @@ -49347,8 +41379,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3778 components: - pos: 16.5,-14.5 @@ -49356,8 +41386,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4164 components: - pos: -19.5,84.5 @@ -49365,15 +41393,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4487 components: - pos: -22.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4523 components: - pos: -28.5,44.5 @@ -49381,8 +41405,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4532 components: - pos: -22.5,46.5 @@ -49390,1723 +41412,1231 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4533 components: - pos: -28.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4539 components: - pos: -25.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4540 components: - pos: -25.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4541 components: - pos: -25.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4542 components: - pos: -25.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4543 components: - pos: -24.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4544 components: - pos: -23.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4545 components: - pos: -22.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4546 components: - pos: -21.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4547 components: - pos: -20.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4548 components: - pos: -19.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4549 components: - pos: -19.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4550 components: - pos: -19.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4551 components: - pos: -19.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4552 components: - pos: -19.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4553 components: - pos: -19.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4554 components: - pos: -19.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4555 components: - pos: -18.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4556 components: - pos: -17.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4557 components: - pos: -16.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4558 components: - pos: -15.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4559 components: - pos: -14.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4560 components: - pos: -13.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4561 components: - pos: -19.5,33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4562 components: - pos: -19.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4563 components: - pos: -19.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4564 components: - pos: -20.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4565 components: - pos: -21.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4566 components: - pos: -22.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4567 components: - pos: -23.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4568 components: - pos: -23.5,30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4569 components: - pos: -23.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4570 components: - pos: -23.5,28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4571 components: - pos: -23.5,27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4572 components: - pos: -23.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4573 components: - pos: -23.5,25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4574 components: - pos: -23.5,24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4575 components: - pos: -23.5,23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4576 components: - pos: -23.5,22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4577 components: - pos: -23.5,21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4578 components: - pos: -23.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4579 components: - pos: -23.5,19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4580 components: - pos: -23.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4581 components: - pos: -23.5,17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4582 components: - pos: -23.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4583 components: - pos: -23.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4584 components: - pos: -23.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4585 components: - pos: -23.5,13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4586 components: - pos: -23.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4587 components: - pos: -23.5,11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4588 components: - pos: -23.5,10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4589 components: - pos: -23.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4590 components: - pos: -23.5,8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4591 components: - pos: -23.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4592 components: - pos: -23.5,6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4593 components: - pos: -23.5,5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4594 components: - pos: -23.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4595 components: - pos: -23.5,3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4596 components: - pos: -23.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4597 components: - pos: -23.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4598 components: - pos: -23.5,0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4599 components: - pos: -23.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4600 components: - pos: -23.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4601 components: - pos: -23.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4602 components: - pos: -22.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4603 components: - pos: -21.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4604 components: - pos: -20.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4605 components: - pos: -19.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4606 components: - pos: -18.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4607 components: - pos: -17.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4608 components: - pos: -16.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4609 components: - pos: -15.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4610 components: - pos: -14.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4611 components: - pos: -13.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4612 components: - pos: -12.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4613 components: - pos: -11.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4614 components: - pos: -10.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4615 components: - pos: -9.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4616 components: - pos: -8.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4617 components: - pos: -7.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4618 components: - pos: -6.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4619 components: - pos: -5.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4620 components: - pos: -4.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4621 components: - pos: -3.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4622 components: - pos: -2.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4623 components: - pos: -1.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4624 components: - pos: -0.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4625 components: - pos: 0.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4626 components: - pos: 1.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4627 components: - pos: 2.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4628 components: - pos: 3.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4629 components: - pos: 4.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4630 components: - pos: 5.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4631 components: - pos: 6.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4632 components: - pos: 7.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4633 components: - pos: -5.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4634 components: - pos: -5.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4635 components: - pos: -5.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4636 components: - pos: -5.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4637 components: - pos: -5.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4638 components: - pos: -5.5,-40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4639 components: - pos: -5.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4640 components: - pos: -5.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4641 components: - pos: -5.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4642 components: - pos: -5.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4643 components: - pos: -5.5,-45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4644 components: - pos: -5.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4645 components: - pos: -5.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4646 components: - pos: -5.5,-48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4647 components: - pos: -5.5,-49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4648 components: - pos: -5.5,-50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4649 components: - pos: -5.5,-51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4650 components: - pos: -5.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4651 components: - pos: -5.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4652 components: - pos: -5.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4653 components: - pos: -5.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4654 components: - pos: -5.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4655 components: - pos: -5.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4656 components: - pos: -5.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4657 components: - pos: -5.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4658 components: - pos: -5.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4659 components: - pos: -5.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4660 components: - pos: -5.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4661 components: - pos: -5.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4662 components: - pos: -5.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4663 components: - pos: -5.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4664 components: - pos: -5.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4665 components: - pos: -5.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4666 components: - pos: -5.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4667 components: - pos: -5.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4668 components: - pos: -5.5,-21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4669 components: - pos: -5.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4670 components: - pos: -5.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4671 components: - pos: -5.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4672 components: - pos: -5.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4673 components: - pos: -5.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4674 components: - pos: -5.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4675 components: - pos: -5.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4676 components: - pos: -5.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4677 components: - pos: -5.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4678 components: - pos: -5.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4679 components: - pos: -5.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4680 components: - pos: -5.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4681 components: - pos: -5.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4682 components: - pos: 8.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4683 components: - pos: 9.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4684 components: - pos: 10.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4685 components: - pos: 11.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4686 components: - pos: 12.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4687 components: - pos: 13.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4688 components: - pos: 14.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4689 components: - pos: 15.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4690 components: - pos: 16.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4691 components: - pos: 17.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4692 components: - pos: 18.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4693 components: - pos: 19.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4694 components: - pos: 20.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4695 components: - pos: 21.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4696 components: - pos: 22.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4697 components: - pos: 23.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4698 components: - pos: 24.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4699 components: - pos: 25.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4700 components: - pos: 26.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4701 components: - pos: 27.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4702 components: - pos: 27.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4703 components: - pos: 27.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4704 components: - pos: 27.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4705 components: - pos: 27.5,0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4706 components: - pos: 27.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4707 components: - pos: 27.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4708 components: - pos: 27.5,3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4709 components: - pos: 27.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4710 components: - pos: 28.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4711 components: - pos: 29.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4712 components: - pos: 30.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4713 components: - pos: 31.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4714 components: - pos: 31.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4715 components: - pos: 31.5,5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4716 components: - pos: 31.5,6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4717 components: - pos: 31.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4718 components: - pos: 31.5,8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4719 components: - pos: 31.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4720 components: - pos: 31.5,10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4721 components: - pos: 31.5,11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4722 components: - pos: 31.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4723 components: - pos: 31.5,13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4724 components: - pos: 31.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4725 components: - pos: 31.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4726 components: - pos: 31.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4727 components: - pos: 31.5,17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4728 components: - pos: 31.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4729 components: - pos: 31.5,19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4730 components: - pos: 31.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4731 components: - pos: 31.5,21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4732 components: - pos: 31.5,22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4733 components: - pos: 31.5,23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4734 components: - pos: 31.5,24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4735 components: - pos: 31.5,25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4736 components: - pos: 31.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4737 components: - pos: 31.5,27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4738 components: - pos: 31.5,28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4739 components: - pos: 31.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4740 components: - pos: 31.5,30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4741 components: - pos: 31.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4742 components: - pos: 31.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4743 components: - pos: 31.5,33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4744 components: - pos: 31.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4745 components: - pos: 31.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4746 components: - pos: 31.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4747 components: - pos: 31.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4748 components: - pos: 31.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4749 components: - pos: 31.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4750 components: - pos: 31.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4751 components: - pos: 31.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4752 components: - pos: 31.5,42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4753 components: - pos: 31.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4754 components: - pos: 31.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4755 components: - pos: 31.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4756 components: - pos: 31.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4757 components: - pos: 31.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4758 components: - pos: 31.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4759 components: - pos: 31.5,49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4760 components: - pos: 31.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4761 components: - pos: 31.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4762 components: - pos: 30.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4763 components: - pos: 29.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4764 components: - pos: 28.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4765 components: - pos: 27.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4766 components: - pos: 26.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4767 components: - pos: 25.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4768 components: - pos: 24.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4769 components: - pos: 23.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4770 components: - pos: 22.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4771 components: - pos: 21.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4772 components: - pos: 20.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4773 components: - pos: 19.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4774 components: - pos: 18.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4775 components: - pos: 17.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4776 components: - pos: 16.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4777 components: - pos: 15.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4778 components: - pos: 14.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4779 components: - pos: 13.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4780 components: - pos: 12.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4781 components: - pos: 11.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4782 components: - pos: 30.5,30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4783 components: - pos: 29.5,30.5 @@ -51114,8 +42644,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4784 components: - pos: 28.5,30.5 @@ -51123,8 +42651,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4785 components: - pos: 27.5,30.5 @@ -51132,8 +42658,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4786 components: - pos: 26.5,30.5 @@ -51141,8 +42665,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4787 components: - pos: 25.5,30.5 @@ -51150,8 +42672,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4788 components: - pos: 24.5,30.5 @@ -51159,8 +42679,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4789 components: - pos: 23.5,30.5 @@ -51168,8 +42686,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4790 components: - pos: 22.5,30.5 @@ -51177,8 +42693,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4791 components: - pos: 21.5,30.5 @@ -51186,8 +42700,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4792 components: - pos: 20.5,30.5 @@ -51195,309 +42707,221 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4793 components: - pos: 19.5,30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4794 components: - pos: 18.5,30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4795 components: - pos: 18.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4796 components: - pos: 17.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4797 components: - pos: 16.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4798 components: - pos: 15.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4799 components: - pos: 14.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4800 components: - pos: 13.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4801 components: - pos: 12.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4802 components: - pos: 11.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4803 components: - pos: 10.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4804 components: - pos: 9.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4805 components: - pos: 8.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4806 components: - pos: 7.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4807 components: - pos: 6.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4808 components: - pos: 5.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4809 components: - pos: 4.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4810 components: - pos: 3.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4811 components: - pos: 2.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4812 components: - pos: 1.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4813 components: - pos: 0.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4814 components: - pos: -0.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4815 components: - pos: -1.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4816 components: - pos: -2.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4817 components: - pos: -3.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4818 components: - pos: -4.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4819 components: - pos: -5.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4820 components: - pos: -6.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4821 components: - pos: -7.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4822 components: - pos: -8.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4823 components: - pos: -9.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4824 components: - pos: -10.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4825 components: - pos: -11.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4826 components: - pos: -12.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4827 components: - pos: -13.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4828 components: - pos: -14.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4829 components: - pos: -15.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4830 components: - pos: -16.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4831 components: - pos: -17.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4832 components: - pos: -18.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4833 components: - pos: -5.5,30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4834 components: - pos: -5.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4835 components: - pos: -5.5,28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4836 components: - pos: -5.5,27.5 @@ -51505,8 +42929,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4837 components: - pos: -5.5,26.5 @@ -51514,8 +42936,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4838 components: - pos: -5.5,25.5 @@ -51523,8 +42943,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4839 components: - pos: -5.5,24.5 @@ -51532,8 +42950,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4840 components: - pos: -5.5,23.5 @@ -51541,8 +42957,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4841 components: - pos: -5.5,22.5 @@ -51550,8 +42964,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4842 components: - pos: -5.5,21.5 @@ -51559,8 +42971,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4843 components: - pos: -5.5,20.5 @@ -51568,8 +42978,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4844 components: - pos: -5.5,19.5 @@ -51577,8 +42985,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4845 components: - pos: -6.5,19.5 @@ -51586,8 +42992,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4846 components: - pos: -7.5,19.5 @@ -51595,8 +42999,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4847 components: - pos: -8.5,19.5 @@ -51604,8 +43006,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4848 components: - pos: -8.5,18.5 @@ -51613,8 +43013,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4849 components: - pos: -8.5,17.5 @@ -51622,8 +43020,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4850 components: - pos: -8.5,16.5 @@ -51631,8 +43027,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4851 components: - pos: -8.5,15.5 @@ -51640,8 +43034,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4852 components: - pos: -8.5,14.5 @@ -51649,8 +43041,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4853 components: - pos: -8.5,13.5 @@ -51658,8 +43048,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4854 components: - pos: -8.5,12.5 @@ -51667,8 +43055,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4855 components: - pos: -9.5,12.5 @@ -51676,8 +43062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4856 components: - pos: -10.5,12.5 @@ -51685,8 +43069,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4857 components: - pos: -10.5,11.5 @@ -51694,8 +43076,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4858 components: - pos: -10.5,10.5 @@ -51703,8 +43083,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4859 components: - pos: -10.5,9.5 @@ -51712,8 +43090,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4860 components: - pos: -10.5,8.5 @@ -51721,8 +43097,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4861 components: - pos: -10.5,7.5 @@ -51730,8 +43104,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4862 components: - pos: -10.5,6.5 @@ -51739,8 +43111,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4863 components: - pos: -10.5,5.5 @@ -51748,8 +43118,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4864 components: - pos: -10.5,4.5 @@ -51757,8 +43125,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4865 components: - pos: -11.5,4.5 @@ -51766,8 +43132,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4866 components: - pos: -12.5,4.5 @@ -51775,8 +43139,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4867 components: - pos: -13.5,4.5 @@ -51784,8 +43146,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4868 components: - pos: -14.5,4.5 @@ -51793,8 +43153,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4869 components: - pos: -15.5,4.5 @@ -51802,8 +43160,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4870 components: - pos: -16.5,4.5 @@ -51811,8 +43167,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4871 components: - pos: -16.5,3.5 @@ -51820,8 +43174,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4872 components: - pos: -16.5,2.5 @@ -51829,8 +43181,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4873 components: - pos: -16.5,1.5 @@ -51838,8 +43188,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4874 components: - pos: -16.5,0.5 @@ -51847,8 +43195,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4875 components: - pos: -16.5,-0.5 @@ -51856,8 +43202,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4876 components: - pos: -15.5,-0.5 @@ -51865,8 +43209,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4877 components: - pos: -14.5,-0.5 @@ -51874,22 +43216,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4878 components: - pos: -14.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4879 components: - pos: -6.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4880 components: - pos: -7.5,-13.5 @@ -51897,8 +43233,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4881 components: - pos: -8.5,-13.5 @@ -51906,8 +43240,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4882 components: - pos: -9.5,-13.5 @@ -51915,8 +43247,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4883 components: - pos: -10.5,-13.5 @@ -51924,8 +43254,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4884 components: - pos: -11.5,-13.5 @@ -51933,8 +43261,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4885 components: - pos: -12.5,-13.5 @@ -51942,8 +43268,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4886 components: - pos: -13.5,-13.5 @@ -51951,8 +43275,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4887 components: - pos: -14.5,-13.5 @@ -51960,8 +43282,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4888 components: - pos: -14.5,-14.5 @@ -51969,8 +43289,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4889 components: - pos: -14.5,-15.5 @@ -51978,8 +43296,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4890 components: - pos: -14.5,-16.5 @@ -51987,8 +43303,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4891 components: - pos: -14.5,-17.5 @@ -51996,8 +43310,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4892 components: - pos: -14.5,-18.5 @@ -52005,8 +43317,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4893 components: - pos: -14.5,-19.5 @@ -52014,8 +43324,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4894 components: - pos: -13.5,-19.5 @@ -52023,8 +43331,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4895 components: - pos: -12.5,-19.5 @@ -52032,8 +43338,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4896 components: - pos: -11.5,-19.5 @@ -52041,8 +43345,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4897 components: - pos: -10.5,-19.5 @@ -52050,8 +43352,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4898 components: - pos: -10.5,-20.5 @@ -52059,8 +43359,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4899 components: - pos: -10.5,-21.5 @@ -52068,22 +43366,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4904 components: - pos: -6.5,-45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4905 components: - pos: -13.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4906 components: - pos: -12.5,-15.5 @@ -52091,15 +43383,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4907 components: - pos: -7.5,-45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4908 components: - pos: -8.5,-45.5 @@ -52107,8 +43395,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4909 components: - pos: -9.5,-45.5 @@ -52116,8 +43402,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4910 components: - pos: -10.5,-45.5 @@ -52125,8 +43409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4911 components: - pos: -11.5,-45.5 @@ -52134,8 +43416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4912 components: - pos: -12.5,-45.5 @@ -52143,8 +43423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4913 components: - pos: -13.5,-45.5 @@ -52152,8 +43430,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4914 components: - pos: -14.5,-45.5 @@ -52161,8 +43437,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4915 components: - pos: -15.5,-45.5 @@ -52170,8 +43444,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4916 components: - pos: -16.5,-45.5 @@ -52179,8 +43451,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4922 components: - pos: -22.5,-45.5 @@ -52188,8 +43458,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4923 components: - pos: -22.5,-44.5 @@ -52197,8 +43465,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4924 components: - pos: -23.5,-44.5 @@ -52206,8 +43472,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4925 components: - pos: -24.5,-44.5 @@ -52215,8 +43479,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4926 components: - pos: -25.5,-44.5 @@ -52224,8 +43486,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4927 components: - pos: -26.5,-44.5 @@ -52233,8 +43493,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4928 components: - pos: -27.5,-44.5 @@ -52242,8 +43500,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4929 components: - pos: -27.5,-45.5 @@ -52251,8 +43507,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4930 components: - pos: -27.5,-46.5 @@ -52260,8 +43514,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4931 components: - pos: -28.5,-46.5 @@ -52269,8 +43521,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4932 components: - pos: -29.5,-46.5 @@ -52278,8 +43528,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4933 components: - pos: -30.5,-46.5 @@ -52287,8 +43535,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4934 components: - pos: -31.5,-46.5 @@ -52296,8 +43542,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4935 components: - pos: -32.5,-46.5 @@ -52305,8 +43549,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4936 components: - pos: -33.5,-46.5 @@ -52314,8 +43556,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4937 components: - pos: -34.5,-46.5 @@ -52323,8 +43563,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4938 components: - pos: -35.5,-46.5 @@ -52332,8 +43570,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4939 components: - pos: -36.5,-46.5 @@ -52341,8 +43577,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4940 components: - pos: -37.5,-46.5 @@ -52350,8 +43584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4941 components: - pos: -38.5,-46.5 @@ -52359,8 +43591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4942 components: - pos: -39.5,-46.5 @@ -52368,8 +43598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4943 components: - pos: -40.5,-46.5 @@ -52377,8 +43605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4944 components: - pos: -41.5,-46.5 @@ -52386,8 +43612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4945 components: - pos: -42.5,-46.5 @@ -52395,8 +43619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4946 components: - pos: -43.5,-46.5 @@ -52404,8 +43626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4947 components: - pos: -44.5,-46.5 @@ -52413,8 +43633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4948 components: - pos: -45.5,-46.5 @@ -52422,8 +43640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4949 components: - pos: -46.5,-46.5 @@ -52431,8 +43647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4950 components: - pos: -47.5,-46.5 @@ -52440,8 +43654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4951 components: - pos: -48.5,-46.5 @@ -52449,8 +43661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4952 components: - pos: -49.5,-46.5 @@ -52458,8 +43668,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4953 components: - pos: -50.5,-46.5 @@ -52467,8 +43675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4954 components: - pos: -51.5,-46.5 @@ -52476,8 +43682,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4955 components: - pos: -52.5,-46.5 @@ -52485,8 +43689,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4956 components: - pos: -53.5,-46.5 @@ -52494,8 +43696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4957 components: - pos: -54.5,-46.5 @@ -52503,8 +43703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4958 components: - pos: -54.5,-45.5 @@ -52512,8 +43710,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4959 components: - pos: -54.5,-44.5 @@ -52521,8 +43717,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4960 components: - pos: -54.5,-43.5 @@ -52530,8 +43724,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4961 components: - pos: -54.5,-42.5 @@ -52539,8 +43731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4962 components: - pos: -54.5,-41.5 @@ -52548,8 +43738,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4963 components: - pos: -54.5,-40.5 @@ -52557,8 +43745,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4964 components: - pos: -54.5,-39.5 @@ -52566,8 +43752,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4965 components: - pos: -54.5,-38.5 @@ -52575,8 +43759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4966 components: - pos: -54.5,-37.5 @@ -52584,8 +43766,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4967 components: - pos: -54.5,-36.5 @@ -52593,8 +43773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4968 components: - pos: -54.5,-35.5 @@ -52602,8 +43780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4969 components: - pos: -54.5,-34.5 @@ -52611,8 +43787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4970 components: - pos: -55.5,-34.5 @@ -52620,8 +43794,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4971 components: - pos: -56.5,-34.5 @@ -52629,8 +43801,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4972 components: - pos: -57.5,-34.5 @@ -52638,22 +43808,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4973 components: - pos: -4.5,-51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4974 components: - pos: -3.5,-51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4975 components: - pos: -2.5,-51.5 @@ -52661,8 +43825,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4976 components: - pos: -2.5,-50.5 @@ -52670,8 +43832,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4977 components: - pos: -2.5,-49.5 @@ -52679,8 +43839,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4978 components: - pos: -1.5,-49.5 @@ -52688,8 +43846,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4979 components: - pos: -0.5,-49.5 @@ -52697,8 +43853,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4980 components: - pos: 0.5,-49.5 @@ -52706,8 +43860,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4981 components: - pos: 1.5,-49.5 @@ -52715,8 +43867,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4982 components: - pos: 2.5,-49.5 @@ -52724,8 +43874,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4983 components: - pos: 3.5,-49.5 @@ -52733,8 +43881,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4984 components: - pos: 4.5,-49.5 @@ -52742,8 +43888,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4985 components: - pos: 5.5,-49.5 @@ -52751,8 +43895,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4986 components: - pos: 6.5,-49.5 @@ -52760,8 +43902,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4995 components: - pos: 6.5,-48.5 @@ -52769,8 +43909,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4996 components: - pos: 6.5,-47.5 @@ -52778,8 +43916,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4997 components: - pos: 7.5,-47.5 @@ -52787,8 +43923,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4998 components: - pos: 8.5,-47.5 @@ -52796,8 +43930,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4999 components: - pos: 9.5,-47.5 @@ -52805,8 +43937,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5000 components: - pos: 10.5,-47.5 @@ -52814,8 +43944,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5001 components: - pos: 11.5,-47.5 @@ -52823,225 +43951,161 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5002 components: - pos: 12.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5003 components: - pos: 32.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5004 components: - pos: 33.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5005 components: - pos: 34.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5006 components: - pos: 35.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5007 components: - pos: 36.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5008 components: - pos: 37.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5009 components: - pos: 38.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5010 components: - pos: 39.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5011 components: - pos: 40.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5012 components: - pos: 41.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5013 components: - pos: 42.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5014 components: - pos: 43.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5015 components: - pos: 44.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5016 components: - pos: 45.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5017 components: - pos: 46.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5018 components: - pos: 47.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5019 components: - pos: 48.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5020 components: - pos: 49.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5021 components: - pos: 50.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5022 components: - pos: 51.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5023 components: - pos: 52.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5024 components: - pos: 53.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5025 components: - pos: 54.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5026 components: - pos: 55.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5027 components: - pos: 56.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5028 components: - pos: 57.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5029 components: - pos: 58.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5030 components: - pos: 59.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5031 components: - pos: 60.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5032 components: - pos: 54.5,5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5033 components: - pos: 54.5,6.5 @@ -53049,8 +44113,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5034 components: - pos: 54.5,7.5 @@ -53058,8 +44120,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5035 components: - pos: 54.5,8.5 @@ -53067,8 +44127,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5036 components: - pos: 54.5,9.5 @@ -53076,8 +44134,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5037 components: - pos: 53.5,9.5 @@ -53085,8 +44141,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5038 components: - pos: 52.5,9.5 @@ -53094,8 +44148,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5039 components: - pos: 51.5,9.5 @@ -53103,8 +44155,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5040 components: - pos: 50.5,9.5 @@ -53112,8 +44162,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5041 components: - pos: 49.5,9.5 @@ -53121,8 +44169,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5042 components: - pos: 48.5,9.5 @@ -53130,8 +44176,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5043 components: - pos: 47.5,9.5 @@ -53139,8 +44183,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5044 components: - pos: 46.5,9.5 @@ -53148,8 +44190,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5045 components: - pos: 45.5,9.5 @@ -53157,8 +44197,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5046 components: - pos: 44.5,9.5 @@ -53166,8 +44204,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5047 components: - pos: 43.5,9.5 @@ -53175,8 +44211,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5048 components: - pos: 42.5,9.5 @@ -53184,8 +44218,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5049 components: - pos: 41.5,9.5 @@ -53193,8 +44225,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5050 components: - pos: 41.5,8.5 @@ -53202,8 +44232,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5051 components: - pos: 40.5,8.5 @@ -53211,8 +44239,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5052 components: - pos: 39.5,8.5 @@ -53220,8 +44246,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5053 components: - pos: 38.5,8.5 @@ -53229,8 +44253,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5054 components: - pos: 37.5,8.5 @@ -53238,8 +44260,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5055 components: - pos: 36.5,8.5 @@ -53247,8 +44267,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5056 components: - pos: 35.5,8.5 @@ -53256,8 +44274,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5057 components: - pos: 35.5,7.5 @@ -53265,64 +44281,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5058 components: - pos: 34.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5059 components: - pos: 33.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5060 components: - pos: 32.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5061 components: - pos: 27.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5062 components: - pos: 27.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5063 components: - pos: 28.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5064 components: - pos: 29.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5065 components: - pos: 30.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5066 components: - pos: 31.5,-4.5 @@ -53330,8 +44328,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5067 components: - pos: 31.5,-5.5 @@ -53339,8 +44335,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5068 components: - pos: 31.5,-6.5 @@ -53348,8 +44342,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5069 components: - pos: 31.5,-7.5 @@ -53357,8 +44349,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5070 components: - pos: 31.5,-8.5 @@ -53366,8 +44356,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5071 components: - pos: 31.5,-9.5 @@ -53375,8 +44363,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5072 components: - pos: 31.5,-10.5 @@ -53384,8 +44370,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5073 components: - pos: 31.5,-11.5 @@ -53393,8 +44377,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5074 components: - pos: 30.5,-11.5 @@ -53402,8 +44384,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5075 components: - pos: 29.5,-11.5 @@ -53411,8 +44391,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5076 components: - pos: 28.5,-11.5 @@ -53420,8 +44398,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5077 components: - pos: 27.5,-11.5 @@ -53429,8 +44405,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5078 components: - pos: 26.5,-11.5 @@ -53438,8 +44412,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5079 components: - pos: 25.5,-11.5 @@ -53447,8 +44419,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5080 components: - pos: 24.5,-11.5 @@ -53456,8 +44426,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5081 components: - pos: 23.5,-11.5 @@ -53465,8 +44433,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5082 components: - pos: 22.5,-11.5 @@ -53474,8 +44440,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5083 components: - pos: 22.5,-12.5 @@ -53483,435 +44447,311 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5084 components: - pos: 21.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5085 components: - pos: 20.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5086 components: - pos: 19.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5087 components: - pos: 18.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5088 components: - pos: 18.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5089 components: - pos: 18.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5090 components: - pos: 18.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5091 components: - pos: 18.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5092 components: - pos: 18.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5093 components: - pos: 18.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5094 components: - pos: 18.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5095 components: - pos: 18.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5096 components: - pos: 18.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5097 components: - pos: 18.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5098 components: - pos: 18.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5099 components: - pos: 18.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5100 components: - pos: 18.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5101 components: - pos: 18.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5102 components: - pos: 18.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5103 components: - pos: 18.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5104 components: - pos: 18.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5105 components: - pos: 18.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5106 components: - pos: 18.5,-21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5107 components: - pos: 18.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5108 components: - pos: 18.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5109 components: - pos: 17.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5110 components: - pos: 16.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5111 components: - pos: 15.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5112 components: - pos: 14.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5113 components: - pos: 13.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5114 components: - pos: 12.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5115 components: - pos: 11.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5116 components: - pos: 10.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5117 components: - pos: 9.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5118 components: - pos: 8.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5119 components: - pos: 7.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5120 components: - pos: 6.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5121 components: - pos: 5.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5122 components: - pos: 4.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5123 components: - pos: 3.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5124 components: - pos: 2.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5125 components: - pos: 1.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5126 components: - pos: 0.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5127 components: - pos: -0.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5128 components: - pos: -1.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5129 components: - pos: -2.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5130 components: - pos: -3.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5131 components: - pos: -4.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5132 components: - pos: 19.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5133 components: - pos: 19.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5134 components: - pos: 19.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5135 components: - pos: 19.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5136 components: - pos: 19.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5137 components: - pos: 19.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5138 components: - pos: 19.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5139 components: - pos: 19.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5140 components: - pos: 19.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5141 components: - pos: 19.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5142 components: - pos: 19.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5143 components: - pos: 32.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5144 components: - pos: 33.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5145 components: - pos: 34.5,46.5 @@ -53919,8 +44759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5146 components: - pos: 35.5,46.5 @@ -53928,8 +44766,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5147 components: - pos: 36.5,46.5 @@ -53937,8 +44773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5148 components: - pos: 37.5,46.5 @@ -53946,8 +44780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5149 components: - pos: 38.5,46.5 @@ -53955,8 +44787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5150 components: - pos: 39.5,46.5 @@ -53964,8 +44794,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5151 components: - pos: 39.5,45.5 @@ -53973,8 +44801,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5152 components: - pos: 39.5,44.5 @@ -53982,8 +44808,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5153 components: - pos: 39.5,43.5 @@ -53991,8 +44815,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5154 components: - pos: 39.5,42.5 @@ -54000,8 +44822,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5155 components: - pos: 39.5,41.5 @@ -54009,8 +44829,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5156 components: - pos: 39.5,40.5 @@ -54018,8 +44836,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5157 components: - pos: 39.5,39.5 @@ -54027,8 +44843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5158 components: - pos: 39.5,38.5 @@ -54036,8 +44850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5159 components: - pos: 39.5,37.5 @@ -54045,8 +44857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5160 components: - pos: 40.5,39.5 @@ -54054,8 +44864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5161 components: - pos: 41.5,39.5 @@ -54063,8 +44871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5162 components: - pos: 42.5,39.5 @@ -54072,8 +44878,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5163 components: - pos: 43.5,39.5 @@ -54081,8 +44885,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5164 components: - pos: 44.5,39.5 @@ -54090,8 +44892,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5165 components: - pos: 45.5,39.5 @@ -54099,8 +44899,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5166 components: - pos: 46.5,39.5 @@ -54108,8 +44906,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5167 components: - pos: 47.5,39.5 @@ -54117,8 +44913,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5168 components: - pos: 47.5,40.5 @@ -54126,8 +44920,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5169 components: - pos: 47.5,41.5 @@ -54135,8 +44927,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5170 components: - pos: 47.5,42.5 @@ -54144,8 +44934,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5171 components: - pos: 47.5,43.5 @@ -54153,8 +44941,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5172 components: - pos: 47.5,44.5 @@ -54162,8 +44948,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5173 components: - pos: 47.5,45.5 @@ -54171,8 +44955,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5174 components: - pos: 47.5,46.5 @@ -54180,8 +44962,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5175 components: - pos: 47.5,47.5 @@ -54189,8 +44969,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5176 components: - pos: 11.5,-46.5 @@ -54198,8 +44976,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5177 components: - pos: 11.5,-45.5 @@ -54207,8 +44983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5178 components: - pos: 11.5,-44.5 @@ -54216,15 +44990,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5179 components: - pos: 11.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5180 components: - pos: 11.5,-42.5 @@ -54232,8 +45002,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5181 components: - pos: 11.5,-41.5 @@ -54241,22 +45009,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5182 components: - pos: 12.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5183 components: - pos: 13.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5200 components: - pos: 55.5,7.5 @@ -54264,8 +45026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5201 components: - pos: 56.5,7.5 @@ -54273,8 +45033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5202 components: - pos: 57.5,7.5 @@ -54282,22 +45040,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5203 components: - pos: 57.5,6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5204 components: - pos: 26.5,3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5205 components: - pos: 25.5,3.5 @@ -54305,8 +45057,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5206 components: - pos: 24.5,3.5 @@ -54314,8 +45064,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5207 components: - pos: 23.5,3.5 @@ -54323,8 +45071,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5208 components: - pos: 22.5,3.5 @@ -54332,8 +45078,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5209 components: - pos: 21.5,3.5 @@ -54341,8 +45085,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5210 components: - pos: 20.5,3.5 @@ -54350,8 +45092,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5211 components: - pos: 19.5,3.5 @@ -54359,8 +45099,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5212 components: - pos: 19.5,4.5 @@ -54368,8 +45106,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5213 components: - pos: 19.5,3.5 @@ -54377,8 +45113,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5214 components: - pos: 19.5,2.5 @@ -54386,8 +45120,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5215 components: - pos: 19.5,1.5 @@ -54395,8 +45127,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5216 components: - pos: 19.5,0.5 @@ -54404,8 +45134,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5217 components: - pos: 19.5,-0.5 @@ -54413,15 +45141,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5218 components: - pos: 19.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5225 components: - pos: -25.5,43.5 @@ -54429,22 +45153,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5226 components: - pos: -23.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5227 components: - pos: -20.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5228 components: - pos: -21.5,44.5 @@ -54452,8 +45170,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5229 components: - pos: -22.5,43.5 @@ -54461,8 +45177,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5230 components: - pos: -22.5,44.5 @@ -54470,8 +45184,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5231 components: - pos: -28.5,43.5 @@ -54479,57 +45191,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5232 components: - pos: -16.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5233 components: - pos: -16.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5234 components: - pos: -16.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5236 components: - pos: -26.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5237 components: - pos: -27.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5238 components: - pos: -24.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5239 components: - pos: -23.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5240 components: - pos: -28.5,46.5 @@ -54537,8 +45233,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5241 components: - pos: -27.5,46.5 @@ -54546,8 +45240,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5242 components: - pos: -26.5,46.5 @@ -54555,8 +45247,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5243 components: - pos: -25.5,46.5 @@ -54564,8 +45254,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5244 components: - pos: -24.5,46.5 @@ -54573,8 +45261,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5245 components: - pos: -23.5,46.5 @@ -54582,8 +45268,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5246 components: - pos: -25.5,42.5 @@ -54591,92 +45275,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5247 components: - pos: -18.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5248 components: - pos: -16.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5250 components: - pos: -19.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5251 components: - pos: -17.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5252 components: - pos: -15.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5253 components: - pos: -24.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5254 components: - pos: -26.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5255 components: - pos: -27.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5291 components: - pos: -25.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5292 components: - pos: -26.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5293 components: - pos: -27.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5294 components: - pos: -28.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5295 components: - pos: -29.5,37.5 @@ -54684,99 +45342,71 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5296 components: - pos: -12.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5297 components: - pos: -11.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5298 components: - pos: -10.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5299 components: - pos: -9.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5300 components: - pos: -9.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5301 components: - pos: -8.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5302 components: - pos: -8.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5414 components: - pos: -14.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5415 components: - pos: -13.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5416 components: - pos: -13.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5417 components: - pos: -13.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5418 components: - pos: -13.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5419 components: - pos: -13.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5420 components: - pos: -13.5,49.5 @@ -54784,8 +45414,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5421 components: - pos: -13.5,50.5 @@ -54793,8 +45421,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5422 components: - pos: -15.5,51.5 @@ -54802,8 +45428,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5423 components: - pos: -14.5,51.5 @@ -54811,8 +45435,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5424 components: - pos: -13.5,51.5 @@ -54820,8 +45442,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5425 components: - pos: -12.5,51.5 @@ -54829,8 +45449,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5426 components: - pos: -11.5,51.5 @@ -54838,8 +45456,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5427 components: - pos: -10.5,51.5 @@ -54847,92 +45463,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5499 components: - pos: -20.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5500 components: - pos: -20.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5501 components: - pos: -20.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5502 components: - pos: -20.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5503 components: - pos: -20.5,49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5504 components: - pos: -20.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5505 components: - pos: -20.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5506 components: - pos: -20.5,52.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5507 components: - pos: -20.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5508 components: - pos: -20.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5509 components: - pos: -21.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5510 components: - pos: -22.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5540 components: - pos: -33.5,72.5 @@ -54940,22 +45530,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5612 components: - pos: -20.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5613 components: - pos: -20.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5614 components: - pos: -20.5,57.5 @@ -54963,8 +45547,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5615 components: - pos: -20.5,58.5 @@ -54972,8 +45554,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5616 components: - pos: -20.5,59.5 @@ -54981,8 +45561,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5617 components: - pos: -20.5,60.5 @@ -54990,8 +45568,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5627 components: - pos: -37.5,84.5 @@ -54999,8 +45575,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5628 components: - pos: -30.5,84.5 @@ -55008,8 +45582,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5629 components: - pos: -21.5,84.5 @@ -55017,8 +45589,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5630 components: - pos: -20.5,61.5 @@ -55026,8 +45596,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5631 components: - pos: -20.5,62.5 @@ -55035,8 +45603,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5632 components: - pos: -20.5,63.5 @@ -55044,8 +45610,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5633 components: - pos: -20.5,64.5 @@ -55053,8 +45617,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5634 components: - pos: -21.5,64.5 @@ -55062,8 +45624,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5635 components: - pos: -22.5,64.5 @@ -55071,8 +45631,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5636 components: - pos: -23.5,64.5 @@ -55080,8 +45638,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5637 components: - pos: -24.5,64.5 @@ -55089,8 +45645,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5638 components: - pos: -25.5,64.5 @@ -55098,8 +45652,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5639 components: - pos: -26.5,64.5 @@ -55107,8 +45659,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5640 components: - pos: -27.5,64.5 @@ -55116,8 +45666,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5641 components: - pos: -28.5,64.5 @@ -55125,8 +45673,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5642 components: - pos: -29.5,64.5 @@ -55134,8 +45680,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5643 components: - pos: -30.5,64.5 @@ -55143,8 +45687,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5679 components: - pos: -22.5,84.5 @@ -55152,8 +45694,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5680 components: - pos: -12.5,83.5 @@ -55161,8 +45701,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5689 components: - pos: -20.5,84.5 @@ -55170,8 +45708,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5701 components: - pos: -14.5,84.5 @@ -55179,8 +45715,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5702 components: - pos: -25.5,84.5 @@ -55188,8 +45722,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5703 components: - pos: -32.5,84.5 @@ -55197,8 +45729,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5704 components: - pos: -38.5,83.5 @@ -55206,8 +45736,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5730 components: - pos: -33.5,73.5 @@ -55215,8 +45743,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5789 components: - pos: -26.5,84.5 @@ -55224,8 +45750,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5799 components: - pos: -24.5,84.5 @@ -55233,8 +45757,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5856 components: - pos: -38.5,84.5 @@ -55242,8 +45764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5869 components: - pos: -31.5,84.5 @@ -55251,8 +45771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5870 components: - pos: -13.5,84.5 @@ -55260,8 +45778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5922 components: - pos: -33.5,75.5 @@ -55269,8 +45785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5927 components: - pos: -38.5,82.5 @@ -55278,8 +45792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5928 components: - pos: -33.5,84.5 @@ -55287,8 +45799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5929 components: - pos: -15.5,84.5 @@ -55296,8 +45806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5984 components: - pos: -12.5,81.5 @@ -55305,8 +45813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5985 components: - pos: -17.5,84.5 @@ -55314,8 +45820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5986 components: - pos: -28.5,84.5 @@ -55323,8 +45827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5987 components: - pos: -35.5,84.5 @@ -55332,8 +45834,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5988 components: - pos: -38.5,80.5 @@ -55341,8 +45841,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5993 components: - pos: -33.5,69.5 @@ -55350,8 +45848,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6102 components: - pos: -12.5,80.5 @@ -55359,8 +45855,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6103 components: - pos: -16.5,84.5 @@ -55368,8 +45862,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6169 components: - pos: -27.5,84.5 @@ -55377,8 +45869,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6170 components: - pos: -34.5,84.5 @@ -55386,8 +45876,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6171 components: - pos: -38.5,81.5 @@ -55395,8 +45883,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6176 components: - pos: -33.5,74.5 @@ -55404,8 +45890,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6178 components: - pos: -15.5,73.5 @@ -55413,8 +45897,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6179 components: - pos: -14.5,73.5 @@ -55422,8 +45904,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6180 components: - pos: -13.5,73.5 @@ -55431,8 +45911,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6181 components: - pos: -12.5,73.5 @@ -55440,8 +45918,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6182 components: - pos: -35.5,73.5 @@ -55449,8 +45925,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6183 components: - pos: -36.5,73.5 @@ -55458,8 +45932,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6184 components: - pos: -37.5,73.5 @@ -55467,8 +45939,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6185 components: - pos: -38.5,73.5 @@ -55476,8 +45946,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6186 components: - pos: -38.5,73.5 @@ -55485,8 +45953,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6187 components: - pos: -38.5,74.5 @@ -55494,8 +45960,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6188 components: - pos: -38.5,75.5 @@ -55503,8 +45967,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6189 components: - pos: -38.5,76.5 @@ -55512,8 +45974,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6190 components: - pos: -38.5,77.5 @@ -55521,8 +45981,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6191 components: - pos: -38.5,78.5 @@ -55530,8 +45988,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6192 components: - pos: -38.5,79.5 @@ -55539,8 +45995,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6218 components: - pos: -23.5,84.5 @@ -55548,8 +46002,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6219 components: - pos: -12.5,84.5 @@ -55557,8 +46009,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6232 components: - pos: -12.5,79.5 @@ -55566,8 +46016,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6233 components: - pos: -12.5,78.5 @@ -55575,8 +46023,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6234 components: - pos: -12.5,77.5 @@ -55584,8 +46030,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6235 components: - pos: -12.5,76.5 @@ -55593,8 +46037,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6236 components: - pos: -12.5,75.5 @@ -55602,8 +46044,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6237 components: - pos: -12.5,74.5 @@ -55611,8 +46051,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6238 components: - pos: -12.5,72.5 @@ -55620,8 +46058,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6239 components: - pos: -12.5,71.5 @@ -55629,8 +46065,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6240 components: - pos: -12.5,70.5 @@ -55638,8 +46072,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6241 components: - pos: -12.5,69.5 @@ -55647,8 +46079,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6242 components: - pos: -12.5,68.5 @@ -55656,8 +46086,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6243 components: - pos: -12.5,67.5 @@ -55665,8 +46093,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6244 components: - pos: -12.5,66.5 @@ -55674,8 +46100,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6245 components: - pos: -12.5,65.5 @@ -55683,8 +46107,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6246 components: - pos: -12.5,64.5 @@ -55692,8 +46114,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6247 components: - pos: -12.5,63.5 @@ -55701,8 +46121,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6248 components: - pos: -12.5,62.5 @@ -55710,8 +46128,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6249 components: - pos: -12.5,61.5 @@ -55719,8 +46135,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6250 components: - pos: -12.5,60.5 @@ -55728,8 +46142,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6251 components: - pos: -13.5,60.5 @@ -55737,8 +46149,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6252 components: - pos: -14.5,60.5 @@ -55746,8 +46156,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6253 components: - pos: -15.5,60.5 @@ -55755,8 +46163,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6254 components: - pos: -16.5,60.5 @@ -55764,8 +46170,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6255 components: - pos: -38.5,72.5 @@ -55773,8 +46177,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6256 components: - pos: -38.5,71.5 @@ -55782,8 +46184,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6257 components: - pos: -38.5,70.5 @@ -55791,8 +46191,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6258 components: - pos: -38.5,69.5 @@ -55800,8 +46198,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6259 components: - pos: -38.5,68.5 @@ -55809,8 +46205,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6260 components: - pos: -38.5,67.5 @@ -55818,8 +46212,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6261 components: - pos: -38.5,66.5 @@ -55827,8 +46219,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6262 components: - pos: -38.5,65.5 @@ -55836,8 +46226,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6263 components: - pos: -38.5,64.5 @@ -55845,8 +46233,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6264 components: - pos: -38.5,63.5 @@ -55854,8 +46240,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6265 components: - pos: -38.5,62.5 @@ -55863,8 +46247,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6266 components: - pos: -38.5,61.5 @@ -55872,8 +46254,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6267 components: - pos: -38.5,60.5 @@ -55881,8 +46261,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6268 components: - pos: -37.5,60.5 @@ -55890,8 +46268,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6269 components: - pos: -36.5,60.5 @@ -55899,8 +46275,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6270 components: - pos: -35.5,60.5 @@ -55908,8 +46282,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6271 components: - pos: -34.5,60.5 @@ -55917,8 +46289,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6272 components: - pos: -33.5,60.5 @@ -55926,8 +46296,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6273 components: - pos: -32.5,60.5 @@ -55935,8 +46303,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6274 components: - pos: -31.5,60.5 @@ -55944,64 +46310,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6936 components: - pos: -28.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7084 components: - pos: -23.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7085 components: - pos: -24.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7086 components: - pos: -25.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7087 components: - pos: -25.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7088 components: - pos: -25.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7090 components: - pos: -23.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 7091 components: - pos: -22.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 10175 components: - pos: -41.5,-51.5 @@ -56009,8 +46357,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10176 components: - pos: -41.5,-52.5 @@ -56018,8 +46364,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10177 components: - pos: -40.5,-51.5 @@ -56027,8 +46371,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10178 components: - pos: -40.5,-50.5 @@ -56036,8 +46378,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10179 components: - pos: -40.5,-49.5 @@ -56045,8 +46385,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10180 components: - pos: -41.5,-49.5 @@ -56054,15 +46392,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10181 components: - pos: -41.5,-48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 10184 components: - pos: -42.5,-51.5 @@ -56070,8 +46404,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10194 components: - pos: -41.5,-47.5 @@ -56079,8 +46411,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10195 components: - pos: -58.5,-34.5 @@ -56088,8 +46418,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10196 components: - pos: -59.5,-34.5 @@ -56097,8 +46425,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10197 components: - pos: -59.5,-33.5 @@ -56106,8 +46432,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10198 components: - pos: -59.5,-32.5 @@ -56115,8 +46439,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10199 components: - pos: -59.5,-31.5 @@ -56124,8 +46446,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10200 components: - pos: -59.5,-30.5 @@ -56133,8 +46453,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10201 components: - pos: -59.5,-29.5 @@ -56142,8 +46460,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10202 components: - pos: -59.5,-28.5 @@ -56151,8 +46467,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10203 components: - pos: -59.5,-27.5 @@ -56160,8 +46474,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10204 components: - pos: -59.5,-26.5 @@ -56169,8 +46481,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10205 components: - pos: -59.5,-25.5 @@ -56178,8 +46488,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10206 components: - pos: -60.5,-25.5 @@ -56187,15 +46495,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10207 components: - pos: -61.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 10208 components: - pos: -62.5,-25.5 @@ -56203,8 +46507,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10209 components: - pos: -62.5,-26.5 @@ -56212,8 +46514,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10211 components: - pos: -63.5,-26.5 @@ -56221,8 +46521,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10212 components: - pos: -64.5,-26.5 @@ -56230,8 +46528,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10213 components: - pos: -65.5,-26.5 @@ -56239,8 +46535,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10215 components: - pos: -62.5,-24.5 @@ -56248,8 +46542,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10216 components: - pos: -65.5,-25.5 @@ -56257,8 +46549,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10217 components: - pos: -66.5,-25.5 @@ -56266,8 +46556,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10226 components: - pos: -65.5,-24.5 @@ -56275,8 +46563,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10340 components: - pos: -16.5,-46.5 @@ -56284,8 +46570,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11436 components: - pos: -33.5,71.5 @@ -56293,8 +46577,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11505 components: - pos: -36.5,84.5 @@ -56302,8 +46584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11506 components: - pos: -29.5,84.5 @@ -56311,8 +46591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11507 components: - pos: -18.5,84.5 @@ -56320,8 +46598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11508 components: - pos: -12.5,82.5 @@ -56329,8 +46605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11752 components: - pos: -75.5,2.5 @@ -56338,8 +46612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11753 components: - pos: -75.5,3.5 @@ -56347,8 +46619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11754 components: - pos: -75.5,4.5 @@ -56356,8 +46626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11755 components: - pos: -75.5,5.5 @@ -56365,8 +46633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11756 components: - pos: -75.5,6.5 @@ -56374,8 +46640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11757 components: - pos: -75.5,7.5 @@ -56383,8 +46647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11758 components: - pos: -75.5,8.5 @@ -56392,8 +46654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11759 components: - pos: -75.5,9.5 @@ -56401,8 +46661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11760 components: - pos: -73.5,2.5 @@ -56410,8 +46668,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11761 components: - pos: -73.5,3.5 @@ -56419,8 +46675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11762 components: - pos: -73.5,4.5 @@ -56428,8 +46682,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11763 components: - pos: -73.5,5.5 @@ -56437,8 +46689,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11764 components: - pos: -73.5,6.5 @@ -56446,8 +46696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11765 components: - pos: -73.5,7.5 @@ -56455,8 +46703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11766 components: - pos: -73.5,8.5 @@ -56464,8 +46710,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11767 components: - pos: -73.5,9.5 @@ -56473,8 +46717,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11768 components: - pos: -74.5,9.5 @@ -56482,8 +46724,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11769 components: - pos: -74.5,10.5 @@ -56491,8 +46731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11770 components: - pos: -74.5,11.5 @@ -56500,8 +46738,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11771 components: - pos: -74.5,12.5 @@ -56509,8 +46745,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11772 components: - pos: -74.5,13.5 @@ -56518,8 +46752,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11773 components: - pos: -75.5,13.5 @@ -56527,8 +46759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11774 components: - pos: -75.5,14.5 @@ -56536,8 +46766,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11775 components: - pos: -75.5,15.5 @@ -56545,8 +46773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11776 components: - pos: -75.5,16.5 @@ -56554,8 +46780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11777 components: - pos: -75.5,17.5 @@ -56563,8 +46787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11778 components: - pos: -75.5,18.5 @@ -56572,8 +46794,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11779 components: - pos: -75.5,19.5 @@ -56581,8 +46801,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11780 components: - pos: -75.5,20.5 @@ -56590,8 +46808,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11781 components: - pos: -73.5,20.5 @@ -56599,8 +46815,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11782 components: - pos: -73.5,19.5 @@ -56608,8 +46822,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11783 components: - pos: -73.5,18.5 @@ -56617,8 +46829,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11784 components: - pos: -73.5,17.5 @@ -56626,8 +46836,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11785 components: - pos: -73.5,16.5 @@ -56635,8 +46843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11786 components: - pos: -73.5,15.5 @@ -56644,8 +46850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11787 components: - pos: -73.5,14.5 @@ -56653,8 +46857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11788 components: - pos: -73.5,13.5 @@ -56662,8 +46864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11789 components: - pos: -71.5,20.5 @@ -56671,8 +46871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11790 components: - pos: -71.5,19.5 @@ -56680,8 +46878,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11791 components: - pos: -71.5,18.5 @@ -56689,8 +46885,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11792 components: - pos: -71.5,17.5 @@ -56698,8 +46892,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11793 components: - pos: -71.5,16.5 @@ -56707,8 +46899,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11794 components: - pos: -71.5,15.5 @@ -56716,8 +46906,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11795 components: - pos: -71.5,14.5 @@ -56725,8 +46913,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11796 components: - pos: -71.5,13.5 @@ -56734,8 +46920,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11797 components: - pos: -70.5,13.5 @@ -56743,8 +46927,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11798 components: - pos: -69.5,13.5 @@ -56752,8 +46934,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11799 components: - pos: -69.5,14.5 @@ -56761,8 +46941,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11800 components: - pos: -69.5,15.5 @@ -56770,8 +46948,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11801 components: - pos: -69.5,16.5 @@ -56779,8 +46955,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11802 components: - pos: -69.5,17.5 @@ -56788,8 +46962,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11803 components: - pos: -69.5,18.5 @@ -56797,8 +46969,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11804 components: - pos: -69.5,19.5 @@ -56806,8 +46976,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11805 components: - pos: -69.5,20.5 @@ -56815,8 +46983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11806 components: - pos: -67.5,20.5 @@ -56824,8 +46990,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11807 components: - pos: -67.5,19.5 @@ -56833,8 +46997,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11808 components: - pos: -67.5,18.5 @@ -56842,8 +47004,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11809 components: - pos: -67.5,17.5 @@ -56851,8 +47011,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11810 components: - pos: -67.5,16.5 @@ -56860,8 +47018,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11811 components: - pos: -67.5,15.5 @@ -56869,8 +47025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11812 components: - pos: -67.5,14.5 @@ -56878,8 +47032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11813 components: - pos: -67.5,13.5 @@ -56887,8 +47039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11814 components: - pos: -65.5,13.5 @@ -56896,8 +47046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11815 components: - pos: -65.5,14.5 @@ -56905,8 +47053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11816 components: - pos: -65.5,15.5 @@ -56914,8 +47060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11817 components: - pos: -65.5,16.5 @@ -56923,8 +47067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11818 components: - pos: -65.5,17.5 @@ -56932,8 +47074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11819 components: - pos: -65.5,18.5 @@ -56941,8 +47081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11820 components: - pos: -65.5,19.5 @@ -56950,8 +47088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11821 components: - pos: -65.5,20.5 @@ -56959,8 +47095,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11822 components: - pos: -66.5,13.5 @@ -56968,8 +47102,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11823 components: - pos: -70.5,12.5 @@ -56977,8 +47109,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11824 components: - pos: -70.5,11.5 @@ -56986,8 +47116,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11825 components: - pos: -70.5,10.5 @@ -56995,8 +47123,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11826 components: - pos: -70.5,9.5 @@ -57004,8 +47130,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11827 components: - pos: -71.5,9.5 @@ -57013,8 +47137,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11828 components: - pos: -71.5,8.5 @@ -57022,8 +47144,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11829 components: - pos: -71.5,7.5 @@ -57031,8 +47151,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11830 components: - pos: -71.5,6.5 @@ -57040,8 +47158,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11831 components: - pos: -71.5,5.5 @@ -57049,8 +47165,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11832 components: - pos: -71.5,4.5 @@ -57058,8 +47172,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11833 components: - pos: -71.5,3.5 @@ -57067,8 +47179,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11834 components: - pos: -71.5,2.5 @@ -57076,8 +47186,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11835 components: - pos: -69.5,2.5 @@ -57085,8 +47193,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11836 components: - pos: -69.5,3.5 @@ -57094,8 +47200,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11837 components: - pos: -69.5,4.5 @@ -57103,8 +47207,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11838 components: - pos: -69.5,5.5 @@ -57112,8 +47214,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11839 components: - pos: -69.5,6.5 @@ -57121,8 +47221,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11840 components: - pos: -69.5,7.5 @@ -57130,8 +47228,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11841 components: - pos: -69.5,8.5 @@ -57139,8 +47235,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11842 components: - pos: -69.5,9.5 @@ -57148,8 +47242,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11843 components: - pos: -70.5,9.5 @@ -57157,8 +47249,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11844 components: - pos: -67.5,2.5 @@ -57166,8 +47256,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11845 components: - pos: -67.5,3.5 @@ -57175,8 +47263,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11846 components: - pos: -67.5,4.5 @@ -57184,8 +47270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11847 components: - pos: -67.5,5.5 @@ -57193,8 +47277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11848 components: - pos: -67.5,6.5 @@ -57202,8 +47284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11849 components: - pos: -67.5,7.5 @@ -57211,8 +47291,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11850 components: - pos: -67.5,8.5 @@ -57220,8 +47298,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11851 components: - pos: -67.5,9.5 @@ -57229,8 +47305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11852 components: - pos: -65.5,9.5 @@ -57238,8 +47312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11853 components: - pos: -65.5,8.5 @@ -57247,8 +47319,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11854 components: - pos: -65.5,7.5 @@ -57256,8 +47326,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11855 components: - pos: -65.5,6.5 @@ -57265,8 +47333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11856 components: - pos: -65.5,5.5 @@ -57274,8 +47340,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11857 components: - pos: -65.5,4.5 @@ -57283,8 +47347,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11858 components: - pos: -65.5,3.5 @@ -57292,8 +47354,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11859 components: - pos: -65.5,2.5 @@ -57301,8 +47361,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11860 components: - pos: -66.5,9.5 @@ -57310,8 +47368,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11862 components: - pos: -53.5,11.5 @@ -57319,8 +47375,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11863 components: - pos: -54.5,11.5 @@ -57328,8 +47382,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11864 components: - pos: -55.5,11.5 @@ -57337,8 +47389,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11865 components: - pos: -56.5,11.5 @@ -57346,8 +47396,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11866 components: - pos: -57.5,11.5 @@ -57355,8 +47403,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11867 components: - pos: -58.5,11.5 @@ -57364,8 +47410,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11868 components: - pos: -59.5,11.5 @@ -57373,8 +47417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11875 components: - pos: -53.5,12.5 @@ -57382,8 +47424,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11876 components: - pos: -52.5,12.5 @@ -57391,8 +47431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11877 components: - pos: -51.5,12.5 @@ -57400,8 +47438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11878 components: - pos: -51.5,11.5 @@ -57409,8 +47445,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11879 components: - pos: -50.5,11.5 @@ -57418,8 +47452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12714 components: - pos: 14.5,-20.5 @@ -57427,22 +47459,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12715 components: - pos: 14.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12721 components: - pos: 13.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12723 components: - pos: 15.5,-18.5 @@ -57450,8 +47476,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12724 components: - pos: 16.5,-19.5 @@ -57459,8 +47483,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13011 components: - pos: -23.5,-46.5 @@ -57468,8 +47490,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13149 components: - pos: -22.5,-46.5 @@ -57477,8 +47497,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13240 components: - pos: -24.5,-46.5 @@ -57486,8 +47504,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13270 components: - pos: -25.5,-46.5 @@ -57495,8 +47511,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13378 components: - pos: -17.5,-46.5 @@ -57504,8 +47518,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13379 components: - pos: -18.5,-46.5 @@ -57513,323 +47525,231 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13957 components: - pos: 17.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13958 components: - pos: 16.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13959 components: - pos: 15.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13960 components: - pos: 14.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13961 components: - pos: 13.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13962 components: - pos: 12.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13963 components: - pos: 11.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13964 components: - pos: 11.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13965 components: - pos: 11.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13966 components: - pos: 11.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13967 components: - pos: 11.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13968 components: - pos: 12.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13969 components: - pos: 12.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13970 components: - pos: 12.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13971 components: - pos: 12.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14238 components: - pos: 13.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14239 components: - pos: 14.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14240 components: - pos: 15.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14241 components: - pos: 16.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14242 components: - pos: 17.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14243 components: - pos: 18.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14244 components: - pos: 19.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14245 components: - pos: 19.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14246 components: - pos: 19.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14247 components: - pos: 19.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14248 components: - pos: 19.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14249 components: - pos: 19.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14250 components: - pos: 19.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14251 components: - pos: 19.5,-40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14252 components: - pos: 19.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14253 components: - pos: 19.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14254 components: - pos: 19.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14255 components: - pos: 19.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14256 components: - pos: 19.5,-45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14257 components: - pos: 19.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14258 components: - pos: 19.5,-48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14259 components: - pos: 19.5,-49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14260 components: - pos: 19.5,-50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14261 components: - pos: 19.5,-51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14262 components: - pos: 19.5,-52.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14263 components: - pos: 19.5,-53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14264 components: - pos: 19.5,-54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14265 components: - pos: 19.5,-55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14266 components: - pos: 19.5,-56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14267 components: - pos: 19.5,-57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14268 components: - pos: 19.5,-58.5 @@ -57837,36 +47757,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14269 components: - pos: 19.5,-59.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14270 components: - pos: 19.5,-60.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14271 components: - pos: 19.5,-61.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14272 components: - pos: 19.5,-62.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14273 components: - pos: 19.5,-63.5 @@ -57874,8 +47784,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14274 components: - pos: 19.5,-64.5 @@ -57883,8 +47791,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14275 components: - pos: 19.5,-65.5 @@ -57892,8 +47798,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14276 components: - pos: 19.5,-66.5 @@ -57901,8 +47805,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14277 components: - pos: 19.5,-67.5 @@ -57910,8 +47812,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14278 components: - pos: 19.5,-68.5 @@ -57919,8 +47819,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14279 components: - pos: 19.5,-69.5 @@ -57928,8 +47826,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14280 components: - pos: 19.5,-70.5 @@ -57937,8 +47833,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14281 components: - pos: 19.5,-71.5 @@ -57946,8 +47840,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14282 components: - pos: 19.5,-72.5 @@ -57955,8 +47847,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14283 components: - pos: 19.5,-73.5 @@ -57964,8 +47854,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14284 components: - pos: 19.5,-74.5 @@ -57973,8 +47861,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14285 components: - pos: 19.5,-75.5 @@ -57982,8 +47868,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14286 components: - pos: 19.5,-76.5 @@ -57991,8 +47875,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14287 components: - pos: 19.5,-77.5 @@ -58000,8 +47882,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14288 components: - pos: 19.5,-78.5 @@ -58009,8 +47889,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14289 components: - pos: 19.5,-79.5 @@ -58018,8 +47896,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14290 components: - pos: 19.5,-80.5 @@ -58027,8 +47903,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14291 components: - pos: 19.5,-81.5 @@ -58036,8 +47910,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14292 components: - pos: 19.5,-82.5 @@ -58045,71 +47917,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14293 components: - pos: 19.5,-83.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14304 components: - pos: 14.5,-93.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14305 components: - pos: 14.5,-92.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14306 components: - pos: 13.5,-92.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14307 components: - pos: 26.5,-93.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14308 components: - pos: 26.5,-92.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14309 components: - pos: 27.5,-92.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14310 components: - pos: 27.5,-91.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14311 components: - pos: 28.5,-91.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14312 components: - pos: 29.5,-91.5 @@ -58117,22 +47969,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14313 components: - pos: 13.5,-91.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14314 components: - pos: 12.5,-91.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14315 components: - pos: 11.5,-91.5 @@ -58140,15 +47986,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15170 components: - pos: -22.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16302 components: - pos: -21.5,43.5 @@ -58156,8 +47998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16303 components: - pos: -21.5,45.5 @@ -58165,8 +48005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16435 components: - pos: -30.5,37.5 @@ -58174,8 +48012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16436 components: - pos: -30.5,36.5 @@ -58183,8 +48019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16437 components: - pos: -30.5,35.5 @@ -58192,8 +48026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16438 components: - pos: -30.5,34.5 @@ -58201,8 +48033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16439 components: - pos: -31.5,34.5 @@ -58210,8 +48040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16440 components: - pos: -31.5,33.5 @@ -58219,8 +48047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16441 components: - pos: -30.5,38.5 @@ -58228,8 +48054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16442 components: - pos: -30.5,39.5 @@ -58237,8 +48061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16443 components: - pos: -30.5,40.5 @@ -58246,8 +48068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16444 components: - pos: -30.5,41.5 @@ -58255,8 +48075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16445 components: - pos: -30.5,42.5 @@ -58264,8 +48082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16446 components: - pos: -30.5,43.5 @@ -58273,8 +48089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16447 components: - pos: -30.5,44.5 @@ -58282,8 +48096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16448 components: - pos: -30.5,45.5 @@ -58291,8 +48103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16449 components: - pos: -30.5,46.5 @@ -58300,8 +48110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16450 components: - pos: -30.5,47.5 @@ -58309,8 +48117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16451 components: - pos: -30.5,48.5 @@ -58318,8 +48124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16452 components: - pos: -30.5,49.5 @@ -58327,8 +48131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16453 components: - pos: -30.5,50.5 @@ -58336,8 +48138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16454 components: - pos: -31.5,50.5 @@ -58345,8 +48145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16455 components: - pos: -31.5,42.5 @@ -58354,71 +48152,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16456 components: - pos: -31.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16457 components: - pos: -31.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16458 components: - pos: -30.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16459 components: - pos: -29.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16460 components: - pos: -28.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16461 components: - pos: -27.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16462 components: - pos: -26.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16463 components: - pos: -25.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16464 components: - pos: -24.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17129 components: - pos: 40.5,37.5 @@ -58426,8 +48204,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17296 components: - pos: 47.5,48.5 @@ -58435,8 +48211,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17297 components: - pos: 47.5,49.5 @@ -58444,8 +48218,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17314 components: - pos: 47.5,50.5 @@ -58453,8 +48225,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17315 components: - pos: 46.5,50.5 @@ -58462,8 +48232,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17317 components: - pos: 45.5,50.5 @@ -58471,8 +48239,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17318 components: - pos: 44.5,50.5 @@ -58480,8 +48246,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17319 components: - pos: 43.5,50.5 @@ -58489,8 +48253,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17320 components: - pos: 42.5,50.5 @@ -58498,8 +48260,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17321 components: - pos: 41.5,50.5 @@ -58507,8 +48267,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17322 components: - pos: 40.5,50.5 @@ -58516,8 +48274,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17323 components: - pos: 40.5,49.5 @@ -58525,8 +48281,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17324 components: - pos: 40.5,48.5 @@ -58534,8 +48288,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17325 components: - pos: 40.5,47.5 @@ -58543,8 +48295,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17326 components: - pos: 40.5,46.5 @@ -58552,8 +48302,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17327 components: - pos: 45.5,51.5 @@ -58561,8 +48309,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17328 components: - pos: 45.5,52.5 @@ -58570,8 +48316,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17329 components: - pos: 45.5,53.5 @@ -58579,8 +48323,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17330 components: - pos: 45.5,54.5 @@ -58588,8 +48330,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18371 components: - pos: -21.5,-46.5 @@ -58597,8 +48337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18372 components: - pos: -20.5,-46.5 @@ -58606,8 +48344,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18373 components: - pos: -19.5,-46.5 @@ -58615,8 +48351,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18835 components: - pos: -9.5,4.5 @@ -58624,29 +48358,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19054 components: - pos: 20.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19055 components: - pos: 20.5,49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19056 components: - pos: 20.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19057 components: - pos: 20.5,47.5 @@ -58654,8 +48380,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19058 components: - pos: 20.5,46.5 @@ -58663,8 +48387,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19059 components: - pos: 20.5,45.5 @@ -58672,15 +48394,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19060 components: - pos: 19.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19061 components: - pos: 18.5,45.5 @@ -58688,8 +48406,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19062 components: - pos: 17.5,45.5 @@ -58697,8 +48413,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19063 components: - pos: 16.5,45.5 @@ -58706,8 +48420,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19064 components: - pos: 15.5,45.5 @@ -58715,8 +48427,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19065 components: - pos: 14.5,45.5 @@ -58724,8 +48434,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19066 components: - pos: 13.5,45.5 @@ -58733,8 +48441,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19067 components: - pos: 12.5,45.5 @@ -58742,8 +48448,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19068 components: - pos: 11.5,45.5 @@ -58751,8 +48455,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19069 components: - pos: 11.5,44.5 @@ -58760,8 +48462,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19070 components: - pos: 10.5,44.5 @@ -58769,8 +48469,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19071 components: - pos: 9.5,44.5 @@ -58778,8 +48476,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19072 components: - pos: 8.5,44.5 @@ -58787,8 +48483,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19073 components: - pos: 7.5,44.5 @@ -58796,260 +48490,186 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19074 components: - pos: -5.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19075 components: - pos: -5.5,33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19076 components: - pos: -5.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19077 components: - pos: -5.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19078 components: - pos: -5.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19079 components: - pos: -5.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19080 components: - pos: -5.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19081 components: - pos: -5.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19082 components: - pos: -5.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19083 components: - pos: -5.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19084 components: - pos: -5.5,42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19085 components: - pos: -5.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19086 components: - pos: -5.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19087 components: - pos: -5.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19088 components: - pos: -5.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19089 components: - pos: -5.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19090 components: - pos: -5.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19091 components: - pos: -5.5,49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19092 components: - pos: -5.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19093 components: - pos: -5.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19094 components: - pos: -4.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19095 components: - pos: -3.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19096 components: - pos: -2.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19097 components: - pos: -1.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19098 components: - pos: -0.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19099 components: - pos: 0.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19100 components: - pos: 1.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19101 components: - pos: 2.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19102 components: - pos: 3.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19103 components: - pos: 4.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19104 components: - pos: 5.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19105 components: - pos: 6.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19106 components: - pos: 7.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19107 components: - pos: 8.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19108 components: - pos: 9.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19109 components: - pos: 10.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 20322 components: - pos: -16.5,72.5 @@ -59057,8 +48677,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20537 components: - pos: -8.5,37.5 @@ -59066,15 +48684,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20538 components: - pos: -8.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 20916 components: - pos: -67.5,-25.5 @@ -59082,8 +48696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20917 components: - pos: -68.5,-25.5 @@ -59091,8 +48703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20918 components: - pos: -83.5,-23.5 @@ -59100,8 +48710,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20919 components: - pos: -83.5,-22.5 @@ -59109,8 +48717,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20920 components: - pos: -83.5,-21.5 @@ -59118,8 +48724,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20921 components: - pos: -83.5,-20.5 @@ -59127,8 +48731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20922 components: - pos: -83.5,-19.5 @@ -59136,8 +48738,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20923 components: - pos: -83.5,-18.5 @@ -59145,8 +48745,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20924 components: - pos: -83.5,-17.5 @@ -59154,8 +48752,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20925 components: - pos: -83.5,-16.5 @@ -59163,8 +48759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20926 components: - pos: -81.5,-16.5 @@ -59172,8 +48766,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20927 components: - pos: -81.5,-17.5 @@ -59181,8 +48773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20928 components: - pos: -81.5,-18.5 @@ -59190,8 +48780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20929 components: - pos: -81.5,-19.5 @@ -59199,8 +48787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20930 components: - pos: -81.5,-20.5 @@ -59208,8 +48794,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20931 components: - pos: -81.5,-21.5 @@ -59217,8 +48801,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20932 components: - pos: -81.5,-22.5 @@ -59226,8 +48808,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20933 components: - pos: -81.5,-23.5 @@ -59235,8 +48815,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20934 components: - pos: -79.5,-16.5 @@ -59244,8 +48822,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20935 components: - pos: -79.5,-17.5 @@ -59253,8 +48829,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20936 components: - pos: -79.5,-18.5 @@ -59262,8 +48836,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20937 components: - pos: -79.5,-19.5 @@ -59271,8 +48843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20938 components: - pos: -79.5,-20.5 @@ -59280,8 +48850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20939 components: - pos: -79.5,-21.5 @@ -59289,8 +48857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20940 components: - pos: -79.5,-22.5 @@ -59298,8 +48864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20941 components: - pos: -79.5,-23.5 @@ -59307,8 +48871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20942 components: - pos: -77.5,-16.5 @@ -59316,8 +48878,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20943 components: - pos: -77.5,-17.5 @@ -59325,8 +48885,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20944 components: - pos: -77.5,-18.5 @@ -59334,8 +48892,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20945 components: - pos: -77.5,-19.5 @@ -59343,8 +48899,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20946 components: - pos: -77.5,-20.5 @@ -59352,8 +48906,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20947 components: - pos: -77.5,-21.5 @@ -59361,8 +48913,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20948 components: - pos: -77.5,-22.5 @@ -59370,8 +48920,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20949 components: - pos: -77.5,-23.5 @@ -59379,8 +48927,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20950 components: - pos: -75.5,-16.5 @@ -59388,8 +48934,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20951 components: - pos: -75.5,-17.5 @@ -59397,8 +48941,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20952 components: - pos: -75.5,-18.5 @@ -59406,8 +48948,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20953 components: - pos: -75.5,-19.5 @@ -59415,8 +48955,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20954 components: - pos: -75.5,-20.5 @@ -59424,8 +48962,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20955 components: - pos: -75.5,-21.5 @@ -59433,8 +48969,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20956 components: - pos: -75.5,-22.5 @@ -59442,8 +48976,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20957 components: - pos: -75.5,-23.5 @@ -59451,8 +48983,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20958 components: - pos: -85.5,-25.5 @@ -59460,8 +48990,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20959 components: - pos: -84.5,-25.5 @@ -59469,8 +48997,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20960 components: - pos: -83.5,-25.5 @@ -59478,8 +49004,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20961 components: - pos: -82.5,-25.5 @@ -59487,8 +49011,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20962 components: - pos: -82.5,-24.5 @@ -59496,8 +49018,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20963 components: - pos: -82.5,-26.5 @@ -59505,8 +49025,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20964 components: - pos: -82.5,-23.5 @@ -59514,8 +49032,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20965 components: - pos: -82.5,-27.5 @@ -59523,8 +49039,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20966 components: - pos: -83.5,-27.5 @@ -59532,8 +49046,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20967 components: - pos: -83.5,-28.5 @@ -59541,8 +49053,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20968 components: - pos: -83.5,-29.5 @@ -59550,8 +49060,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20969 components: - pos: -83.5,-30.5 @@ -59559,8 +49067,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20970 components: - pos: -83.5,-31.5 @@ -59568,8 +49074,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20971 components: - pos: -83.5,-32.5 @@ -59577,8 +49081,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20972 components: - pos: -83.5,-33.5 @@ -59586,8 +49088,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20973 components: - pos: -83.5,-34.5 @@ -59595,8 +49095,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20974 components: - pos: -81.5,-27.5 @@ -59604,8 +49102,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20975 components: - pos: -81.5,-28.5 @@ -59613,8 +49109,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20976 components: - pos: -81.5,-29.5 @@ -59622,8 +49116,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20977 components: - pos: -81.5,-30.5 @@ -59631,8 +49123,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20978 components: - pos: -81.5,-31.5 @@ -59640,8 +49130,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20979 components: - pos: -81.5,-32.5 @@ -59649,8 +49137,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20980 components: - pos: -81.5,-33.5 @@ -59658,8 +49144,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20981 components: - pos: -81.5,-34.5 @@ -59667,8 +49151,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20982 components: - pos: -79.5,-27.5 @@ -59676,8 +49158,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20983 components: - pos: -79.5,-28.5 @@ -59685,8 +49165,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20984 components: - pos: -79.5,-29.5 @@ -59694,8 +49172,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20985 components: - pos: -79.5,-30.5 @@ -59703,8 +49179,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20986 components: - pos: -79.5,-31.5 @@ -59712,8 +49186,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20987 components: - pos: -79.5,-32.5 @@ -59721,8 +49193,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20988 components: - pos: -79.5,-33.5 @@ -59730,8 +49200,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20989 components: - pos: -79.5,-34.5 @@ -59739,8 +49207,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20990 components: - pos: -77.5,-27.5 @@ -59748,8 +49214,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20991 components: - pos: -77.5,-28.5 @@ -59757,8 +49221,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20992 components: - pos: -77.5,-29.5 @@ -59766,8 +49228,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20993 components: - pos: -77.5,-30.5 @@ -59775,8 +49235,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20994 components: - pos: -77.5,-31.5 @@ -59784,8 +49242,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20995 components: - pos: -77.5,-32.5 @@ -59793,8 +49249,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20996 components: - pos: -77.5,-33.5 @@ -59802,8 +49256,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20997 components: - pos: -77.5,-34.5 @@ -59811,8 +49263,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20998 components: - pos: -78.5,-27.5 @@ -59820,8 +49270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20999 components: - pos: -75.5,-27.5 @@ -59829,8 +49277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21000 components: - pos: -75.5,-28.5 @@ -59838,8 +49284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21001 components: - pos: -75.5,-29.5 @@ -59847,8 +49291,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21002 components: - pos: -75.5,-30.5 @@ -59856,8 +49298,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21003 components: - pos: -75.5,-31.5 @@ -59865,8 +49305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21004 components: - pos: -75.5,-32.5 @@ -59874,8 +49312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21005 components: - pos: -75.5,-33.5 @@ -59883,8 +49319,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21006 components: - pos: -75.5,-34.5 @@ -59892,8 +49326,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21007 components: - pos: -73.5,-27.5 @@ -59901,8 +49333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21008 components: - pos: -73.5,-28.5 @@ -59910,8 +49340,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21009 components: - pos: -73.5,-29.5 @@ -59919,8 +49347,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21010 components: - pos: -73.5,-30.5 @@ -59928,8 +49354,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21011 components: - pos: -73.5,-31.5 @@ -59937,8 +49361,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21012 components: - pos: -73.5,-32.5 @@ -59946,8 +49368,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21013 components: - pos: -73.5,-33.5 @@ -59955,8 +49375,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21014 components: - pos: -73.5,-34.5 @@ -59964,8 +49382,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21015 components: - pos: -74.5,-27.5 @@ -59973,8 +49389,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21016 components: - pos: -73.5,-23.5 @@ -59982,8 +49396,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21017 components: - pos: -73.5,-22.5 @@ -59991,8 +49403,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21018 components: - pos: -73.5,-21.5 @@ -60000,8 +49410,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21019 components: - pos: -73.5,-20.5 @@ -60009,8 +49417,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21020 components: - pos: -73.5,-19.5 @@ -60018,8 +49424,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21021 components: - pos: -73.5,-18.5 @@ -60027,8 +49431,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21022 components: - pos: -73.5,-17.5 @@ -60036,8 +49438,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21023 components: - pos: -73.5,-16.5 @@ -60045,8 +49445,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21024 components: - pos: -74.5,-23.5 @@ -60054,8 +49452,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21025 components: - pos: -78.5,-23.5 @@ -60063,8 +49459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21252 components: - pos: -41.5,-53.5 @@ -60072,8 +49466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21253 components: - pos: -41.5,-54.5 @@ -60081,8 +49473,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21254 components: - pos: -41.5,-55.5 @@ -60090,8 +49480,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21255 components: - pos: -32.5,-61.5 @@ -60099,8 +49487,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21256 components: - pos: -33.5,-61.5 @@ -60108,8 +49494,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21257 components: - pos: -34.5,-61.5 @@ -60117,8 +49501,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21258 components: - pos: -35.5,-61.5 @@ -60126,8 +49508,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21259 components: - pos: -36.5,-61.5 @@ -60135,8 +49515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21260 components: - pos: -37.5,-61.5 @@ -60144,8 +49522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21261 components: - pos: -38.5,-61.5 @@ -60153,8 +49529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21262 components: - pos: -39.5,-61.5 @@ -60162,8 +49536,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21263 components: - pos: -32.5,-63.5 @@ -60171,8 +49543,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21264 components: - pos: -33.5,-63.5 @@ -60180,8 +49550,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21265 components: - pos: -34.5,-63.5 @@ -60189,8 +49557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21266 components: - pos: -35.5,-63.5 @@ -60198,8 +49564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21267 components: - pos: -36.5,-63.5 @@ -60207,8 +49571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21268 components: - pos: -37.5,-63.5 @@ -60216,8 +49578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21269 components: - pos: -38.5,-63.5 @@ -60225,8 +49585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21270 components: - pos: -39.5,-63.5 @@ -60234,8 +49592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21271 components: - pos: -32.5,-65.5 @@ -60243,8 +49599,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21272 components: - pos: -33.5,-65.5 @@ -60252,8 +49606,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21273 components: - pos: -34.5,-65.5 @@ -60261,8 +49613,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21274 components: - pos: -35.5,-65.5 @@ -60270,8 +49620,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21275 components: - pos: -36.5,-65.5 @@ -60279,8 +49627,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21276 components: - pos: -37.5,-65.5 @@ -60288,8 +49634,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21277 components: - pos: -38.5,-65.5 @@ -60297,8 +49641,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21278 components: - pos: -39.5,-65.5 @@ -60306,8 +49648,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21279 components: - pos: -32.5,-67.5 @@ -60315,8 +49655,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21280 components: - pos: -33.5,-67.5 @@ -60324,8 +49662,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21281 components: - pos: -34.5,-67.5 @@ -60333,8 +49669,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21282 components: - pos: -35.5,-67.5 @@ -60342,8 +49676,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21283 components: - pos: -36.5,-67.5 @@ -60351,8 +49683,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21284 components: - pos: -37.5,-67.5 @@ -60360,8 +49690,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21285 components: - pos: -38.5,-67.5 @@ -60369,8 +49697,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21286 components: - pos: -39.5,-67.5 @@ -60378,8 +49704,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21287 components: - pos: -32.5,-69.5 @@ -60387,8 +49711,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21288 components: - pos: -33.5,-69.5 @@ -60396,8 +49718,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21289 components: - pos: -34.5,-69.5 @@ -60405,8 +49725,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21290 components: - pos: -35.5,-69.5 @@ -60414,8 +49732,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21291 components: - pos: -36.5,-69.5 @@ -60423,8 +49739,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21292 components: - pos: -37.5,-69.5 @@ -60432,8 +49746,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21293 components: - pos: -38.5,-69.5 @@ -60441,8 +49753,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21294 components: - pos: -39.5,-69.5 @@ -60450,8 +49760,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21295 components: - pos: -32.5,-71.5 @@ -60459,8 +49767,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21296 components: - pos: -33.5,-71.5 @@ -60468,8 +49774,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21297 components: - pos: -34.5,-71.5 @@ -60477,8 +49781,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21298 components: - pos: -35.5,-71.5 @@ -60486,8 +49788,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21299 components: - pos: -36.5,-71.5 @@ -60495,8 +49795,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21300 components: - pos: -37.5,-71.5 @@ -60504,8 +49802,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21301 components: - pos: -38.5,-71.5 @@ -60513,8 +49809,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21302 components: - pos: -39.5,-71.5 @@ -60522,8 +49816,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21303 components: - pos: -39.5,-70.5 @@ -60531,8 +49823,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21304 components: - pos: -40.5,-70.5 @@ -60540,8 +49830,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21305 components: - pos: -41.5,-70.5 @@ -60549,8 +49837,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21306 components: - pos: -41.5,-71.5 @@ -60558,8 +49844,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21307 components: - pos: -41.5,-72.5 @@ -60567,8 +49851,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21308 components: - pos: -41.5,-73.5 @@ -60576,8 +49858,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21309 components: - pos: -50.5,-71.5 @@ -60585,8 +49865,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21310 components: - pos: -49.5,-71.5 @@ -60594,8 +49872,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21311 components: - pos: -48.5,-71.5 @@ -60603,8 +49879,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21312 components: - pos: -47.5,-71.5 @@ -60612,8 +49886,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21313 components: - pos: -46.5,-71.5 @@ -60621,8 +49893,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21314 components: - pos: -45.5,-71.5 @@ -60630,8 +49900,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21315 components: - pos: -44.5,-71.5 @@ -60639,8 +49907,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21316 components: - pos: -43.5,-71.5 @@ -60648,8 +49914,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21317 components: - pos: -50.5,-69.5 @@ -60657,8 +49921,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21318 components: - pos: -49.5,-69.5 @@ -60666,8 +49928,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21319 components: - pos: -48.5,-69.5 @@ -60675,8 +49935,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21320 components: - pos: -47.5,-69.5 @@ -60684,8 +49942,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21321 components: - pos: -46.5,-69.5 @@ -60693,8 +49949,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21322 components: - pos: -45.5,-69.5 @@ -60702,8 +49956,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21323 components: - pos: -44.5,-69.5 @@ -60711,8 +49963,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21324 components: - pos: -43.5,-69.5 @@ -60720,8 +49970,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21325 components: - pos: -43.5,-70.5 @@ -60729,8 +49977,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21326 components: - pos: -50.5,-67.5 @@ -60738,8 +49984,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21327 components: - pos: -49.5,-67.5 @@ -60747,8 +49991,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21328 components: - pos: -48.5,-67.5 @@ -60756,8 +49998,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21329 components: - pos: -47.5,-67.5 @@ -60765,8 +50005,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21330 components: - pos: -46.5,-67.5 @@ -60774,8 +50012,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21331 components: - pos: -45.5,-67.5 @@ -60783,8 +50019,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21332 components: - pos: -44.5,-67.5 @@ -60792,8 +50026,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21333 components: - pos: -43.5,-67.5 @@ -60801,8 +50033,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21334 components: - pos: -50.5,-65.5 @@ -60810,8 +50040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21335 components: - pos: -49.5,-65.5 @@ -60819,8 +50047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21336 components: - pos: -48.5,-65.5 @@ -60828,8 +50054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21337 components: - pos: -47.5,-65.5 @@ -60837,8 +50061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21338 components: - pos: -46.5,-65.5 @@ -60846,8 +50068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21339 components: - pos: -45.5,-65.5 @@ -60855,8 +50075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21340 components: - pos: -44.5,-65.5 @@ -60864,8 +50082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21341 components: - pos: -43.5,-65.5 @@ -60873,8 +50089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21342 components: - pos: -43.5,-66.5 @@ -60882,8 +50096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21343 components: - pos: -39.5,-66.5 @@ -60891,8 +50103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21344 components: - pos: -39.5,-62.5 @@ -60900,8 +50110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21345 components: - pos: -43.5,-62.5 @@ -60909,8 +50117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21346 components: - pos: -43.5,-61.5 @@ -60918,8 +50124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21347 components: - pos: -44.5,-61.5 @@ -60927,8 +50131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21348 components: - pos: -45.5,-61.5 @@ -60936,8 +50138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21349 components: - pos: -46.5,-61.5 @@ -60945,8 +50145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21350 components: - pos: -47.5,-61.5 @@ -60954,8 +50152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21351 components: - pos: -48.5,-61.5 @@ -60963,8 +50159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21352 components: - pos: -49.5,-61.5 @@ -60972,8 +50166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21353 components: - pos: -50.5,-61.5 @@ -60981,8 +50173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21354 components: - pos: -50.5,-63.5 @@ -60990,8 +50180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21355 components: - pos: -49.5,-63.5 @@ -60999,8 +50187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21356 components: - pos: -48.5,-63.5 @@ -61008,8 +50194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21357 components: - pos: -47.5,-63.5 @@ -61017,8 +50201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21358 components: - pos: -46.5,-63.5 @@ -61026,8 +50208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21359 components: - pos: -45.5,-63.5 @@ -61035,8 +50215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21360 components: - pos: -44.5,-63.5 @@ -61044,8 +50222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21361 components: - pos: -43.5,-63.5 @@ -61053,8 +50229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21362 components: - pos: -42.5,-70.5 @@ -61062,8 +50236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21581 components: - pos: -6.5,4.5 @@ -61071,8 +50243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21583 components: - pos: -7.5,4.5 @@ -61080,8 +50250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21584 components: - pos: -8.5,4.5 @@ -61089,8 +50257,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21586 components: - pos: -6.5,5.5 @@ -61098,15 +50264,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21587 components: - pos: -5.5,5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21588 components: - pos: -4.5,5.5 @@ -61114,8 +50276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21646 components: - pos: -17.5,73.5 @@ -61123,8 +50283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22413 components: - pos: -48.5,10.5 @@ -61132,8 +50290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22414 components: - pos: -48.5,9.5 @@ -61141,8 +50297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22415 components: - pos: -48.5,8.5 @@ -61150,8 +50304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22416 components: - pos: -47.5,8.5 @@ -61159,8 +50311,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22417 components: - pos: -46.5,8.5 @@ -61168,8 +50318,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22418 components: - pos: -45.5,8.5 @@ -61177,8 +50325,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22419 components: - pos: -44.5,8.5 @@ -61186,8 +50332,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22420 components: - pos: -43.5,8.5 @@ -61195,8 +50339,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22421 components: - pos: -42.5,8.5 @@ -61204,8 +50346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22422 components: - pos: -41.5,8.5 @@ -61213,8 +50353,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22423 components: - pos: -40.5,8.5 @@ -61222,8 +50360,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22424 components: - pos: -39.5,8.5 @@ -61231,8 +50367,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22425 components: - pos: -38.5,8.5 @@ -61240,8 +50374,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22426 components: - pos: -37.5,8.5 @@ -61249,8 +50381,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22427 components: - pos: -36.5,8.5 @@ -61258,8 +50388,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22428 components: - pos: -35.5,8.5 @@ -61267,8 +50395,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22429 components: - pos: -34.5,8.5 @@ -61276,8 +50402,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22430 components: - pos: -31.5,8.5 @@ -61285,8 +50409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22431 components: - pos: -31.5,9.5 @@ -61294,8 +50416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22432 components: - pos: -30.5,9.5 @@ -61303,8 +50423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22433 components: - pos: -29.5,9.5 @@ -61312,8 +50430,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22434 components: - pos: -28.5,9.5 @@ -61321,8 +50437,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22435 components: - pos: -27.5,9.5 @@ -61330,8 +50444,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22436 components: - pos: -26.5,9.5 @@ -61339,8 +50451,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22437 components: - pos: -25.5,9.5 @@ -61348,15 +50458,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22438 components: - pos: -24.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22439 components: - pos: -48.5,11.5 @@ -61364,15 +50470,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22440 components: - pos: -49.5,11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22578 components: - pos: -32.5,8.5 @@ -61380,8 +50482,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22580 components: - pos: -33.5,8.5 @@ -61389,8 +50489,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22709 components: - pos: -17.5,75.5 @@ -61398,8 +50496,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22711 components: - pos: -17.5,72.5 @@ -61407,8 +50503,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22715 components: - pos: 16.5,-16.5 @@ -61416,8 +50510,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22719 components: - pos: -33.5,70.5 @@ -61425,8 +50517,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22727 components: - pos: -17.5,74.5 @@ -61434,8 +50524,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22728 components: - pos: -17.5,71.5 @@ -61443,50 +50531,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22832 components: - pos: -1.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22833 components: - pos: -0.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22834 components: - pos: 0.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22835 components: - pos: 0.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22836 components: - pos: 0.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22837 components: - pos: 0.5,52.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22838 components: - pos: 19.5,5.5 @@ -61494,8 +50568,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22839 components: - pos: 20.5,31.5 @@ -61503,8 +50575,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22840 components: - pos: 20.5,32.5 @@ -61512,8 +50582,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22841 components: - pos: 20.5,33.5 @@ -61521,8 +50589,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22842 components: - pos: 20.5,34.5 @@ -61530,8 +50596,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22843 components: - pos: 20.5,35.5 @@ -61539,15 +50603,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22844 components: - pos: 20.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22845 components: - pos: 20.5,37.5 @@ -61555,15 +50615,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22846 components: - pos: 20.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22847 components: - pos: 20.5,39.5 @@ -61571,8 +50627,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22848 components: - pos: 20.5,40.5 @@ -61580,8 +50634,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22849 components: - pos: 20.5,41.5 @@ -61589,8 +50641,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22850 components: - pos: 20.5,42.5 @@ -61598,8 +50648,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22851 components: - pos: 20.5,43.5 @@ -61607,15 +50655,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22852 components: - pos: 20.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22853 components: - pos: 20.5,30.5 @@ -61623,8 +50667,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22854 components: - pos: 20.5,29.5 @@ -61632,8 +50674,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22855 components: - pos: 20.5,28.5 @@ -61641,8 +50681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22856 components: - pos: 20.5,27.5 @@ -61650,8 +50688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22857 components: - pos: 20.5,26.5 @@ -61659,8 +50695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22858 components: - pos: 20.5,25.5 @@ -61668,8 +50702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22859 components: - pos: 20.5,24.5 @@ -61677,8 +50709,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22860 components: - pos: 20.5,23.5 @@ -61686,8 +50716,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22861 components: - pos: 20.5,22.5 @@ -61695,8 +50723,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22862 components: - pos: 21.5,22.5 @@ -61704,8 +50730,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22863 components: - pos: 22.5,22.5 @@ -61713,8 +50737,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22864 components: - pos: 25.5,22.5 @@ -61722,8 +50744,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22865 components: - pos: 24.5,22.5 @@ -61731,8 +50751,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22866 components: - pos: 23.5,22.5 @@ -61740,8 +50758,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22867 components: - pos: 23.5,21.5 @@ -61749,8 +50765,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22868 components: - pos: 23.5,20.5 @@ -61758,8 +50772,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22869 components: - pos: 24.5,20.5 @@ -61767,8 +50779,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22870 components: - pos: 25.5,20.5 @@ -61776,8 +50786,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22871 components: - pos: 26.5,20.5 @@ -61785,8 +50793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22872 components: - pos: 27.5,20.5 @@ -61794,8 +50800,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22873 components: - pos: 28.5,20.5 @@ -61803,8 +50807,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22874 components: - pos: 29.5,20.5 @@ -61812,36 +50814,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22875 components: - pos: 30.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22951 components: - pos: -4.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22952 components: - pos: -3.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22970 components: - pos: -2.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22977 components: - pos: -1.5,-13.5 @@ -61849,8 +50841,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23045 components: - pos: -1.5,-14.5 @@ -61858,8 +50848,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23477 components: - pos: -1.5,-15.5 @@ -61867,8 +50855,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23478 components: - pos: -1.5,-16.5 @@ -61876,8 +50862,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23479 components: - pos: -1.5,-17.5 @@ -61885,8 +50869,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23480 components: - pos: -1.5,-18.5 @@ -61894,8 +50876,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23481 components: - pos: -1.5,-19.5 @@ -61903,8 +50883,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23482 components: - pos: -1.5,-20.5 @@ -61912,8 +50890,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23483 components: - pos: -0.5,-20.5 @@ -61921,8 +50897,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23484 components: - pos: 0.5,-20.5 @@ -61930,8 +50904,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23485 components: - pos: 0.5,-21.5 @@ -61939,78 +50911,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 23486 components: - pos: 0.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24219 components: - pos: -27.5,19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24223 components: - pos: -27.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24626 components: - pos: -26.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25069 components: - pos: -27.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25179 components: - pos: -28.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25212 components: - pos: -29.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25213 components: - pos: -29.5,19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25265 components: - pos: -29.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25269 components: - pos: -29.5,17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25297 components: - pos: -15.5,72.5 @@ -62018,8 +50968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25298 components: - pos: -34.5,72.5 @@ -62027,8 +50975,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25299 components: - pos: -35.5,72.5 @@ -62036,8 +50982,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25473 components: - pos: -17.5,70.5 @@ -62045,8 +50989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25474 components: - pos: -17.5,69.5 @@ -62054,29 +50996,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25494 components: - pos: -29.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25589 components: - pos: -29.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25758 components: - pos: 20.5,52.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25759 components: - pos: 20.5,53.5 @@ -62084,232 +51018,166 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25760 components: - pos: 20.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25761 components: - pos: 20.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25762 components: - pos: 20.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25763 components: - pos: 20.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25764 components: - pos: 20.5,58.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25765 components: - pos: 20.5,59.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25766 components: - pos: 20.5,60.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25767 components: - pos: 20.5,61.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25768 components: - pos: 20.5,62.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25769 components: - pos: 20.5,63.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25770 components: - pos: 20.5,64.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25771 components: - pos: 20.5,65.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25772 components: - pos: 20.5,66.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25773 components: - pos: 20.5,67.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25774 components: - pos: 21.5,67.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25775 components: - pos: 22.5,67.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25776 components: - pos: 23.5,67.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25777 components: - pos: 23.5,68.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25778 components: - pos: 23.5,69.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25779 components: - pos: 23.5,70.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25780 components: - pos: 23.5,71.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25781 components: - pos: 23.5,72.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25782 components: - pos: 23.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25783 components: - pos: 24.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25784 components: - pos: 25.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25785 components: - pos: 26.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25786 components: - pos: 27.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25787 components: - pos: 28.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25788 components: - pos: 29.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25789 components: - pos: 30.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25790 components: - pos: 30.5,74.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25791 components: - pos: 30.5,75.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25792 components: - pos: 30.5,76.5 @@ -62317,36 +51185,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25793 components: - pos: 30.5,77.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25794 components: - pos: 30.5,78.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25890 components: - pos: -25.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25891 components: - pos: -24.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - proto: CableHVStack entities: - uid: 4172 @@ -62398,8 +51256,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 1190 components: - pos: -34.5,-25.5 @@ -62407,8 +51263,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3869 components: - pos: -11.5,4.5 @@ -62416,8 +51270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3870 components: - pos: -12.5,4.5 @@ -62425,8 +51277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3871 components: - pos: -13.5,4.5 @@ -62434,8 +51284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3872 components: - pos: -14.5,4.5 @@ -62443,8 +51291,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3873 components: - pos: -15.5,4.5 @@ -62452,8 +51298,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3874 components: - pos: -16.5,4.5 @@ -62461,8 +51305,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3875 components: - pos: -16.5,3.5 @@ -62470,8 +51312,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3876 components: - pos: -16.5,2.5 @@ -62479,8 +51319,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3877 components: - pos: -16.5,1.5 @@ -62488,8 +51326,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3878 components: - pos: -16.5,0.5 @@ -62497,8 +51333,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3879 components: - pos: -16.5,-0.5 @@ -62506,8 +51340,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3880 components: - pos: -15.5,-0.5 @@ -62515,8 +51347,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3881 components: - pos: -14.5,-0.5 @@ -62524,50 +51354,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 3882 components: - pos: -14.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 3883 components: - pos: -14.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 3884 components: - pos: -13.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 3885 components: - pos: -12.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 3905 components: - pos: -12.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 3906 components: - pos: -12.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 4234 components: - pos: -29.5,65.5 @@ -62575,8 +51391,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4347 components: - pos: -31.5,80.5 @@ -62584,8 +51398,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4348 components: - pos: -33.5,80.5 @@ -62593,8 +51405,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4349 components: - pos: -35.5,80.5 @@ -62602,8 +51412,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4919 components: - pos: -23.5,80.5 @@ -62611,8 +51419,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 4921 components: - pos: -15.5,80.5 @@ -62620,22 +51426,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5383 components: - pos: -11.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5384 components: - pos: -11.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5644 components: - pos: -34.5,64.5 @@ -62643,8 +51443,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5645 components: - pos: -33.5,64.5 @@ -62652,8 +51450,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5646 components: - pos: -32.5,64.5 @@ -62661,8 +51457,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5647 components: - pos: -31.5,64.5 @@ -62670,8 +51464,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5648 components: - pos: -30.5,64.5 @@ -62679,8 +51471,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5649 components: - pos: -29.5,64.5 @@ -62688,8 +51478,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5650 components: - pos: -28.5,64.5 @@ -62697,8 +51485,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5651 components: - pos: -27.5,64.5 @@ -62706,8 +51492,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5652 components: - pos: -26.5,64.5 @@ -62715,8 +51499,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5653 components: - pos: -25.5,64.5 @@ -62724,8 +51506,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5654 components: - pos: -24.5,64.5 @@ -62733,8 +51513,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5655 components: - pos: -23.5,64.5 @@ -62742,8 +51520,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5656 components: - pos: -22.5,64.5 @@ -62751,8 +51527,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5657 components: - pos: -21.5,64.5 @@ -62760,8 +51534,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5658 components: - pos: -20.5,64.5 @@ -62769,8 +51541,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5659 components: - pos: -19.5,64.5 @@ -62778,8 +51548,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5660 components: - pos: -18.5,64.5 @@ -62787,8 +51555,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5661 components: - pos: -17.5,64.5 @@ -62796,8 +51562,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5662 components: - pos: -16.5,64.5 @@ -62805,8 +51569,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5663 components: - pos: -15.5,64.5 @@ -62814,8 +51576,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5664 components: - pos: -15.5,65.5 @@ -62823,8 +51583,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5665 components: - pos: -15.5,66.5 @@ -62832,8 +51590,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5666 components: - pos: -15.5,67.5 @@ -62841,8 +51597,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5667 components: - pos: -15.5,68.5 @@ -62850,8 +51604,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5668 components: - pos: -15.5,69.5 @@ -62859,8 +51611,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5669 components: - pos: -15.5,70.5 @@ -62868,8 +51618,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5670 components: - pos: -15.5,71.5 @@ -62877,8 +51625,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5671 components: - pos: -15.5,72.5 @@ -62886,8 +51632,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5672 components: - pos: -15.5,73.5 @@ -62895,8 +51639,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5673 components: - pos: -15.5,74.5 @@ -62904,8 +51646,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5674 components: - pos: -15.5,75.5 @@ -62913,8 +51653,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5675 components: - pos: -15.5,76.5 @@ -62922,8 +51660,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5676 components: - pos: -15.5,77.5 @@ -62931,8 +51667,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5677 components: - pos: -15.5,78.5 @@ -62940,8 +51674,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5678 components: - pos: -15.5,79.5 @@ -62949,8 +51681,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5688 components: - pos: -21.5,65.5 @@ -62958,8 +51688,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5708 components: - pos: -35.5,79.5 @@ -62967,8 +51695,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5709 components: - pos: -35.5,78.5 @@ -62976,8 +51702,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5710 components: - pos: -35.5,77.5 @@ -62985,8 +51709,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5711 components: - pos: -35.5,76.5 @@ -62994,8 +51716,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5712 components: - pos: -35.5,75.5 @@ -63003,8 +51723,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5713 components: - pos: -35.5,74.5 @@ -63012,8 +51730,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5714 components: - pos: -35.5,73.5 @@ -63021,8 +51737,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5715 components: - pos: -35.5,72.5 @@ -63030,8 +51744,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5716 components: - pos: -35.5,71.5 @@ -63039,8 +51751,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5717 components: - pos: -35.5,70.5 @@ -63048,8 +51758,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5718 components: - pos: -35.5,69.5 @@ -63057,8 +51765,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5719 components: - pos: -35.5,68.5 @@ -63066,8 +51772,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5720 components: - pos: -35.5,67.5 @@ -63075,8 +51779,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5721 components: - pos: -35.5,66.5 @@ -63084,8 +51786,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5722 components: - pos: -35.5,65.5 @@ -63093,8 +51793,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5723 components: - pos: -35.5,64.5 @@ -63102,57 +51800,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5732 components: - pos: -22.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5733 components: - pos: -22.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5734 components: - pos: -22.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5735 components: - pos: -21.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5736 components: - pos: -20.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5737 components: - pos: -20.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5738 components: - pos: -20.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 5739 components: - pos: -20.5,57.5 @@ -63160,8 +51842,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5740 components: - pos: -20.5,58.5 @@ -63169,8 +51849,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5741 components: - pos: -20.5,59.5 @@ -63178,8 +51856,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5776 components: - pos: -17.5,68.5 @@ -63187,8 +51863,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5777 components: - pos: -18.5,80.5 @@ -63196,8 +51870,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5778 components: - pos: -26.5,80.5 @@ -63205,8 +51877,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5807 components: - pos: -25.5,80.5 @@ -63214,8 +51884,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5808 components: - pos: -17.5,80.5 @@ -63223,8 +51891,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5833 components: - pos: -16.5,68.5 @@ -63232,8 +51898,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5916 components: - pos: -27.5,80.5 @@ -63241,8 +51905,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5917 components: - pos: -19.5,80.5 @@ -63250,8 +51912,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5918 components: - pos: -34.5,68.5 @@ -63259,8 +51919,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 5923 components: - pos: -29.5,79.5 @@ -63268,8 +51926,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6063 components: - pos: -34.5,76.5 @@ -63277,8 +51933,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6064 components: - pos: -21.5,80.5 @@ -63286,8 +51940,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6065 components: - pos: -29.5,80.5 @@ -63295,8 +51947,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6196 components: - pos: -33.5,68.5 @@ -63304,8 +51954,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6197 components: - pos: -20.5,80.5 @@ -63313,8 +51961,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6198 components: - pos: -28.5,80.5 @@ -63322,8 +51968,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6209 components: - pos: -32.5,80.5 @@ -63331,8 +51975,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6210 components: - pos: -34.5,80.5 @@ -63340,8 +51982,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6213 components: - pos: -24.5,80.5 @@ -63349,8 +51989,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6214 components: - pos: -16.5,80.5 @@ -63358,8 +51996,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6215 components: - pos: -21.5,79.5 @@ -63367,50 +52003,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6738 components: - pos: -23.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6739 components: - pos: -23.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6740 components: - pos: -23.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6741 components: - pos: -23.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6742 components: - pos: -23.5,58.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6743 components: - pos: -23.5,59.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6744 components: - pos: -23.5,60.5 @@ -63418,8 +52040,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6745 components: - pos: -24.5,60.5 @@ -63427,8 +52047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6746 components: - pos: -25.5,60.5 @@ -63436,8 +52054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6747 components: - pos: -26.5,60.5 @@ -63445,8 +52061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6748 components: - pos: -27.5,60.5 @@ -63454,8 +52068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6749 components: - pos: -22.5,57.5 @@ -63463,22 +52075,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6911 components: - pos: -1.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6912 components: - pos: -1.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6913 components: - pos: -2.5,56.5 @@ -63486,15 +52092,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6914 components: - pos: -0.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6915 components: - pos: -3.5,56.5 @@ -63502,8 +52104,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6943 components: - pos: 4.5,56.5 @@ -63511,8 +52111,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6944 components: - pos: 3.5,56.5 @@ -63520,57 +52118,41 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 6945 components: - pos: 2.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6946 components: - pos: 1.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 6947 components: - pos: 0.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 8017 components: - pos: -11.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 8018 components: - pos: -11.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 8019 components: - pos: -11.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 10284 components: - pos: -11.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 10286 components: - pos: -10.5,-9.5 @@ -63578,8 +52160,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10941 components: - pos: -25.5,65.5 @@ -63587,8 +52167,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 10942 components: - pos: -34.5,72.5 @@ -63596,8 +52174,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11218 components: - pos: -30.5,80.5 @@ -63605,8 +52181,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 11220 components: - pos: -22.5,80.5 @@ -63614,22 +52188,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12039 components: - pos: 13.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12040 components: - pos: 12.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12041 components: - pos: 11.5,-41.5 @@ -63637,8 +52205,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12042 components: - pos: 11.5,-42.5 @@ -63646,15 +52212,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12043 components: - pos: 11.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12044 components: - pos: 11.5,-44.5 @@ -63662,8 +52224,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12045 components: - pos: 11.5,-45.5 @@ -63671,8 +52231,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12046 components: - pos: 11.5,-46.5 @@ -63680,71 +52238,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12047 components: - pos: 19.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12048 components: - pos: 19.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12049 components: - pos: 18.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12050 components: - pos: 17.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12051 components: - pos: 16.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12052 components: - pos: 15.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12053 components: - pos: 14.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12054 components: - pos: 13.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12055 components: - pos: 12.5,-47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12056 components: - pos: 11.5,-47.5 @@ -63752,218 +52290,156 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12057 components: - pos: 19.5,-45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12058 components: - pos: 19.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12059 components: - pos: 19.5,-43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12060 components: - pos: 19.5,-42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12061 components: - pos: 19.5,-41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12062 components: - pos: 19.5,-40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12063 components: - pos: 19.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12064 components: - pos: 19.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12065 components: - pos: 19.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12066 components: - pos: 19.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12067 components: - pos: 19.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12068 components: - pos: 19.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12069 components: - pos: 19.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12070 components: - pos: 19.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12071 components: - pos: 19.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12072 components: - pos: 19.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12073 components: - pos: 19.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12074 components: - pos: 19.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12075 components: - pos: 19.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12076 components: - pos: 20.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12077 components: - pos: 21.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12078 components: - pos: 22.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12079 components: - pos: 23.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12080 components: - pos: 24.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12081 components: - pos: 25.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12082 components: - pos: 26.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12083 components: - pos: 27.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12084 components: - pos: 28.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12085 components: - pos: 28.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12086 components: - pos: 28.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12087 components: - pos: 28.5,-24.5 @@ -63971,8 +52447,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12089 components: - pos: 5.5,-43.5 @@ -63980,29 +52454,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12090 components: - pos: 5.5,-44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12091 components: - pos: 5.5,-45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12092 components: - pos: 5.5,-46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 12093 components: - pos: 5.5,-47.5 @@ -64010,8 +52476,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12094 components: - pos: 6.5,-47.5 @@ -64019,8 +52483,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12095 components: - pos: 7.5,-47.5 @@ -64028,8 +52490,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12096 components: - pos: 8.5,-47.5 @@ -64037,8 +52497,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12097 components: - pos: 9.5,-47.5 @@ -64046,8 +52504,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12098 components: - pos: 10.5,-47.5 @@ -64055,8 +52511,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12099 components: - pos: 11.5,-47.5 @@ -64064,8 +52518,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 12101 components: - pos: 12.5,-40.5 @@ -64073,8 +52525,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13978 components: - pos: 7.5,-19.5 @@ -64082,8 +52532,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13979 components: - pos: 6.5,-19.5 @@ -64091,8 +52539,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13980 components: - pos: 5.5,-19.5 @@ -64100,8 +52546,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13981 components: - pos: 4.5,-19.5 @@ -64109,8 +52553,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13982 components: - pos: 3.5,-19.5 @@ -64118,8 +52560,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13983 components: - pos: 2.5,-19.5 @@ -64127,15 +52567,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13985 components: - pos: -33.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13992 components: - pos: 0.5,-12.5 @@ -64143,8 +52579,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13993 components: - pos: -0.5,-12.5 @@ -64152,29 +52586,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13994 components: - pos: -0.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13995 components: - pos: -0.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13996 components: - pos: -0.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 13997 components: - pos: -0.5,-8.5 @@ -64182,8 +52608,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13998 components: - pos: 0.5,-8.5 @@ -64191,8 +52615,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 13999 components: - pos: 1.5,-8.5 @@ -64200,8 +52622,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14000 components: - pos: 2.5,-8.5 @@ -64209,8 +52629,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14001 components: - pos: 3.5,-8.5 @@ -64218,8 +52636,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14002 components: - pos: 4.5,-8.5 @@ -64227,8 +52643,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14003 components: - pos: 5.5,-8.5 @@ -64236,8 +52650,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14004 components: - pos: 6.5,-8.5 @@ -64245,8 +52657,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14005 components: - pos: 7.5,-8.5 @@ -64254,8 +52664,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14006 components: - pos: 8.5,-8.5 @@ -64263,8 +52671,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14007 components: - pos: 9.5,-8.5 @@ -64272,8 +52678,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14008 components: - pos: 10.5,-8.5 @@ -64281,8 +52685,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14009 components: - pos: 11.5,-8.5 @@ -64290,8 +52692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14010 components: - pos: 12.5,-8.5 @@ -64299,8 +52699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14011 components: - pos: 13.5,-8.5 @@ -64308,8 +52706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14012 components: - pos: 14.5,-8.5 @@ -64317,8 +52713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14013 components: - pos: 15.5,-8.5 @@ -64326,8 +52720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14014 components: - pos: 15.5,-9.5 @@ -64335,22 +52727,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14015 components: - pos: 15.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14016 components: - pos: 15.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14017 components: - pos: 15.5,-12.5 @@ -64358,8 +52744,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14018 components: - pos: 14.5,-12.5 @@ -64367,8 +52751,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14027 components: - pos: 12.5,-19.5 @@ -64376,8 +52758,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14028 components: - pos: 11.5,-19.5 @@ -64385,8 +52765,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14029 components: - pos: 10.5,-19.5 @@ -64394,8 +52772,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14030 components: - pos: 9.5,-19.5 @@ -64403,8 +52779,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14031 components: - pos: 8.5,-19.5 @@ -64412,36 +52786,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14034 components: - pos: 9.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14035 components: - pos: 9.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14036 components: - pos: 9.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14037 components: - pos: 9.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14038 components: - pos: 9.5,-14.5 @@ -64449,50 +52813,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14039 components: - pos: 9.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14040 components: - pos: 9.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14041 components: - pos: 9.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14042 components: - pos: 10.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14043 components: - pos: 10.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14044 components: - pos: 10.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14316 components: - pos: 11.5,-91.5 @@ -64500,8 +52850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14317 components: - pos: 11.5,-92.5 @@ -64509,8 +52857,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14318 components: - pos: 29.5,-91.5 @@ -64518,8 +52864,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14319 components: - pos: 29.5,-92.5 @@ -64527,8 +52871,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14372 components: - pos: 20.5,-98.5 @@ -64536,169 +52878,121 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14373 components: - pos: 20.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14374 components: - pos: 19.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14375 components: - pos: 18.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14376 components: - pos: 17.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14377 components: - pos: 16.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14378 components: - pos: 16.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14379 components: - pos: 15.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14380 components: - pos: 14.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14381 components: - pos: 13.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14382 components: - pos: 12.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14383 components: - pos: 11.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14384 components: - pos: 10.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14385 components: - pos: 9.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14386 components: - pos: 9.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14387 components: - pos: 9.5,-98.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14388 components: - pos: 9.5,-97.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14389 components: - pos: 9.5,-96.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14390 components: - pos: 9.5,-95.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14391 components: - pos: 9.5,-94.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14392 components: - pos: 9.5,-93.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14393 components: - pos: 9.5,-92.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14394 components: - pos: 9.5,-91.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14395 components: - pos: 10.5,-91.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14396 components: - pos: 11.5,-91.5 @@ -64706,162 +53000,116 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 14397 components: - pos: 30.5,-91.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14398 components: - pos: 31.5,-91.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14399 components: - pos: 31.5,-92.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14400 components: - pos: 31.5,-93.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14401 components: - pos: 31.5,-94.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14402 components: - pos: 31.5,-95.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14403 components: - pos: 31.5,-96.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14404 components: - pos: 31.5,-97.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14405 components: - pos: 31.5,-98.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14406 components: - pos: 31.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14407 components: - pos: 31.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14408 components: - pos: 30.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14409 components: - pos: 29.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14410 components: - pos: 28.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14411 components: - pos: 27.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14412 components: - pos: 26.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14413 components: - pos: 25.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14414 components: - pos: 24.5,-100.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14415 components: - pos: 24.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14416 components: - pos: 23.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14417 components: - pos: 22.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14418 components: - pos: 21.5,-99.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 14478 components: - pos: 15.5,-46.5 @@ -64869,8 +53117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15079 components: - pos: 25.5,22.5 @@ -64878,8 +53124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15080 components: - pos: 24.5,22.5 @@ -64887,8 +53131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15081 components: - pos: 23.5,22.5 @@ -64896,8 +53138,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15082 components: - pos: 21.5,22.5 @@ -64905,8 +53145,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15083 components: - pos: 22.5,22.5 @@ -64914,8 +53152,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15084 components: - pos: 20.5,22.5 @@ -64923,8 +53159,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15085 components: - pos: 20.5,23.5 @@ -64932,8 +53166,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15086 components: - pos: 20.5,24.5 @@ -64941,8 +53173,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15087 components: - pos: 20.5,25.5 @@ -64950,8 +53180,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15088 components: - pos: 20.5,26.5 @@ -64959,8 +53187,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15089 components: - pos: 20.5,27.5 @@ -64968,8 +53194,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15090 components: - pos: 20.5,28.5 @@ -64977,8 +53201,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15091 components: - pos: 20.5,29.5 @@ -64986,8 +53208,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15092 components: - pos: 20.5,30.5 @@ -64995,8 +53215,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15093 components: - pos: 21.5,30.5 @@ -65004,8 +53222,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15094 components: - pos: 22.5,30.5 @@ -65013,8 +53229,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15095 components: - pos: 23.5,30.5 @@ -65022,8 +53236,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15096 components: - pos: 23.5,31.5 @@ -65031,8 +53243,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15097 components: - pos: 23.5,32.5 @@ -65040,8 +53250,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15098 components: - pos: 23.5,21.5 @@ -65049,8 +53257,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15099 components: - pos: 23.5,20.5 @@ -65058,8 +53264,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15100 components: - pos: 24.5,20.5 @@ -65067,8 +53271,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15101 components: - pos: 25.5,20.5 @@ -65076,8 +53278,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15102 components: - pos: 26.5,20.5 @@ -65085,8 +53285,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15103 components: - pos: 27.5,20.5 @@ -65094,8 +53292,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15104 components: - pos: 28.5,20.5 @@ -65103,8 +53299,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15105 components: - pos: 29.5,20.5 @@ -65112,78 +53306,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15106 components: - pos: 30.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15107 components: - pos: 31.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15108 components: - pos: 31.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15109 components: - pos: 32.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15110 components: - pos: 33.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15111 components: - pos: 34.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15112 components: - pos: 35.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15113 components: - pos: 36.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15114 components: - pos: 37.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15115 components: - pos: 37.5,21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15117 components: - pos: 37.5,22.5 @@ -65191,85 +53363,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15118 components: - pos: 38.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15119 components: - pos: 39.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15120 components: - pos: 40.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15121 components: - pos: 41.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15122 components: - pos: 42.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15123 components: - pos: 43.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15124 components: - pos: 43.5,19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15126 components: - pos: 43.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15128 components: - pos: 43.5,17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15129 components: - pos: 43.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15130 components: - pos: 43.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15131 components: - pos: 44.5,15.5 @@ -65277,29 +53425,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15554 components: - pos: 20.5,62.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15555 components: - pos: 20.5,64.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15560 components: - pos: 40.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15683 components: - pos: -4.5,5.5 @@ -65307,15 +53447,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15684 components: - pos: -5.5,5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15685 components: - pos: -6.5,5.5 @@ -65323,8 +53459,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15686 components: - pos: -6.5,4.5 @@ -65332,8 +53466,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15687 components: - pos: -6.5,3.5 @@ -65341,8 +53473,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15688 components: - pos: -7.5,4.5 @@ -65350,8 +53480,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15689 components: - pos: -8.5,4.5 @@ -65359,8 +53487,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15690 components: - pos: -9.5,4.5 @@ -65368,8 +53494,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15691 components: - pos: -10.5,4.5 @@ -65377,8 +53501,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15692 components: - pos: -10.5,5.5 @@ -65386,8 +53508,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15693 components: - pos: -10.5,6.5 @@ -65395,8 +53515,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15694 components: - pos: -10.5,7.5 @@ -65404,8 +53522,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15695 components: - pos: -10.5,8.5 @@ -65413,8 +53529,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15696 components: - pos: -10.5,9.5 @@ -65422,8 +53536,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15697 components: - pos: -10.5,10.5 @@ -65431,8 +53543,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15698 components: - pos: -10.5,11.5 @@ -65440,8 +53550,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15699 components: - pos: -10.5,12.5 @@ -65449,8 +53557,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15700 components: - pos: -9.5,12.5 @@ -65458,8 +53564,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15701 components: - pos: -8.5,12.5 @@ -65467,8 +53571,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15702 components: - pos: -8.5,13.5 @@ -65476,8 +53578,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15703 components: - pos: -8.5,14.5 @@ -65485,8 +53585,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15704 components: - pos: -8.5,15.5 @@ -65494,8 +53592,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15705 components: - pos: -8.5,16.5 @@ -65503,8 +53599,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15706 components: - pos: -8.5,17.5 @@ -65512,8 +53606,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15707 components: - pos: -8.5,18.5 @@ -65521,8 +53613,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15708 components: - pos: -8.5,19.5 @@ -65530,8 +53620,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15709 components: - pos: -7.5,19.5 @@ -65539,8 +53627,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15710 components: - pos: -6.5,19.5 @@ -65548,8 +53634,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15711 components: - pos: -5.5,19.5 @@ -65557,43 +53641,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15712 components: - pos: -5.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15713 components: - pos: -5.5,17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15714 components: - pos: -5.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15715 components: - pos: -5.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15716 components: - pos: -5.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15717 components: - pos: -6.5,14.5 @@ -65601,8 +53673,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15992 components: - pos: 25.5,30.5 @@ -65610,15 +53680,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15997 components: - pos: 30.5,30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 15998 components: - pos: 29.5,30.5 @@ -65626,8 +53692,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 15999 components: - pos: 28.5,30.5 @@ -65635,8 +53699,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16000 components: - pos: 27.5,30.5 @@ -65644,8 +53706,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16020 components: - pos: 19.5,5.5 @@ -65653,8 +53713,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16021 components: - pos: 19.5,4.5 @@ -65662,8 +53720,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16022 components: - pos: 19.5,3.5 @@ -65671,8 +53727,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16023 components: - pos: 20.5,3.5 @@ -65680,8 +53734,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16024 components: - pos: 21.5,3.5 @@ -65689,8 +53741,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16025 components: - pos: 22.5,3.5 @@ -65698,8 +53748,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16026 components: - pos: 23.5,3.5 @@ -65707,8 +53755,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16027 components: - pos: 24.5,3.5 @@ -65716,8 +53762,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16028 components: - pos: 25.5,3.5 @@ -65725,36 +53769,26 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16029 components: - pos: 26.5,3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16030 components: - pos: 27.5,3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16031 components: - pos: 28.5,3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16032 components: - pos: 28.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16033 components: - pos: 28.5,5.5 @@ -65762,120 +53796,86 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16034 components: - pos: 28.5,6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16035 components: - pos: 28.5,7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16036 components: - pos: 28.5,8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16037 components: - pos: 28.5,9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16038 components: - pos: 28.5,10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16039 components: - pos: 28.5,11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16040 components: - pos: 28.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16041 components: - pos: 27.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16042 components: - pos: 26.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16043 components: - pos: 25.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16044 components: - pos: 24.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16045 components: - pos: 23.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16046 components: - pos: 22.5,12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16047 components: - pos: 22.5,13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16048 components: - pos: 22.5,14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16049 components: - pos: 22.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16050 components: - pos: 23.5,15.5 @@ -65883,134 +53883,96 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16168 components: - pos: -8.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16169 components: - pos: -8.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16170 components: - pos: -9.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16171 components: - pos: -9.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16172 components: - pos: -10.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16173 components: - pos: -11.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16174 components: - pos: -12.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16175 components: - pos: -12.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16176 components: - pos: -12.5,42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16177 components: - pos: -12.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16178 components: - pos: -12.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16179 components: - pos: -12.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16180 components: - pos: -12.5,46.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16181 components: - pos: -12.5,47.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16182 components: - pos: -12.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16183 components: - pos: -11.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16184 components: - pos: -10.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16185 components: - pos: -9.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16186 components: - pos: -8.5,48.5 @@ -66018,92 +53980,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16294 components: - pos: -13.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16295 components: - pos: -14.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16296 components: - pos: -15.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16297 components: - pos: -16.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16298 components: - pos: -17.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16299 components: - pos: -18.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16300 components: - pos: -19.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16301 components: - pos: -19.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16304 components: - pos: -19.5,42.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16305 components: - pos: -19.5,43.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16306 components: - pos: -19.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16307 components: - pos: -20.5,44.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16308 components: - pos: -21.5,44.5 @@ -66111,8 +54047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16309 components: - pos: -22.5,44.5 @@ -66120,8 +54054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16310 components: - pos: -22.5,43.5 @@ -66129,8 +54061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16311 components: - pos: -22.5,42.5 @@ -66138,15 +54068,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16312 components: - pos: -22.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16313 components: - pos: -22.5,40.5 @@ -66154,78 +54080,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16465 components: - pos: -23.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16466 components: - pos: -24.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16467 components: - pos: -25.5,41.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16468 components: - pos: -25.5,40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16469 components: - pos: -25.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16470 components: - pos: -25.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16471 components: - pos: -25.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16472 components: - pos: -26.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16473 components: - pos: -27.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16474 components: - pos: -28.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16475 components: - pos: -29.5,37.5 @@ -66233,8 +54137,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16476 components: - pos: -30.5,37.5 @@ -66242,8 +54144,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16477 components: - pos: -30.5,36.5 @@ -66251,8 +54151,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16478 components: - pos: -30.5,35.5 @@ -66260,8 +54158,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16479 components: - pos: -30.5,34.5 @@ -66269,8 +54165,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16480 components: - pos: -31.5,34.5 @@ -66278,8 +54172,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16481 components: - pos: -31.5,33.5 @@ -66287,141 +54179,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16482 components: - pos: -31.5,32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16483 components: - pos: -31.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16484 components: - pos: -32.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16485 components: - pos: -33.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16486 components: - pos: -34.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16487 components: - pos: -35.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16488 components: - pos: -36.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16489 components: - pos: -37.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16490 components: - pos: -38.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16491 components: - pos: -39.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16492 components: - pos: -39.5,31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16493 components: - pos: -39.5,30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16494 components: - pos: -39.5,29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16495 components: - pos: -39.5,28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16496 components: - pos: -39.5,27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16497 components: - pos: -39.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16498 components: - pos: -38.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16499 components: - pos: -37.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16500 components: - pos: -36.5,26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16501 components: - pos: -35.5,26.5 @@ -66429,8 +54281,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16670 components: - pos: -10.5,13.5 @@ -66438,8 +54288,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16671 components: - pos: -11.5,13.5 @@ -66447,8 +54295,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16881 components: - pos: 7.5,44.5 @@ -66456,8 +54302,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16882 components: - pos: 8.5,44.5 @@ -66465,8 +54309,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16883 components: - pos: 9.5,44.5 @@ -66474,8 +54316,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16884 components: - pos: 10.5,44.5 @@ -66483,8 +54323,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16885 components: - pos: 11.5,44.5 @@ -66492,8 +54330,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16886 components: - pos: 11.5,45.5 @@ -66501,8 +54337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16887 components: - pos: 12.5,45.5 @@ -66510,8 +54344,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16888 components: - pos: 13.5,45.5 @@ -66519,8 +54351,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16889 components: - pos: 14.5,45.5 @@ -66528,8 +54358,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16890 components: - pos: 15.5,45.5 @@ -66537,8 +54365,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16891 components: - pos: 16.5,45.5 @@ -66546,8 +54372,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16892 components: - pos: 17.5,45.5 @@ -66555,8 +54379,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16893 components: - pos: 18.5,45.5 @@ -66564,15 +54386,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16894 components: - pos: 19.5,45.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16895 components: - pos: 20.5,45.5 @@ -66580,8 +54398,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16896 components: - pos: 20.5,46.5 @@ -66589,8 +54405,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16897 components: - pos: 20.5,47.5 @@ -66598,43 +54412,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16898 components: - pos: 20.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16899 components: - pos: 20.5,49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16900 components: - pos: 20.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16901 components: - pos: 20.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16902 components: - pos: 20.5,52.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16903 components: - pos: 20.5,53.5 @@ -66642,50 +54444,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16904 components: - pos: 20.5,54.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16905 components: - pos: 20.5,55.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16906 components: - pos: 20.5,56.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16907 components: - pos: 20.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16908 components: - pos: 19.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16909 components: - pos: 18.5,57.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16910 components: - pos: 17.5,57.5 @@ -66693,71 +54481,51 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 16911 components: - pos: 20.5,58.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16912 components: - pos: 20.5,59.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16913 components: - pos: 20.5,60.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16915 components: - pos: 20.5,61.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16916 components: - pos: 20.5,63.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16918 components: - pos: 20.5,65.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16919 components: - pos: 20.5,66.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16920 components: - pos: 20.5,67.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16921 components: - pos: 21.5,67.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 16922 components: - pos: 21.5,68.5 @@ -66765,8 +54533,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17130 components: - pos: 41.5,37.5 @@ -66774,8 +54540,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17131 components: - pos: 41.5,36.5 @@ -66783,8 +54547,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17132 components: - pos: 41.5,35.5 @@ -66792,8 +54554,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17133 components: - pos: 40.5,37.5 @@ -66801,15 +54561,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17335 components: - pos: 57.5,6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17336 components: - pos: 57.5,7.5 @@ -66817,8 +54573,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17337 components: - pos: 56.5,7.5 @@ -66826,8 +54580,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17338 components: - pos: 55.5,7.5 @@ -66835,8 +54587,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17339 components: - pos: 54.5,7.5 @@ -66844,8 +54594,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17340 components: - pos: 54.5,6.5 @@ -66853,211 +54601,151 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17341 components: - pos: 54.5,5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17342 components: - pos: 54.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17343 components: - pos: 55.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17344 components: - pos: 56.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17345 components: - pos: 57.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17346 components: - pos: 58.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17347 components: - pos: 59.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17348 components: - pos: 60.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17349 components: - pos: 61.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17350 components: - pos: 62.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17351 components: - pos: 63.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17352 components: - pos: 64.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17353 components: - pos: 65.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17354 components: - pos: 66.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17355 components: - pos: 67.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17356 components: - pos: 68.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17357 components: - pos: 69.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17358 components: - pos: 70.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17359 components: - pos: 71.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17360 components: - pos: 72.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17361 components: - pos: 73.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17362 components: - pos: 74.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17363 components: - pos: 75.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17364 components: - pos: 76.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17365 components: - pos: 77.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17366 components: - pos: 78.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17367 components: - pos: 79.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17368 components: - pos: 79.5,3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17369 components: - pos: 79.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17371 components: - pos: 79.5,1.5 @@ -67065,379 +54753,271 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17475 components: - pos: 53.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17476 components: - pos: 52.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17477 components: - pos: 51.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17478 components: - pos: 50.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17479 components: - pos: 49.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17480 components: - pos: 48.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17481 components: - pos: 47.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17482 components: - pos: 46.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17483 components: - pos: 45.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17484 components: - pos: 44.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17485 components: - pos: 43.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17486 components: - pos: 42.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17487 components: - pos: 41.5,4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17488 components: - pos: 41.5,3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17489 components: - pos: 41.5,2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17490 components: - pos: 41.5,1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17491 components: - pos: 41.5,0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17492 components: - pos: 41.5,-0.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17493 components: - pos: 41.5,-1.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17494 components: - pos: 41.5,-2.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17495 components: - pos: 41.5,-3.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17496 components: - pos: 41.5,-4.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17497 components: - pos: 41.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17498 components: - pos: 42.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17499 components: - pos: 43.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17500 components: - pos: 44.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17501 components: - pos: 45.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17502 components: - pos: 46.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17503 components: - pos: 47.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17504 components: - pos: 48.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17505 components: - pos: 49.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17506 components: - pos: 50.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17507 components: - pos: 51.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17508 components: - pos: 52.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17509 components: - pos: 53.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17510 components: - pos: 54.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17511 components: - pos: 55.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17512 components: - pos: 56.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17513 components: - pos: 56.5,-6.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17514 components: - pos: 56.5,-7.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17515 components: - pos: 56.5,-8.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17516 components: - pos: 56.5,-9.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17517 components: - pos: 56.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17518 components: - pos: 56.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17519 components: - pos: 56.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17520 components: - pos: 56.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17521 components: - pos: 56.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17522 components: - pos: 56.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17523 components: - pos: 56.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17524 components: - pos: 56.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17525 components: - pos: 56.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17526 components: - pos: 56.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17527 components: - pos: 57.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17529 components: - pos: 57.5,-20.5 @@ -67445,29 +55025,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17530 components: - pos: 55.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17531 components: - pos: 54.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17532 components: - pos: 54.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17533 components: - pos: 54.5,-21.5 @@ -67475,8 +55047,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17534 components: - pos: 54.5,-22.5 @@ -67484,8 +55054,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17535 components: - pos: 54.5,-23.5 @@ -67493,8 +55061,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17536 components: - pos: 54.5,-24.5 @@ -67502,8 +55068,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17537 components: - pos: 54.5,-25.5 @@ -67511,8 +55075,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17538 components: - pos: 54.5,-26.5 @@ -67520,8 +55082,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17539 components: - pos: 54.5,-27.5 @@ -67529,8 +55089,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17540 components: - pos: 54.5,-28.5 @@ -67538,8 +55096,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17541 components: - pos: 54.5,-29.5 @@ -67547,8 +55103,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17542 components: - pos: 54.5,-30.5 @@ -67556,8 +55110,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17543 components: - pos: 54.5,-31.5 @@ -67565,8 +55117,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17544 components: - pos: 54.5,-32.5 @@ -67574,8 +55124,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17545 components: - pos: 54.5,-33.5 @@ -67583,8 +55131,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17546 components: - pos: 54.5,-34.5 @@ -67592,15 +55138,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17547 components: - pos: 54.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17549 components: - pos: 53.5,-35.5 @@ -67608,8 +55150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17611 components: - pos: 53.5,-33.5 @@ -67617,8 +55157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17612 components: - pos: 53.5,-34.5 @@ -67626,8 +55164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17614 components: - pos: 56.5,-33.5 @@ -67635,8 +55171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17615 components: - pos: 56.5,-34.5 @@ -67644,8 +55178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17617 components: - pos: 52.5,-34.5 @@ -67653,8 +55185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17618 components: - pos: 51.5,-34.5 @@ -67662,8 +55192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17619 components: - pos: 50.5,-34.5 @@ -67671,8 +55199,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17620 components: - pos: 49.5,-34.5 @@ -67680,8 +55206,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17621 components: - pos: 48.5,-34.5 @@ -67689,8 +55213,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17622 components: - pos: 47.5,-34.5 @@ -67698,8 +55220,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17623 components: - pos: 47.5,-35.5 @@ -67707,8 +55227,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17624 components: - pos: 47.5,-36.5 @@ -67716,8 +55234,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17625 components: - pos: 47.5,-37.5 @@ -67725,8 +55241,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17626 components: - pos: 47.5,-38.5 @@ -67734,8 +55248,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17627 components: - pos: 46.5,-38.5 @@ -67743,8 +55255,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17628 components: - pos: 45.5,-38.5 @@ -67752,8 +55262,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17629 components: - pos: 44.5,-38.5 @@ -67761,8 +55269,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17630 components: - pos: 43.5,-38.5 @@ -67770,8 +55276,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17631 components: - pos: 42.5,-38.5 @@ -67779,8 +55283,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17632 components: - pos: 41.5,-38.5 @@ -67788,8 +55290,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17633 components: - pos: 40.5,-38.5 @@ -67797,8 +55297,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17634 components: - pos: 39.5,-38.5 @@ -67806,8 +55304,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17636 components: - pos: 37.5,-38.5 @@ -67815,8 +55311,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17637 components: - pos: 36.5,-38.5 @@ -67824,8 +55318,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17638 components: - pos: 36.5,-39.5 @@ -67833,8 +55325,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17639 components: - pos: 36.5,-40.5 @@ -67842,8 +55332,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17640 components: - pos: 36.5,-41.5 @@ -67851,8 +55339,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17641 components: - pos: 36.5,-42.5 @@ -67860,8 +55346,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17642 components: - pos: 36.5,-43.5 @@ -67869,8 +55353,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17643 components: - pos: 36.5,-44.5 @@ -67878,8 +55360,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17644 components: - pos: 36.5,-45.5 @@ -67887,8 +55367,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17645 components: - pos: 36.5,-46.5 @@ -67896,8 +55374,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17646 components: - pos: 36.5,-47.5 @@ -67905,8 +55381,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17647 components: - pos: 36.5,-48.5 @@ -67914,8 +55388,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17648 components: - pos: 36.5,-49.5 @@ -67923,8 +55395,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17649 components: - pos: 36.5,-50.5 @@ -67932,8 +55402,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17650 components: - pos: 36.5,-51.5 @@ -67941,8 +55409,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17651 components: - pos: 36.5,-52.5 @@ -67950,8 +55416,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17652 components: - pos: 36.5,-53.5 @@ -67959,8 +55423,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17653 components: - pos: 36.5,-54.5 @@ -67968,8 +55430,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17654 components: - pos: 36.5,-55.5 @@ -67977,8 +55437,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17655 components: - pos: 36.5,-56.5 @@ -67986,8 +55444,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17656 components: - pos: 37.5,-56.5 @@ -67995,8 +55451,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17657 components: - pos: 38.5,-56.5 @@ -68004,8 +55458,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17658 components: - pos: 39.5,-56.5 @@ -68013,8 +55465,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17659 components: - pos: 40.5,-56.5 @@ -68022,8 +55472,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17660 components: - pos: 41.5,-56.5 @@ -68031,8 +55479,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17661 components: - pos: 42.5,-56.5 @@ -68040,8 +55486,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17662 components: - pos: 43.5,-56.5 @@ -68049,8 +55493,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17663 components: - pos: 44.5,-56.5 @@ -68058,8 +55500,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17664 components: - pos: 45.5,-56.5 @@ -68067,8 +55507,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17665 components: - pos: 46.5,-56.5 @@ -68076,8 +55514,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17666 components: - pos: 47.5,-56.5 @@ -68085,8 +55521,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17667 components: - pos: 48.5,-56.5 @@ -68094,8 +55528,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17668 components: - pos: 49.5,-56.5 @@ -68103,8 +55535,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17669 components: - pos: 50.5,-56.5 @@ -68112,8 +55542,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17670 components: - pos: 51.5,-56.5 @@ -68121,8 +55549,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17671 components: - pos: 52.5,-56.5 @@ -68130,8 +55556,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17672 components: - pos: 53.5,-56.5 @@ -68139,8 +55563,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17673 components: - pos: 54.5,-56.5 @@ -68148,8 +55570,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17674 components: - pos: 55.5,-56.5 @@ -68157,8 +55577,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17675 components: - pos: 56.5,-56.5 @@ -68166,8 +55584,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17676 components: - pos: 57.5,-56.5 @@ -68175,8 +55591,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17677 components: - pos: 58.5,-56.5 @@ -68184,8 +55598,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17678 components: - pos: 59.5,-56.5 @@ -68193,8 +55605,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17679 components: - pos: 60.5,-56.5 @@ -68202,8 +55612,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17680 components: - pos: 60.5,-55.5 @@ -68211,8 +55619,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17681 components: - pos: 60.5,-54.5 @@ -68220,8 +55626,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17682 components: - pos: 60.5,-53.5 @@ -68229,8 +55633,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17683 components: - pos: 60.5,-52.5 @@ -68238,8 +55640,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17684 components: - pos: 60.5,-51.5 @@ -68247,8 +55647,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17685 components: - pos: 60.5,-50.5 @@ -68256,8 +55654,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17686 components: - pos: 60.5,-49.5 @@ -68265,8 +55661,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17687 components: - pos: 60.5,-48.5 @@ -68274,8 +55668,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17688 components: - pos: 61.5,-48.5 @@ -68283,8 +55675,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17689 components: - pos: 62.5,-48.5 @@ -68292,8 +55682,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17690 components: - pos: 63.5,-48.5 @@ -68301,8 +55689,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17691 components: - pos: 64.5,-48.5 @@ -68310,8 +55696,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17692 components: - pos: 65.5,-48.5 @@ -68319,8 +55703,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17693 components: - pos: 65.5,-47.5 @@ -68328,8 +55710,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17694 components: - pos: 65.5,-46.5 @@ -68337,8 +55717,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17695 components: - pos: 65.5,-45.5 @@ -68346,8 +55724,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17696 components: - pos: 65.5,-44.5 @@ -68355,8 +55731,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17697 components: - pos: 65.5,-43.5 @@ -68364,8 +55738,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17698 components: - pos: 65.5,-42.5 @@ -68373,8 +55745,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17699 components: - pos: 65.5,-41.5 @@ -68382,8 +55752,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17700 components: - pos: 65.5,-40.5 @@ -68391,8 +55759,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17701 components: - pos: 65.5,-39.5 @@ -68400,8 +55766,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17702 components: - pos: 65.5,-38.5 @@ -68409,8 +55773,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17703 components: - pos: 65.5,-37.5 @@ -68418,8 +55780,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17704 components: - pos: 65.5,-36.5 @@ -68427,8 +55787,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17705 components: - pos: 65.5,-35.5 @@ -68436,8 +55794,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17706 components: - pos: 64.5,-35.5 @@ -68445,8 +55801,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17708 components: - pos: 62.5,-35.5 @@ -68454,8 +55808,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17709 components: - pos: 62.5,-34.5 @@ -68463,8 +55815,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17710 components: - pos: 61.5,-34.5 @@ -68472,8 +55822,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17711 components: - pos: 60.5,-34.5 @@ -68481,8 +55829,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17712 components: - pos: 59.5,-34.5 @@ -68490,8 +55836,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17713 components: - pos: 58.5,-34.5 @@ -68499,8 +55843,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17714 components: - pos: 57.5,-34.5 @@ -68508,8 +55850,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17827 components: - pos: 57.5,-6.5 @@ -68517,50 +55857,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 17910 components: - pos: 40.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17911 components: - pos: 39.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17912 components: - pos: 38.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17913 components: - pos: 37.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17914 components: - pos: 36.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17915 components: - pos: 35.5,-5.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 17916 components: - pos: 34.5,-5.5 @@ -68568,8 +55894,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18187 components: - pos: -14.5,-31.5 @@ -68577,204 +55901,146 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18188 components: - pos: -14.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18189 components: - pos: -14.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18190 components: - pos: -13.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18191 components: - pos: -12.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18192 components: - pos: -11.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18193 components: - pos: -10.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18194 components: - pos: -9.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18195 components: - pos: -8.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18196 components: - pos: -7.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18197 components: - pos: -6.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18198 components: - pos: -6.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18199 components: - pos: -6.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18200 components: - pos: -6.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18201 components: - pos: -6.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18202 components: - pos: -6.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18203 components: - pos: -6.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18204 components: - pos: -6.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18205 components: - pos: -6.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18206 components: - pos: -6.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18207 components: - pos: -5.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18208 components: - pos: -5.5,-23.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18209 components: - pos: -5.5,-22.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18210 components: - pos: -5.5,-21.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18211 components: - pos: -5.5,-20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18212 components: - pos: -5.5,-19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18213 components: - pos: -5.5,-18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18214 components: - pos: -5.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18215 components: - pos: -5.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18216 components: - pos: -6.5,-16.5 @@ -68782,8 +56048,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18217 components: - pos: -7.5,-16.5 @@ -68791,8 +56055,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18218 components: - pos: -8.5,-16.5 @@ -68800,8 +56062,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18219 components: - pos: -9.5,-16.5 @@ -68809,8 +56069,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18220 components: - pos: -10.5,-16.5 @@ -68818,8 +56076,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18221 components: - pos: -10.5,-17.5 @@ -68827,29 +56083,21 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18222 components: - pos: -11.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18223 components: - pos: -12.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18224 components: - pos: -13.5,-17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18225 components: - pos: -14.5,-17.5 @@ -68857,8 +56105,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18226 components: - pos: -14.5,-16.5 @@ -68866,8 +56112,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18227 components: - pos: -14.5,-15.5 @@ -68875,15 +56119,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18228 components: - pos: -13.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18229 components: - pos: -12.5,-15.5 @@ -68891,15 +56131,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18362 components: - pos: 41.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18363 components: - pos: 39.5,39.5 @@ -68907,8 +56143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18364 components: - pos: 39.5,38.5 @@ -68916,8 +56150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18365 components: - pos: 39.5,37.5 @@ -68925,22 +56157,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18366 components: - pos: 39.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18367 components: - pos: 40.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18368 components: - pos: 40.5,37.5 @@ -68948,8 +56174,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18369 components: - pos: 41.5,35.5 @@ -68957,8 +56181,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18374 components: - pos: -25.5,-46.5 @@ -68966,8 +56188,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18375 components: - pos: -24.5,-46.5 @@ -68975,8 +56195,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18376 components: - pos: -23.5,-46.5 @@ -68984,8 +56202,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18377 components: - pos: -22.5,-46.5 @@ -68993,8 +56209,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18378 components: - pos: -22.5,-45.5 @@ -69002,8 +56216,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18379 components: - pos: -22.5,-44.5 @@ -69011,8 +56223,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18380 components: - pos: -23.5,-44.5 @@ -69020,8 +56230,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18381 components: - pos: -24.5,-44.5 @@ -69029,8 +56237,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18382 components: - pos: -25.5,-44.5 @@ -69038,8 +56244,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18383 components: - pos: -23.5,-43.5 @@ -69047,8 +56251,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18384 components: - pos: -23.5,-42.5 @@ -69056,8 +56258,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18385 components: - pos: -23.5,-41.5 @@ -69065,92 +56265,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18386 components: - pos: -23.5,-40.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18387 components: - pos: -23.5,-39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18388 components: - pos: -23.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18389 components: - pos: -24.5,-38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18390 components: - pos: -24.5,-37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18391 components: - pos: -24.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18392 components: - pos: -24.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18393 components: - pos: -24.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18394 components: - pos: -24.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18395 components: - pos: -25.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18396 components: - pos: -26.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18397 components: - pos: -27.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18398 components: - pos: -28.5,-33.5 @@ -69158,176 +56332,126 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18481 components: - pos: -27.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18482 components: - pos: -28.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18483 components: - pos: -29.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18484 components: - pos: -30.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18485 components: - pos: -31.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18486 components: - pos: -32.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18487 components: - pos: -32.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18488 components: - pos: -32.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18489 components: - pos: -32.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18490 components: - pos: -32.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18491 components: - pos: -32.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18492 components: - pos: -32.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18493 components: - pos: -32.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18527 components: - pos: -33.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18528 components: - pos: -34.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18529 components: - pos: -35.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18530 components: - pos: -36.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18531 components: - pos: -37.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18532 components: - pos: -37.5,-33.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18533 components: - pos: -37.5,-34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18534 components: - pos: -37.5,-35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18535 components: - pos: -37.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18536 components: - pos: -38.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18537 components: - pos: -39.5,-36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18538 components: - pos: -40.5,-36.5 @@ -69335,106 +56459,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18648 components: - pos: -38.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18649 components: - pos: -39.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18650 components: - pos: -40.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18651 components: - pos: -40.5,-31.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18652 components: - pos: -40.5,-30.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18653 components: - pos: -40.5,-29.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18654 components: - pos: -40.5,-28.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18655 components: - pos: -40.5,-27.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18656 components: - pos: -40.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18657 components: - pos: -41.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18658 components: - pos: -42.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18659 components: - pos: -43.5,-26.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18660 components: - pos: -43.5,-25.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18661 components: - pos: -43.5,-24.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18662 components: - pos: -43.5,-23.5 @@ -69442,92 +56536,66 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18688 components: - pos: -41.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18689 components: - pos: -42.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18690 components: - pos: -43.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18691 components: - pos: -44.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18692 components: - pos: -45.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18693 components: - pos: -46.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18694 components: - pos: -47.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18695 components: - pos: -48.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18696 components: - pos: -49.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18697 components: - pos: -50.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18698 components: - pos: -51.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18699 components: - pos: -52.5,-32.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18701 components: - pos: -53.5,-32.5 @@ -69535,8 +56603,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18790 components: - pos: 26.5,30.5 @@ -69544,15 +56610,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18806 components: - pos: 39.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18815 components: - pos: 24.5,30.5 @@ -69560,8 +56622,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18847 components: - pos: 40.5,39.5 @@ -69569,8 +56629,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18848 components: - pos: 44.5,39.5 @@ -69578,8 +56636,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18849 components: - pos: 42.5,39.5 @@ -69587,8 +56643,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18850 components: - pos: 41.5,39.5 @@ -69596,8 +56650,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18851 components: - pos: 43.5,39.5 @@ -69605,8 +56657,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18852 components: - pos: 45.5,39.5 @@ -69614,64 +56664,46 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 18853 components: - pos: 45.5,38.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18854 components: - pos: 45.5,37.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18855 components: - pos: 45.5,36.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18856 components: - pos: 45.5,35.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18857 components: - pos: 45.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18858 components: - pos: 44.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18859 components: - pos: 43.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 18860 components: - pos: 42.5,34.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 19412 components: - pos: -16.5,76.5 @@ -69679,8 +56711,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 19454 components: - pos: -15.5,-16.5 @@ -69688,8 +56718,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 20619 components: - pos: -17.5,76.5 @@ -69697,8 +56725,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21843 components: - pos: 0.5,40.5 @@ -69706,43 +56732,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21844 components: - pos: 0.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21845 components: - pos: 1.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21846 components: - pos: 2.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21847 components: - pos: 3.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21848 components: - pos: 4.5,39.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21849 components: - pos: 5.5,39.5 @@ -69750,8 +56764,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21850 components: - pos: 6.5,39.5 @@ -69759,8 +56771,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21851 components: - pos: 6.5,40.5 @@ -69768,8 +56778,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21852 components: - pos: 6.5,41.5 @@ -69777,8 +56785,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21853 components: - pos: 7.5,41.5 @@ -69786,8 +56792,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21854 components: - pos: 8.5,41.5 @@ -69795,8 +56799,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21855 components: - pos: 9.5,41.5 @@ -69804,8 +56806,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21856 components: - pos: 10.5,41.5 @@ -69813,8 +56813,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21857 components: - pos: 11.5,41.5 @@ -69822,8 +56820,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21858 components: - pos: 11.5,42.5 @@ -69831,8 +56827,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21859 components: - pos: 11.5,43.5 @@ -69840,8 +56834,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21860 components: - pos: 11.5,44.5 @@ -69849,8 +56841,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21861 components: - pos: 10.5,44.5 @@ -69858,8 +56848,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21862 components: - pos: 9.5,44.5 @@ -69867,8 +56855,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21863 components: - pos: 8.5,44.5 @@ -69876,8 +56862,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21864 components: - pos: 7.5,44.5 @@ -69885,8 +56869,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21866 components: - pos: -32.5,-9.5 @@ -69894,50 +56876,36 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21867 components: - pos: -32.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21868 components: - pos: -31.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21869 components: - pos: -30.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21870 components: - pos: -29.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21871 components: - pos: -28.5,-10.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21872 components: - pos: -28.5,-11.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21873 components: - pos: -34.5,-16.5 @@ -69945,85 +56913,61 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21874 components: - pos: -33.5,-16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21875 components: - pos: -33.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21876 components: - pos: -33.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21877 components: - pos: -32.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21878 components: - pos: -31.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21879 components: - pos: -30.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21880 components: - pos: -29.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21881 components: - pos: -28.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21882 components: - pos: -28.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21883 components: - pos: -28.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21884 components: - pos: -27.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21885 components: - pos: -26.5,-12.5 @@ -70031,106 +56975,76 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 21886 components: - pos: -25.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21887 components: - pos: -24.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21888 components: - pos: -23.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21889 components: - pos: -22.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21890 components: - pos: -21.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21891 components: - pos: -20.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21892 components: - pos: -19.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21893 components: - pos: -18.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21894 components: - pos: -17.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21895 components: - pos: -16.5,-12.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21896 components: - pos: -16.5,-13.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21897 components: - pos: -16.5,-14.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21898 components: - pos: -16.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 21899 components: - pos: -15.5,-15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 22083 components: - pos: -33.5,76.5 @@ -70138,8 +57052,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22658 components: - pos: 4.5,57.5 @@ -70147,8 +57059,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22659 components: - pos: -3.5,57.5 @@ -70156,8 +57066,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22660 components: - pos: -3.5,59.5 @@ -70165,8 +57073,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22661 components: - pos: -3.5,61.5 @@ -70174,8 +57080,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22662 components: - pos: -3.5,63.5 @@ -70183,8 +57087,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22663 components: - pos: -1.5,63.5 @@ -70192,8 +57094,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22664 components: - pos: 0.5,63.5 @@ -70201,8 +57101,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22665 components: - pos: 2.5,63.5 @@ -70210,8 +57108,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22666 components: - pos: 4.5,63.5 @@ -70219,8 +57115,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22667 components: - pos: 4.5,61.5 @@ -70228,8 +57122,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22668 components: - pos: 4.5,59.5 @@ -70237,8 +57129,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22684 components: - pos: -3.5,62.5 @@ -70246,8 +57136,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22685 components: - pos: 3.5,63.5 @@ -70255,8 +57143,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22686 components: - pos: 4.5,62.5 @@ -70264,8 +57150,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22687 components: - pos: 4.5,60.5 @@ -70273,8 +57157,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22688 components: - pos: 4.5,58.5 @@ -70282,8 +57164,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22783 components: - pos: -3.5,58.5 @@ -70291,8 +57171,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22784 components: - pos: -3.5,60.5 @@ -70300,8 +57178,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22785 components: - pos: -2.5,63.5 @@ -70309,8 +57185,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22786 components: - pos: -0.5,63.5 @@ -70318,8 +57192,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 22787 components: - pos: 1.5,63.5 @@ -70327,78 +57199,56 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24163 components: - pos: -13.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24164 components: - pos: -14.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24165 components: - pos: -15.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24166 components: - pos: -16.5,48.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24167 components: - pos: -16.5,49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24168 components: - pos: -16.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24169 components: - pos: -16.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24170 components: - pos: -16.5,52.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24171 components: - pos: -16.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24172 components: - pos: -15.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24173 components: - pos: -15.5,54.5 @@ -70406,8 +57256,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24174 components: - pos: -14.5,54.5 @@ -70415,8 +57263,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24175 components: - pos: -13.5,54.5 @@ -70424,8 +57270,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24176 components: - pos: -12.5,54.5 @@ -70433,8 +57277,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24177 components: - pos: -11.5,54.5 @@ -70442,8 +57284,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24178 components: - pos: -10.5,54.5 @@ -70451,8 +57291,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24179 components: - pos: -9.5,54.5 @@ -70460,43 +57298,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 24180 components: - pos: -9.5,53.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24181 components: - pos: -9.5,52.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24182 components: - pos: -9.5,51.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24183 components: - pos: -9.5,50.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 24184 components: - pos: -9.5,49.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25292 components: - pos: -25.5,79.5 @@ -70504,8 +57330,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25294 components: - pos: -33.5,72.5 @@ -70513,8 +57337,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25295 components: - pos: -16.5,72.5 @@ -70522,8 +57344,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25296 components: - pos: -17.5,72.5 @@ -70531,15 +57351,11 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25624 components: - pos: -28.5,15.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25642 components: - pos: -28.5,14.5 @@ -70547,8 +57363,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25650 components: - pos: -29.5,14.5 @@ -70556,8 +57370,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25668 components: - pos: -27.5,14.5 @@ -70565,141 +57377,101 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25686 components: - pos: -28.5,16.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25706 components: - pos: -28.5,17.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25738 components: - pos: 22.5,67.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25739 components: - pos: 23.5,67.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25740 components: - pos: 23.5,68.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25741 components: - pos: 23.5,69.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25742 components: - pos: 23.5,70.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25743 components: - pos: 23.5,71.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25744 components: - pos: 23.5,72.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25745 components: - pos: 23.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25746 components: - pos: 24.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25747 components: - pos: 25.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25748 components: - pos: 26.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25749 components: - pos: 27.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25750 components: - pos: 28.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25751 components: - pos: 29.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25752 components: - pos: 30.5,73.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25753 components: - pos: 30.5,74.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25754 components: - pos: 30.5,75.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25755 components: - pos: 30.5,76.5 @@ -70707,43 +57479,31 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25756 components: - pos: 30.5,77.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25757 components: - pos: 30.5,78.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25850 components: - pos: -28.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25851 components: - pos: -28.5,19.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25852 components: - pos: -28.5,20.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25866 components: - pos: -28.5,21.5 @@ -70751,8 +57511,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25869 components: - pos: -29.5,21.5 @@ -70760,8 +57518,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25870 components: - pos: -27.5,21.5 @@ -70769,22 +57525,16 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - uid: 25871 components: - pos: -27.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25876 components: - pos: -26.5,18.5 parent: 82 type: Transform - - fixtures: {} - type: Fixtures - uid: 25877 components: - pos: -26.5,19.5 @@ -70792,8 +57542,6 @@ entities: type: Transform - enabled: True type: AmbientSound - - fixtures: {} - type: Fixtures - proto: CableMVStack entities: - uid: 4174 @@ -84875,11 +71623,6 @@ entities: - pos: 30.5,75.5 parent: 82 type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 25797 - type: SignalTransmitter - proto: computerBodyScanner entities: - uid: 2917 @@ -85388,17 +72131,6 @@ entities: - links: - 25325 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 25325 - Forward: - - port: Left - uid: 25325 - Off: - - port: Middle - uid: 25325 - type: SignalReceiver - uid: 1455 components: - rot: -1.5707963267948966 rad @@ -85408,17 +72140,6 @@ entities: - links: - 25325 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 25325 - Forward: - - port: Left - uid: 25325 - Off: - - port: Middle - uid: 25325 - type: SignalReceiver - uid: 1456 components: - rot: -1.5707963267948966 rad @@ -85428,17 +72149,6 @@ entities: - links: - 25325 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 25325 - Forward: - - port: Left - uid: 25325 - Off: - - port: Middle - uid: 25325 - type: SignalReceiver - uid: 1457 components: - rot: -1.5707963267948966 rad @@ -85448,17 +72158,6 @@ entities: - links: - 25325 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 25325 - Forward: - - port: Left - uid: 25325 - Off: - - port: Middle - uid: 25325 - type: SignalReceiver - uid: 1458 components: - rot: -1.5707963267948966 rad @@ -85468,17 +72167,6 @@ entities: - links: - 25325 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 25325 - Forward: - - port: Left - uid: 25325 - Off: - - port: Middle - uid: 25325 - type: SignalReceiver - uid: 1470 components: - rot: -1.5707963267948966 rad @@ -85488,17 +72176,6 @@ entities: - links: - 25326 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 25326 - Forward: - - port: Left - uid: 25326 - Off: - - port: Middle - uid: 25326 - type: SignalReceiver - uid: 1471 components: - rot: -1.5707963267948966 rad @@ -85508,17 +72185,6 @@ entities: - links: - 25326 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 25326 - Forward: - - port: Left - uid: 25326 - Off: - - port: Middle - uid: 25326 - type: SignalReceiver - uid: 1472 components: - rot: -1.5707963267948966 rad @@ -85528,17 +72194,6 @@ entities: - links: - 25326 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 25326 - Forward: - - port: Left - uid: 25326 - Off: - - port: Middle - uid: 25326 - type: SignalReceiver - uid: 1473 components: - rot: -1.5707963267948966 rad @@ -85548,17 +72203,6 @@ entities: - links: - 25326 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 25326 - Forward: - - port: Left - uid: 25326 - Off: - - port: Middle - uid: 25326 - type: SignalReceiver - uid: 1474 components: - rot: -1.5707963267948966 rad @@ -85568,17 +72212,6 @@ entities: - links: - 25326 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 25326 - Forward: - - port: Left - uid: 25326 - Off: - - port: Middle - uid: 25326 - type: SignalReceiver - uid: 3391 components: - rot: -1.5707963267948966 rad @@ -85588,17 +72221,6 @@ entities: - links: - 21634 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 21634 - Forward: - - port: Left - uid: 21634 - Off: - - port: Middle - uid: 21634 - type: SignalReceiver - uid: 3392 components: - rot: -1.5707963267948966 rad @@ -85608,17 +72230,6 @@ entities: - links: - 21634 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 21634 - Forward: - - port: Left - uid: 21634 - Off: - - port: Middle - uid: 21634 - type: SignalReceiver - uid: 3393 components: - rot: -1.5707963267948966 rad @@ -85628,17 +72239,6 @@ entities: - links: - 21634 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 21634 - Forward: - - port: Left - uid: 21634 - Off: - - port: Middle - uid: 21634 - type: SignalReceiver - uid: 3394 components: - rot: -1.5707963267948966 rad @@ -85648,17 +72248,6 @@ entities: - links: - 21634 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 21634 - Forward: - - port: Left - uid: 21634 - Off: - - port: Middle - uid: 21634 - type: SignalReceiver - uid: 3395 components: - rot: -1.5707963267948966 rad @@ -85668,17 +72257,6 @@ entities: - links: - 21634 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 21634 - Forward: - - port: Left - uid: 21634 - Off: - - port: Middle - uid: 21634 - type: SignalReceiver - uid: 8084 components: - rot: -1.5707963267948966 rad @@ -85688,17 +72266,6 @@ entities: - links: - 8133 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 8133 - Forward: - - port: Left - uid: 8133 - Off: - - port: Middle - uid: 8133 - type: SignalReceiver - uid: 8102 components: - rot: -1.5707963267948966 rad @@ -85708,17 +72275,6 @@ entities: - links: - 8133 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 8133 - Forward: - - port: Left - uid: 8133 - Off: - - port: Middle - uid: 8133 - type: SignalReceiver - uid: 8117 components: - pos: -62.5,-32.5 @@ -85727,17 +72283,6 @@ entities: - links: - 8133 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 8133 - Forward: - - port: Left - uid: 8133 - Off: - - port: Middle - uid: 8133 - type: SignalReceiver - uid: 8121 components: - rot: -1.5707963267948966 rad @@ -85747,17 +72292,6 @@ entities: - links: - 8133 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 8133 - Forward: - - port: Left - uid: 8133 - Off: - - port: Middle - uid: 8133 - type: SignalReceiver - uid: 8123 components: - rot: -1.5707963267948966 rad @@ -85767,17 +72301,6 @@ entities: - links: - 8133 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 8133 - Forward: - - port: Left - uid: 8133 - Off: - - port: Middle - uid: 8133 - type: SignalReceiver - uid: 25695 components: - rot: 1.5707963267948966 rad @@ -85787,17 +72310,6 @@ entities: - links: - 8133 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 8133 - Forward: - - port: Left - uid: 8133 - Off: - - port: Middle - uid: 8133 - type: SignalReceiver - proto: CornSeeds entities: - uid: 22373 @@ -136273,7 +122785,80 @@ entities: - pos: 33.39926,64.68569 parent: 82 type: Transform -- proto: Intercom +- proto: IntercomAll + entities: + - uid: 25913 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 82 + type: Transform + - uid: 25966 + components: + - pos: 4.5,-8.5 + parent: 82 + type: Transform + - uid: 25967 + components: + - pos: 4.5,-14.5 + parent: 82 + type: Transform + - uid: 25968 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 82 + type: Transform + - uid: 25973 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-103.5 + parent: 82 + type: Transform +- proto: IntercomCommand + entities: + - uid: 9683 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-59.5 + parent: 82 + type: Transform + - uid: 25914 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-34.5 + parent: 82 + type: Transform + - uid: 25915 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,34.5 + parent: 82 + type: Transform + - uid: 25916 + components: + - pos: 29.5,67.5 + parent: 82 + type: Transform + - uid: 25917 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,16.5 + parent: 82 + type: Transform + - uid: 25918 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,-13.5 + parent: 82 + type: Transform + - uid: 25979 + components: + - rot: 3.141592653589793 rad + pos: -59.5,52.5 + parent: 82 + type: Transform +- proto: IntercomCommon entities: - uid: 20126 components: @@ -136440,79 +123025,6 @@ entities: pos: -34.5,-8.5 parent: 82 type: Transform -- proto: IntercomAll - entities: - - uid: 25913 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,2.5 - parent: 82 - type: Transform - - uid: 25966 - components: - - pos: 4.5,-8.5 - parent: 82 - type: Transform - - uid: 25967 - components: - - pos: 4.5,-14.5 - parent: 82 - type: Transform - - uid: 25968 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-15.5 - parent: 82 - type: Transform - - uid: 25973 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-103.5 - parent: 82 - type: Transform -- proto: IntercomCommand - entities: - - uid: 9683 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-59.5 - parent: 82 - type: Transform - - uid: 25914 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-34.5 - parent: 82 - type: Transform - - uid: 25915 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,34.5 - parent: 82 - type: Transform - - uid: 25916 - components: - - pos: 29.5,67.5 - parent: 82 - type: Transform - - uid: 25917 - components: - - rot: -1.5707963267948966 rad - pos: 48.5,16.5 - parent: 82 - type: Transform - - uid: 25918 - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-13.5 - parent: 82 - type: Transform - - uid: 25979 - components: - - rot: 3.141592653589793 rad - pos: -59.5,52.5 - parent: 82 - type: Transform - proto: IntercomEngineering entities: - uid: 11911 @@ -138401,11 +124913,6 @@ entities: - pos: 30.5,78.5 parent: 82 type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 25808 - type: SignalReceiver - proto: MachineFrame entities: - uid: 9499 @@ -139606,8 +126113,6 @@ entities: - pos: 29.634073,61.631172 parent: 82 type: Transform - - lastUseAttempt: 2325.514066 - type: NetworkConfigurator - uid: 8700 components: - pos: 25.259527,76.639275 @@ -148831,17 +135336,6 @@ entities: - links: - 8133 type: DeviceLinkSink - - inputs: - Reverse: - - port: Left - uid: 8133 - Forward: - - port: Right - uid: 8133 - Off: - - port: Middle - uid: 8133 - type: SignalReceiver - proto: ReinforcedGirder entities: - uid: 6616 @@ -154486,13 +140980,9 @@ entities: - SecondsUntilStateChange: -376776.3 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver + - links: + - 3190 + type: DeviceLinkSink - uid: 6316 components: - pos: 59.5,-6.5 @@ -154501,13 +140991,9 @@ entities: - SecondsUntilStateChange: -376776.3 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver + - links: + - 3190 + type: DeviceLinkSink - uid: 6940 components: - rot: 3.141592653589793 rad @@ -154520,13 +141006,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 6941 components: - rot: 3.141592653589793 rad @@ -154539,13 +141018,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 6950 components: - pos: 1.5,-8.5 @@ -154557,13 +141029,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 6951 components: - pos: 2.5,-8.5 @@ -154575,13 +141040,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 6952 components: - pos: 3.5,-8.5 @@ -154593,13 +141051,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 6953 components: - pos: 5.5,-8.5 @@ -154611,13 +141062,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 6954 components: - pos: 6.5,-8.5 @@ -154629,13 +141073,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 6955 components: - pos: 7.5,-8.5 @@ -154647,13 +141084,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 6956 components: - pos: 8.5,-8.5 @@ -154665,13 +141095,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 6957 components: - pos: 9.5,-8.5 @@ -154683,13 +141106,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 6958 components: - pos: 11.5,-8.5 @@ -154701,13 +141117,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 6959 components: - pos: 12.5,-8.5 @@ -154719,13 +141128,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 6960 components: - pos: 13.5,-8.5 @@ -154737,13 +141139,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 6961 components: - pos: 14.5,-8.5 @@ -154755,13 +141150,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 6962 components: - rot: 1.5707963267948966 rad @@ -154786,13 +141174,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 7101 components: - rot: -1.5707963267948966 rad @@ -154805,13 +141186,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 7516 components: - rot: -1.5707963267948966 rad @@ -154824,13 +141198,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 7715 components: - rot: -1.5707963267948966 rad @@ -154840,13 +141207,9 @@ entities: - SecondsUntilStateChange: -387928.56 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25178 - type: SignalReceiver + - links: + - 25178 + type: DeviceLinkSink - uid: 7988 components: - pos: 13.5,52.5 @@ -154855,13 +141218,6 @@ entities: - links: - 22677 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22677 - type: SignalReceiver - uid: 7989 components: - pos: 14.5,52.5 @@ -154870,13 +141226,6 @@ entities: - links: - 22677 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22677 - type: SignalReceiver - uid: 7990 components: - pos: 15.5,52.5 @@ -154885,13 +141234,6 @@ entities: - links: - 22677 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22677 - type: SignalReceiver - uid: 10424 components: - pos: 62.5,-6.5 @@ -154900,13 +141242,9 @@ entities: - SecondsUntilStateChange: -376776.3 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver + - links: + - 3190 + type: DeviceLinkSink - uid: 12510 components: - pos: -8.5,32.5 @@ -154918,13 +141256,6 @@ entities: - links: - 25181 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25181 - type: SignalReceiver - uid: 12511 components: - pos: -9.5,32.5 @@ -154936,13 +141267,6 @@ entities: - links: - 25181 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25181 - type: SignalReceiver - uid: 12512 components: - pos: -7.5,32.5 @@ -154954,13 +141278,6 @@ entities: - links: - 25181 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25181 - type: SignalReceiver - uid: 12514 components: - rot: 1.5707963267948966 rad @@ -154973,13 +141290,6 @@ entities: - links: - 25181 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25181 - type: SignalReceiver - uid: 12515 components: - rot: 1.5707963267948966 rad @@ -154992,13 +141302,6 @@ entities: - links: - 25181 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25181 - type: SignalReceiver - uid: 13991 components: - pos: 60.5,-6.5 @@ -155007,13 +141310,9 @@ entities: - SecondsUntilStateChange: -376776.3 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver + - links: + - 3190 + type: DeviceLinkSink - uid: 14021 components: - rot: 1.5707963267948966 rad @@ -155026,13 +141325,6 @@ entities: - links: - 14025 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14025 - type: SignalReceiver - uid: 14022 components: - rot: 1.5707963267948966 rad @@ -155045,13 +141337,6 @@ entities: - links: - 14025 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14025 - type: SignalReceiver - uid: 19399 components: - rot: -1.5707963267948966 rad @@ -155061,13 +141346,9 @@ entities: - SecondsUntilStateChange: -379561.62 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25230 - type: SignalReceiver + - links: + - 25230 + type: DeviceLinkSink - uid: 21623 components: - rot: 3.141592653589793 rad @@ -155080,13 +141361,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 21702 components: - rot: 3.141592653589793 rad @@ -155099,13 +141373,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 21768 components: - rot: 3.141592653589793 rad @@ -155118,13 +141385,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 21769 components: - rot: 3.141592653589793 rad @@ -155137,13 +141397,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 21770 components: - pos: 0.5,-8.5 @@ -155155,13 +141408,6 @@ entities: - links: - 25958 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver - uid: 22714 components: - rot: 1.5707963267948966 rad @@ -155174,13 +141420,6 @@ entities: - links: - 14025 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14025 - type: SignalReceiver - uid: 22726 components: - rot: 1.5707963267948966 rad @@ -155193,13 +141432,6 @@ entities: - links: - 25181 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25181 - type: SignalReceiver - uid: 25165 components: - pos: -10.5,32.5 @@ -155211,13 +141443,6 @@ entities: - links: - 25181 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25181 - type: SignalReceiver - uid: 25172 components: - rot: -1.5707963267948966 rad @@ -155227,13 +141452,9 @@ entities: - SecondsUntilStateChange: -387928.56 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25178 - type: SignalReceiver + - links: + - 25178 + type: DeviceLinkSink - uid: 25173 components: - pos: 28.5,67.5 @@ -155245,13 +141466,6 @@ entities: - links: - 25178 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25178 - type: SignalReceiver - uid: 25174 components: - pos: 27.5,67.5 @@ -155263,13 +141477,6 @@ entities: - links: - 25178 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25178 - type: SignalReceiver - uid: 25175 components: - pos: 28.5,62.5 @@ -155281,13 +141488,6 @@ entities: - links: - 25178 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25178 - type: SignalReceiver - uid: 25176 components: - pos: 26.5,62.5 @@ -155299,13 +141499,6 @@ entities: - links: - 25178 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25178 - type: SignalReceiver - uid: 25177 components: - pos: 27.5,62.5 @@ -155317,13 +141510,6 @@ entities: - links: - 25178 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25178 - type: SignalReceiver - uid: 25180 components: - rot: 1.5707963267948966 rad @@ -155336,13 +141522,6 @@ entities: - links: - 25181 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25181 - type: SignalReceiver - uid: 25225 components: - rot: -1.5707963267948966 rad @@ -155352,13 +141531,9 @@ entities: - SecondsUntilStateChange: -379561.62 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25230 - type: SignalReceiver + - links: + - 25230 + type: DeviceLinkSink - uid: 25226 components: - pos: -45.5,-33.5 @@ -155367,13 +141542,9 @@ entities: - SecondsUntilStateChange: -379561.62 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25230 - type: SignalReceiver + - links: + - 25230 + type: DeviceLinkSink - uid: 25227 components: - pos: -44.5,-33.5 @@ -155382,13 +141553,9 @@ entities: - SecondsUntilStateChange: -379561.62 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25230 - type: SignalReceiver + - links: + - 25230 + type: DeviceLinkSink - uid: 25228 components: - pos: -42.5,-33.5 @@ -155397,13 +141564,9 @@ entities: - SecondsUntilStateChange: -379561.62 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25230 - type: SignalReceiver + - links: + - 25230 + type: DeviceLinkSink - uid: 25229 components: - pos: -41.5,-33.5 @@ -155412,13 +141575,9 @@ entities: - SecondsUntilStateChange: -379561.62 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25230 - type: SignalReceiver + - links: + - 25230 + type: DeviceLinkSink - uid: 25268 components: - pos: 61.5,-6.5 @@ -155427,13 +141586,9 @@ entities: - SecondsUntilStateChange: -376776.3 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver + - links: + - 3190 + type: DeviceLinkSink - uid: 25271 components: - rot: 1.5707963267948966 rad @@ -155443,13 +141598,9 @@ entities: - SecondsUntilStateChange: -376776.3 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver + - links: + - 3190 + type: DeviceLinkSink - uid: 25272 components: - rot: 1.5707963267948966 rad @@ -155459,13 +141610,9 @@ entities: - SecondsUntilStateChange: -376776.3 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver + - links: + - 3190 + type: DeviceLinkSink - uid: 25273 components: - rot: 1.5707963267948966 rad @@ -155475,13 +141622,9 @@ entities: - SecondsUntilStateChange: -376776.3 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver + - links: + - 3190 + type: DeviceLinkSink - uid: 25274 components: - rot: 1.5707963267948966 rad @@ -155491,13 +141634,9 @@ entities: - SecondsUntilStateChange: -376776.3 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver + - links: + - 3190 + type: DeviceLinkSink - uid: 25275 components: - rot: 1.5707963267948966 rad @@ -155507,13 +141646,9 @@ entities: - SecondsUntilStateChange: -376776.3 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver + - links: + - 3190 + type: DeviceLinkSink - uid: 25276 components: - rot: 1.5707963267948966 rad @@ -155523,13 +141658,9 @@ entities: - SecondsUntilStateChange: -376776.3 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver + - links: + - 3190 + type: DeviceLinkSink - uid: 25277 components: - rot: 1.5707963267948966 rad @@ -155539,13 +141670,9 @@ entities: - SecondsUntilStateChange: -376776.3 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver + - links: + - 3190 + type: DeviceLinkSink - proto: ShuttersNormalOpen entities: - uid: 6529 @@ -155556,89 +141683,58 @@ entities: - links: - 26135 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26135 - type: SignalReceiver - uid: 10065 components: - rot: 1.5707963267948966 rad pos: 30.5,9.5 parent: 82 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24529 - type: SignalReceiver + - links: + - 24529 + type: DeviceLinkSink - uid: 10066 components: - rot: 1.5707963267948966 rad pos: 30.5,8.5 parent: 82 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24529 - type: SignalReceiver + - links: + - 24529 + type: DeviceLinkSink - uid: 10067 components: - rot: 1.5707963267948966 rad pos: 30.5,7.5 parent: 82 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24529 - type: SignalReceiver + - links: + - 24529 + type: DeviceLinkSink - uid: 10068 components: - pos: 29.5,5.5 parent: 82 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24529 - type: SignalReceiver + - links: + - 24529 + type: DeviceLinkSink - uid: 10069 components: - pos: 28.5,5.5 parent: 82 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24529 - type: SignalReceiver + - links: + - 24529 + type: DeviceLinkSink - uid: 10071 components: - rot: 1.5707963267948966 rad pos: 30.5,10.5 parent: 82 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24529 - type: SignalReceiver + - links: + - 24529 + type: DeviceLinkSink - uid: 11310 components: - pos: -28.5,-9.5 @@ -155647,13 +141743,6 @@ entities: - links: - 26135 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26135 - type: SignalReceiver - uid: 11320 components: - pos: -29.5,-9.5 @@ -155662,13 +141751,6 @@ entities: - links: - 26135 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26135 - type: SignalReceiver - uid: 11322 components: - rot: 1.5707963267948966 rad @@ -155678,13 +141760,6 @@ entities: - links: - 26135 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26135 - type: SignalReceiver - uid: 11323 components: - rot: 1.5707963267948966 rad @@ -155694,13 +141769,6 @@ entities: - links: - 26135 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26135 - type: SignalReceiver - uid: 11326 components: - rot: -1.5707963267948966 rad @@ -155710,13 +141778,6 @@ entities: - links: - 11348 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11348 - type: SignalReceiver - uid: 11327 components: - rot: -1.5707963267948966 rad @@ -155726,13 +141787,6 @@ entities: - links: - 11348 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11348 - type: SignalReceiver - uid: 11328 components: - rot: -1.5707963267948966 rad @@ -155742,13 +141796,6 @@ entities: - links: - 11348 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11348 - type: SignalReceiver - uid: 11329 components: - rot: -1.5707963267948966 rad @@ -155758,13 +141805,6 @@ entities: - links: - 11348 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11348 - type: SignalReceiver - uid: 11330 components: - rot: -1.5707963267948966 rad @@ -155774,13 +141814,6 @@ entities: - links: - 11348 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11348 - type: SignalReceiver - uid: 11346 components: - rot: -1.5707963267948966 rad @@ -155790,13 +141823,6 @@ entities: - links: - 11348 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11348 - type: SignalReceiver - uid: 21687 components: - pos: -31.5,-9.5 @@ -155805,13 +141831,6 @@ entities: - links: - 26135 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26135 - type: SignalReceiver - uid: 25182 components: - pos: -11.5,35.5 @@ -155820,13 +141839,6 @@ entities: - links: - 25181 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25181 - type: SignalReceiver - proto: ShuttersRadiationOpen entities: - uid: 24532 @@ -155840,13 +141852,6 @@ entities: - links: - 24531 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24531 - type: SignalReceiver - uid: 24533 components: - pos: -24.5,60.5 @@ -155858,13 +141863,6 @@ entities: - links: - 24531 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24531 - type: SignalReceiver - uid: 24537 components: - pos: -25.5,60.5 @@ -155876,13 +141874,6 @@ entities: - links: - 24531 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24531 - type: SignalReceiver - uid: 24553 components: - pos: -23.5,60.5 @@ -155894,13 +141885,6 @@ entities: - links: - 24531 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24531 - type: SignalReceiver - uid: 24604 components: - pos: -27.5,60.5 @@ -155912,13 +141896,6 @@ entities: - links: - 24531 type: DeviceLinkSink - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24531 - type: SignalReceiver - proto: ShuttersWindowOpen entities: - uid: 10070 @@ -155926,13 +141903,9 @@ entities: - pos: 27.5,5.5 parent: 82 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24529 - type: SignalReceiver + - links: + - 24529 + type: DeviceLinkSink - proto: ShuttleConsoleCircuitboard entities: - uid: 7342 @@ -155967,33 +141940,32 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 25274 - - port: Toggle - uid: 25276 - - port: Toggle - uid: 25277 - - port: Toggle - uid: 25273 - - port: Toggle - uid: 25275 - - port: Toggle - uid: 25272 - - port: Toggle - uid: 25271 - - port: Toggle - uid: 3262 - - port: Toggle - uid: 6316 - - port: Toggle - uid: 13991 - - port: Toggle - uid: 25268 - - port: Toggle - uid: 10424 - type: SignalTransmitter + - linkedPorts: + 25274: + - Pressed: Toggle + 25276: + - Pressed: Toggle + 25277: + - Pressed: Toggle + 25273: + - Pressed: Toggle + 25275: + - Pressed: Toggle + 25272: + - Pressed: Toggle + 25271: + - Pressed: Toggle + 3262: + - Pressed: Toggle + 6316: + - Pressed: Toggle + 13991: + - Pressed: Toggle + 25268: + - Pressed: Toggle + 10424: + - Pressed: Toggle + type: DeviceLinkSource - uid: 8852 components: - rot: 1.5707963267948966 rad @@ -156002,33 +141974,32 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 3789 - - port: Toggle - uid: 3790 - - port: Toggle - uid: 3791 - - port: Toggle - uid: 3792 - - port: Toggle - uid: 3793 - - port: Toggle - uid: 3794 - - port: Toggle - uid: 3795 - - port: Toggle - uid: 3796 - - port: Toggle - uid: 3797 - - port: Toggle - uid: 3798 - - port: Toggle - uid: 3799 - - port: Toggle - uid: 3800 - type: SignalTransmitter + - linkedPorts: + 3789: + - Pressed: Toggle + 3790: + - Pressed: Toggle + 3791: + - Pressed: Toggle + 3792: + - Pressed: Toggle + 3793: + - Pressed: Toggle + 3794: + - Pressed: Toggle + 3795: + - Pressed: Toggle + 3796: + - Pressed: Toggle + 3797: + - Pressed: Toggle + 3798: + - Pressed: Toggle + 3799: + - Pressed: Toggle + 3800: + - Pressed: Toggle + type: DeviceLinkSource - uid: 11348 components: - pos: -17.5,-11.5 @@ -156047,30 +142018,7 @@ entities: - Pressed: Toggle 11346: - Pressed: Toggle - registeredSinks: - Pressed: - - 11330 - - 11329 - - 11328 - - 11327 - - 11326 - - 11346 type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 11330 - - port: Toggle - uid: 11329 - - port: Toggle - uid: 11328 - - port: Toggle - uid: 11327 - - port: Toggle - uid: 11326 - - port: Toggle - uid: 11346 - type: SignalTransmitter - uid: 11472 components: - rot: 3.141592653589793 rad @@ -156080,15 +142028,7 @@ entities: - linkedPorts: 8118: - Pressed: Toggle - registeredSinks: - Pressed: - - 8118 type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 8118 - type: SignalTransmitter - uid: 11588 components: - pos: 39.5,17.5 @@ -156103,21 +142043,7 @@ entities: - Pressed: Toggle 103: - Pressed: Toggle - registeredSinks: - Pressed: - - 83 - - 1028 - - 103 type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 103 - - port: Toggle - uid: 1028 - - port: Toggle - uid: 83 - type: SignalTransmitter - uid: 14025 components: - rot: 1.5707963267948966 rad @@ -156133,21 +142059,7 @@ entities: - Pressed: Toggle 14021: - Pressed: Toggle - registeredSinks: - Pressed: - - 22714 - - 14022 - - 14021 type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 22714 - - port: Toggle - uid: 14022 - - port: Toggle - uid: 14021 - type: SignalTransmitter - uid: 22394 components: - rot: -1.5707963267948966 rad @@ -156163,21 +142075,7 @@ entities: - Pressed: Toggle 959: - Pressed: Toggle - registeredSinks: - Pressed: - - 957 - - 958 - - 959 type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 957 - - port: Toggle - uid: 958 - - port: Toggle - uid: 959 - type: SignalTransmitter - uid: 22677 components: - rot: -1.5707963267948966 rad @@ -156191,21 +142089,7 @@ entities: - Pressed: Toggle 7988: - Pressed: Toggle - registeredSinks: - Pressed: - - 7990 - - 7989 - - 7988 type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 7990 - - port: Toggle - uid: 7989 - - port: Toggle - uid: 7988 - type: SignalTransmitter - uid: 23015 components: - rot: -1.5707963267948966 rad @@ -156221,46 +142105,28 @@ entities: - Pressed: Toggle 6782: - Pressed: Toggle - registeredSinks: - Pressed: - - 6284 - - 6780 - - 6285 - - 6782 type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 6782 - - port: Toggle - uid: 6285 - - port: Toggle - uid: 6780 - - port: Toggle - uid: 6284 - type: SignalTransmitter - uid: 24529 components: - pos: 29.5,11.5 parent: 82 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10071 - - port: Toggle - uid: 10065 - - port: Toggle - uid: 10066 - - port: Toggle - uid: 10067 - - port: Toggle - uid: 10068 - - port: Toggle - uid: 10069 - - port: Toggle - uid: 10070 - type: SignalTransmitter + - linkedPorts: + 10071: + - Pressed: Toggle + 10065: + - Pressed: Toggle + 10066: + - Pressed: Toggle + 10067: + - Pressed: Toggle + 10068: + - Pressed: Toggle + 10069: + - Pressed: Toggle + 10070: + - Pressed: Toggle + type: DeviceLinkSource - uid: 24531 components: - rot: 1.5707963267948966 rad @@ -156280,27 +142146,7 @@ entities: - Pressed: Toggle 24553: - Pressed: Toggle - registeredSinks: - Pressed: - - 24604 - - 24532 - - 24537 - - 24533 - - 24553 type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 24604 - - port: Toggle - uid: 24532 - - port: Toggle - uid: 24537 - - port: Toggle - uid: 24533 - - port: Toggle - uid: 24553 - type: SignalTransmitter - type: ItemCooldown - uid: 25178 components: @@ -156321,31 +142167,11 @@ entities: - Pressed: Toggle 25173: - Pressed: Toggle - registeredSinks: - Pressed: - - 25176 - - 25177 - - 25175 - - 25174 - - 25173 + 25172: + - Pressed: Toggle + 7715: + - Pressed: Toggle type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 25172 - - port: Toggle - uid: 7715 - - port: Toggle - uid: 25174 - - port: Toggle - uid: 25173 - - port: Toggle - uid: 25176 - - port: Toggle - uid: 25177 - - port: Toggle - uid: 25175 - type: SignalTransmitter - uid: 25181 components: - rot: 1.5707963267948966 rad @@ -156373,72 +142199,37 @@ entities: - Pressed: Toggle 25180: - Pressed: Toggle - registeredSinks: - Pressed: - - 25182 - - 25165 - - 12511 - - 12510 - - 12512 - - 22726 - - 12514 - - 12515 - - 25180 type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 25165 - - port: Toggle - uid: 12511 - - port: Toggle - uid: 12510 - - port: Toggle - uid: 12512 - - port: Toggle - uid: 22726 - - port: Toggle - uid: 12514 - - port: Toggle - uid: 12515 - - port: Toggle - uid: 25180 - - port: Toggle - uid: 25182 - type: SignalTransmitter - uid: 25189 components: - rot: 3.141592653589793 rad pos: -0.5,6.5 parent: 82 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 28 - type: SignalTransmitter + - linkedPorts: + 28: + - Pressed: Toggle + type: DeviceLinkSource - uid: 25190 components: - rot: 3.141592653589793 rad pos: 5.5,6.5 parent: 82 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 27 - type: SignalTransmitter + - linkedPorts: + 27: + - Pressed: Toggle + type: DeviceLinkSource - uid: 25191 components: - rot: 3.141592653589793 rad pos: 11.5,6.5 parent: 82 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 17 - type: SignalTransmitter + - linkedPorts: + 17: + - Pressed: Toggle + type: DeviceLinkSource - uid: 25230 components: - rot: 1.5707963267948966 rad @@ -156447,21 +142238,20 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 25225 - - port: Toggle - uid: 19399 - - port: Toggle - uid: 25226 - - port: Toggle - uid: 25228 - - port: Toggle - uid: 25229 - - port: Toggle - uid: 25227 - type: SignalTransmitter + - linkedPorts: + 25225: + - Pressed: Toggle + 19399: + - Pressed: Toggle + 25226: + - Pressed: Toggle + 25228: + - Pressed: Toggle + 25229: + - Pressed: Toggle + 25227: + - Pressed: Toggle + type: DeviceLinkSource - uid: 25321 components: - rot: 3.141592653589793 rad @@ -156471,15 +142261,7 @@ entities: - linkedPorts: 699: - Pressed: Toggle - registeredSinks: - Pressed: - - 699 type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 699 - type: SignalTransmitter - uid: 25322 components: - rot: 3.141592653589793 rad @@ -156489,15 +142271,7 @@ entities: - linkedPorts: 1424: - Pressed: Toggle - registeredSinks: - Pressed: - - 1424 type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 1424 - type: SignalTransmitter - uid: 25323 components: - pos: 47.5,25.5 @@ -156506,15 +142280,7 @@ entities: - linkedPorts: 700: - Pressed: Toggle - registeredSinks: - Pressed: - - 700 type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 700 - type: SignalTransmitter - uid: 25324 components: - pos: 48.5,25.5 @@ -156523,15 +142289,7 @@ entities: - linkedPorts: 1425: - Pressed: Toggle - registeredSinks: - Pressed: - - 1425 type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 1425 - type: SignalTransmitter - uid: 25817 components: - pos: 28.5,76.5 @@ -156544,21 +142302,7 @@ entities: - Pressed: Toggle 25727: - Pressed: Toggle - registeredSinks: - Pressed: - - 25725 - - 25726 - - 25727 type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 25725 - - port: Toggle - uid: 25726 - - port: Toggle - uid: 25727 - type: SignalTransmitter - uid: 25958 components: - rot: 3.141592653589793 rad @@ -156612,81 +142356,9 @@ entities: - Pressed: Toggle 21623: - Pressed: Toggle - registeredSinks: - Pressed: - - 6961 - - 6960 - - 6959 - - 6958 - - 6957 - - 6956 - - 6955 - - 6954 - - 6953 - - 6952 - - 6951 - - 6950 - - 21770 - - 7516 - - 7101 - - 6962 - - 7100 - - 6941 - - 6940 - - 21769 - - 21768 - - 21702 - - 21623 + 10525: + - Pressed: Toggle type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 10525 - - port: Toggle - uid: 7100 - - port: Toggle - uid: 6961 - - port: Toggle - uid: 6960 - - port: Toggle - uid: 6959 - - port: Toggle - uid: 6958 - - port: Toggle - uid: 6957 - - port: Toggle - uid: 6956 - - port: Toggle - uid: 6955 - - port: Toggle - uid: 6954 - - port: Toggle - uid: 6953 - - port: Toggle - uid: 6952 - - port: Toggle - uid: 6951 - - port: Toggle - uid: 6950 - - port: Toggle - uid: 21770 - - port: Toggle - uid: 7516 - - port: Toggle - uid: 7101 - - port: Toggle - uid: 6941 - - port: Toggle - uid: 6940 - - port: Toggle - uid: 21769 - - port: Toggle - uid: 21768 - - port: Toggle - uid: 21702 - - port: Toggle - uid: 21623 - type: SignalTransmitter - uid: 26135 components: - rot: 3.141592653589793 rad @@ -156706,30 +142378,7 @@ entities: - Pressed: Toggle 21687: - Pressed: Toggle - registeredSinks: - Pressed: - - 11322 - - 11323 - - 11310 - - 11320 - - 6529 - - 21687 type: DeviceLinkSource - - outputs: - Pressed: - - port: Toggle - uid: 21687 - - port: Toggle - uid: 6529 - - port: Toggle - uid: 11320 - - port: Toggle - uid: 11310 - - port: Toggle - uid: 11323 - - port: Toggle - uid: 11322 - type: SignalTransmitter - proto: SignAnomaly2 entities: - uid: 7297 @@ -165485,82 +151134,10 @@ entities: - Right: Reverse - Middle: Off 8119: - - Left: Forward - - Right: Reverse + - Left: Reverse + - Right: Forward - Middle: Off - registeredSinks: - Left: - - 8117 - - 8084 - - 8102 - - 8121 - - 8123 - - 25695 - - 8119 - Right: - - 8117 - - 8084 - - 8102 - - 8121 - - 8123 - - 25695 - - 8119 - Middle: - - 8117 - - 8084 - - 8102 - - 8121 - - 8123 - - 25695 - - 8119 type: DeviceLinkSource - - outputs: - Left: - - port: Forward - uid: 8117 - - port: Forward - uid: 8084 - - port: Forward - uid: 8102 - - port: Forward - uid: 8121 - - port: Forward - uid: 8123 - - port: Reverse - uid: 8119 - - port: Forward - uid: 25695 - Right: - - port: Reverse - uid: 8117 - - port: Reverse - uid: 8084 - - port: Reverse - uid: 8102 - - port: Reverse - uid: 8121 - - port: Reverse - uid: 8123 - - port: Forward - uid: 8119 - - port: Reverse - uid: 25695 - Middle: - - port: Off - uid: 8117 - - port: Off - uid: 8084 - - port: Off - uid: 8119 - - port: Off - uid: 8102 - - port: Off - uid: 8121 - - port: Off - uid: 8123 - - port: Off - uid: 25695 - type: SignalTransmitter - uid: 21634 components: - pos: 39.5,27.5 @@ -165587,61 +151164,7 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - registeredSinks: - Left: - - 3395 - - 3394 - - 3393 - - 3392 - - 3391 - Right: - - 3395 - - 3394 - - 3393 - - 3392 - - 3391 - Middle: - - 3395 - - 3394 - - 3393 - - 3392 - - 3391 type: DeviceLinkSource - - outputs: - Left: - - port: Forward - uid: 3395 - - port: Forward - uid: 3394 - - port: Forward - uid: 3393 - - port: Forward - uid: 3392 - - port: Forward - uid: 3391 - Right: - - port: Reverse - uid: 3395 - - port: Reverse - uid: 3394 - - port: Reverse - uid: 3393 - - port: Reverse - uid: 3392 - - port: Reverse - uid: 3391 - Middle: - - port: Off - uid: 3395 - - port: Off - uid: 3394 - - port: Off - uid: 3393 - - port: Off - uid: 3392 - - port: Off - uid: 3391 - type: SignalTransmitter - uid: 25325 components: - pos: 45.5,25.5 @@ -165668,61 +151191,7 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - registeredSinks: - Left: - - 1458 - - 1457 - - 1456 - - 1294 - - 1455 - Right: - - 1458 - - 1457 - - 1456 - - 1294 - - 1455 - Middle: - - 1458 - - 1457 - - 1456 - - 1294 - - 1455 type: DeviceLinkSource - - outputs: - Left: - - port: Forward - uid: 1458 - - port: Forward - uid: 1457 - - port: Forward - uid: 1456 - - port: Forward - uid: 1294 - - port: Forward - uid: 1455 - Right: - - port: Reverse - uid: 1458 - - port: Reverse - uid: 1457 - - port: Reverse - uid: 1456 - - port: Reverse - uid: 1294 - - port: Reverse - uid: 1455 - Middle: - - port: Off - uid: 1458 - - port: Off - uid: 1457 - - port: Off - uid: 1456 - - port: Off - uid: 1294 - - port: Off - uid: 1455 - type: SignalTransmitter - uid: 25326 components: - pos: 45.5,19.5 @@ -165749,61 +151218,7 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - registeredSinks: - Left: - - 1470 - - 1471 - - 1472 - - 1473 - - 1474 - Right: - - 1470 - - 1471 - - 1472 - - 1473 - - 1474 - Middle: - - 1470 - - 1471 - - 1472 - - 1473 - - 1474 type: DeviceLinkSource - - outputs: - Left: - - port: Forward - uid: 1470 - - port: Forward - uid: 1471 - - port: Forward - uid: 1472 - - port: Forward - uid: 1473 - - port: Forward - uid: 1474 - Right: - - port: Reverse - uid: 1470 - - port: Reverse - uid: 1471 - - port: Reverse - uid: 1472 - - port: Reverse - uid: 1473 - - port: Reverse - uid: 1474 - Middle: - - port: Off - uid: 1470 - - port: Off - uid: 1471 - - port: Off - uid: 1472 - - port: Off - uid: 1473 - - port: Off - uid: 1474 - type: SignalTransmitter - proto: UnfinishedMachineFrame entities: - uid: 9502 @@ -184879,7 +170294,36 @@ entities: pos: 7.5,-17.5 parent: 82 type: Transform -- proto: WindoorArmoryLocked +- proto: WindoorBarLocked + entities: + - uid: 11333 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-17.5 + parent: 82 + type: Transform +- proto: WindoorHydroponicsLocked + entities: + - uid: 4500 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-19.5 + parent: 82 + type: Transform + - uid: 11160 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-20.5 + parent: 82 + type: Transform +- proto: WindoorSecure + entities: + - uid: 10842 + components: + - pos: -5.5,0.5 + parent: 82 + type: Transform +- proto: WindoorSecureArmoryLocked entities: - uid: 11421 components: @@ -184892,15 +170336,7 @@ entities: - pos: 41.5,-6.5 parent: 82 type: Transform -- proto: WindoorBarLocked - entities: - - uid: 11333 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-17.5 - parent: 82 - type: Transform -- proto: WindoorBrigLocked +- proto: WindoorSecureBrigLocked entities: - uid: 21553 components: @@ -184914,7 +170350,26 @@ entities: pos: 28.5,-19.5 parent: 82 type: Transform -- proto: WindoorChemistryLocked +- proto: WindoorSecureCargoLocked + entities: + - uid: 19396 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,29.5 + parent: 82 + type: Transform + - uid: 19397 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,30.5 + parent: 82 + type: Transform + - uid: 24215 + components: + - pos: 36.5,22.5 + parent: 82 + type: Transform +- proto: WindoorSecureChemistryLocked entities: - uid: 2241 components: @@ -184939,7 +170394,7 @@ entities: pos: -28.5,-25.5 parent: 82 type: Transform -- proto: WindoorCommandLocked +- proto: WindoorSecureCommandLocked entities: - uid: 9677 components: @@ -184970,7 +170425,7 @@ entities: pos: -29.5,18.5 parent: 82 type: Transform -- proto: WindoorEngineeringLocked +- proto: WindoorSecureEngineeringLocked entities: - uid: 6369 components: @@ -184990,7 +170445,7 @@ entities: pos: 27.5,5.5 parent: 82 type: Transform -- proto: WindoorHeadOfPersonnelLocked +- proto: WindoorSecureHeadOfPersonnelLocked entities: - uid: 7296 components: @@ -184998,21 +170453,7 @@ entities: pos: -5.5,0.5 parent: 82 type: Transform -- proto: WindoorHydroponicsLocked - entities: - - uid: 4500 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-19.5 - parent: 82 - type: Transform - - uid: 11160 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-20.5 - parent: 82 - type: Transform -- proto: WindoorMedicalLocked +- proto: WindoorSecureMedicalLocked entities: - uid: 2980 components: @@ -185032,7 +170473,20 @@ entities: pos: -23.5,-30.5 parent: 82 type: Transform -- proto: WindoorScienceLocked +- proto: WindoorSecureSalvageLocked + entities: + - uid: 6849 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,34.5 + parent: 82 + type: Transform + - uid: 14019 + components: + - pos: 43.5,31.5 + parent: 82 + type: Transform +- proto: WindoorSecureScienceLocked entities: - uid: 7413 components: @@ -185052,46 +170506,7 @@ entities: pos: 27.5,57.5 parent: 82 type: Transform -- proto: WindoorSecure - entities: - - uid: 10842 - components: - - pos: -5.5,0.5 - parent: 82 - type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 19396 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,29.5 - parent: 82 - type: Transform - - uid: 19397 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,30.5 - parent: 82 - type: Transform - - uid: 24215 - components: - - pos: 36.5,22.5 - parent: 82 - type: Transform -- proto: WindoorSecureSalvageLocked - entities: - - uid: 6849 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,34.5 - parent: 82 - type: Transform - - uid: 14019 - components: - - pos: 43.5,31.5 - parent: 82 - type: Transform -- proto: WindoorSecurityLocked +- proto: WindoorSecureSecurityLocked entities: - uid: 244 components: diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 4577328044..7f19c16a94 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -15573,211 +15573,140 @@ entities: - pos: 12.5,40.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20398 - type: SignalReceiver + - links: + - 20398 + type: DeviceLinkSink - uid: 9068 components: - pos: 12.5,-38.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8570 - - port: Pressed - uid: 9038 - type: SignalReceiver + - links: + - 8570 + - 9038 + type: DeviceLinkSink - uid: 9404 components: - pos: -24.5,-45.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10141 - - port: Pressed - uid: 2122 - type: SignalReceiver + - links: + - 2122 + - 10141 + type: DeviceLinkSink - uid: 9405 components: - pos: -23.5,-45.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10141 - - port: Pressed - uid: 2122 - type: SignalReceiver + - links: + - 2122 + - 10141 + type: DeviceLinkSink - uid: 11659 components: - pos: 35.5,-12.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11761 - type: SignalReceiver + - links: + - 11761 + type: DeviceLinkSink - uid: 11682 components: - pos: 35.5,-15.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11933 - type: SignalReceiver + - links: + - 11933 + type: DeviceLinkSink - uid: 11923 components: - pos: 38.5,-2.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11994 - type: SignalReceiver + - links: + - 11994 + type: DeviceLinkSink - uid: 11995 components: - pos: 38.5,-6.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11994 - type: SignalReceiver + - links: + - 11994 + type: DeviceLinkSink - uid: 12059 components: - pos: 36.5,-6.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12063 - type: SignalReceiver + - links: + - 12063 + type: DeviceLinkSink - uid: 12099 components: - pos: 36.5,-2.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12063 - type: SignalReceiver + - links: + - 12063 + type: DeviceLinkSink - uid: 13347 components: - pos: 36.5,14.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12915 - type: SignalReceiver + - links: + - 12915 + type: DeviceLinkSink - uid: 13751 components: - pos: 48.5,25.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15985 - type: SignalReceiver + - links: + - 15985 + type: DeviceLinkSink - uid: 14512 components: - pos: 48.5,23.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15986 - type: SignalReceiver + - links: + - 15986 + type: DeviceLinkSink - uid: 16228 components: - pos: 23.5,24.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 16231 - type: SignalReceiver + - links: + - 16231 + type: DeviceLinkSink - uid: 16229 components: - pos: 22.5,24.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 16231 - type: SignalReceiver + - links: + - 16231 + type: DeviceLinkSink - uid: 16230 components: - pos: 21.5,24.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 16231 - type: SignalReceiver + - links: + - 16231 + type: DeviceLinkSink - uid: 16773 components: - pos: 37.5,14.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12915 - type: SignalReceiver + - links: + - 12915 + type: DeviceLinkSink - proto: BlastDoorOpen entities: - uid: 9188 @@ -15785,49 +15714,25 @@ entities: - pos: 5.5,-21.5 parent: 30 type: Transform - - inputs: - Open: - - port: Left - uid: 11701 - - port: Right - uid: 11701 - Close: - - port: Middle - uid: 11701 - Toggle: [] - type: SignalReceiver + - links: + - 11701 + type: DeviceLinkSink - uid: 9189 components: - pos: 6.5,-21.5 parent: 30 type: Transform - - inputs: - Open: - - port: Left - uid: 11701 - - port: Right - uid: 11701 - Close: - - port: Middle - uid: 11701 - Toggle: [] - type: SignalReceiver + - links: + - 11701 + type: DeviceLinkSink - uid: 9190 components: - pos: 7.5,-21.5 parent: 30 type: Transform - - inputs: - Open: - - port: Left - uid: 11701 - - port: Right - uid: 11701 - Close: - - port: Middle - uid: 11701 - Toggle: [] - type: SignalReceiver + - links: + - 11701 + type: DeviceLinkSink - proto: BlockGameArcade entities: - uid: 1281 @@ -16448,48 +16353,18 @@ entities: pos: -45.5,41.5 parent: 30 type: Transform - - outputs: - Start: - - port: Close - uid: 1761 - Timer: - - port: AutoClose - uid: 1761 - - port: Open - uid: 1761 - type: SignalTransmitter - uid: 1982 components: - rot: -1.5707963267948966 rad pos: -41.5,41.5 parent: 30 type: Transform - - outputs: - Start: - - port: Close - uid: 1759 - Timer: - - port: AutoClose - uid: 1759 - - port: Open - uid: 1759 - type: SignalTransmitter - uid: 1993 components: - rot: -1.5707963267948966 rad pos: -37.5,41.5 parent: 30 type: Transform - - outputs: - Start: - - port: Close - uid: 1760 - Timer: - - port: AutoClose - uid: 1760 - - port: Open - uid: 1760 - type: SignalTransmitter - proto: Bucket entities: - uid: 318 @@ -59946,9 +59821,6 @@ entities: - pos: 24.5,2.5 parent: 30 type: Transform - - outputs: - OrderSender: [] - type: SignalTransmitter - uid: 11704 components: - pos: 16.5,2.5 @@ -60370,466 +60242,242 @@ entities: - pos: 35.5,-13.5 parent: 30 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11677 - Forward: - - port: Left - uid: 11677 - Off: - - port: Middle - uid: 11677 - type: SignalReceiver + - links: + - 11677 + type: DeviceLinkSink - uid: 8466 components: - rot: -1.5707963267948966 rad pos: 18.5,-3.5 parent: 30 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11717 - Forward: - - port: Left - uid: 11717 - Off: - - port: Middle - uid: 11717 - type: SignalReceiver + - links: + - 11717 + type: DeviceLinkSink - uid: 8500 components: - rot: -1.5707963267948966 rad pos: 17.5,-3.5 parent: 30 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11717 - Forward: - - port: Left - uid: 11717 - Off: - - port: Middle - uid: 11717 - type: SignalReceiver + - links: + - 11717 + type: DeviceLinkSink - uid: 8503 components: - rot: -1.5707963267948966 rad pos: 19.5,-3.5 parent: 30 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11717 - Forward: - - port: Left - uid: 11717 - Off: - - port: Middle - uid: 11717 - type: SignalReceiver + - links: + - 11717 + type: DeviceLinkSink - uid: 11639 components: - pos: 35.5,-11.5 parent: 30 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11677 - Forward: - - port: Left - uid: 11677 - Off: - - port: Middle - uid: 11677 - type: SignalReceiver + - links: + - 11677 + type: DeviceLinkSink - uid: 11691 components: - rot: -1.5707963267948966 rad pos: 20.5,-3.5 parent: 30 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11717 - Forward: - - port: Left - uid: 11717 - Off: - - port: Middle - uid: 11717 - type: SignalReceiver + - links: + - 11717 + type: DeviceLinkSink - uid: 11702 components: - rot: -1.5707963267948966 rad pos: 38.5,-2.5 parent: 30 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11866 - Forward: - - port: Left - uid: 11866 - Off: - - port: Middle - uid: 11866 - type: SignalReceiver + - links: + - 11866 + type: DeviceLinkSink - uid: 11755 components: - rot: -1.5707963267948966 rad pos: 36.5,-2.5 parent: 30 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11866 - Forward: - - port: Left - uid: 11866 - Off: - - port: Middle - uid: 11866 - type: SignalReceiver + - links: + - 11866 + type: DeviceLinkSink - uid: 11780 components: - rot: 1.5707963267948966 rad pos: 35.5,-6.5 parent: 30 type: Transform - - inputs: - Reverse: - - port: Right - uid: 12013 - Forward: - - port: Left - uid: 12013 - Off: - - port: Middle - uid: 12013 - type: SignalReceiver + - links: + - 12013 + type: DeviceLinkSink - uid: 11865 components: - rot: -1.5707963267948966 rad pos: 35.5,-2.5 parent: 30 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11866 - Forward: - - port: Left - uid: 11866 - Off: - - port: Middle - uid: 11866 - type: SignalReceiver + - links: + - 11866 + type: DeviceLinkSink - uid: 11926 components: - rot: 1.5707963267948966 rad pos: 37.5,-6.5 parent: 30 type: Transform - - inputs: - Reverse: - - port: Right - uid: 12013 - Forward: - - port: Left - uid: 12013 - Off: - - port: Middle - uid: 12013 - type: SignalReceiver + - links: + - 12013 + type: DeviceLinkSink - uid: 11932 components: - pos: 35.5,-16.5 parent: 30 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11677 - Forward: - - port: Left - uid: 11677 - Off: - - port: Middle - uid: 11677 - type: SignalReceiver + - links: + - 11677 + type: DeviceLinkSink - uid: 11978 components: - rot: 1.5707963267948966 rad pos: 38.5,-6.5 parent: 30 type: Transform - - inputs: - Reverse: - - port: Right - uid: 12013 - Forward: - - port: Left - uid: 12013 - Off: - - port: Middle - uid: 12013 - type: SignalReceiver + - links: + - 12013 + type: DeviceLinkSink - uid: 11979 components: - rot: -1.5707963267948966 rad pos: 37.5,-2.5 parent: 30 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11866 - Forward: - - port: Left - uid: 11866 - Off: - - port: Middle - uid: 11866 - type: SignalReceiver + - links: + - 11866 + type: DeviceLinkSink - uid: 12014 components: - rot: -1.5707963267948966 rad pos: 34.5,-2.5 parent: 30 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11866 - Forward: - - port: Left - uid: 11866 - Off: - - port: Middle - uid: 11866 - type: SignalReceiver + - links: + - 11866 + type: DeviceLinkSink - uid: 12031 components: - pos: 35.5,-14.5 parent: 30 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11677 - Forward: - - port: Left - uid: 11677 - Off: - - port: Middle - uid: 11677 - type: SignalReceiver + - links: + - 11677 + type: DeviceLinkSink - uid: 12047 components: - rot: 1.5707963267948966 rad pos: 36.5,-6.5 parent: 30 type: Transform - - inputs: - Reverse: - - port: Right - uid: 12013 - Forward: - - port: Left - uid: 12013 - Off: - - port: Middle - uid: 12013 - type: SignalReceiver + - links: + - 12013 + type: DeviceLinkSink - uid: 12096 components: - pos: 35.5,-12.5 parent: 30 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11677 - Forward: - - port: Left - uid: 11677 - Off: - - port: Middle - uid: 11677 - type: SignalReceiver + - links: + - 11677 + type: DeviceLinkSink - uid: 12231 components: - pos: 35.5,-17.5 parent: 30 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11677 - Forward: - - port: Left - uid: 11677 - Off: - - port: Middle - uid: 11677 - type: SignalReceiver + - links: + - 11677 + type: DeviceLinkSink - uid: 14522 components: - pos: 48.5,25.5 parent: 30 type: Transform - - inputs: - Off: - - port: Middle - uid: 15987 - Forward: - - port: Left - uid: 15987 - Reverse: - - port: Right - uid: 15987 - type: SignalReceiver + - links: + - 15987 + type: DeviceLinkSink - uid: 14523 components: - pos: 48.5,24.5 parent: 30 type: Transform - - inputs: - Off: - - port: Middle - uid: 15987 - Forward: - - port: Left - uid: 15987 - Reverse: - - port: Right - uid: 15987 - type: SignalReceiver + - links: + - 15987 + type: DeviceLinkSink - uid: 14524 components: - pos: 48.5,23.5 parent: 30 type: Transform - - inputs: - Off: - - port: Middle - uid: 15987 - Forward: - - port: Left - uid: 15987 - Reverse: - - port: Right - uid: 15987 - type: SignalReceiver + - links: + - 15987 + type: DeviceLinkSink - uid: 14525 components: - pos: 48.5,22.5 parent: 30 type: Transform - - inputs: - Off: - - port: Middle - uid: 15987 - Forward: - - port: Left - uid: 15987 - Reverse: - - port: Right - uid: 15987 - type: SignalReceiver + - links: + - 15987 + type: DeviceLinkSink - uid: 14526 components: - rot: -1.5707963267948966 rad pos: 49.5,22.5 parent: 30 type: Transform - - inputs: - Off: - - port: Middle - uid: 15988 - Forward: - - port: Left - uid: 15988 - Reverse: - - port: Right - uid: 15988 - type: SignalReceiver + - links: + - 15988 + type: DeviceLinkSink - uid: 14527 components: - rot: -1.5707963267948966 rad pos: 50.5,22.5 parent: 30 type: Transform - - inputs: - Off: - - port: Middle - uid: 15988 - Forward: - - port: Left - uid: 15988 - Reverse: - - port: Right - uid: 15988 - type: SignalReceiver + - links: + - 15988 + type: DeviceLinkSink - uid: 14528 components: - rot: -1.5707963267948966 rad pos: 51.5,22.5 parent: 30 type: Transform - - inputs: - Off: - - port: Middle - uid: 15988 - Forward: - - port: Left - uid: 15988 - Reverse: - - port: Right - uid: 15988 - type: SignalReceiver + - links: + - 15988 + type: DeviceLinkSink - uid: 14529 components: - rot: -1.5707963267948966 rad pos: 52.5,22.5 parent: 30 type: Transform - - inputs: - Off: - - port: Middle - uid: 15988 - Forward: - - port: Left - uid: 15988 - Reverse: - - port: Right - uid: 15988 - type: SignalReceiver + - links: + - 15988 + type: DeviceLinkSink - uid: 16126 components: - pos: 35.5,-15.5 parent: 30 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11677 - Forward: - - port: Left - uid: 11677 - Off: - - port: Middle - uid: 11677 - type: SignalReceiver + - links: + - 11677 + type: DeviceLinkSink - proto: CornSeeds entities: - uid: 2348 @@ -106427,7 +106075,28 @@ entities: - pos: 3.5333395,44.656982 parent: 30 type: Transform -- proto: Intercom +- proto: IntercomAll + entities: + - uid: 22231 + components: + - rot: 3.141592653589793 rad + pos: -21.5,33.5 + parent: 30 + type: Transform + - uid: 22232 + components: + - pos: -0.5,36.5 + parent: 30 + type: Transform +- proto: IntercomCommand + entities: + - uid: 22513 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,82.5 + parent: 30 + type: Transform +- proto: IntercomCommon entities: - uid: 3637 components: @@ -106466,27 +106135,6 @@ entities: pos: -66.5,-43.5 parent: 30 type: Transform -- proto: IntercomAll - entities: - - uid: 22231 - components: - - rot: 3.141592653589793 rad - pos: -21.5,33.5 - parent: 30 - type: Transform - - uid: 22232 - components: - - pos: -0.5,36.5 - parent: 30 - type: Transform -- proto: IntercomCommand - entities: - - uid: 22513 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,82.5 - parent: 30 - type: Transform - proto: IntercomEngineering entities: - uid: 22290 @@ -117449,17 +117097,9 @@ entities: pos: 53.5,22.5 parent: 30 type: Transform - - inputs: - Off: - - port: Middle - uid: 15989 - Forward: - - port: Left - uid: 15989 - Reverse: - - port: Right - uid: 15989 - type: SignalReceiver + - links: + - 15989 + type: DeviceLinkSink - proto: ReinforcedGirder entities: - uid: 21934 @@ -121507,25 +121147,17 @@ entities: - pos: -33.5,8.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 544 - type: SignalReceiver + - links: + - 544 + type: DeviceLinkSink - uid: 543 components: - pos: -33.5,7.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 544 - type: SignalReceiver + - links: + - 544 + type: DeviceLinkSink - uid: 1340 components: - pos: -42.5,16.5 @@ -121546,141 +121178,91 @@ entities: - pos: 23.5,52.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13741 - - port: Pressed - uid: 13742 - type: SignalReceiver + - links: + - 13741 + - 13742 + type: DeviceLinkSink - uid: 13729 components: - pos: 24.5,52.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13741 - - port: Pressed - uid: 13742 - type: SignalReceiver + - links: + - 13741 + - 13742 + type: DeviceLinkSink - uid: 13730 components: - pos: 25.5,52.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13742 - - port: Pressed - uid: 13741 - type: SignalReceiver + - links: + - 13741 + - 13742 + type: DeviceLinkSink - uid: 13731 components: - pos: 26.5,52.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13742 - - port: Pressed - uid: 13741 - type: SignalReceiver + - links: + - 13741 + - 13742 + type: DeviceLinkSink - uid: 13732 components: - pos: 27.5,52.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13742 - - port: Pressed - uid: 13741 - type: SignalReceiver + - links: + - 13741 + - 13742 + type: DeviceLinkSink - uid: 13733 components: - pos: 27.5,54.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13741 - - port: Pressed - uid: 13742 - type: SignalReceiver + - links: + - 13741 + - 13742 + type: DeviceLinkSink - uid: 13734 components: - pos: 26.5,54.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13741 - - port: Pressed - uid: 13742 - type: SignalReceiver + - links: + - 13741 + - 13742 + type: DeviceLinkSink - uid: 13735 components: - pos: 25.5,54.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13741 - - port: Pressed - uid: 13742 - type: SignalReceiver + - links: + - 13741 + - 13742 + type: DeviceLinkSink - uid: 13736 components: - pos: 24.5,54.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13741 - - port: Pressed - uid: 13742 - type: SignalReceiver + - links: + - 13741 + - 13742 + type: DeviceLinkSink - uid: 13737 components: - pos: 23.5,54.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13741 - - port: Pressed - uid: 13742 - type: SignalReceiver + - links: + - 13741 + - 13742 + type: DeviceLinkSink - proto: ShuttersNormalOpen entities: - uid: 390 @@ -121689,126 +121271,86 @@ entities: pos: -10.5,11.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 384 - type: SignalReceiver + - links: + - 384 + type: DeviceLinkSink - uid: 391 components: - rot: 1.5707963267948966 rad pos: -10.5,9.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 384 - type: SignalReceiver + - links: + - 384 + type: DeviceLinkSink - uid: 392 components: - rot: 1.5707963267948966 rad pos: -10.5,10.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 384 - type: SignalReceiver + - links: + - 384 + type: DeviceLinkSink - uid: 393 components: - rot: 1.5707963267948966 rad pos: -10.5,7.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 384 - type: SignalReceiver + - links: + - 384 + type: DeviceLinkSink - uid: 394 components: - rot: 1.5707963267948966 rad pos: -10.5,8.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 384 - type: SignalReceiver + - links: + - 384 + type: DeviceLinkSink - uid: 395 components: - rot: 1.5707963267948966 rad pos: -10.5,6.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 384 - type: SignalReceiver + - links: + - 384 + type: DeviceLinkSink - uid: 580 components: - pos: -3.5,5.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver + - links: + - 583 + type: DeviceLinkSink - uid: 581 components: - pos: -2.5,5.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver + - links: + - 583 + type: DeviceLinkSink - uid: 582 components: - pos: -1.5,5.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver + - links: + - 583 + type: DeviceLinkSink - uid: 1076 components: - pos: -40.5,8.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 385 - type: SignalReceiver + - links: + - 385 + type: DeviceLinkSink - uid: 1077 components: - pos: -40.5,12.5 @@ -121819,679 +121361,443 @@ entities: - pos: -39.5,12.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 385 - type: SignalReceiver + - links: + - 385 + type: DeviceLinkSink - uid: 1079 components: - pos: -41.5,12.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 385 - type: SignalReceiver + - links: + - 385 + type: DeviceLinkSink - uid: 1080 components: - pos: -41.5,8.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 385 - type: SignalReceiver + - links: + - 385 + type: DeviceLinkSink - uid: 1081 components: - pos: -39.5,8.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 385 - type: SignalReceiver + - links: + - 385 + type: DeviceLinkSink - uid: 1082 components: - pos: -37.5,9.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 385 - type: SignalReceiver + - links: + - 385 + type: DeviceLinkSink - uid: 1083 components: - pos: -37.5,11.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 385 - type: SignalReceiver + - links: + - 385 + type: DeviceLinkSink - uid: 3405 components: - rot: 1.5707963267948966 rad pos: 7.5,8.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver + - links: + - 583 + type: DeviceLinkSink - uid: 4361 components: - pos: 5.5,5.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver + - links: + - 583 + type: DeviceLinkSink - uid: 4376 components: - rot: 1.5707963267948966 rad pos: 7.5,7.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver + - links: + - 583 + type: DeviceLinkSink - uid: 4378 components: - pos: 0.5,5.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver + - links: + - 583 + type: DeviceLinkSink - uid: 4915 components: - pos: 1.5,5.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver + - links: + - 583 + type: DeviceLinkSink - uid: 4955 components: - pos: -22.5,40.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20391 - type: SignalReceiver + - links: + - 20391 + type: DeviceLinkSink - uid: 5733 components: - pos: -5.5,5.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver + - links: + - 583 + type: DeviceLinkSink - uid: 5738 components: - pos: -14.5,36.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20392 - type: SignalReceiver + - links: + - 20392 + type: DeviceLinkSink - uid: 5741 components: - pos: -15.5,36.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20392 - type: SignalReceiver + - links: + - 20392 + type: DeviceLinkSink - uid: 6678 components: - pos: -8.5,-5.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20401 - type: SignalReceiver + - links: + - 20401 + type: DeviceLinkSink - uid: 6679 components: - pos: -6.5,-5.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20401 - type: SignalReceiver + - links: + - 20401 + type: DeviceLinkSink - uid: 6881 components: - pos: -29.5,0.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6894 - type: SignalReceiver + - links: + - 6894 + type: DeviceLinkSink - uid: 6882 components: - pos: -28.5,0.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6894 - type: SignalReceiver + - links: + - 6894 + type: DeviceLinkSink - uid: 6929 components: - pos: 4.5,5.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver + - links: + - 583 + type: DeviceLinkSink - uid: 6945 components: - pos: -9.5,5.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver + - links: + - 583 + type: DeviceLinkSink - uid: 9238 components: - pos: -4.5,12.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20446 - type: SignalReceiver + - links: + - 20446 + type: DeviceLinkSink - uid: 9239 components: - pos: -3.5,12.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20446 - type: SignalReceiver + - links: + - 20446 + type: DeviceLinkSink - uid: 9422 components: - pos: -15.5,-11.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22282 - type: SignalReceiver + - links: + - 22282 + type: DeviceLinkSink - uid: 11002 components: - rot: 1.5707963267948966 rad pos: -40.5,32.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11008 - type: SignalReceiver + - links: + - 11008 + type: DeviceLinkSink - uid: 11006 components: - pos: -42.5,34.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11008 - type: SignalReceiver + - links: + - 11008 + type: DeviceLinkSink - uid: 11010 components: - rot: 1.5707963267948966 rad pos: -40.5,31.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11008 - type: SignalReceiver + - links: + - 11008 + type: DeviceLinkSink - uid: 11680 components: - rot: -1.5707963267948966 rad pos: 4.5,-28.5 parent: 30 type: Transform - - inputs: - Open: - - port: Left - uid: 11701 - - port: Right - uid: 11701 - Close: - - port: Middle - uid: 11701 - Toggle: [] - type: SignalReceiver + - links: + - 11701 + type: DeviceLinkSink - uid: 11716 components: - pos: 26.5,-0.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12029 - type: SignalReceiver + - links: + - 12029 + type: DeviceLinkSink - uid: 11760 components: - rot: -1.5707963267948966 rad pos: 4.5,-27.5 parent: 30 type: Transform - - inputs: - Open: - - port: Left - uid: 11701 - - port: Right - uid: 11701 - Close: - - port: Middle - uid: 11701 - Toggle: [] - type: SignalReceiver + - links: + - 11701 + type: DeviceLinkSink - uid: 11822 components: - pos: 24.5,-0.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12029 - type: SignalReceiver + - links: + - 12029 + type: DeviceLinkSink - uid: 11823 components: - pos: 25.5,-0.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12029 - type: SignalReceiver + - links: + - 12029 + type: DeviceLinkSink - uid: 12625 components: - pos: -5.5,12.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20446 - type: SignalReceiver + - links: + - 20446 + type: DeviceLinkSink - uid: 12656 components: - pos: 14.5,13.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20399 - type: SignalReceiver + - links: + - 20399 + type: DeviceLinkSink - uid: 12657 components: - pos: 13.5,13.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20399 - type: SignalReceiver + - links: + - 20399 + type: DeviceLinkSink - uid: 12810 components: - pos: 24.5,15.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12859 - type: SignalReceiver + - links: + - 12859 + type: DeviceLinkSink - uid: 13075 components: - pos: 15.5,13.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20399 - type: SignalReceiver + - links: + - 20399 + type: DeviceLinkSink - uid: 14340 components: - pos: 27.5,12.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12859 - type: SignalReceiver + - links: + - 12859 + type: DeviceLinkSink - uid: 14352 components: - pos: 28.5,12.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12859 - type: SignalReceiver + - links: + - 12859 + type: DeviceLinkSink - uid: 14355 components: - pos: 26.5,12.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12859 - type: SignalReceiver + - links: + - 12859 + type: DeviceLinkSink - uid: 20394 components: - pos: -3.5,36.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20393 - type: SignalReceiver + - links: + - 20393 + type: DeviceLinkSink - uid: 20395 components: - pos: -4.5,36.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20393 - type: SignalReceiver + - links: + - 20393 + type: DeviceLinkSink - uid: 20445 components: - pos: -2.5,12.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20446 - type: SignalReceiver + - links: + - 20446 + type: DeviceLinkSink - uid: 20447 components: - pos: 0.5,12.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20446 - type: SignalReceiver + - links: + - 20446 + type: DeviceLinkSink - uid: 20448 components: - pos: -0.5,12.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20446 - type: SignalReceiver + - links: + - 20446 + type: DeviceLinkSink - uid: 20449 components: - pos: -1.5,12.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20446 - type: SignalReceiver + - links: + - 20446 + type: DeviceLinkSink - uid: 21333 components: - rot: 1.5707963267948966 rad pos: -40.5,30.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11008 - type: SignalReceiver + - links: + - 11008 + type: DeviceLinkSink - uid: 21722 components: - pos: -0.5,28.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21721 - type: SignalReceiver + - links: + - 21721 + type: DeviceLinkSink - uid: 21765 components: - rot: -1.5707963267948966 rad pos: 4.5,-29.5 parent: 30 type: Transform - - inputs: - Open: - - port: Left - uid: 11701 - - port: Right - uid: 11701 - Close: - - port: Middle - uid: 11701 - Toggle: [] - type: SignalReceiver + - links: + - 11701 + type: DeviceLinkSink - uid: 21766 components: - rot: -1.5707963267948966 rad pos: 4.5,-25.5 parent: 30 type: Transform - - inputs: - Open: - - port: Left - uid: 11701 - - port: Right - uid: 11701 - Close: - - port: Middle - uid: 11701 - Toggle: [] - type: SignalReceiver + - links: + - 11701 + type: DeviceLinkSink - uid: 21767 components: - rot: -1.5707963267948966 rad pos: 4.5,-23.5 parent: 30 type: Transform - - inputs: - Open: - - port: Left - uid: 11701 - - port: Right - uid: 11701 - Close: - - port: Middle - uid: 11701 - Toggle: [] - type: SignalReceiver + - links: + - 11701 + type: DeviceLinkSink - uid: 22280 components: - pos: -13.5,-11.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22282 - type: SignalReceiver + - links: + - 22282 + type: DeviceLinkSink - uid: 22281 components: - pos: -11.5,-11.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22282 - type: SignalReceiver + - links: + - 22282 + type: DeviceLinkSink - uid: 22424 components: - pos: 4.5,28.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21721 - type: SignalReceiver + - links: + - 21721 + type: DeviceLinkSink - proto: ShuttersRadiation entities: - uid: 9940 @@ -122499,73 +121805,49 @@ entities: - pos: -11.5,-52.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10006 - type: SignalReceiver + - links: + - 10006 + type: DeviceLinkSink - uid: 9941 components: - pos: -11.5,-51.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10006 - type: SignalReceiver + - links: + - 10006 + type: DeviceLinkSink - uid: 9942 components: - pos: -11.5,-50.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10006 - type: SignalReceiver + - links: + - 10006 + type: DeviceLinkSink - uid: 9943 components: - pos: -3.5,-52.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10007 - type: SignalReceiver + - links: + - 10007 + type: DeviceLinkSink - uid: 9944 components: - pos: -3.5,-51.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10007 - type: SignalReceiver + - links: + - 10007 + type: DeviceLinkSink - uid: 9945 components: - pos: -3.5,-50.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10007 - type: SignalReceiver + - links: + - 10007 + type: DeviceLinkSink - proto: ShuttersRadiationOpen entities: - uid: 767 @@ -122574,197 +121856,133 @@ entities: pos: 2.5,-50.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver + - links: + - 20328 + type: DeviceLinkSink - uid: 9182 components: - pos: -10.5,-42.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver + - links: + - 20328 + type: DeviceLinkSink - uid: 9339 components: - pos: -14.5,-43.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver + - links: + - 20328 + type: DeviceLinkSink - uid: 9342 components: - pos: -7.5,-61.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver + - links: + - 20328 + type: DeviceLinkSink - uid: 9343 components: - pos: -8.5,-61.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver + - links: + - 20328 + type: DeviceLinkSink - uid: 10741 components: - pos: -4.5,-42.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver + - links: + - 20328 + type: DeviceLinkSink - uid: 10742 components: - pos: -6.5,-42.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver + - links: + - 20328 + type: DeviceLinkSink - uid: 11152 components: - pos: -8.5,-42.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver + - links: + - 20328 + type: DeviceLinkSink - uid: 17961 components: - rot: 1.5707963267948966 rad pos: 2.5,-52.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver + - links: + - 20328 + type: DeviceLinkSink - uid: 18692 components: - pos: -0.5,-43.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver + - links: + - 20328 + type: DeviceLinkSink - uid: 18693 components: - pos: -3.5,-56.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver + - links: + - 20328 + type: DeviceLinkSink - uid: 18694 components: - pos: -11.5,-56.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver + - links: + - 20328 + type: DeviceLinkSink - uid: 18695 components: - rot: 1.5707963267948966 rad pos: 2.5,-54.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver + - links: + - 20328 + type: DeviceLinkSink - uid: 18696 components: - rot: 1.5707963267948966 rad pos: 2.5,-53.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver + - links: + - 20328 + type: DeviceLinkSink - uid: 20327 components: - rot: 1.5707963267948966 rad pos: 2.5,-49.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver + - links: + - 20328 + type: DeviceLinkSink - uid: 21742 components: - pos: -6.5,-61.5 parent: 30 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver + - links: + - 20328 + type: DeviceLinkSink - proto: SignAi entities: - uid: 20306 @@ -122784,85 +122002,81 @@ entities: - pos: -12.5,12.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 390 - - port: Toggle - uid: 392 - - port: Toggle - uid: 391 - - port: Toggle - uid: 394 - - port: Toggle - uid: 393 - - port: Toggle - uid: 395 - type: SignalTransmitter + - linkedPorts: + 390: + - Pressed: Toggle + 392: + - Pressed: Toggle + 391: + - Pressed: Toggle + 394: + - Pressed: Toggle + 393: + - Pressed: Toggle + 395: + - Pressed: Toggle + type: DeviceLinkSource - uid: 385 components: - pos: -43.5,10.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1079 - - port: Toggle - uid: 1078 - - port: Toggle - uid: 1083 - - port: Toggle - uid: 1082 - - port: Toggle - uid: 1080 - - port: Toggle - uid: 1076 - - port: Toggle - uid: 1081 - type: SignalTransmitter + - linkedPorts: + 1079: + - Pressed: Toggle + 1078: + - Pressed: Toggle + 1083: + - Pressed: Toggle + 1082: + - Pressed: Toggle + 1080: + - Pressed: Toggle + 1076: + - Pressed: Toggle + 1081: + - Pressed: Toggle + type: DeviceLinkSource - uid: 544 components: - pos: -32.5,11.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 542 - - port: Toggle - uid: 543 - type: SignalTransmitter + - linkedPorts: + 542: + - Pressed: Toggle + 543: + - Pressed: Toggle + type: DeviceLinkSource - uid: 583 components: - pos: -4.5,5.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 580 - - port: Toggle - uid: 581 - - port: Toggle - uid: 582 - - port: Toggle - uid: 5733 - - port: Toggle - uid: 6945 - - port: Toggle - uid: 4378 - - port: Toggle - uid: 4915 - - port: Toggle - uid: 6929 - - port: Toggle - uid: 4361 - - port: Toggle - uid: 4376 - - port: Toggle - uid: 3405 - type: SignalTransmitter + - linkedPorts: + 580: + - Pressed: Toggle + 581: + - Pressed: Toggle + 582: + - Pressed: Toggle + 5733: + - Pressed: Toggle + 6945: + - Pressed: Toggle + 4378: + - Pressed: Toggle + 4915: + - Pressed: Toggle + 6929: + - Pressed: Toggle + 4361: + - Pressed: Toggle + 4376: + - Pressed: Toggle + 3405: + - Pressed: Toggle + type: DeviceLinkSource - uid: 723 components: - pos: -39.5,9.5 @@ -122873,263 +122087,244 @@ entities: - pos: -21.5,-45.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9405 - - port: Toggle - uid: 9404 - type: SignalTransmitter + - linkedPorts: + 9405: + - Pressed: Toggle + 9404: + - Pressed: Toggle + type: DeviceLinkSource - uid: 6894 components: - pos: -30.5,-3.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6881 - - port: Toggle - uid: 6882 - type: SignalTransmitter + - linkedPorts: + 6881: + - Pressed: Toggle + 6882: + - Pressed: Toggle + type: DeviceLinkSource - uid: 8570 components: - pos: 13.5,-38.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9068 - type: SignalTransmitter + - linkedPorts: + 9068: + - Pressed: Toggle + type: DeviceLinkSource - uid: 9038 components: - pos: 16.5,-33.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9068 - type: SignalTransmitter + - linkedPorts: + 9068: + - Pressed: Toggle + type: DeviceLinkSource - uid: 10006 components: - pos: -11.5,-49.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9942 - - port: Toggle - uid: 9941 - - port: Toggle - uid: 9940 - type: SignalTransmitter + - linkedPorts: + 9942: + - Pressed: Toggle + 9941: + - Pressed: Toggle + 9940: + - Pressed: Toggle + type: DeviceLinkSource - uid: 10007 components: - pos: -3.5,-49.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9945 - - port: Toggle - uid: 9944 - - port: Toggle - uid: 9943 - type: SignalTransmitter + - linkedPorts: + 9945: + - Pressed: Toggle + 9944: + - Pressed: Toggle + 9943: + - Pressed: Toggle + type: DeviceLinkSource - uid: 10141 components: - pos: -17.5,-33.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9405 - - port: Toggle - uid: 9404 - type: SignalTransmitter + - linkedPorts: + 9405: + - Pressed: Toggle + 9404: + - Pressed: Toggle + type: DeviceLinkSource - uid: 11008 components: - pos: -44.5,33.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11006 - - port: Toggle - uid: 11002 - - port: Toggle - uid: 11010 - - port: Toggle - uid: 21333 - type: SignalTransmitter + - linkedPorts: + 11006: + - Pressed: Toggle + 11002: + - Pressed: Toggle + 11010: + - Pressed: Toggle + 21333: + - Pressed: Toggle + type: DeviceLinkSource - uid: 11761 components: - pos: 36.5,-11.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11659 - type: SignalTransmitter + - linkedPorts: + 11659: + - Pressed: Toggle + type: DeviceLinkSource - uid: 11933 components: - pos: 36.5,-14.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11682 - type: SignalTransmitter + - linkedPorts: + 11682: + - Pressed: Toggle + type: DeviceLinkSource - uid: 11994 components: - pos: 37.5,-4.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11923 - - port: Toggle - uid: 11995 - type: SignalTransmitter + - linkedPorts: + 11923: + - Pressed: Toggle + 11995: + - Pressed: Toggle + type: DeviceLinkSource - uid: 12029 components: - pos: 25.5,1.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11822 - - port: Toggle - uid: 11823 - - port: Toggle - uid: 11716 - type: SignalTransmitter + - linkedPorts: + 11822: + - Pressed: Toggle + 11823: + - Pressed: Toggle + 11716: + - Pressed: Toggle + type: DeviceLinkSource - uid: 12063 components: - pos: 36.5,-1.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 12099 - - port: Toggle - uid: 12059 - type: SignalTransmitter + - linkedPorts: + 12099: + - Pressed: Toggle + 12059: + - Pressed: Toggle + type: DeviceLinkSource - uid: 12859 components: - pos: 30.5,13.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 14352 - - port: Toggle - uid: 14340 - - port: Toggle - uid: 14355 - - port: Toggle - uid: 12810 - type: SignalTransmitter + - linkedPorts: + 14352: + - Pressed: Toggle + 14340: + - Pressed: Toggle + 14355: + - Pressed: Toggle + 12810: + - Pressed: Toggle + type: DeviceLinkSource - uid: 12915 components: - pos: 39.5,11.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 16773 - - port: Toggle - uid: 13347 - type: SignalTransmitter + - linkedPorts: + 16773: + - Pressed: Toggle + 13347: + - Pressed: Toggle + type: DeviceLinkSource - uid: 13741 components: - pos: 21.5,54.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13737 - - port: Toggle - uid: 13736 - - port: Toggle - uid: 13735 - - port: Toggle - uid: 13734 - - port: Toggle - uid: 13733 - - port: Toggle - uid: 13729 - - port: Toggle - uid: 13728 - - port: Toggle - uid: 13730 - - port: Toggle - uid: 13731 - - port: Toggle - uid: 13732 - type: SignalTransmitter + - linkedPorts: + 13737: + - Pressed: Toggle + 13736: + - Pressed: Toggle + 13735: + - Pressed: Toggle + 13734: + - Pressed: Toggle + 13733: + - Pressed: Toggle + 13729: + - Pressed: Toggle + 13728: + - Pressed: Toggle + 13730: + - Pressed: Toggle + 13731: + - Pressed: Toggle + 13732: + - Pressed: Toggle + type: DeviceLinkSource - uid: 13742 components: - pos: 29.5,54.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13733 - - port: Toggle - uid: 13732 - - port: Toggle - uid: 13731 - - port: Toggle - uid: 13730 - - port: Toggle - uid: 13734 - - port: Toggle - uid: 13735 - - port: Toggle - uid: 13736 - - port: Toggle - uid: 13737 - - port: Toggle - uid: 13728 - - port: Toggle - uid: 13729 - type: SignalTransmitter + - linkedPorts: + 13733: + - Pressed: Toggle + 13732: + - Pressed: Toggle + 13731: + - Pressed: Toggle + 13730: + - Pressed: Toggle + 13734: + - Pressed: Toggle + 13735: + - Pressed: Toggle + 13736: + - Pressed: Toggle + 13737: + - Pressed: Toggle + 13728: + - Pressed: Toggle + 13729: + - Pressed: Toggle + type: DeviceLinkSource - uid: 15985 components: - pos: 50.5,25.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13751 - type: SignalTransmitter + - linkedPorts: + 13751: + - Pressed: Toggle + type: DeviceLinkSource - uid: 15986 components: - pos: 53.5,25.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 14512 - type: SignalTransmitter + - linkedPorts: + 14512: + - Pressed: Toggle + type: DeviceLinkSource - uid: 16231 components: - name: Robotics Bay Blast Doors @@ -123137,15 +122332,14 @@ entities: - pos: 26.5,22.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 16228 - - port: Toggle - uid: 16229 - - port: Toggle - uid: 16230 - type: SignalTransmitter + - linkedPorts: + 16228: + - Pressed: Toggle + 16229: + - Pressed: Toggle + 16230: + - Pressed: Toggle + type: DeviceLinkSource - uid: 20328 components: - name: Rad Shutters @@ -123153,159 +122347,149 @@ entities: - pos: -9.5,-47.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9339 - - port: Toggle - uid: 9182 - - port: Toggle - uid: 11152 - - port: Toggle - uid: 10742 - - port: Toggle - uid: 10741 - - port: Toggle - uid: 18692 - - port: Toggle - uid: 20327 - - port: Toggle - uid: 767 - - port: Toggle - uid: 17961 - - port: Toggle - uid: 18696 - - port: Toggle - uid: 18695 - - port: Toggle - uid: 18693 - - port: Toggle - uid: 18694 - - port: Toggle - uid: 9343 - - port: Toggle - uid: 9342 - - port: Toggle - uid: 21742 - type: SignalTransmitter + - linkedPorts: + 9339: + - Pressed: Toggle + 9182: + - Pressed: Toggle + 11152: + - Pressed: Toggle + 10742: + - Pressed: Toggle + 10741: + - Pressed: Toggle + 18692: + - Pressed: Toggle + 20327: + - Pressed: Toggle + 767: + - Pressed: Toggle + 17961: + - Pressed: Toggle + 18696: + - Pressed: Toggle + 18695: + - Pressed: Toggle + 18693: + - Pressed: Toggle + 18694: + - Pressed: Toggle + 9343: + - Pressed: Toggle + 9342: + - Pressed: Toggle + 21742: + - Pressed: Toggle + type: DeviceLinkSource - uid: 20391 components: - pos: -21.5,38.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4955 - type: SignalTransmitter + - linkedPorts: + 4955: + - Pressed: Toggle + type: DeviceLinkSource - uid: 20392 components: - pos: -13.5,37.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5738 - - port: Toggle - uid: 5741 - type: SignalTransmitter + - linkedPorts: + 5738: + - Pressed: Toggle + 5741: + - Pressed: Toggle + type: DeviceLinkSource - uid: 20393 components: - pos: -5.5,37.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 20395 - - port: Toggle - uid: 20394 - type: SignalTransmitter + - linkedPorts: + 20395: + - Pressed: Toggle + 20394: + - Pressed: Toggle + type: DeviceLinkSource - uid: 20398 components: - pos: 8.5,41.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5556 - type: SignalTransmitter + - linkedPorts: + 5556: + - Pressed: Toggle + type: DeviceLinkSource - uid: 20399 components: - pos: 16.5,13.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 12656 - - port: Toggle - uid: 12657 - - port: Toggle - uid: 13075 - type: SignalTransmitter + - linkedPorts: + 12656: + - Pressed: Toggle + 12657: + - Pressed: Toggle + 13075: + - Pressed: Toggle + type: DeviceLinkSource - uid: 20401 components: - pos: -4.5,-7.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6679 - - port: Toggle - uid: 6678 - type: SignalTransmitter + - linkedPorts: + 6679: + - Pressed: Toggle + 6678: + - Pressed: Toggle + type: DeviceLinkSource - uid: 20446 components: - pos: -6.5,15.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 12625 - - port: Toggle - uid: 9238 - - port: Toggle - uid: 9239 - - port: Toggle - uid: 20445 - - port: Toggle - uid: 20449 - - port: Toggle - uid: 20448 - - port: Toggle - uid: 20447 - type: SignalTransmitter + - linkedPorts: + 12625: + - Pressed: Toggle + 9238: + - Pressed: Toggle + 9239: + - Pressed: Toggle + 20445: + - Pressed: Toggle + 20449: + - Pressed: Toggle + 20448: + - Pressed: Toggle + 20447: + - Pressed: Toggle + type: DeviceLinkSource - uid: 21721 components: - pos: -1.5,34.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 22424 - - port: Toggle - uid: 21722 - type: SignalTransmitter + - linkedPorts: + 22424: + - Pressed: Toggle + 21722: + - Pressed: Toggle + type: DeviceLinkSource - uid: 22282 components: - pos: -10.5,-13.5 parent: 30 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 22281 - - port: Toggle - uid: 22280 - - port: Toggle - uid: 9422 - type: SignalTransmitter + - linkedPorts: + 22281: + - Pressed: Toggle + 22280: + - Pressed: Toggle + 9422: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignArmory entities: - uid: 1927 @@ -131732,7 +130916,7 @@ entities: - pos: -0.49299335,82.64046 parent: 30 type: Transform -- proto: ToyAssistant +- proto: ToyFigurinePassenger entities: - uid: 19494 components: @@ -131870,303 +131054,205 @@ entities: - pos: 35.5,-9.5 parent: 30 type: Transform - - outputs: - Left: - - port: Forward - uid: 11639 - - port: Forward - uid: 12096 - - port: Forward - uid: 6726 - - port: Forward - uid: 12031 - - port: Forward - uid: 16126 - - port: Forward - uid: 11932 - - port: Forward - uid: 12231 - Right: - - port: Reverse - uid: 11639 - - port: Reverse - uid: 12096 - - port: Reverse - uid: 6726 - - port: Reverse - uid: 12031 - - port: Reverse - uid: 16126 - - port: Reverse - uid: 11932 - - port: Reverse - uid: 12231 - Middle: - - port: Off - uid: 11639 - - port: Off - uid: 12096 - - port: Off - uid: 6726 - - port: Off - uid: 12031 - - port: Off - uid: 16126 - - port: Off - uid: 11932 - - port: Off - uid: 12231 - type: SignalTransmitter + - linkedPorts: + 11639: + - Left: Forward + - Right: Reverse + - Middle: Off + 12096: + - Left: Forward + - Right: Reverse + - Middle: Off + 6726: + - Left: Forward + - Right: Reverse + - Middle: Off + 12031: + - Left: Forward + - Right: Reverse + - Middle: Off + 16126: + - Left: Forward + - Right: Reverse + - Middle: Off + 11932: + - Left: Forward + - Right: Reverse + - Middle: Off + 12231: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 11701 components: - pos: 7.5,-26.5 parent: 30 type: Transform - - outputs: - Left: - - port: Open - uid: 9190 - - port: Open - uid: 9189 - - port: Open - uid: 9188 - - port: Open - uid: 11760 - - port: Open - uid: 11680 - - port: Open - uid: 21765 - - port: Open - uid: 21766 - - port: Open - uid: 21767 - Right: - - port: Open - uid: 9190 - - port: Open - uid: 9189 - - port: Open - uid: 9188 - - port: Open - uid: 11760 - - port: Open - uid: 11680 - - port: Open - uid: 21765 - - port: Open - uid: 21766 - - port: Open - uid: 21767 - Middle: - - port: Close - uid: 9190 - - port: Close - uid: 9189 - - port: Close - uid: 9188 - - port: Close - uid: 11760 - - port: Close - uid: 11680 - - port: Close - uid: 21765 - - port: Close - uid: 21766 - - port: Close - uid: 21767 - type: SignalTransmitter + - linkedPorts: + 9190: + - Left: Open + - Right: Open + - Middle: Close + 9189: + - Left: Open + - Right: Open + - Middle: Close + 9188: + - Left: Open + - Right: Open + - Middle: Close + 11760: + - Left: Open + - Right: Open + - Middle: Close + 11680: + - Left: Open + - Right: Open + - Middle: Close + 21765: + - Left: Open + - Right: Open + - Middle: Close + 21766: + - Left: Open + - Right: Open + - Middle: Close + 21767: + - Left: Open + - Right: Open + - Middle: Close + type: DeviceLinkSource - uid: 11717 components: - pos: 20.5,-2.5 parent: 30 type: Transform - - outputs: - Middle: - - port: Off - uid: 8500 - - port: Off - uid: 8466 - - port: Off - uid: 8503 - - port: Off - uid: 11691 - Right: - - port: Reverse - uid: 8500 - - port: Reverse - uid: 8466 - - port: Reverse - uid: 8503 - - port: Reverse - uid: 11691 - Left: - - port: Forward - uid: 8500 - - port: Forward - uid: 8466 - - port: Forward - uid: 8503 - - port: Forward - uid: 11691 - type: SignalTransmitter + - linkedPorts: + 8500: + - Middle: Off + - Right: Reverse + - Left: Forward + 8466: + - Middle: Off + - Right: Reverse + - Left: Forward + 8503: + - Middle: Off + - Right: Reverse + - Left: Forward + 11691: + - Middle: Off + - Right: Reverse + - Left: Forward + type: DeviceLinkSource - uid: 11866 components: - pos: 34.5,-3.5 parent: 30 type: Transform - - outputs: - Left: - - port: Forward - uid: 11702 - - port: Forward - uid: 11979 - - port: Forward - uid: 11755 - - port: Forward - uid: 11865 - - port: Forward - uid: 12014 - Right: - - port: Reverse - uid: 11702 - - port: Reverse - uid: 11979 - - port: Reverse - uid: 11755 - - port: Reverse - uid: 11865 - - port: Reverse - uid: 12014 - Middle: - - port: Off - uid: 11702 - - port: Off - uid: 11979 - - port: Off - uid: 11755 - - port: Off - uid: 11865 - - port: Off - uid: 12014 - type: SignalTransmitter + - linkedPorts: + 11702: + - Left: Forward + - Right: Reverse + - Middle: Off + 11979: + - Left: Forward + - Right: Reverse + - Middle: Off + 11755: + - Left: Forward + - Right: Reverse + - Middle: Off + 11865: + - Left: Forward + - Right: Reverse + - Middle: Off + 12014: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 12013 components: - pos: 34.5,-7.5 parent: 30 type: Transform - - outputs: - Left: - - port: Forward - uid: 11780 - - port: Forward - uid: 12047 - - port: Forward - uid: 11926 - - port: Forward - uid: 11978 - Right: - - port: Reverse - uid: 11780 - - port: Reverse - uid: 12047 - - port: Reverse - uid: 11926 - - port: Reverse - uid: 11978 - Middle: - - port: Off - uid: 11780 - - port: Off - uid: 12047 - - port: Off - uid: 11926 - - port: Off - uid: 11978 - type: SignalTransmitter + - linkedPorts: + 11780: + - Left: Forward + - Right: Reverse + - Middle: Off + 12047: + - Left: Forward + - Right: Reverse + - Middle: Off + 11926: + - Left: Forward + - Right: Reverse + - Middle: Off + 11978: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 15987 components: - pos: 50.5,23.5 parent: 30 type: Transform - - outputs: - Middle: - - port: Off - uid: 14525 - - port: Off - uid: 14524 - - port: Off - uid: 14523 - - port: Off - uid: 14522 - Right: - - port: Reverse - uid: 14525 - - port: Reverse - uid: 14524 - - port: Reverse - uid: 14523 - - port: Reverse - uid: 14522 - Left: - - port: Forward - uid: 14525 - - port: Forward - uid: 14524 - - port: Forward - uid: 14523 - - port: Forward - uid: 14522 - type: SignalTransmitter + - linkedPorts: + 14525: + - Middle: Off + - Right: Reverse + - Left: Forward + 14524: + - Middle: Off + - Right: Reverse + - Left: Forward + 14523: + - Middle: Off + - Right: Reverse + - Left: Forward + 14522: + - Middle: Off + - Right: Reverse + - Left: Forward + type: DeviceLinkSource - uid: 15988 components: - pos: 51.5,23.5 parent: 30 type: Transform - - outputs: - Middle: - - port: Off - uid: 14526 - - port: Off - uid: 14527 - - port: Off - uid: 14528 - - port: Off - uid: 14529 - Right: - - port: Reverse - uid: 14526 - - port: Reverse - uid: 14527 - - port: Reverse - uid: 14528 - - port: Reverse - uid: 14529 - Left: - - port: Forward - uid: 14526 - - port: Forward - uid: 14527 - - port: Forward - uid: 14528 - - port: Forward - uid: 14529 - type: SignalTransmitter + - linkedPorts: + 14526: + - Middle: Off + - Right: Reverse + - Left: Forward + 14527: + - Middle: Off + - Right: Reverse + - Left: Forward + 14528: + - Middle: Off + - Right: Reverse + - Left: Forward + 14529: + - Middle: Off + - Right: Reverse + - Left: Forward + type: DeviceLinkSource - uid: 15989 components: - pos: 53.5,23.5 parent: 30 type: Transform - - outputs: - Middle: - - port: Off - uid: 14530 - Right: - - port: Reverse - uid: 14530 - Left: - - port: Forward - uid: 14530 - type: SignalTransmitter + - linkedPorts: + 14530: + - Middle: Off + - Right: Reverse + - Left: Forward + type: DeviceLinkSource - proto: UnfinishedMachineFrame entities: - uid: 1998 @@ -148979,52 +148065,16 @@ entities: - pos: -43.5,41.5 parent: 30 type: Transform - - inputs: - Open: - - port: Timer - uid: 1982 - Close: - - port: Start - uid: 1982 - Toggle: [] - AutoClose: - - port: Timer - uid: 1982 - type: SignalReceiver - uid: 1760 components: - pos: -39.5,41.5 parent: 30 type: Transform - - inputs: - Open: - - port: Timer - uid: 1993 - Close: - - port: Start - uid: 1993 - Toggle: [] - AutoClose: - - port: Timer - uid: 1993 - type: SignalReceiver - uid: 1761 components: - pos: -47.5,41.5 parent: 30 type: Transform - - inputs: - Open: - - port: Timer - uid: 1981 - Close: - - port: Start - uid: 1981 - Toggle: [] - AutoClose: - - port: Timer - uid: 1981 - type: SignalReceiver - uid: 2230 components: - rot: 1.5707963267948966 rad diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index af106fd72c..8232e1391b 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -13937,277 +13937,185 @@ entities: - pos: -45.5,15.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4747 - type: SignalReceiver + - links: + - 4747 + type: DeviceLinkSink - uid: 4308 components: - pos: -43.5,15.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4747 - type: SignalReceiver + - links: + - 4747 + type: DeviceLinkSink - uid: 4746 components: - pos: -43.5,19.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4748 - type: SignalReceiver + - links: + - 4748 + type: DeviceLinkSink - uid: 5045 components: - pos: -45.5,19.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4748 - type: SignalReceiver + - links: + - 4748 + type: DeviceLinkSink - uid: 9437 components: - pos: -40.5,41.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9439 - type: SignalReceiver + - links: + - 9439 + type: DeviceLinkSink - uid: 9438 components: - pos: -40.5,43.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9440 - type: SignalReceiver + - links: + - 9440 + type: DeviceLinkSink - uid: 10293 components: - pos: 68.5,-5.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12022 - type: SignalReceiver + - links: + - 12022 + type: DeviceLinkSink - uid: 11486 components: - pos: 46.5,-35.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12021 - type: SignalReceiver + - links: + - 12021 + type: DeviceLinkSink - uid: 11487 components: - pos: 48.5,-32.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12021 - type: SignalReceiver + - links: + - 12021 + type: DeviceLinkSink - uid: 19341 components: - pos: 3.5,-27.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19447 - type: SignalReceiver + - links: + - 19447 + type: DeviceLinkSink - uid: 19343 components: - pos: 2.5,-27.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19447 - type: SignalReceiver + - links: + - 19447 + type: DeviceLinkSink - uid: 19344 components: - pos: 1.5,-27.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19447 - type: SignalReceiver + - links: + - 19447 + type: DeviceLinkSink - uid: 19345 components: - pos: 16.5,-50.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19439 - type: SignalReceiver + - links: + - 19439 + type: DeviceLinkSink - uid: 19346 components: - pos: 20.5,-50.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24075 - type: SignalReceiver + - links: + - 24075 + type: DeviceLinkSink - uid: 19362 components: - pos: 12.5,-55.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19438 - type: SignalReceiver + - links: + - 19438 + type: DeviceLinkSink - uid: 19363 components: - pos: 12.5,-54.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19438 - type: SignalReceiver + - links: + - 19438 + type: DeviceLinkSink - uid: 19364 components: - pos: 16.5,-55.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19438 - type: SignalReceiver + - links: + - 19438 + type: DeviceLinkSink - uid: 19365 components: - pos: 16.5,-54.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19438 - type: SignalReceiver + - links: + - 19438 + type: DeviceLinkSink - uid: 23417 components: - pos: 54.5,21.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 23796 - type: SignalReceiver + - links: + - 23796 + type: DeviceLinkSink - uid: 23418 components: - pos: 54.5,20.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 23796 - type: SignalReceiver + - links: + - 23796 + type: DeviceLinkSink - uid: 23419 components: - pos: 54.5,19.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 23796 - type: SignalReceiver + - links: + - 23796 + type: DeviceLinkSink - uid: 23664 components: - pos: 51.5,27.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 23946 - type: SignalReceiver + - links: + - 23946 + type: DeviceLinkSink - uid: 23947 components: - pos: 50.5,27.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 23946 - type: SignalReceiver + - links: + - 23946 + type: DeviceLinkSink - proto: BlastDoorExterior1Open entities: - uid: 24634 @@ -14222,109 +14130,73 @@ entities: - pos: 51.5,-4.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8979 - type: SignalReceiver + - links: + - 8979 + type: DeviceLinkSink - uid: 8980 components: - pos: 46.5,-4.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8979 - type: SignalReceiver + - links: + - 8979 + type: DeviceLinkSink - uid: 8981 components: - pos: 47.5,-4.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8979 - type: SignalReceiver + - links: + - 8979 + type: DeviceLinkSink - uid: 10483 components: - pos: -12.5,45.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10486 - type: SignalReceiver + - links: + - 10486 + type: DeviceLinkSink - uid: 10484 components: - pos: -11.5,45.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10486 - type: SignalReceiver + - links: + - 10486 + type: DeviceLinkSink - uid: 10485 components: - pos: -10.5,45.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10486 - type: SignalReceiver + - links: + - 10486 + type: DeviceLinkSink - uid: 12566 components: - pos: 49.5,5.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12569 - type: SignalReceiver + - links: + - 12569 + type: DeviceLinkSink - uid: 12567 components: - pos: 50.5,5.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12569 - type: SignalReceiver + - links: + - 12569 + type: DeviceLinkSink - uid: 12568 components: - pos: 51.5,5.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12569 - type: SignalReceiver + - links: + - 12569 + type: DeviceLinkSink - proto: BlockGameArcade entities: - uid: 7187 @@ -15121,48 +14993,18 @@ entities: pos: -5.5,29.5 parent: 5350 type: Transform - - outputs: - Start: - - port: Close - uid: 8057 - Timer: - - port: AutoClose - uid: 8057 - - port: Open - uid: 8057 - type: SignalTransmitter - uid: 5347 components: - rot: 1.5707963267948966 rad pos: -8.5,29.5 parent: 5350 type: Transform - - outputs: - Start: - - port: Close - uid: 8058 - Timer: - - port: AutoClose - uid: 8058 - - port: Open - uid: 8058 - type: SignalTransmitter - uid: 5348 components: - rot: 1.5707963267948966 rad pos: -11.5,29.5 parent: 5350 type: Transform - - outputs: - Start: - - port: Close - uid: 8059 - Timer: - - port: AutoClose - uid: 8059 - - port: Open - uid: 8059 - type: SignalTransmitter - proto: Brutepack entities: - uid: 16234 @@ -66747,22 +66589,12 @@ entities: pos: 13.5,-51.5 parent: 5350 type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 19358 - type: SignalTransmitter - uid: 19453 components: - rot: -1.5707963267948966 rad pos: 22.5,-30.5 parent: 5350 type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 19357 - type: SignalTransmitter - proto: computerBodyScanner entities: - uid: 7173 @@ -67371,332 +67203,172 @@ entities: - pos: -38.5,7.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4025 - Forward: - - port: Left - uid: 4025 - Off: - - port: Middle - uid: 4025 - type: SignalReceiver + - links: + - 4025 + type: DeviceLinkSink - uid: 3357 components: - pos: -38.5,6.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4025 - Forward: - - port: Left - uid: 4025 - Off: - - port: Middle - uid: 4025 - type: SignalReceiver + - links: + - 4025 + type: DeviceLinkSink - uid: 3849 components: - rot: -1.5707963267948966 rad pos: -34.5,5.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 3860 - Forward: - - port: Left - uid: 3860 - Off: - - port: Middle - uid: 3860 - type: SignalReceiver + - links: + - 3860 + type: DeviceLinkSink - uid: 3905 components: - rot: -1.5707963267948966 rad pos: -42.5,19.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4743 - Forward: - - port: Left - uid: 4743 - Off: - - port: Middle - uid: 4743 - type: SignalReceiver + - links: + - 4743 + type: DeviceLinkSink - uid: 3906 components: - rot: -1.5707963267948966 rad pos: -43.5,19.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4743 - Forward: - - port: Left - uid: 4743 - Off: - - port: Middle - uid: 4743 - type: SignalReceiver + - links: + - 4743 + type: DeviceLinkSink - uid: 3907 components: - rot: -1.5707963267948966 rad pos: -44.5,19.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4743 - Forward: - - port: Left - uid: 4743 - Off: - - port: Middle - uid: 4743 - type: SignalReceiver + - links: + - 4743 + type: DeviceLinkSink - uid: 3908 components: - rot: -1.5707963267948966 rad pos: -45.5,19.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4743 - Forward: - - port: Left - uid: 4743 - Off: - - port: Middle - uid: 4743 - type: SignalReceiver + - links: + - 4743 + type: DeviceLinkSink - uid: 3909 components: - rot: 1.5707963267948966 rad pos: -45.5,15.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4744 - Forward: - - port: Left - uid: 4744 - Off: - - port: Middle - uid: 4744 - type: SignalReceiver + - links: + - 4744 + type: DeviceLinkSink - uid: 3910 components: - rot: 1.5707963267948966 rad pos: -44.5,15.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4744 - Forward: - - port: Left - uid: 4744 - Off: - - port: Middle - uid: 4744 - type: SignalReceiver + - links: + - 4744 + type: DeviceLinkSink - uid: 3911 components: - rot: 1.5707963267948966 rad pos: -43.5,15.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4744 - Forward: - - port: Left - uid: 4744 - Off: - - port: Middle - uid: 4744 - type: SignalReceiver + - links: + - 4744 + type: DeviceLinkSink - uid: 3912 components: - rot: 1.5707963267948966 rad pos: -42.5,15.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4744 - Forward: - - port: Left - uid: 4744 - Off: - - port: Middle - uid: 4744 - type: SignalReceiver + - links: + - 4744 + type: DeviceLinkSink - uid: 4022 components: - rot: -1.5707963267948966 rad pos: -35.5,5.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 3860 - Forward: - - port: Left - uid: 3860 - Off: - - port: Middle - uid: 3860 - type: SignalReceiver + - links: + - 3860 + type: DeviceLinkSink - uid: 4023 components: - rot: -1.5707963267948966 rad pos: -36.5,5.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 3860 - Forward: - - port: Left - uid: 3860 - Off: - - port: Middle - uid: 3860 - type: SignalReceiver + - links: + - 3860 + type: DeviceLinkSink - uid: 4027 components: - pos: -38.5,8.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 4025 - Forward: - - port: Left - uid: 4025 - Off: - - port: Middle - uid: 4025 - type: SignalReceiver + - links: + - 4025 + type: DeviceLinkSink - uid: 9394 components: - pos: -40.5,41.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9421 - Forward: - - port: Left - uid: 9421 - Off: - - port: Middle - uid: 9421 - type: SignalReceiver + - links: + - 9421 + type: DeviceLinkSink - uid: 9401 components: - pos: -40.5,42.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9421 - Forward: - - port: Left - uid: 9421 - Off: - - port: Middle - uid: 9421 - type: SignalReceiver + - links: + - 9421 + type: DeviceLinkSink - uid: 9402 components: - pos: -40.5,43.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9421 - Forward: - - port: Left - uid: 9421 - Off: - - port: Middle - uid: 9421 - type: SignalReceiver + - links: + - 9421 + type: DeviceLinkSink - uid: 9418 components: - pos: -40.5,40.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9421 - Forward: - - port: Left - uid: 9421 - Off: - - port: Middle - uid: 9421 - type: SignalReceiver + - links: + - 9421 + type: DeviceLinkSink - uid: 9419 components: - pos: -40.5,39.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9421 - Forward: - - port: Left - uid: 9421 - Off: - - port: Middle - uid: 9421 - type: SignalReceiver + - links: + - 9421 + type: DeviceLinkSink - uid: 9497 components: - pos: -40.5,44.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9421 - Forward: - - port: Left - uid: 9421 - Off: - - port: Middle - uid: 9421 - type: SignalReceiver + - links: + - 9421 + type: DeviceLinkSink - proto: Cowbar entities: - uid: 24791 @@ -123161,40 +122833,6 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage -- proto: Intercom - entities: - - uid: 24804 - components: - - pos: -24.5,-5.5 - parent: 5350 - type: Transform - - uid: 24805 - components: - - pos: 4.5,-17.5 - parent: 5350 - type: Transform - - uid: 24806 - components: - - pos: 24.5,5.5 - parent: 5350 - type: Transform - - uid: 24807 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,18.5 - parent: 5350 - type: Transform - - uid: 24810 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-41.5 - parent: 5350 - type: Transform - - uid: 24823 - components: - - pos: -4.5,-60.5 - parent: 5350 - type: Transform - proto: IntercomAll entities: - uid: 24723 @@ -123264,6 +122902,40 @@ entities: pos: 103.5,8.5 parent: 5350 type: Transform +- proto: IntercomCommon + entities: + - uid: 24804 + components: + - pos: -24.5,-5.5 + parent: 5350 + type: Transform + - uid: 24805 + components: + - pos: 4.5,-17.5 + parent: 5350 + type: Transform + - uid: 24806 + components: + - pos: 24.5,5.5 + parent: 5350 + type: Transform + - uid: 24807 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,18.5 + parent: 5350 + type: Transform + - uid: 24810 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-41.5 + parent: 5350 + type: Transform + - uid: 24823 + components: + - pos: -4.5,-60.5 + parent: 5350 + type: Transform - proto: IntercomEngineering entities: - uid: 24719 @@ -125919,21 +125591,11 @@ entities: pos: 24.5,-30.5 parent: 5350 type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 19453 - type: SignalReceiver - uid: 19358 components: - pos: 14.5,-54.5 parent: 5350 type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 19352 - type: SignalReceiver - proto: MachineFrame entities: - uid: 10387 @@ -135753,17 +135415,9 @@ entities: - pos: -40.5,38.5 parent: 5350 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9421 - Forward: - - port: Left - uid: 9421 - Off: - - port: Middle - uid: 9421 - type: SignalReceiver + - links: + - 9421 + type: DeviceLinkSink - proto: ReinforcedPlasmaWindow entities: - uid: 11288 @@ -139599,10 +139253,6 @@ entities: - Pressed: Toggle 24685: - Pressed: Toggle - registeredSinks: - Pressed: - - 24656 - - 24685 type: DeviceLinkSource - proto: ResearchAndDevelopmentServer entities: @@ -140125,13 +139775,9 @@ entities: - pos: -16.5,-9.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1495 - type: SignalReceiver + - links: + - 1495 + type: DeviceLinkSink - uid: 1543 components: - pos: -18.5,4.5 @@ -140163,13 +139809,9 @@ entities: pos: -46.5,-17.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18402 - type: SignalReceiver + - links: + - 18402 + type: DeviceLinkSink - uid: 19405 components: - rot: -1.5707963267948966 rad @@ -140181,43 +139823,28 @@ entities: - pos: 27.5,-57.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20957 - - port: Pressed - uid: 20956 - type: SignalReceiver + - links: + - 20956 + - 20957 + type: DeviceLinkSink - uid: 20959 components: - pos: 29.5,-57.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20957 - - port: Pressed - uid: 20956 - type: SignalReceiver + - links: + - 20956 + - 20957 + type: DeviceLinkSink - uid: 22274 components: - pos: 28.5,-57.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20957 - - port: Pressed - uid: 20956 - type: SignalReceiver + - links: + - 20956 + - 20957 + type: DeviceLinkSink - uid: 24656 components: - rot: 1.5707963267948966 rad @@ -140249,313 +139876,209 @@ entities: - pos: -17.5,-6.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1369 - type: SignalReceiver + - links: + - 1369 + type: DeviceLinkSink - uid: 1368 components: - pos: -12.5,-6.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1369 - type: SignalReceiver + - links: + - 1369 + type: DeviceLinkSink - uid: 1429 components: - pos: 2.5,-12.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver + - links: + - 2050 + type: DeviceLinkSink - uid: 1435 components: - pos: 3.5,-16.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver + - links: + - 2050 + type: DeviceLinkSink - uid: 1441 components: - pos: -1.5,-17.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver + - links: + - 2050 + type: DeviceLinkSink - uid: 1442 components: - pos: -2.5,-17.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver + - links: + - 2050 + type: DeviceLinkSink - uid: 1443 components: - pos: -3.5,-17.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver + - links: + - 2050 + type: DeviceLinkSink - uid: 1444 components: - pos: 2.5,-17.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver + - links: + - 2050 + type: DeviceLinkSink - uid: 1445 components: - pos: -7.5,-17.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver + - links: + - 2050 + type: DeviceLinkSink - uid: 1446 components: - pos: 3.5,-15.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver + - links: + - 2050 + type: DeviceLinkSink - uid: 1447 components: - pos: 0.5,-12.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver + - links: + - 2050 + type: DeviceLinkSink - uid: 1576 components: - pos: -5.5,-12.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver + - links: + - 2050 + type: DeviceLinkSink - uid: 1577 components: - pos: -7.5,-12.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver + - links: + - 2050 + type: DeviceLinkSink - uid: 2415 components: - pos: 25.5,-6.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3064 - type: SignalReceiver + - links: + - 3064 + type: DeviceLinkSink - uid: 2416 components: - pos: 24.5,-6.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3064 - type: SignalReceiver + - links: + - 3064 + type: DeviceLinkSink - uid: 2417 components: - pos: 23.5,-6.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3064 - type: SignalReceiver + - links: + - 3064 + type: DeviceLinkSink - uid: 2418 components: - pos: 22.5,-6.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3064 - type: SignalReceiver + - links: + - 3064 + type: DeviceLinkSink - uid: 2419 components: - pos: 21.5,-6.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3064 - type: SignalReceiver + - links: + - 3064 + type: DeviceLinkSink - uid: 2420 components: - pos: 20.5,-6.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3064 - type: SignalReceiver + - links: + - 3064 + type: DeviceLinkSink - uid: 2421 components: - pos: 19.5,-6.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3064 - type: SignalReceiver + - links: + - 3064 + type: DeviceLinkSink - uid: 2422 components: - pos: 32.5,-8.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3063 - type: SignalReceiver + - links: + - 3063 + type: DeviceLinkSink - uid: 2423 components: - pos: 31.5,-8.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3063 - type: SignalReceiver + - links: + - 3063 + type: DeviceLinkSink - uid: 2424 components: - pos: 30.5,-8.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3063 - type: SignalReceiver + - links: + - 3063 + type: DeviceLinkSink - uid: 2425 components: - pos: 29.5,-8.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3063 - type: SignalReceiver + - links: + - 3063 + type: DeviceLinkSink - uid: 2426 components: - pos: 28.5,-8.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3063 - type: SignalReceiver + - links: + - 3063 + type: DeviceLinkSink - uid: 2427 components: - pos: 27.5,-8.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3063 - type: SignalReceiver + - links: + - 3063 + type: DeviceLinkSink - uid: 6250 components: - pos: -3.5,26.5 @@ -140571,231 +140094,155 @@ entities: - pos: -12.5,26.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5345 - type: SignalReceiver + - links: + - 5345 + type: DeviceLinkSink - uid: 6260 components: - pos: -9.5,26.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5345 - type: SignalReceiver + - links: + - 5345 + type: DeviceLinkSink - uid: 6261 components: - pos: -7.5,26.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5345 - type: SignalReceiver + - links: + - 5345 + type: DeviceLinkSink - uid: 6474 components: - pos: -15.5,26.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7364 - type: SignalReceiver + - links: + - 7364 + type: DeviceLinkSink - uid: 6897 components: - pos: -14.5,30.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7364 - type: SignalReceiver + - links: + - 7364 + type: DeviceLinkSink - uid: 7069 components: - pos: -18.5,26.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7364 - type: SignalReceiver + - links: + - 7364 + type: DeviceLinkSink - uid: 7365 components: - pos: -17.5,26.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7364 - type: SignalReceiver + - links: + - 7364 + type: DeviceLinkSink - uid: 7745 components: - pos: -13.5,26.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5345 - type: SignalReceiver + - links: + - 5345 + type: DeviceLinkSink - uid: 7746 components: - pos: -10.5,26.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5345 - type: SignalReceiver + - links: + - 5345 + type: DeviceLinkSink - uid: 7749 components: - pos: -6.5,26.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5345 - type: SignalReceiver + - links: + - 5345 + type: DeviceLinkSink - uid: 10335 components: - pos: 1.5,41.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10478 - type: SignalReceiver + - links: + - 10478 + type: DeviceLinkSink - uid: 10479 components: - pos: -11.5,52.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10482 - type: SignalReceiver + - links: + - 10482 + type: DeviceLinkSink - uid: 10480 components: - pos: -7.5,52.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10482 - type: SignalReceiver + - links: + - 10482 + type: DeviceLinkSink - uid: 10481 components: - pos: -3.5,52.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10482 - type: SignalReceiver + - links: + - 10482 + type: DeviceLinkSink - uid: 14914 components: - pos: -14.5,-32.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14913 - type: SignalReceiver + - links: + - 14913 + type: DeviceLinkSink - uid: 14915 components: - pos: -15.5,-32.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14913 - type: SignalReceiver + - links: + - 14913 + type: DeviceLinkSink - uid: 14916 components: - pos: -16.5,-32.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14913 - type: SignalReceiver + - links: + - 14913 + type: DeviceLinkSink - uid: 14917 components: - rot: -1.5707963267948966 rad pos: -18.5,-36.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14913 - type: SignalReceiver + - links: + - 14913 + type: DeviceLinkSink - uid: 14918 components: - rot: -1.5707963267948966 rad pos: -18.5,-35.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14913 - type: SignalReceiver + - links: + - 14913 + type: DeviceLinkSink - uid: 19429 components: - pos: 9.5,-47.5 @@ -140804,13 +140251,9 @@ entities: - SecondsUntilStateChange: -25007.025 state: Closing type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19435 - type: SignalReceiver + - links: + - 19435 + type: DeviceLinkSink - uid: 19430 components: - pos: 10.5,-47.5 @@ -140819,13 +140262,9 @@ entities: - SecondsUntilStateChange: -25007.025 state: Closing type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19435 - type: SignalReceiver + - links: + - 19435 + type: DeviceLinkSink - uid: 19431 components: - pos: 11.5,-47.5 @@ -140834,13 +140273,9 @@ entities: - SecondsUntilStateChange: -25007.025 state: Closing type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19435 - type: SignalReceiver + - links: + - 19435 + type: DeviceLinkSink - uid: 19432 components: - pos: 13.5,-47.5 @@ -140849,13 +140284,9 @@ entities: - SecondsUntilStateChange: -25007.025 state: Closing type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19435 - type: SignalReceiver + - links: + - 19435 + type: DeviceLinkSink - uid: 19433 components: - pos: 14.5,-47.5 @@ -140864,13 +140295,9 @@ entities: - SecondsUntilStateChange: -25007.025 state: Closing type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19435 - type: SignalReceiver + - links: + - 19435 + type: DeviceLinkSink - uid: 19434 components: - pos: 15.5,-47.5 @@ -140879,13 +140306,9 @@ entities: - SecondsUntilStateChange: -25007.025 state: Closing type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19435 - type: SignalReceiver + - links: + - 19435 + type: DeviceLinkSink - uid: 19443 components: - rot: -1.5707963267948966 rad @@ -140910,311 +140333,211 @@ entities: pos: -32.5,-73.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21657 - type: SignalReceiver + - links: + - 21657 + type: DeviceLinkSink - uid: 21650 components: - rot: -1.5707963267948966 rad pos: -32.5,-71.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21657 - type: SignalReceiver + - links: + - 21657 + type: DeviceLinkSink - uid: 21651 components: - rot: -1.5707963267948966 rad pos: -32.5,-70.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21657 - type: SignalReceiver + - links: + - 21657 + type: DeviceLinkSink - uid: 21652 components: - rot: -1.5707963267948966 rad pos: -32.5,-69.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21657 - type: SignalReceiver + - links: + - 21657 + type: DeviceLinkSink - uid: 21653 components: - pos: -31.5,-74.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21657 - type: SignalReceiver + - links: + - 21657 + type: DeviceLinkSink - uid: 21654 components: - pos: -28.5,-74.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21657 - type: SignalReceiver + - links: + - 21657 + type: DeviceLinkSink - uid: 21655 components: - pos: -27.5,-74.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21657 - type: SignalReceiver + - links: + - 21657 + type: DeviceLinkSink - uid: 21656 components: - pos: -26.5,-74.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21657 - type: SignalReceiver + - links: + - 21657 + type: DeviceLinkSink - uid: 22191 components: - rot: -1.5707963267948966 rad pos: 9.5,-23.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22198 - type: SignalReceiver + - links: + - 22198 + type: DeviceLinkSink - uid: 22192 components: - rot: -1.5707963267948966 rad pos: 9.5,-24.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22198 - type: SignalReceiver + - links: + - 22198 + type: DeviceLinkSink - uid: 22193 components: - rot: -1.5707963267948966 rad pos: 9.5,-25.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22198 - type: SignalReceiver + - links: + - 22198 + type: DeviceLinkSink - uid: 22194 components: - rot: -1.5707963267948966 rad pos: 9.5,-26.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22198 - type: SignalReceiver + - links: + - 22198 + type: DeviceLinkSink - uid: 22195 components: - rot: -1.5707963267948966 rad pos: 9.5,-28.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22198 - type: SignalReceiver + - links: + - 22198 + type: DeviceLinkSink - uid: 22196 components: - rot: -1.5707963267948966 rad pos: 9.5,-30.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22198 - type: SignalReceiver + - links: + - 22198 + type: DeviceLinkSink - uid: 22197 components: - rot: -1.5707963267948966 rad pos: 9.5,-32.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22198 - type: SignalReceiver + - links: + - 22198 + type: DeviceLinkSink - uid: 24426 components: - pos: 7.5,43.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24430 - type: SignalReceiver + - links: + - 24430 + type: DeviceLinkSink - uid: 24427 components: - pos: 8.5,43.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24430 - type: SignalReceiver + - links: + - 24430 + type: DeviceLinkSink - uid: 24428 components: - pos: 10.5,43.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24430 - type: SignalReceiver + - links: + - 24430 + type: DeviceLinkSink - uid: 24429 components: - pos: 11.5,43.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24430 - type: SignalReceiver + - links: + - 24430 + type: DeviceLinkSink - uid: 24626 components: - pos: 19.5,-33.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24632 - type: SignalReceiver + - links: + - 24632 + type: DeviceLinkSink - uid: 24627 components: - pos: 21.5,-33.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24632 - type: SignalReceiver + - links: + - 24632 + type: DeviceLinkSink - uid: 24628 components: - pos: 22.5,-33.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24632 - type: SignalReceiver + - links: + - 24632 + type: DeviceLinkSink - uid: 24629 components: - pos: 19.5,-40.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24632 - type: SignalReceiver + - links: + - 24632 + type: DeviceLinkSink - uid: 24630 components: - pos: 20.5,-40.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24632 - type: SignalReceiver + - links: + - 24632 + type: DeviceLinkSink - uid: 24631 components: - pos: 22.5,-40.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24632 - type: SignalReceiver + - links: + - 24632 + type: DeviceLinkSink - uid: 26399 components: - pos: 104.5,3.5 @@ -141227,25 +140550,17 @@ entities: - pos: 56.5,23.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24303 - type: SignalReceiver + - links: + - 24303 + type: DeviceLinkSink - uid: 24302 components: - pos: 56.5,17.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24304 - type: SignalReceiver + - links: + - 24304 + type: DeviceLinkSink - proto: ShuttersWindowOpen entities: - uid: 15185 @@ -141253,73 +140568,49 @@ entities: - pos: -35.5,-48.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15183 - type: SignalReceiver + - links: + - 15183 + type: DeviceLinkSink - uid: 15186 components: - pos: -34.5,-48.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15183 - type: SignalReceiver + - links: + - 15183 + type: DeviceLinkSink - uid: 15187 components: - pos: -33.5,-48.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15183 - type: SignalReceiver + - links: + - 15183 + type: DeviceLinkSink - uid: 15188 components: - pos: -23.5,-48.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15184 - type: SignalReceiver + - links: + - 15184 + type: DeviceLinkSink - uid: 15189 components: - pos: -24.5,-48.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15184 - type: SignalReceiver + - links: + - 15184 + type: DeviceLinkSink - uid: 15190 components: - pos: -25.5,-48.5 parent: 5350 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15184 - type: SignalReceiver + - links: + - 15184 + type: DeviceLinkSink - proto: ShuttleConsoleCircuitboard entities: - uid: 14518 @@ -141346,139 +140637,131 @@ entities: - pos: -15.5,-0.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1367 - - port: Toggle - uid: 1368 - type: SignalTransmitter + - linkedPorts: + 1367: + - Pressed: Toggle + 1368: + - Pressed: Toggle + type: DeviceLinkSource - uid: 1495 components: - pos: -14.5,-13.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1493 - type: SignalTransmitter + - linkedPorts: + 1493: + - Pressed: Toggle + type: DeviceLinkSource - uid: 2050 components: - pos: -7.5,-15.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1577 - - port: Toggle - uid: 1576 - - port: Toggle - uid: 1445 - - port: Toggle - uid: 1443 - - port: Toggle - uid: 1442 - - port: Toggle - uid: 1441 - - port: Toggle - uid: 1444 - - port: Toggle - uid: 1447 - - port: Toggle - uid: 1429 - - port: Toggle - uid: 1446 - - port: Toggle - uid: 1435 - type: SignalTransmitter + - linkedPorts: + 1577: + - Pressed: Toggle + 1576: + - Pressed: Toggle + 1445: + - Pressed: Toggle + 1443: + - Pressed: Toggle + 1442: + - Pressed: Toggle + 1441: + - Pressed: Toggle + 1444: + - Pressed: Toggle + 1447: + - Pressed: Toggle + 1429: + - Pressed: Toggle + 1446: + - Pressed: Toggle + 1435: + - Pressed: Toggle + type: DeviceLinkSource - uid: 3063 components: - pos: 32.5,-12.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2422 - - port: Toggle - uid: 2423 - - port: Toggle - uid: 2424 - - port: Toggle - uid: 2425 - - port: Toggle - uid: 2426 - - port: Toggle - uid: 2427 - type: SignalTransmitter + - linkedPorts: + 2422: + - Pressed: Toggle + 2423: + - Pressed: Toggle + 2424: + - Pressed: Toggle + 2425: + - Pressed: Toggle + 2426: + - Pressed: Toggle + 2427: + - Pressed: Toggle + type: DeviceLinkSource - uid: 3064 components: - pos: 21.5,-11.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2421 - - port: Toggle - uid: 2420 - - port: Toggle - uid: 2419 - - port: Toggle - uid: 2418 - - port: Toggle - uid: 2417 - - port: Toggle - uid: 2416 - - port: Toggle - uid: 2415 - type: SignalTransmitter + - linkedPorts: + 2421: + - Pressed: Toggle + 2420: + - Pressed: Toggle + 2419: + - Pressed: Toggle + 2418: + - Pressed: Toggle + 2417: + - Pressed: Toggle + 2416: + - Pressed: Toggle + 2415: + - Pressed: Toggle + type: DeviceLinkSource - uid: 4747 components: - pos: -43.5,14.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4308 - - port: Toggle - uid: 4145 - type: SignalTransmitter + - linkedPorts: + 4308: + - Pressed: Toggle + 4145: + - Pressed: Toggle + type: DeviceLinkSource - uid: 4748 components: - pos: -43.5,20.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5045 - - port: Toggle - uid: 4746 - type: SignalTransmitter + - linkedPorts: + 5045: + - Pressed: Toggle + 4746: + - Pressed: Toggle + type: DeviceLinkSource - uid: 5345 components: - pos: -9.5,32.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7745 - - port: Toggle - uid: 6259 - - port: Toggle - uid: 7746 - - port: Toggle - uid: 6260 - - port: Toggle - uid: 6261 - - port: Toggle - uid: 7749 - type: SignalTransmitter + - linkedPorts: + 7745: + - Pressed: Toggle + 6259: + - Pressed: Toggle + 7746: + - Pressed: Toggle + 6260: + - Pressed: Toggle + 6261: + - Pressed: Toggle + 7749: + - Pressed: Toggle + type: DeviceLinkSource - uid: 7364 components: - pos: -14.5,29.5 @@ -141486,111 +140769,102 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 6897 - - port: Toggle - uid: 6474 - - port: Toggle - uid: 7365 - - port: Toggle - uid: 7069 - type: SignalTransmitter + - linkedPorts: + 6897: + - Pressed: Toggle + 6474: + - Pressed: Toggle + 7365: + - Pressed: Toggle + 7069: + - Pressed: Toggle + type: DeviceLinkSource - uid: 8979 components: - pos: 50.5,-5.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 8978 - - port: Toggle - uid: 8981 - - port: Toggle - uid: 8980 - type: SignalTransmitter + - linkedPorts: + 8978: + - Pressed: Toggle + 8981: + - Pressed: Toggle + 8980: + - Pressed: Toggle + type: DeviceLinkSource - uid: 9439 components: - pos: -39.5,41.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9437 - type: SignalTransmitter + - linkedPorts: + 9437: + - Pressed: Toggle + type: DeviceLinkSource - uid: 9440 components: - pos: -39.5,42.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9438 - type: SignalTransmitter + - linkedPorts: + 9438: + - Pressed: Toggle + type: DeviceLinkSource - uid: 10478 components: - pos: -0.5,41.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10335 - type: SignalTransmitter + - linkedPorts: + 10335: + - Pressed: Toggle + type: DeviceLinkSource - uid: 10482 components: - pos: -5.5,49.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10481 - - port: Toggle - uid: 10480 - - port: Toggle - uid: 10479 - type: SignalTransmitter + - linkedPorts: + 10481: + - Pressed: Toggle + 10480: + - Pressed: Toggle + 10479: + - Pressed: Toggle + type: DeviceLinkSource - uid: 10486 components: - pos: -9.5,44.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10485 - - port: Toggle - uid: 10484 - - port: Toggle - uid: 10483 - type: SignalTransmitter + - linkedPorts: + 10485: + - Pressed: Toggle + 10484: + - Pressed: Toggle + 10483: + - Pressed: Toggle + type: DeviceLinkSource - uid: 12021 components: - pos: 45.5,-29.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11487 - - port: Toggle - uid: 11486 - type: SignalTransmitter + - linkedPorts: + 11487: + - Pressed: Toggle + 11486: + - Pressed: Toggle + type: DeviceLinkSource - uid: 12022 components: - pos: 64.5,-5.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10293 - type: SignalTransmitter + - linkedPorts: + 10293: + - Pressed: Toggle + type: DeviceLinkSource - uid: 12569 components: - name: Engineering Blast Doors @@ -141598,71 +140872,66 @@ entities: - pos: 48.5,6.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 12566 - - port: Toggle - uid: 12567 - - port: Toggle - uid: 12568 - type: SignalTransmitter + - linkedPorts: + 12566: + - Pressed: Toggle + 12567: + - Pressed: Toggle + 12568: + - Pressed: Toggle + type: DeviceLinkSource - uid: 14913 components: - pos: -12.5,-38.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 14916 - - port: Toggle - uid: 14915 - - port: Toggle - uid: 14914 - - port: Toggle - uid: 14918 - - port: Toggle - uid: 14917 - type: SignalTransmitter + - linkedPorts: + 14916: + - Pressed: Toggle + 14915: + - Pressed: Toggle + 14914: + - Pressed: Toggle + 14918: + - Pressed: Toggle + 14917: + - Pressed: Toggle + type: DeviceLinkSource - uid: 15183 components: - pos: -30.5,-49.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15187 - - port: Toggle - uid: 15186 - - port: Toggle - uid: 15185 - type: SignalTransmitter + - linkedPorts: + 15187: + - Pressed: Toggle + 15186: + - Pressed: Toggle + 15185: + - Pressed: Toggle + type: DeviceLinkSource - uid: 15184 components: - pos: -28.5,-49.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15190 - - port: Toggle - uid: 15189 - - port: Toggle - uid: 15188 - type: SignalTransmitter + - linkedPorts: + 15190: + - Pressed: Toggle + 15189: + - Pressed: Toggle + 15188: + - Pressed: Toggle + type: DeviceLinkSource - uid: 18402 components: - pos: -46.5,-18.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 18218 - type: SignalTransmitter + - linkedPorts: + 18218: + - Pressed: Toggle + type: DeviceLinkSource - uid: 19435 components: - name: Window Shutters @@ -141670,21 +140939,20 @@ entities: - pos: 12.5,-48.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 19429 - - port: Toggle - uid: 19430 - - port: Toggle - uid: 19431 - - port: Toggle - uid: 19432 - - port: Toggle - uid: 19433 - - port: Toggle - uid: 19434 - type: SignalTransmitter + - linkedPorts: + 19429: + - Pressed: Toggle + 19430: + - Pressed: Toggle + 19431: + - Pressed: Toggle + 19432: + - Pressed: Toggle + 19433: + - Pressed: Toggle + 19434: + - Pressed: Toggle + type: DeviceLinkSource - type: ItemCooldown - uid: 19438 components: @@ -141693,17 +140961,16 @@ entities: - pos: 12.5,-51.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 19363 - - port: Toggle - uid: 19362 - - port: Toggle - uid: 19365 - - port: Toggle - uid: 19364 - type: SignalTransmitter + - linkedPorts: + 19363: + - Pressed: Toggle + 19362: + - Pressed: Toggle + 19365: + - Pressed: Toggle + 19364: + - Pressed: Toggle + type: DeviceLinkSource - uid: 19439 components: - name: maint blast door @@ -141711,11 +140978,10 @@ entities: - pos: 16.5,-51.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 19345 - type: SignalTransmitter + - linkedPorts: + 19345: + - Pressed: Toggle + type: DeviceLinkSource - uid: 19446 components: - pos: 0.5,-37.5 @@ -141726,115 +140992,108 @@ entities: - pos: 1.5,-33.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 19344 - - port: Toggle - uid: 19343 - - port: Toggle - uid: 19341 - type: SignalTransmitter + - linkedPorts: + 19344: + - Pressed: Toggle + 19343: + - Pressed: Toggle + 19341: + - Pressed: Toggle + type: DeviceLinkSource - uid: 20956 components: - pos: 30.5,-58.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 20959 - - port: Toggle - uid: 22274 - - port: Toggle - uid: 20879 - type: SignalTransmitter + - linkedPorts: + 20959: + - Pressed: Toggle + 22274: + - Pressed: Toggle + 20879: + - Pressed: Toggle + type: DeviceLinkSource - uid: 20957 components: - pos: 26.5,-57.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 20879 - - port: Toggle - uid: 22274 - - port: Toggle - uid: 20959 - type: SignalTransmitter + - linkedPorts: + 20879: + - Pressed: Toggle + 22274: + - Pressed: Toggle + 20959: + - Pressed: Toggle + type: DeviceLinkSource - uid: 21657 components: - pos: -30.5,-72.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 21652 - - port: Toggle - uid: 21651 - - port: Toggle - uid: 21650 - - port: Toggle - uid: 21649 - - port: Toggle - uid: 21653 - - port: Toggle - uid: 21654 - - port: Toggle - uid: 21655 - - port: Toggle - uid: 21656 - type: SignalTransmitter + - linkedPorts: + 21652: + - Pressed: Toggle + 21651: + - Pressed: Toggle + 21650: + - Pressed: Toggle + 21649: + - Pressed: Toggle + 21653: + - Pressed: Toggle + 21654: + - Pressed: Toggle + 21655: + - Pressed: Toggle + 21656: + - Pressed: Toggle + type: DeviceLinkSource - uid: 22198 components: - pos: 9.5,-27.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 22191 - - port: Toggle - uid: 22192 - - port: Toggle - uid: 22193 - - port: Toggle - uid: 22194 - - port: Toggle - uid: 22195 - - port: Toggle - uid: 22196 - - port: Toggle - uid: 22197 - type: SignalTransmitter + - linkedPorts: + 22191: + - Pressed: Toggle + 22192: + - Pressed: Toggle + 22193: + - Pressed: Toggle + 22194: + - Pressed: Toggle + 22195: + - Pressed: Toggle + 22196: + - Pressed: Toggle + 22197: + - Pressed: Toggle + type: DeviceLinkSource - uid: 23796 components: - pos: 54.5,18.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 23419 - - port: Toggle - uid: 23418 - - port: Toggle - uid: 23417 - type: SignalTransmitter + - linkedPorts: + 23419: + - Pressed: Toggle + 23418: + - Pressed: Toggle + 23417: + - Pressed: Toggle + type: DeviceLinkSource - uid: 23946 components: - pos: 52.5,27.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 23664 - - port: Toggle - uid: 23947 - type: SignalTransmitter + - linkedPorts: + 23664: + - Pressed: Toggle + 23947: + - Pressed: Toggle + type: DeviceLinkSource - uid: 24075 components: - name: maint blast door @@ -141842,67 +141101,62 @@ entities: - pos: 20.5,-51.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 19346 - type: SignalTransmitter + - linkedPorts: + 19346: + - Pressed: Toggle + type: DeviceLinkSource - uid: 24303 components: - pos: 57.5,23.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 24301 - type: SignalTransmitter + - linkedPorts: + 24301: + - Pressed: Toggle + type: DeviceLinkSource - uid: 24304 components: - pos: 57.5,17.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 24302 - type: SignalTransmitter + - linkedPorts: + 24302: + - Pressed: Toggle + type: DeviceLinkSource - uid: 24430 components: - pos: 6.5,48.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 24426 - - port: Toggle - uid: 24427 - - port: Toggle - uid: 24428 - - port: Toggle - uid: 24429 - type: SignalTransmitter + - linkedPorts: + 24426: + - Pressed: Toggle + 24427: + - Pressed: Toggle + 24428: + - Pressed: Toggle + 24429: + - Pressed: Toggle + type: DeviceLinkSource - uid: 24632 components: - pos: 18.5,-39.5 parent: 5350 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 24629 - - port: Toggle - uid: 24630 - - port: Toggle - uid: 24631 - - port: Toggle - uid: 24626 - - port: Toggle - uid: 24627 - - port: Toggle - uid: 24628 - type: SignalTransmitter + - linkedPorts: + 24629: + - Pressed: Toggle + 24630: + - Pressed: Toggle + 24631: + - Pressed: Toggle + 24626: + - Pressed: Toggle + 24627: + - Pressed: Toggle + 24628: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignalButtonExt1 entities: - uid: 24633 @@ -151794,177 +151048,120 @@ entities: - pos: -34.5,6.5 parent: 5350 type: Transform - - outputs: - Left: - - port: Forward - uid: 3849 - - port: Forward - uid: 4022 - - port: Forward - uid: 4023 - Right: - - port: Reverse - uid: 3849 - - port: Reverse - uid: 4022 - - port: Reverse - uid: 4023 - Middle: - - port: Off - uid: 3849 - - port: Off - uid: 4022 - - port: Off - uid: 4023 - type: SignalTransmitter + - linkedPorts: + 3849: + - Left: Forward + - Right: Reverse + - Middle: Off + 4022: + - Left: Forward + - Right: Reverse + - Middle: Off + 4023: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 4025 components: - pos: -39.5,6.5 parent: 5350 type: Transform - - outputs: - Left: - - port: Forward - uid: 3357 - - port: Forward - uid: 1992 - - port: Forward - uid: 4027 - Right: - - port: Reverse - uid: 3357 - - port: Reverse - uid: 1992 - - port: Reverse - uid: 4027 - Middle: - - port: Off - uid: 3357 - - port: Off - uid: 1992 - - port: Off - uid: 4027 - type: SignalTransmitter + - linkedPorts: + 3357: + - Left: Forward + - Right: Reverse + - Middle: Off + 1992: + - Left: Forward + - Right: Reverse + - Middle: Off + 4027: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 4743 components: - pos: -41.5,20.5 parent: 5350 type: Transform - - outputs: - Left: - - port: Forward - uid: 3905 - - port: Forward - uid: 3906 - - port: Forward - uid: 3907 - - port: Forward - uid: 3908 - Right: - - port: Reverse - uid: 3905 - - port: Reverse - uid: 3906 - - port: Reverse - uid: 3907 - - port: Reverse - uid: 3908 - Middle: - - port: Off - uid: 3905 - - port: Off - uid: 3906 - - port: Off - uid: 3907 - - port: Off - uid: 3908 - type: SignalTransmitter + - linkedPorts: + 3905: + - Left: Forward + - Right: Reverse + - Middle: Off + 3906: + - Left: Forward + - Right: Reverse + - Middle: Off + 3907: + - Left: Forward + - Right: Reverse + - Middle: Off + 3908: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 4744 components: - pos: -41.5,14.5 parent: 5350 type: Transform - - outputs: - Left: - - port: Forward - uid: 3912 - - port: Forward - uid: 3911 - - port: Forward - uid: 3910 - - port: Forward - uid: 3909 - Right: - - port: Reverse - uid: 3912 - - port: Reverse - uid: 3911 - - port: Reverse - uid: 3910 - - port: Reverse - uid: 3909 - Middle: - - port: Off - uid: 3912 - - port: Off - uid: 3911 - - port: Off - uid: 3910 - - port: Off - uid: 3909 - type: SignalTransmitter + - linkedPorts: + 3912: + - Left: Forward + - Right: Reverse + - Middle: Off + 3911: + - Left: Forward + - Right: Reverse + - Middle: Off + 3910: + - Left: Forward + - Right: Reverse + - Middle: Off + 3909: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 9421 components: - pos: -38.5,41.5 parent: 5350 type: Transform - - outputs: - Left: - - port: Forward - uid: 9402 - - port: Forward - uid: 9401 - - port: Forward - uid: 9394 - - port: Forward - uid: 9418 - - port: Forward - uid: 9419 - - port: Forward - uid: 9420 - - port: Forward - uid: 9497 - Right: - - port: Reverse - uid: 9402 - - port: Reverse - uid: 9401 - - port: Reverse - uid: 9394 - - port: Reverse - uid: 9418 - - port: Reverse - uid: 9419 - - port: Reverse - uid: 9420 - - port: Reverse - uid: 9497 - Middle: - - port: Off - uid: 9402 - - port: Off - uid: 9401 - - port: Off - uid: 9394 - - port: Off - uid: 9418 - - port: Off - uid: 9419 - - port: Off - uid: 9420 - - port: Off - uid: 9497 - type: SignalTransmitter + - linkedPorts: + 9402: + - Left: Forward + - Right: Reverse + - Middle: Off + 9401: + - Left: Forward + - Right: Reverse + - Middle: Off + 9394: + - Left: Forward + - Right: Reverse + - Middle: Off + 9418: + - Left: Forward + - Right: Reverse + - Middle: Off + 9419: + - Left: Forward + - Right: Reverse + - Middle: Off + 9420: + - Left: Forward + - Right: Reverse + - Middle: Off + 9497: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - proto: UnfinishedMachineFrame entities: - uid: 10388 @@ -171635,52 +170832,16 @@ entities: - pos: -6.5,29.5 parent: 5350 type: Transform - - inputs: - Open: - - port: Timer - uid: 5344 - Close: - - port: Start - uid: 5344 - Toggle: [] - AutoClose: - - port: Timer - uid: 5344 - type: SignalReceiver - uid: 8058 components: - pos: -9.5,29.5 parent: 5350 type: Transform - - inputs: - Open: - - port: Timer - uid: 5347 - Close: - - port: Start - uid: 5347 - Toggle: [] - AutoClose: - - port: Timer - uid: 5347 - type: SignalReceiver - uid: 8059 components: - pos: -12.5,29.5 parent: 5350 type: Transform - - inputs: - Open: - - port: Timer - uid: 5348 - Close: - - port: Start - uid: 5348 - Toggle: [] - AutoClose: - - port: Timer - uid: 5348 - type: SignalReceiver - uid: 9993 components: - rot: 3.141592653589793 rad diff --git a/Resources/Maps/moose.yml b/Resources/Maps/moose.yml index 6afbc5de0e..2481c21e85 100644 --- a/Resources/Maps/moose.yml +++ b/Resources/Maps/moose.yml @@ -1,5 +1,5 @@ meta: - format: 4 + format: 5 postmapinit: false tilemap: 0: Space @@ -13,44 +13,44 @@ tilemap: 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 + 18: FloorCarpetClown + 19: FloorCarpetOffice + 23: FloorDark + 26: FloorDarkHerringbone + 27: FloorDarkMini + 28: FloorDarkMono + 29: FloorDarkOffset + 30: FloorDarkPavement + 31: FloorDarkPavementVertical + 32: FloorDarkPlastic + 34: FloorDirt + 35: FloorEighties + 38: FloorFreezer + 42: FloorGrassDark + 45: FloorGreenCircuit + 47: FloorHydro + 48: FloorKitchen + 49: FloorLaundry + 50: FloorLino + 52: FloorMetalDiamond + 59: FloorReinforced + 60: FloorRockVault + 61: FloorShowroom + 64: FloorShuttlePurple + 66: FloorShuttleWhite + 69: FloorSteel + 72: FloorSteelDirty + 75: FloorSteelMono + 76: FloorSteelOffset + 79: FloorTechMaint + 80: FloorTechMaint2 + 81: FloorTechMaint3 + 82: FloorWhite + 86: FloorWhiteMini + 88: FloorWhiteOffset + 92: FloorWood + 94: Lattice + 95: Plating entities: - proto: "" entities: @@ -63,6 +63,8 @@ entities: - type: Broadphase - type: OccluderTree - type: LoadedMap + - type: GridTree + - type: MovedGrids - uid: 6 components: - type: MetaData @@ -72,136 +74,136 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: RAAAAEQAAAFEAAADLgAAABYAAAAuAAAAFgAAAi4AAABeAAAAXgAAAF4AAABPAAAAEgAAABIAAABPAAAAWwAAAUQAAANEAAADRAAAAhYAAAAuAAAAFgAAAy4AAAAWAAACXgAAAE8AAABeAAAAXgAAABIAAAASAAAAXgAAAFsAAAFEAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAADRAAAAEQAAANEAAACRAAAAUQAAABEAAADRAAAAEQAAAJEAAAARAAAA0QAAAFEAAACRAAAA0QAAAJEAAADRAAAAUQAAAJEAAABRAAAAUQAAAJEAAAARAAAAUQAAAFEAAADRAAAAEQAAABEAAAARAAAAEQAAAFEAAACRAAAAkQAAAJEAAABRAAAA0QAAANEAAABRAAAAUQAAANEAAAARAAAAkQAAANEAAABRAAAAUQAAABEAAACRAAAAkQAAABeAAAAFgAAARYAAAIWAAABFgAAARYAAAJeAAAATwAAAF4AAABKAAADSgAAAkoAAANKAAAASgAAAkQAAANEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADEAAABEAAAARAAAA14AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAAAxAAAARAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAAMQAAAEQAAAFEAAADXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATwAAADEAAAAxAAAAMQAAADEAAABEAAADRAAAA14AAABeAAAATgAAAF4AAABVAAADVQAAAl4AAABeAAAATgAAAF4AAABeAAAAXgAAADEAAABeAAAARAAAA0QAAAFeAAAAXgAAAE4AAABeAAAAVQAAAVUAAABVAAADXgAAAE4AAABeAAAAWwAAAFsAAAJbAAACWwAAAkQAAANEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAVQAAAF4AAABOAAAATwAAAFsAAAM7AAAAOwAAADsAAABEAAACRAAAAF4AAABeAAAAXgAAAE4AAABeAAAAWwAAAlsAAAJeAAAAXgAAAF4AAABbAAABOwAAAFsAAAJbAAADRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAJbAAACXgAAAFsAAAFeAAAAWwAAATsAAABbAAABWwAAAQ== + tiles: RQAAAEUAAAFFAAADLwAAABcAAAAvAAAAFwAAAi8AAABfAAAAXwAAAF8AAABQAAAAEwAAABMAAABQAAAAXAAAAUUAAANFAAADRQAAAhcAAAAvAAAAFwAAAy8AAAAXAAACXwAAAFAAAABfAAAAXwAAABMAAAATAAAAXwAAAFwAAAFFAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAA18AAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAADRQAAAEUAAANFAAACRQAAAUUAAABFAAADRQAAAEUAAAJFAAAARQAAA0UAAAFFAAACRQAAA0UAAAJFAAADRQAAAUUAAAJFAAABRQAAAUUAAAJFAAAARQAAAUUAAAFFAAADRQAAAEUAAABFAAAARQAAAEUAAAFFAAACRQAAAkUAAAJFAAABRQAAA0UAAANFAAABRQAAAUUAAANFAAAARQAAAkUAAANFAAABRQAAAUUAAABFAAACRQAAAkUAAABfAAAAFwAAARcAAAIXAAABFwAAARcAAAJfAAAAUAAAAF8AAABLAAADSwAAAksAAANLAAAASwAAAkUAAANFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADIAAABFAAAARQAAA18AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAAAyAAAAMgAAADIAAAAyAAAARQAAAEUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAMgAAADIAAAAyAAAAMgAAAEUAAAFFAAADXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAUAAAADIAAAAyAAAAMgAAADIAAABFAAADRQAAA18AAABfAAAATwAAAF8AAABWAAADVgAAAl8AAABfAAAATwAAAF8AAABfAAAAXwAAADIAAABfAAAARQAAA0UAAAFfAAAAXwAAAE8AAABfAAAAVgAAAVYAAABWAAADXwAAAE8AAABfAAAAXAAAAFwAAAJcAAACXAAAAkUAAANFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAVgAAAF8AAABPAAAAUAAAAFwAAAM8AAAAPAAAADwAAABFAAACRQAAAF8AAABfAAAAXwAAAE8AAABfAAAAXAAAAlwAAAJfAAAAXwAAAF8AAABcAAABPAAAAFwAAAJcAAADRQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXwAAAFwAAAJcAAACXwAAAFwAAAFfAAAAXAAAATwAAABcAAABXAAAAQ== 0,-1: ind: 0,-1 - tiles: WwAAAFsAAANbAAADWwAAA1sAAAJEAAACRAAAAl4AAAAxAAAAMQAAADEAAABeAAAAWwAAAVsAAAFbAAACWwAAA1sAAANbAAACWwAAA1sAAANbAAADRAAAAUQAAABeAAAAMQAAADEAAAAxAAAAXgAAAFsAAANbAAABWwAAAVsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABXgAAAF4AAAAxAAAAXgAAAF4AAABeAAAARAAAA14AAABeAAAARAAAAEQAAABEAAACRAAAAEQAAAFEAAADRAAAAUQAAAJEAAABRAAAAEQAAABEAAABRAAAAEQAAABEAAAARAAAAEQAAABEAAADRAAAA0QAAANEAAADRAAAAkQAAAFEAAACRAAAAEQAAAFEAAABRAAAAkQAAABEAAABRAAAA0QAAAFEAAADRAAAAkQAAANEAAACRAAAAUQAAAFEAAACRAAAA0QAAANEAAACRAAAA0QAAAFEAAADRAAAA0QAAANEAAAAXgAAABYAAAAWAAACFgAAAF4AAABEAAAARAAAAl4AAABEAAADRAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAACRAAAAUQAAAJEAAACSgAAABYAAAFKAAABRAAAAkQAAAJeAAAAWwAAA1sAAABbAAAAXgAAAEQAAANEAAABRAAAAEQAAAFEAAACRAAAA14AAAAcAAAAXgAAAEQAAAFEAAACMQAAAFsAAANbAAABWwAAAF4AAABEAAADRAAAA0QAAANEAAAARAAAAEQAAAJKAAABFgAAAkoAAABEAAADRAAAAl4AAABbAAABWwAAAlsAAANeAAAARAAAAEQAAANeAAAAFgAAAhYAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAACXgAAABYAAAEWAAACFgAAAF4AAABEAAACRAAAAUQAAAJEAAABWwAAAl4AAAAEAAACBAAAAV4AAABEAAADRAAAAF4AAAAWAAAAFgAAAhYAAAAWAAADRAAAAEQAAAFEAAABRAAAAzsAAABeAAAABQAAAAQAAAJeAAAARAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAAV4AAABbAAAAXgAAAAQAAAIEAAACXgAAAEQAAAJEAAADXgAAAEcAAABHAAAAXgAAAEQAAAJEAAABRAAAAEQAAAJeAAAAWwAAAl4AAAAEAAACBAAAAl4AAABEAAABRAAAA14AAABHAAAARwAAAF4AAABEAAABRAAAA0QAAABEAAADGgAAAQ== + tiles: XAAAAFwAAANcAAADXAAAA1wAAAJFAAACRQAAAl8AAAAyAAAAMgAAADIAAABfAAAAXAAAAVwAAAFcAAACXAAAA1wAAANcAAACXAAAA1wAAANcAAADRQAAAUUAAABfAAAAMgAAADIAAAAyAAAAXwAAAFwAAANcAAABXAAAAVwAAAJfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAABXwAAAF8AAAAyAAAAXwAAAF8AAABfAAAARQAAA18AAABfAAAARQAAAEUAAABFAAACRQAAAEUAAAFFAAADRQAAAUUAAAJFAAABRQAAAEUAAABFAAABRQAAAEUAAABFAAAARQAAAEUAAABFAAADRQAAA0UAAANFAAADRQAAAkUAAAFFAAACRQAAAEUAAAFFAAABRQAAAkUAAABFAAABRQAAA0UAAAFFAAADRQAAAkUAAANFAAACRQAAAUUAAAFFAAACRQAAA0UAAANFAAACRQAAA0UAAAFFAAADRQAAA0UAAANFAAAAXwAAABcAAAAXAAACFwAAAF8AAABFAAAARQAAAl8AAABFAAADRQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAACRQAAAUUAAAJFAAACSwAAABcAAAFLAAABRQAAAkUAAAJfAAAAXAAAA1wAAABcAAAAXwAAAEUAAANFAAABRQAAAEUAAAFFAAACRQAAA18AAAAdAAAAXwAAAEUAAAFFAAACMgAAAFwAAANcAAABXAAAAF8AAABFAAADRQAAA0UAAANFAAAARQAAAEUAAAJLAAABFwAAAksAAABFAAADRQAAAl8AAABcAAABXAAAAlwAAANfAAAARQAAAEUAAANfAAAAFwAAAhcAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAACXwAAABcAAAEXAAACFwAAAF8AAABFAAACRQAAAUUAAAJFAAABXAAAAl8AAAAEAAACBAAAAV8AAABFAAADRQAAAF8AAAAXAAAAFwAAAhcAAAAXAAADRQAAAEUAAAFFAAABRQAAAzwAAABfAAAABQAAAAQAAAJfAAAARQAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAACRQAAAV8AAABcAAAAXwAAAAQAAAIEAAACXwAAAEUAAAJFAAADXwAAAEgAAABIAAAAXwAAAEUAAAJFAAABRQAAAEUAAAJfAAAAXAAAAl8AAAAEAAACBAAAAl8AAABFAAABRQAAA18AAABIAAAASAAAAF8AAABFAAABRQAAA0UAAABFAAADGwAAAQ== -1,0: ind: -1,0 - tiles: RAAAAkQAAABeAAAAXgAAAF4AAABPAAAAXgAAAFsAAAFbAAABWwAAAlsAAAIWAAABWwAAADsAAAA7AAAAOwAAAEQAAABEAAAATwAAAF4AAABeAAAAXgAAAF4AAABbAAADWwAAAlsAAAJbAAABXgAAAFsAAANbAAADWwAAAFsAAAJEAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAACRAAAAkQAAAMbAAABFgAAAhYAAAIbAAABHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAAEQAAAFEAAABGwAAAxYAAAMWAAADGwAAAhwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAABEAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAAxsAAAIbAAABXgAAAF4AAABeAAAARAAAAkQAAAFEAAABRAAAAV4AAAAWAAACFgAAAxYAAAEWAAABFgAAAxYAAAMWAAAAFgAAAxYAAAEWAAAAFgAAAEQAAABEAAADRAAAAEQAAAJeAAAAFgAAARYAAAEcAAAAHAAAABYAAAEcAAAAHAAAABwAAAAWAAAAHAAAABwAAABEAAACRAAAAUQAAANEAAACXgAAABYAAAEWAAADHAAAABwAAAAWAAAAHAAAABwAAAAcAAAAFgAAARwAAAAcAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAADFgAAAhYAAAMWAAABFgAAAhYAAAAWAAABFgAAAAQAAAEEAAABBAAAAgQAAAEEAAAABAAAAF4AAAAWAAABFgAAAhYAAAEWAAADFgAAABYAAAMWAAACFgAAARYAAAEEAAACBAAAAAQAAAIEAAAABAAAAQQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAIEAAACBAAAAAQAAAAEAAAABAAAAgQAAAIEAAACBAAAAgQAAAIEAAABBAAAAgQAAAEEAAACBAAAAQQAAAEEAAABBAAAAQQAAAEEAAACBAAAAAUAAAAEAAAABAAAAgQAAAEEAAACBAAAAgQAAAEEAAACBQAAAAQAAAAKAAAACgAAAAoAAAAEAAAABAAAAAQAAAAEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: RQAAAkUAAABfAAAAXwAAAF8AAABQAAAAXwAAAFwAAAFcAAABXAAAAlwAAAIXAAABXAAAADwAAAA8AAAAPAAAAEUAAABFAAAAUAAAAF8AAABfAAAAXwAAAF8AAABcAAADXAAAAlwAAAJcAAABXwAAAFwAAANcAAADXAAAAFwAAAJFAAADRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAEXAAACRQAAAkUAAAMcAAABFwAAAhcAAAIcAAABHQAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAHQAAAEUAAAFFAAABHAAAAxcAAAMXAAADHAAAAh0AAAAdAAAAHQAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAHQAAAB0AAABFAAADRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAHAAAAxwAAAIcAAABXwAAAF8AAABfAAAARQAAAkUAAAFFAAABRQAAAV8AAAAXAAACFwAAAxcAAAEXAAABFwAAAxcAAAMXAAAAFwAAAxcAAAEXAAAAFwAAAEUAAABFAAADRQAAAEUAAAJfAAAAFwAAARcAAAEdAAAAHQAAABcAAAEdAAAAHQAAAB0AAAAXAAAAHQAAAB0AAABFAAACRQAAAUUAAANFAAACXwAAABcAAAEXAAADHQAAAB0AAAAXAAAAHQAAAB0AAAAdAAAAFwAAAR0AAAAdAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAEXAAADFwAAAhcAAAMXAAABFwAAAhcAAAAXAAABFwAAAAQAAAEEAAABBAAAAgQAAAEEAAAABAAAAF8AAAAXAAABFwAAAhcAAAEXAAADFwAAABcAAAMXAAACFwAAARcAAAEEAAACBAAAAAQAAAIEAAAABAAAAQQAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAAQAAAIEAAACBAAAAAQAAAAEAAAABAAAAgQAAAIEAAACBAAAAgQAAAIEAAABBAAAAgQAAAEEAAACBAAAAQQAAAEEAAABBAAAAQQAAAEEAAACBAAAAAUAAAAEAAAABAAAAgQAAAEEAAACBAAAAgQAAAEEAAACBQAAAAQAAAAKAAAACgAAAAoAAAAEAAAABAAAAAQAAAAEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: OwAAAF4AAAAEAAACBAAAAl4AAABEAAADRAAAAV4AAABHAAAARwAAAFAAAANEAAABRAAAAEQAAANEAAADXgAAAFsAAAJbAAABBAAAAgUAAABeAAAARAAAAkQAAAJeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADXgAAAEcAAABHAAAAUAAAA0QAAANEAAABRAAAAl4AAABeAAAAHAAAABsAAAIWAAACFgAAARsAAAFEAAADRAAAAF4AAABHAAAARwAAAF4AAABEAAAARAAAA0QAAANEAAAARAAAABwAAAAbAAAAFgAAABYAAAMbAAACRAAAA0QAAAFeAAAARwAAAEcAAABeAAAARAAAAkQAAABEAAABRAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAAFgAAAxYAAABeAAAAKQAAAykAAABEAAADRAAAA0QAAABEAAAAXgAAABoAAAIaAAAAGgAAA14AAABEAAABRAAAARYAAAAWAAADXgAAACkAAAMpAAABRAAAAEQAAABEAAACRAAAA14AAAAaAAADGgAAABoAAAEbAAACRAAAAkQAAAEWAAABFgAAA14AAAApAAADKQAAA0QAAAFEAAAARAAAAkQAAANeAAAAGgAAABoAAAMaAAADXgAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAABoAAAEaAAAAGgAAA14AAABEAAADRAAAAl4AAAAEAAACBAAAAQQAAAEEAAACBQAAAAQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAARsAAANeAAAABAAAAQQAAAEEAAACBAAAAgQAAAIEAAABXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAGwAAABsAAAMbAAACBAAAAgQAAAAEAAABBAAAAgQAAAEEAAACBAAAAV4AAABeAAAATgAAAE4AAABOAAAAXgAAABsAAAAbAAAAGwAAAQQAAAEEAAABBAAAAQQAAAEAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAARsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAEQAAAJEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAADRAAAAQ== + tiles: PAAAAF8AAAAEAAACBAAAAl8AAABFAAADRQAAAV8AAABIAAAASAAAAFEAAANFAAABRQAAAEUAAANFAAADXwAAAFwAAAJcAAABBAAAAgUAAABfAAAARQAAAkUAAAJfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAABRQAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAADXwAAAEgAAABIAAAAUQAAA0UAAANFAAABRQAAAl8AAABfAAAAHQAAABwAAAIXAAACFwAAARwAAAFFAAADRQAAAF8AAABIAAAASAAAAF8AAABFAAAARQAAA0UAAANFAAAARQAAAB0AAAAcAAAAFwAAABcAAAMcAAACRQAAA0UAAAFfAAAASAAAAEgAAABfAAAARQAAAkUAAABFAAABRQAAAEUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAAAFwAAAxcAAABfAAAAKgAAAyoAAABFAAADRQAAA0UAAABFAAAAXwAAABsAAAIbAAAAGwAAA18AAABFAAABRQAAARcAAAAXAAADXwAAACoAAAMqAAABRQAAAEUAAABFAAACRQAAA18AAAAbAAADGwAAABsAAAEcAAACRQAAAkUAAAEXAAABFwAAA18AAAAqAAADKgAAA0UAAAFFAAAARQAAAkUAAANfAAAAGwAAABsAAAMbAAADXwAAAEUAAABFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAABsAAAEbAAAAGwAAA18AAABFAAADRQAAAl8AAAAEAAACBAAAAQQAAAEEAAACBQAAAAQAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAHAAAARwAAANfAAAABAAAAQQAAAEEAAACBAAAAgQAAAIEAAABXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAHAAAABwAAAMcAAACBAAAAgQAAAAEAAABBAAAAgQAAAEEAAACBAAAAV8AAABfAAAATwAAAE8AAABPAAAAXwAAABwAAAAcAAAAHAAAAQQAAAEEAAABBAAAAQQAAAEAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAHAAAARwAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAAEUAAAJFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAADRQAAAQ== 1,0: ind: 1,0 - tiles: GgAAAhoAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAARoAAAIaAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAMAAAADAAAAAwAAAAMAAAAF4AAABEAAACRAAAAl4AAAAbAAACGwAAARsAAAFeAAAAXgAAAF4AAABOAAAAXgAAADAAAAAwAAAAMAAAADAAAABeAAAARAAAA0QAAANeAAAAFgAAAxYAAAMWAAAAXgAAAF4AAABeAAAATgAAAF4AAAAwAAAAMAAAADAAAAAwAAAAXgAAAEQAAAFEAAAAGwAAAhYAAAMWAAACFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAl4AAAAWAAABFgAAAhYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABRAAAAUQAAAFeAAAAGwAAABsAAAMbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAFgAAAUQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAABYAAAMWAAACFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAbAAADTwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAQQAAAIFAAAABAAAAQQAAAIEAAACGwAAAV4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAABAAAAAQAAAIEAAACBAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GwAAAhsAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAARsAAAIbAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAMQAAADEAAAAxAAAAMQAAAF8AAABFAAACRQAAAl8AAAAcAAACHAAAARwAAAFfAAAAXwAAAF8AAABPAAAAXwAAADEAAAAxAAAAMQAAADEAAABfAAAARQAAA0UAAANfAAAAFwAAAxcAAAMXAAAAXwAAAF8AAABfAAAATwAAAF8AAAAxAAAAMQAAADEAAAAxAAAAXwAAAEUAAAFFAAAAHAAAAhcAAAMXAAACFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAAl8AAAAXAAABFwAAAhcAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABRQAAAUUAAAFfAAAAHAAAABwAAAMcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAFwAAAUUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAABcAAAMXAAACFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAcAAADUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAAABAAAAQQAAAIFAAAABAAAAQQAAAIEAAACHAAAAV8AAABPAAAATwAAAE8AAABPAAAAXwAAAF8AAABfAAAABAAAAAQAAAIEAAACBAAAAF4AAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-1: ind: 1,-1 - tiles: WwAAAFsAAAFeAAAAXgAAAE4AAABeAAAABAAAAAQAAAAEAAACBAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAFsAAAFbAAADXgAAAE8AAABeAAAAXgAAAAQAAAEEAAACBAAAAAQAAAIEAAACBAAAAQQAAAEAAAAAAAAAAAAAAABEAAADXgAAAF4AAAAWAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAADRAAAAkQAAANEAAADRAAAAkQAAANEAAADRAAAAEQAAANEAAADRAAAAEQAAANEAAAARAAAA0QAAAFEAAAARAAAAUQAAAFEAAADRAAAAEQAAAJEAAAARAAAA0QAAANEAAADRAAAA0QAAANEAAACRAAAA0QAAAJEAAABRAAAAEQAAAFEAAAARAAAAEQAAAJEAAABRAAAA0QAAABEAAADRAAAA0QAAANEAAADRAAAAUQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAAhYAAAIWAAAAXgAAAF4AAAAiAAAAXgAAAF4AAABEAAADRAAAAF4AAAAWAAABFgAAAxYAAAFeAAAATwAAAF4AAABeAAAAXgAAAF4AAAAiAAAAIgAAACIAAABeAAAARAAAA0QAAAAWAAADFgAAAxYAAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAIgAAACIAAAAiAAAAXgAAAEQAAAFEAAADXgAAABYAAAEWAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAACIAAAAiAAAAIgAAAF4AAABEAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAiAAAAIgAAACIAAABeAAAARAAAAUQAAABEAAACRAAAAU8AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAIgAAACIAAAAiAAAAXgAAAEQAAABEAAAARAAAAkQAAAFeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAF4AAAAbAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAEaAAACGgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAAGgAAAhoAAANeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAg== + tiles: XAAAAFwAAAFfAAAAXwAAAE8AAABfAAAABAAAAAQAAAAEAAACBAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAFcAAADXwAAAFAAAABfAAAAXwAAAAQAAAEEAAACBAAAAAQAAAIEAAACBAAAAQQAAAEAAAAAAAAAAAAAAABFAAADXwAAAF8AAAAXAAAAFwAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAJFAAADRQAAAkUAAANFAAADRQAAAkUAAANFAAADRQAAAEUAAANFAAADRQAAAEUAAANFAAAARQAAA0UAAAFFAAAARQAAAUUAAAFFAAADRQAAAEUAAAJFAAAARQAAA0UAAANFAAADRQAAA0UAAANFAAACRQAAA0UAAAJFAAABRQAAAEUAAAFFAAAARQAAAEUAAAJFAAABRQAAA0UAAABFAAADRQAAA0UAAANFAAADRQAAAUUAAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAAhcAAAIXAAAAXwAAAF8AAAAjAAAAXwAAAF8AAABFAAADRQAAAF8AAAAXAAABFwAAAxcAAAFfAAAAUAAAAF8AAABfAAAAXwAAAF8AAAAjAAAAIwAAACMAAABfAAAARQAAA0UAAAAXAAADFwAAAxcAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAIwAAACMAAAAjAAAAXwAAAEUAAAFFAAADXwAAABcAAAEXAAAAFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAACMAAAAjAAAAIwAAAF8AAABFAAADRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAAAjAAAAIwAAACMAAABfAAAARQAAAUUAAABFAAACRQAAAVAAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAIwAAACMAAAAjAAAAXwAAAEUAAABFAAAARQAAAkUAAAFfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAF8AAAAcAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAEbAAACGwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAAAGwAAAhsAAANfAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAg== -2,0: ind: -2,0 - tiles: RAAAAUQAAAFeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABXgAAABYAAAAWAAACFgAAARYAAAFOAAAAXgAAABkAAAAdAAADHQAAAx0AAAMZAAABXgAAAF4AAABEAAADRAAAAF4AAAAzAAAAMwAAADMAAAAWAAABTgAAAF4AAAAeAAABGwAAAiwAAAAbAAADHgAAAV4AAABeAAAARAAAAEQAAAFeAAAAMwAAADMAAAAzAAAAFgAAAk4AAABeAAAAHgAAAywAAAAbAAACLAAAAB4AAABeAAAAXgAAAEQAAAJEAAAAXgAAADMAAAAzAAAAMwAAABYAAABOAAAAXgAAAB4AAAMbAAACLAAAABsAAAEeAAACXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAA14AAABOAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAE8AAABEAAABRAAAAEQAAAFOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAACRAAAAkQAAAFeAAAAXgAAAF4AAABeAAAABAAAAAQAAAAEAAAABAAAAgQAAAAEAAABXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAAXgAAAAQAAAIEAAACBAAAAgQAAAAEAAACBAAAAgQAAAEEAAABBAAAAAQAAAEEAAACBAAAAgQAAABEAAABRAAAAF4AAAAEAAACBAAAAgQAAAIEAAAABAAAAQQAAAIEAAAABAAAAQQAAAIEAAACBAAAAgQAAAEEAAACRAAAA0QAAABeAAAACAAAAAcAAAAEAAACBQAAAAQAAAAEAAABBAAAAAQAAAAEAAACBAAAAgQAAAEEAAAABQAAAEQAAABEAAAAXgAAAAYAAAAHAAAABAAAAQQAAAAEAAAABAAAAgQAAAEEAAACBAAAAAQAAAIEAAACBAAAAgQAAABeAAAAXgAAAF4AAAAEAAACBgAAAAQAAAIKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXgAAAF4AAABeAAAABAAAAAYAAAAGAAAAXgAAAAYAAAAGAAAABAAAAQQAAAEEAAABBAAAAQQAAAAEAAABBAAAAQ== + tiles: RQAAAUUAAAFfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABXwAAABcAAAAXAAACFwAAARcAAAFPAAAAXwAAABoAAAAeAAADHgAAAx4AAAMaAAABXwAAAF8AAABFAAADRQAAAF8AAAA0AAAANAAAADQAAAAXAAABTwAAAF8AAAAfAAABHAAAAi0AAAAcAAADHwAAAV8AAABfAAAARQAAAEUAAAFfAAAANAAAADQAAAA0AAAAFwAAAk8AAABfAAAAHwAAAy0AAAAcAAACLQAAAB8AAABfAAAAXwAAAEUAAAJFAAAAXwAAADQAAAA0AAAANAAAABcAAABPAAAAXwAAAB8AAAMcAAACLQAAABwAAAEfAAACXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAAARQAAA18AAABPAAAAXwAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAAFAAAABFAAABRQAAAEUAAAFPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAA0UAAAJFAAACRQAAAkUAAAFfAAAAXwAAAF8AAABfAAAABAAAAAQAAAAEAAAABAAAAgQAAAAEAAABXwAAAF8AAABfAAAAXwAAAEUAAAFFAAAAXwAAAAQAAAIEAAACBAAAAgQAAAAEAAACBAAAAgQAAAEEAAABBAAAAAQAAAEEAAACBAAAAgQAAABFAAABRQAAAF8AAAAEAAACBAAAAgQAAAIEAAAABAAAAQQAAAIEAAAABAAAAQQAAAIEAAACBAAAAgQAAAEEAAACRQAAA0UAAABfAAAACAAAAAcAAAAEAAACBQAAAAQAAAAEAAABBAAAAAQAAAAEAAACBAAAAgQAAAEEAAAABQAAAEUAAABFAAAAXwAAAAYAAAAHAAAABAAAAQQAAAAEAAAABAAAAgQAAAEEAAACBAAAAAQAAAIEAAACBAAAAgQAAABfAAAAXwAAAF8AAAAEAAACBgAAAAQAAAIKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXwAAAF8AAABfAAAABAAAAAYAAAAGAAAAXwAAAAYAAAAGAAAABAAAAQQAAAEEAAABBAAAAQQAAAAEAAABBAAAAQ== -2,-1: ind: -2,-1 - tiles: XgAAABYAAAMWAAACFgAAAF4AAABRAAABUQAAAFcAAABXAAAAVwAAAFEAAABRAAACRAAAAkQAAAJEAAADRAAAAl4AAAAWAAADFgAAARYAAABeAAAAUQAAAFEAAANRAAADUQAAAFEAAAJRAAADXgAAAEQAAAJEAAAARAAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAEQAAAJeAAAARAAAAUQAAAJEAAAARAAAAkQAAABEAAACRAAAAUQAAAFEAAACRAAAAEQAAAJEAAADRAAAA0QAAAJEAAABRAAAAEQAAABEAAACRAAAA0QAAABEAAACRAAAA0QAAABEAAAARAAAAEQAAAFEAAADRAAAAkQAAAJEAAADRAAAAkQAAANEAAADRAAAA0QAAAFEAAACRAAAAkQAAABEAAACRAAAAEQAAAFEAAABRAAAAkQAAABEAAABRAAAA0QAAANEAAAAXgAAABYAAAIWAAABFgAAABYAAAMWAAAAFgAAAxYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAACkAAAMpAAADKQAAASkAAAFOAAAARAAAA0QAAAJEAAAARAAAAkQAAANEAAADRAAAAF4AAABeAAAAXgAAAF4AAAApAAADKQAAACkAAAApAAAAXgAAAEQAAABEAAABRAAAAEQAAAFEAAABRAAAA0QAAAJeAAAAGgAAAhoAAANeAAAAKQAAACkAAAMpAAAAKQAAAV4AAABEAAADRAAAAUQAAABEAAADRAAAAEQAAAJEAAACRAAAABoAAAEaAAADXgAAACkAAAMpAAABKQAAASkAAANeAAAARAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAaAAABGgAAA14AAAApAAADKQAAAikAAAMpAAABRAAAAEQAAAFEAAADXgAAAEQAAAFEAAACRAAAAUQAAABeAAAAGgAAAxoAAANeAAAAKQAAACkAAAApAAAAKQAAAEQAAAFEAAABRAAAA14AAABEAAADRAAAAEQAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAAJOAAAARAAAAEQAAAFEAAAARAAAAE4AAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAABeAAAARAAAAEQAAANEAAAATgAAAEQAAANEAAAARAAAAUQAAABeAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAFgAAAA== + tiles: XwAAABcAAAMXAAACFwAAAF8AAABSAAABUgAAAFgAAABYAAAAWAAAAFIAAABSAAACRQAAAkUAAAJFAAADRQAAAl8AAAAXAAADFwAAARcAAABfAAAAUgAAAFIAAANSAAADUgAAAFIAAAJSAAADXwAAAEUAAAJFAAAARQAAA0UAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAEUAAAJfAAAARQAAAUUAAAJFAAAARQAAAkUAAABFAAACRQAAAUUAAAFFAAACRQAAAEUAAAJFAAADRQAAA0UAAAJFAAABRQAAAEUAAABFAAACRQAAA0UAAABFAAACRQAAA0UAAABFAAAARQAAAEUAAAFFAAADRQAAAkUAAAJFAAADRQAAAkUAAANFAAADRQAAA0UAAAFFAAACRQAAAkUAAABFAAACRQAAAEUAAAFFAAABRQAAAkUAAABFAAABRQAAA0UAAANFAAAAXwAAABcAAAIXAAABFwAAABcAAAMXAAAAFwAAAxcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJFAAABRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAACoAAAMqAAADKgAAASoAAAFPAAAARQAAA0UAAAJFAAAARQAAAkUAAANFAAADRQAAAF8AAABfAAAAXwAAAF8AAAAqAAADKgAAACoAAAAqAAAAXwAAAEUAAABFAAABRQAAAEUAAAFFAAABRQAAA0UAAAJfAAAAGwAAAhsAAANfAAAAKgAAACoAAAMqAAAAKgAAAV8AAABFAAADRQAAAUUAAABFAAADRQAAAEUAAAJFAAACRQAAABsAAAEbAAADXwAAACoAAAMqAAABKgAAASoAAANfAAAARQAAA0UAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAbAAABGwAAA18AAAAqAAADKgAAAioAAAMqAAABRQAAAEUAAAFFAAADXwAAAEUAAAFFAAACRQAAAUUAAABfAAAAGwAAAxsAAANfAAAAKgAAACoAAAAqAAAAKgAAAEUAAAFFAAABRQAAA18AAABFAAADRQAAAEUAAAJFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAkUAAAJPAAAARQAAAEUAAAFFAAAARQAAAE8AAAAdAAAAHQAAAB0AAAAdAAAAHQAAAB0AAABfAAAARQAAAEUAAANFAAAATwAAAEUAAANFAAAARQAAAUUAAABfAAAAHQAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAFwAAAA== -2,-2: ind: -2,-2 - tiles: XgAAAF4AAABeAAAATgAAAF4AAABRAAACUQAAAVEAAABRAAABUQAAAl4AAABeAAAAFgAAAhYAAAAWAAABXgAAAE8AAABeAAAAXgAAAE4AAABeAAAAUQAAAF4AAABRAAABUQAAAlEAAAMWAAACFgAAARYAAAIWAAADFgAAAEQAAANeAAAAXgAAAF4AAABOAAAAXgAAAFEAAAFRAAADUQAAAFEAAANRAAAAXgAAABYAAAMWAAABFgAAABYAAAFEAAADXgAAAF4AAABPAAAAXgAAAF4AAABRAAABXgAAAFEAAAJRAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAfAAABHwAAAh8AAABeAAAAUQAAAFEAAAFRAAABUQAAAlEAAAIfAAAAHwAAAh8AAAMfAAACHwAAAF4AAABeAAAAHwAAAR8AAAMfAAACXgAAAFEAAAFRAAABUQAAAVEAAAFeAAAAHwAAARwAAAAcAAAAHAAAAB8AAAFeAAAAXgAAAB8AAAAfAAAAHwAAAF4AAABRAAABUQAAA1EAAABRAAACXgAAAB8AAAIfAAABHwAAAB8AAAAfAAABXgAAAF4AAAAfAAABHwAAAR8AAABeAAAAUQAAAVEAAAFRAAABUQAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAF4AAABeAAAAXgAAAFEAAANeAAAAXgAAAF4AAABRAAADUQAAAV4AAABeAAAAUQAAAlEAAABRAAABUQAAA1EAAAJeAAAAUQAAA1EAAAJRAAADUQAAA1EAAAJRAAACUQAAAFEAAAJRAAADUQAAAFEAAANRAAABUQAAAVEAAANRAAADXgAAAFEAAAFRAAACUQAAA1EAAANeAAAAUQAAAFEAAAFRAAAAUQAAAlEAAABRAAAAUQAAA1EAAANRAAABUQAAAF4AAABRAAADUQAAAFEAAABRAAABUQAAAVEAAABRAAAAUQAAA1EAAAJRAAAAUQAAAlEAAAJRAAAAUQAAA1EAAABeAAAAXgAAAF4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABRAAAAUQAAAVEAAANRAAADUQAAAFEAAAJRAAACXgAAAF4AAAAWAAADFgAAAhYAAABeAAAAUQAAAVEAAAFeAAAAUQAAA14AAABeAAAAXgAAAFEAAANRAAABUQAAA14AAABeAAAAGwAAAhYAAAIbAAACXgAAAFEAAABRAAACUQAAAVEAAANRAAACUQAAAF4AAABRAAABUQAAAl4AAABeAAAAXgAAABYAAAIWAAACFgAAAl4AAABRAAABUQAAAVcAAABXAAAAVwAAAFEAAANeAAAARAAAA0QAAAJEAAADRAAAAw== + tiles: XwAAAF8AAABfAAAATwAAAF8AAABSAAACUgAAAVIAAABSAAABUgAAAl8AAABfAAAAFwAAAhcAAAAXAAABXwAAAFAAAABfAAAAXwAAAE8AAABfAAAAUgAAAF8AAABSAAABUgAAAlIAAAMXAAACFwAAARcAAAIXAAADFwAAAEUAAANfAAAAXwAAAF8AAABPAAAAXwAAAFIAAAFSAAADUgAAAFIAAANSAAAAXwAAABcAAAMXAAABFwAAABcAAAFFAAADXwAAAF8AAABQAAAAXwAAAF8AAABSAAABXwAAAFIAAAJSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAgAAABIAAAAiAAAABfAAAAUgAAAFIAAAFSAAABUgAAAlIAAAIgAAAAIAAAAiAAAAMgAAACIAAAAF8AAABfAAAAIAAAASAAAAMgAAACXwAAAFIAAAFSAAABUgAAAVIAAAFfAAAAIAAAAR0AAAAdAAAAHQAAACAAAAFfAAAAXwAAACAAAAAgAAAAIAAAAF8AAABSAAABUgAAA1IAAABSAAACXwAAACAAAAIgAAABIAAAACAAAAAgAAABXwAAAF8AAAAgAAABIAAAASAAAABfAAAAUgAAAVIAAAFSAAABUgAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAF8AAABfAAAAXwAAAFIAAANfAAAAXwAAAF8AAABSAAADUgAAAV8AAABfAAAAUgAAAlIAAABSAAABUgAAA1IAAAJfAAAAUgAAA1IAAAJSAAADUgAAA1IAAAJSAAACUgAAAFIAAAJSAAADUgAAAFIAAANSAAABUgAAAVIAAANSAAADXwAAAFIAAAFSAAACUgAAA1IAAANfAAAAUgAAAFIAAAFSAAAAUgAAAlIAAABSAAAAUgAAA1IAAANSAAABUgAAAF8AAABSAAADUgAAAFIAAABSAAABUgAAAVIAAABSAAAAUgAAA1IAAAJSAAAAUgAAAlIAAAJSAAAAUgAAA1IAAABfAAAAXwAAAF8AAAAXAAACXwAAAF8AAABfAAAAXwAAAF8AAABSAAAAUgAAAVIAAANSAAADUgAAAFIAAAJSAAACXwAAAF8AAAAXAAADFwAAAhcAAABfAAAAUgAAAVIAAAFfAAAAUgAAA18AAABfAAAAXwAAAFIAAANSAAABUgAAA18AAABfAAAAHAAAAhcAAAIcAAACXwAAAFIAAABSAAACUgAAAVIAAANSAAACUgAAAF8AAABSAAABUgAAAl8AAABfAAAAXwAAABcAAAIXAAACFwAAAl8AAABSAAABUgAAAVgAAABYAAAAWAAAAFIAAANfAAAARQAAA0UAAAJFAAADRQAAAw== -1,-2: ind: -1,-2 - tiles: RAAAAEQAAABEAAABXgAAAAAAAABeAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAEQAAABEAAACRAAAAV4AAABdAAAAXgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABEAAABRAAAA0QAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAABXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAEQAAAJEAAACRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAA0QAAAFeAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAAAWAAACFgAAABYAAAEWAAADRAAAAUQAAABEAAADXgAAAC8AAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAAFgAAARYAAAIWAAACFgAAAUQAAANEAAADRAAAA14AAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAAXgAAABYAAAEWAAADFgAAAhYAAAJEAAABRAAAAUQAAAFeAAAAXgAAAC4AAAAuAAAAXgAAAC8AAAAvAAAALwAAAC8AAAAWAAABFgAAAxYAAAAWAAACRAAAAUQAAAFEAAADXgAAAC4AAAAWAAACLgAAAF4AAABPAAAAXgAAAF4AAABeAAAAFgAAAxYAAAIWAAABFgAAAEQAAAJEAAAARAAAA14AAAAWAAABLgAAABYAAABeAAAAJQAAACUAAAAlAAAAXgAAABYAAAAWAAABFgAAABYAAAJEAAABRAAAAEQAAAAuAAAALgAAABYAAAMuAAAAXgAAACUAAAAlAAAAJQAAAF4AAAAWAAAAFgAAABYAAAEWAAABRAAAAkQAAANEAAADXgAAABYAAAEuAAAAFgAAAF4AAABeAAAAXgAAAE8AAABeAAAAFgAAAxYAAAAWAAADWwAAAEQAAAFEAAABRAAAAV4AAAAuAAAAFgAAAy4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAANEAAAARAAAAF4AAABeAAAAFgAAAC4AAAAWAAAALgAAAF4AAABeAAAAXgAAAF4AAAASAAAAEgAAAF4AAABbAAABRAAAAkQAAABEAAADFgAAAi4AAAAWAAACLgAAABYAAANeAAAAXgAAAF4AAABeAAAAEgAAABIAAABeAAAAWwAAAw== + tiles: RQAAAEUAAABFAAABXwAAAAAAAABfAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAEUAAABFAAACRQAAAV8AAABeAAAAXwAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABFAAABRQAAA0UAAABfAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAAFFAAABXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAEUAAAJFAAACRQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACRQAAA0UAAAFfAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAAXAAACFwAAABcAAAEXAAADRQAAAUUAAABFAAADXwAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAFwAAARcAAAIXAAACFwAAAUUAAANFAAADRQAAA18AAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAXwAAABcAAAEXAAADFwAAAhcAAAJFAAABRQAAAUUAAAFfAAAAXwAAAC8AAAAvAAAAXwAAADAAAAAwAAAAMAAAADAAAAAXAAABFwAAAxcAAAAXAAACRQAAAUUAAAFFAAADXwAAAC8AAAAXAAACLwAAAF8AAABQAAAAXwAAAF8AAABfAAAAFwAAAxcAAAIXAAABFwAAAEUAAAJFAAAARQAAA18AAAAXAAABLwAAABcAAABfAAAAJgAAACYAAAAmAAAAXwAAABcAAAAXAAABFwAAABcAAAJFAAABRQAAAEUAAAAvAAAALwAAABcAAAMvAAAAXwAAACYAAAAmAAAAJgAAAF8AAAAXAAAAFwAAABcAAAEXAAABRQAAAkUAAANFAAADXwAAABcAAAEvAAAAFwAAAF8AAABfAAAAXwAAAFAAAABfAAAAFwAAAxcAAAAXAAADXAAAAEUAAAFFAAABRQAAAV8AAAAvAAAAFwAAAy8AAAAXAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAANFAAAARQAAAF8AAABfAAAAFwAAAC8AAAAXAAAALwAAAF8AAABfAAAAXwAAAF8AAAATAAAAEwAAAF8AAABcAAABRQAAAkUAAABFAAADFwAAAi8AAAAXAAACLwAAABcAAANfAAAAXwAAAF8AAABfAAAAEwAAABMAAABfAAAAXAAAAw== 0,-2: ind: 0,-2 - tiles: XgAAAE4AAABOAAAAXgAAAEQAAANEAAABRAAAAF4AAAAaAAAAGgAAAhoAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAARAAAAEQAAABEAAACFgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAACIAAAAiAAAAXQAAAF0AAABdAAAAXgAAAEQAAANEAAAARAAAAhYAAANeAAAATgAAAE4AAABOAAAAXgAAAF4AAAAiAAAAIgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAIgAAACIAAAAWAAABFgAAABYAAANeAAAARAAAAEQAAABEAAADFgAAAhYAAAEWAAACWwAAA1sAAANbAAABIgAAACIAAAAiAAAAFgAAABYAAAMWAAAAXgAAAEQAAANEAAAARAAAAhYAAAMWAAADFgAAAlsAAAJbAAACWwAAA14AAABeAAAAXgAAABYAAAMWAAACFgAAA14AAABEAAAARAAAAUQAAAMWAAADFgAAAhYAAAFbAAACWwAAAlsAAAJeAAAATgAAAE4AAAAWAAADFgAAARYAAANeAAAARAAAAEQAAANEAAADFgAAABYAAAIWAAACWwAAAFsAAABbAAADXgAAAE4AAABeAAAAFgAAAhYAAAIWAAAAXgAAAEQAAANEAAACRAAAAhYAAAMWAAACFgAAA1sAAABbAAADWwAAAU8AAABOAAAAXgAAABYAAAIWAAADFgAAAkQAAANEAAABRAAAAkQAAAAWAAAAFgAAARYAAAJbAAACWwAAAVsAAAJeAAAATgAAAF4AAAAWAAACFgAAAxYAAANEAAAARAAAAEQAAANEAAABFgAAAxYAAAIWAAADFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAWwAAAFsAAABbAAABXgAAAEQAAABEAAACRAAAAxYAAAEWAAABFgAAABYAAABeAAAAWwAAAVsAAAJbAAAAWwAAAVsAAANbAAACWwAAAF4AAABeAAAARAAAAUQAAAMWAAABFgAAAhYAAAIWAAACXgAAAFsAAAFbAAAAWwAAAFsAAABbAAADWwAAAlsAAANbAAAAWwAAAkQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAA1sAAAJbAAACWwAAAVsAAANbAAABWwAAA1sAAAFEAAACRAAAAF4AAAAxAAAAMQAAADEAAAAxAAAAWwAAAVsAAABbAAACWwAAAQ== + tiles: XwAAAE8AAABPAAAAXwAAAEUAAANFAAABRQAAAF8AAAAbAAAAGwAAAhsAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAAkUAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAARQAAAEUAAABFAAACFwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAACMAAAAjAAAAXgAAAF4AAABeAAAAXwAAAEUAAANFAAAARQAAAhcAAANfAAAATwAAAE8AAABPAAAAXwAAAF8AAAAjAAAAIwAAAF8AAABfAAAAXwAAAF8AAABFAAAARQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAIwAAACMAAAAXAAABFwAAABcAAANfAAAARQAAAEUAAABFAAADFwAAAhcAAAEXAAACXAAAA1wAAANcAAABIwAAACMAAAAjAAAAFwAAABcAAAMXAAAAXwAAAEUAAANFAAAARQAAAhcAAAMXAAADFwAAAlwAAAJcAAACXAAAA18AAABfAAAAXwAAABcAAAMXAAACFwAAA18AAABFAAAARQAAAUUAAAMXAAADFwAAAhcAAAFcAAACXAAAAlwAAAJfAAAATwAAAE8AAAAXAAADFwAAARcAAANfAAAARQAAAEUAAANFAAADFwAAABcAAAIXAAACXAAAAFwAAABcAAADXwAAAE8AAABfAAAAFwAAAhcAAAIXAAAAXwAAAEUAAANFAAACRQAAAhcAAAMXAAACFwAAA1wAAABcAAADXAAAAVAAAABPAAAAXwAAABcAAAIXAAADFwAAAkUAAANFAAABRQAAAkUAAAAXAAAAFwAAARcAAAJcAAACXAAAAVwAAAJfAAAATwAAAF8AAAAXAAACFwAAAxcAAANFAAAARQAAAEUAAANFAAABFwAAAxcAAAIXAAADFwAAAl8AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABcAAABXwAAAEUAAABFAAACRQAAAxcAAAEXAAABFwAAABcAAABfAAAAXAAAAVwAAAJcAAAAXAAAAVwAAANcAAACXAAAAF8AAABfAAAARQAAAUUAAAMXAAABFwAAAhcAAAIXAAACXwAAAFwAAAFcAAAAXAAAAFwAAABcAAADXAAAAlwAAANcAAAAXAAAAkUAAAFFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAACXAAAA1wAAAJcAAACXAAAAVwAAANcAAABXAAAA1wAAAFFAAACRQAAAF8AAAAyAAAAMgAAADIAAAAyAAAAXAAAAVwAAABcAAACXAAAAQ== 1,-2: ind: 1,-2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAIgAAAF4AAABeAAAAXgAAAAUAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAACIAAABeAAAAXgAAAF4AAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIAAAAiAAAAXgAAAF4AAABeAAAABAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAiAAAAIgAAAF4AAABeAAAAXgAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAATwAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAl0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAJdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABdAAAAWwAAA1sAAAFPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAFsAAAFbAAAAXgAAAF4AAABOAAAAXgAAAAQAAAAEAAABBAAAAl0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABbAAADWwAAA14AAABeAAAATgAAAF4AAAAEAAAABAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAWwAAAlsAAAJeAAAAXgAAAE4AAABeAAAABAAAAgQAAAEFAAAABAAAAgAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAAAEAAACBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAIwAAAF8AAABfAAAAXwAAAAUAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAACMAAABfAAAAXwAAAF8AAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMAAAAjAAAAXwAAAF8AAABfAAAABAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAjAAAAIwAAAF8AAABfAAAAXwAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAUAAAAF8AAABfAAAAXwAAAF8AAAAEAAABBAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAQQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXAAAA1wAAAFQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAFwAAAFcAAAAXwAAAF8AAABPAAAAXwAAAAQAAAAEAAABBAAAAl4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABcAAADXAAAA18AAABfAAAATwAAAF8AAAAEAAAABAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXAAAAlwAAAJfAAAAXwAAAE8AAABfAAAABAAAAgQAAAEFAAAABAAAAgAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAA== 0,1: ind: 0,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABEAAACRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAASgAAAkoAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARwAAAEQAAAJHAAAARwAAAEQAAANEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAFEAAAARAAAAUQAAANHAAAARAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAl4AAABEAAAARwAAAEQAAANEAAAARAAAAEcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAABeAAAAVQAAAV4AAABeAAAAXgAAAF4AAABHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAXgAAAFUAAABVAAABVQAAAFUAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAF4AAABeAAAAVQAAA1UAAAFVAAAAXgAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIEAAACBAAAAgQAAAIEAAACBAAAAQQAAAAEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAAEAAAABAAAAgQAAAEEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAACBAAAAgQAAAAFAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAQQAAAIEAAABBAAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAABBAAAAQQAAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAEEAAACBAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAQAAAIEAAACAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABFAAACRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAASwAAAksAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAAEUAAAJIAAAASAAAAEUAAANFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAFFAAAARQAAAUUAAANIAAAARQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAl8AAABFAAAASAAAAEUAAANFAAAARQAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAABfAAAAVgAAAV8AAABfAAAAXwAAAF8AAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAXwAAAFYAAABWAAABVgAAAFYAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAF8AAABfAAAAVgAAA1YAAAFWAAAAXwAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIEAAACBAAAAgQAAAIEAAACBAAAAQQAAAAEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAAEAAAABAAAAgQAAAEEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAACBAAAAgQAAAAFAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAQQAAAIEAAABBAAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAABBAAAAQQAAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAEEAAACBAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAQAAAIEAAACAAAAAA== 2,0: ind: 2,0 - tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAA14AAAAWAAADFgAAABsAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAJEAAACRAAAAkQAAAJEAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACRAAAA0QAAAJEAAAARAAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAF4AAAAWAAADFgAAAhsAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAAXgAAAF0AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAV4AAABdAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAFeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAA18AAAAXAAADFwAAABwAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAJFAAACRQAAAkUAAAJFAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAACRQAAA0UAAAJFAAAARQAAAV8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAF8AAAAXAAADFwAAAhwAAANfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAAXwAAAF4AAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAV8AAABeAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAFfAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAAAXwAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAARAAAAEQAAAFEAAACRAAAAEQAAAJEAAABRAAAAUQAAAFEAAAARAAAAUQAAAFEAAABXgAAAAAAAAAAAAAAAAAAAEQAAAFEAAADRAAAAUQAAAFEAAABRAAAAEQAAAFEAAABRAAAA0QAAABEAAACRAAAAF4AAAAAAAAAAAAAAAAAAABEAAACRAAAAkQAAABEAAACRAAAA0QAAAFEAAABRAAAAEQAAABEAAACRAAAAEQAAANeAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAF0AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABeAAAAFgAAAxYAAAMbAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAADXgAAAEQAAABEAAADRAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAV4AAABEAAABRAAAAkQAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAFeAAAAFgAAAhYAAAIbAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAARYAAAFeAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAEWAAAAXgAAAF0AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAAFgAAAl4AAABdAAAAXQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAARQAAAEUAAAFFAAACRQAAAEUAAAJFAAABRQAAAUUAAAFFAAAARQAAAUUAAAFFAAABXwAAAAAAAAAAAAAAAAAAAEUAAAFFAAADRQAAAUUAAAFFAAABRQAAAEUAAAFFAAABRQAAA0UAAABFAAACRQAAAF8AAAAAAAAAAAAAAAAAAABFAAACRQAAAkUAAABFAAACRQAAA0UAAAFFAAABRQAAAEUAAABFAAACRQAAAEUAAANfAAAAXgAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAACXwAAAF4AAABeAAAAXgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAABfAAAAFwAAAxcAAAMcAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAADXwAAAEUAAABFAAADRQAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAAV8AAABFAAABRQAAAkUAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAFfAAAAFwAAAhcAAAIcAAADXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAARcAAAFfAAAAXgAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEUAAAEXAAAAXwAAAF4AAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAAAFwAAAl8AAABeAAAAXgAAAA== 3,0: ind: 3,0 - tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-1: ind: 3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAA== 1,1: ind: 1,1 - tiles: XgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAACEAAAAhAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAAIhAAAAIQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFHAAAARAAAAEQAAAFeAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAAkQAAAJEAAADXgAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAUAAAAEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAEEAAABBAAAAAQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAACBAAAAQQAAAIEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAAQAAAIEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAAEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAACIAAAAiAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAA0UAAAIiAAAAIgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFIAAAARQAAAEUAAAFfAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAADRQAAAkUAAAJFAAADXwAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAUAAAAEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAEEAAABBAAAAAQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAACBAAAAQQAAAIEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAAQAAAIEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAAEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-3: ind: -1,-3 - tiles: RAAAAw8AAABeAAAARAAAA0QAAABEAAADRAAAA0QAAANEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACXgAAAF4AAABEAAADRAAAAl4AAABPAAAAXgAAABYAAAAWAAAAFgAAAhYAAABEAAADRAAAAkQAAAJEAAADRAAAA0QAAANEAAABRAAAA0QAAAJEAAADRAAAAUQAAANEAAACRAAAA0QAAABEAAAARAAAAUQAAAFEAAACRAAAAUQAAANEAAAARAAAAUQAAABEAAADRAAAAEQAAANEAAADRAAAAUQAAANEAAAARAAAAkQAAANEAAABRAAAA0QAAABEAAADRAAAAkQAAANEAAACRAAAAkQAAAJEAAAARAAAAEQAAAJEAAADRAAAA0QAAAJEAAACRAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAANEAAACXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAEQAAANEAAACRAAAA14AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA0QAAAFeAAAAXQAAAF4AAAAQAAACEAAAARAAAAEQAAAAEAAAAxAAAAAQAAADEAAAABAAAAMQAAABRAAAA0QAAAFEAAABXgAAAAAAAABeAAAAEAAAAxAAAAAQAAACEAAAAxAAAAEQAAABEAAAABAAAAMQAAAAEAAAAkQAAAJEAAABRAAAAF4AAAAAAAAAXgAAABAAAAIQAAAAEAAAAhAAAAEQAAADEAAAAxAAAAEQAAACEAAAARAAAABEAAABRAAAAUQAAAJeAAAAXgAAAF4AAAAQAAAAEAAAAxAAAAMQAAAAEAAAAxAAAAIQAAABEAAAAxAAAAAQAAAARAAAAUQAAABEAAADTgAAAE4AAABOAAAAOgAAABAAAAMQAAADEAAAARAAAAEQAAABEAAAAhAAAAEQAAACOgAAAEQAAANEAAAARAAAAU4AAABOAAAATgAAADoAAAAKAAAACgAAABAAAAAQAAADEAAAAwoAAAAKAAAACgAAADoAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAARAAAAUQAAAFEAAADXgAAAAAAAABeAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAA== + tiles: RQAAAw8AAABfAAAARQAAA0UAAABFAAADRQAAA0UAAANFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFFAAACXwAAAF8AAABFAAADRQAAAl8AAABQAAAAXwAAABcAAAAXAAAAFwAAAhcAAABFAAADRQAAAkUAAAJFAAADRQAAA0UAAANFAAABRQAAA0UAAAJFAAADRQAAAUUAAANFAAACRQAAA0UAAABFAAAARQAAAUUAAAFFAAACRQAAAUUAAANFAAAARQAAAUUAAABFAAADRQAAAEUAAANFAAADRQAAAUUAAANFAAAARQAAAkUAAANFAAABRQAAA0UAAABFAAADRQAAAkUAAANFAAACRQAAAkUAAAJFAAAARQAAAEUAAAJFAAADRQAAA0UAAAJFAAACRQAAAUUAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAANFAAACXwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAEUAAANFAAACRQAAA18AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAA0UAAAFfAAAAXgAAAF8AAAAQAAACEAAAARAAAAEQAAAAEAAAAxAAAAAQAAADEAAAABAAAAMQAAABRQAAA0UAAAFFAAABXwAAAAAAAABfAAAAEAAAAxAAAAAQAAACEAAAAxAAAAEQAAABEAAAABAAAAMQAAAAEAAAAkUAAAJFAAABRQAAAF8AAAAAAAAAXwAAABAAAAIQAAAAEAAAAhAAAAEQAAADEAAAAxAAAAEQAAACEAAAARAAAABFAAABRQAAAUUAAAJfAAAAXwAAAF8AAAAQAAAAEAAAAxAAAAMQAAAAEAAAAxAAAAIQAAABEAAAAxAAAAAQAAAARQAAAUUAAABFAAADTwAAAE8AAABPAAAAOwAAABAAAAMQAAADEAAAARAAAAEQAAABEAAAAhAAAAEQAAACOwAAAEUAAANFAAAARQAAAU8AAABPAAAATwAAADsAAAAKAAAACgAAABAAAAAQAAADEAAAAwoAAAAKAAAACgAAADsAAABFAAAARQAAAEUAAABfAAAAXwAAAF8AAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAARQAAAUUAAAFFAAADXwAAAAAAAABfAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAA== 0,-3: ind: 0,-3 - tiles: XgAAAF4AAAAWAAAAFgAAAxYAAAAWAAAAFgAAAxYAAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAARAAAAl4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAUQAAAFEAAADRAAAAkQAAANEAAADXgAAAE4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAARAAAAUQAAAFEAAABRAAAAUQAAAJEAAABRAAAAE8AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAAXgAAAEQAAAJEAAADRAAAAkQAAAFEAAADRAAAAkQAAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAANEAAABXgAAAF4AAABeAAAAXgAAABoAAAIaAAABGgAAARoAAAJeAAAAXQAAAF0AAABdAAAAXgAAAEQAAAFEAAAARAAAAV4AAABeAAAAXgAAAF4AAAAaAAAAGgAAAhoAAAEaAAABXgAAAF4AAABdAAAAXQAAAF4AAABEAAACRAAAAEQAAANEAAAARAAAAUQAAAFEAAADGgAAAxoAAAAaAAADGgAAAl4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAANEAAADRAAAA0QAAAFEAAACRAAAABoAAAIaAAABGgAAARoAAAJeAAAAXgAAAE4AAABOAAAAXgAAAEQAAANEAAAARAAAA14AAABEAAADRAAAAV4AAABeAAAAXgAAAEQAAAFEAAABXgAAAF4AAABOAAAATgAAAF4AAABEAAADRAAAAUQAAAJeAAAARAAAAkQAAAFeAAAARAAAAkQAAANEAAADRAAAA0QAAAJeAAAATgAAAE4AAABeAAAARAAAA0QAAANEAAADRAAAAkQAAABEAAADRAAAAEQAAANEAAACRAAAA0QAAANEAAAARAAAA0QAAAFEAAACRAAAAUQAAANEAAACRAAAAEQAAAJEAAAARAAAAEQAAABEAAAARAAAA0QAAANEAAABRAAAA0QAAAFEAAABRAAAAEQAAANEAAADRAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAAUQAAAFeAAAATgAAAE4AAABeAAAARAAAAUQAAABEAAABXgAAABoAAAEaAAAAGgAAAUQAAANEAAADRAAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAEQAAAFEAAABRAAAAF4AAAAaAAABGgAAAxoAAAJeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: XwAAAF8AAAAXAAAAFwAAAxcAAAAXAAAAFwAAAxcAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAABfAAAARQAAAl8AAABFAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAABRQAAAUUAAAFFAAADRQAAAkUAAANFAAADXwAAAE8AAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAABPAAAARQAAAUUAAAFFAAABRQAAAUUAAAJFAAABRQAAAFAAAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAAXwAAAEUAAAJFAAADRQAAAkUAAAFFAAADRQAAAkUAAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAUUAAANFAAABXwAAAF8AAABfAAAAXwAAABsAAAIbAAABGwAAARsAAAJfAAAAXgAAAF4AAABeAAAAXwAAAEUAAAFFAAAARQAAAV8AAABfAAAAXwAAAF8AAAAbAAAAGwAAAhsAAAEbAAABXwAAAF8AAABeAAAAXgAAAF8AAABFAAACRQAAAEUAAANFAAAARQAAAUUAAAFFAAADGwAAAxsAAAAbAAADGwAAAl8AAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAANFAAADRQAAA0UAAAFFAAACRQAAABsAAAIbAAABGwAAARsAAAJfAAAAXwAAAE8AAABPAAAAXwAAAEUAAANFAAAARQAAA18AAABFAAADRQAAAV8AAABfAAAAXwAAAEUAAAFFAAABXwAAAF8AAABPAAAATwAAAF8AAABFAAADRQAAAUUAAAJfAAAARQAAAkUAAAFfAAAARQAAAkUAAANFAAADRQAAA0UAAAJfAAAATwAAAE8AAABfAAAARQAAA0UAAANFAAADRQAAAkUAAABFAAADRQAAAEUAAANFAAACRQAAA0UAAANFAAAARQAAA0UAAAFFAAACRQAAAUUAAANFAAACRQAAAEUAAAJFAAAARQAAAEUAAABFAAAARQAAA0UAAANFAAABRQAAA0UAAAFFAAABRQAAAEUAAANFAAADRQAAA0UAAAJfAAAAXwAAAF8AAABfAAAAXwAAAEUAAABFAAABRQAAAUUAAAFfAAAATwAAAE8AAABfAAAARQAAAUUAAABFAAABXwAAABsAAAEbAAAAGwAAAUUAAANFAAADRQAAAF8AAABfAAAAXwAAAE8AAABPAAAAXwAAAEUAAAFFAAABRQAAAF8AAAAbAAABGwAAAxsAAAJfAAAAXwAAAF8AAABfAAAAXwAAAA== -2,-3: ind: -2,-3 - tiles: WwAAAxsAAAIZAAACGQAAABkAAAEZAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAzAAAAMwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAARYAAAMWAAACFgAAARYAAAFeAAAAXgAAAF4AAABEAAACRAAAAkQAAABEAAADRAAAA0QAAAFEAAAARAAAA0QAAANEAAACRAAAAEQAAAJEAAABRAAAAEQAAABEAAACRAAAA0QAAABEAAACRAAAAEQAAABEAAACRAAAAEQAAAJEAAACRAAAAEQAAANEAAABRAAAAkQAAANEAAADRAAAA0QAAAFEAAAARAAAAUQAAAJEAAACRAAAAEQAAABEAAACRAAAAEQAAABEAAAARAAAAkQAAANEAAABRAAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABeAAAAVQAAA1UAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAANbAAABWwAAAlsAAABbAAACXgAAAFUAAAFVAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAAAWwAAA1sAAANbAAAAWwAAAV4AAABVAAABVQAAA14AAABeAAAATgAAAF4AAABbAAACWwAAA14AAABbAAABWwAAAFsAAAJbAAAAWwAAAVsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAWwAAA1sAAAFeAAAAWwAAA1sAAAFbAAABWwAAA1sAAABbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAADWwAAAFsAAAFbAAADWwAAAVsAAANbAAACWwAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAUAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAFAAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAJRAAAAUQAAA1EAAAJRAAACUQAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAABXgAAAFEAAANRAAADUQAAAVEAAANeAAAAFgAAABYAAAIWAAACGwAAAA== + tiles: XAAAAxwAAAIaAAACGgAAABoAAAEaAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAA0AAAANAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAABFwAAARcAAAMXAAACFwAAARcAAAFfAAAAXwAAAF8AAABFAAACRQAAAkUAAABFAAADRQAAA0UAAAFFAAAARQAAA0UAAANFAAACRQAAAEUAAAJFAAABRQAAAEUAAABFAAACRQAAA0UAAABFAAACRQAAAEUAAABFAAACRQAAAEUAAAJFAAACRQAAAEUAAANFAAABRQAAAkUAAANFAAADRQAAA0UAAAFFAAAARQAAAUUAAAJFAAACRQAAAEUAAABFAAACRQAAAEUAAABFAAAARQAAAkUAAANFAAABRQAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABFAAADXwAAAF8AAABfAAAAVgAAA1YAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAANcAAABXAAAAlwAAABcAAACXwAAAFYAAAFWAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAAAXAAAA1wAAANcAAAAXAAAAV8AAABWAAABVgAAA18AAABfAAAATwAAAF8AAABcAAACXAAAA18AAABcAAABXAAAAFwAAAJcAAAAXAAAAVwAAAJfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXAAAA1wAAAFfAAAAXAAAA1wAAAFcAAABXAAAA1wAAABcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAADXAAAAFwAAAFcAAADXAAAAVwAAANcAAACXAAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAUQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAFEAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAE8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAAJSAAAAUgAAA1IAAAJSAAACUgAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABSAAABXwAAAFIAAANSAAADUgAAAVIAAANfAAAAFwAAABcAAAIXAAACHAAAAA== 1,-3: ind: 1,-3 - tiles: XgAAAF4AAABeAAAATgAAAF4AAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAE4AAABeAAAABAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAAXgAAAF4AAABOAAAAXgAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE8AAABPAAAAXgAAAF4AAAAEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAEWAAADFgAAAhYAAABeAAAABAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACFgAAAxYAAAEWAAACXgAAAAQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAxYAAAIWAAACFgAAAl4AAAAEAAABBAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAADFgAAABYAAAJeAAAABAAAAAUAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAGwAAABsAAANeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAAJEAAABRAAAAl4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAACRAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACRAAAAkQAAANEAAADXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAABEAAACRAAAAV4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFEAAACRAAAAkQAAANeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABOAAAATgAAAF4AAAAEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAF8AAABfAAAATwAAAF8AAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAE8AAABfAAAABAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAXwAAAF8AAABPAAAAXwAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAFAAAABQAAAAXwAAAF8AAAAEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEXAAADFwAAAhcAAABfAAAABAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACFwAAAxcAAAEXAAACXwAAAAQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAxcAAAIXAAACFwAAAl8AAAAEAAABBAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAXAAADFwAAABcAAAJfAAAABAAAAAUAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAHAAAABwAAANfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAUUAAAJFAAABRQAAAl8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAANFAAACRQAAAkUAAAFfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAACRQAAAkUAAANFAAADXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAA0UAAABFAAACRQAAAV8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAFFAAACRQAAAkUAAANfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABPAAAATwAAAF8AAAAEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-4: ind: 0,-4 - tiles: BAAAAQQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAQQAAAEEAAACBAAAAgQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAAEAAACBQAAAAQAAAAEAAAABAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAEAAACBAAAAQQAAAEEAAAABAAAAgQAAAEEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAABAAAAQoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAKAAAACgAAAAoAAAAEAAAABAAAAgQAAAIEAAABBAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAACgAAAAoAAAAEAAAABAAAAQQAAAAEAAACBAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAUAAAAEAAABBAAAAAQAAAIEAAACBAAAAAQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAIEAAAABAAAAgQAAAIEAAABBAAAAAQAAAEEAAABXgAAAF4AAAAWAAACFgAAABYAAAEWAAACFgAAAl4AAAAEAAABBAAAAgQAAAEEAAAABAAAAQQAAAEEAAACBAAAAV4AAABeAAAAFgAAABYAAAIWAAAAFgAAAhYAAAJeAAAABAAAAgQAAAEEAAABBAAAAAQAAAIEAAABBAAAAQQAAAFeAAAAXgAAABYAAAIWAAAAFgAAAxYAAAMWAAACXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAQQAAAIEAAAAXgAAAE8AAAAWAAABFgAAABYAAAEWAAAAFgAAAxYAAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: BAAAAQQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAQQAAAEEAAACBAAAAgQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAAEAAACBQAAAAQAAAAEAAAABAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAEAAACBAAAAQQAAAEEAAAABAAAAgQAAAEEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAABAAAAQoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAKAAAACgAAAAoAAAAEAAAABAAAAgQAAAIEAAABBAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAACgAAAAoAAAAEAAAABAAAAQQAAAAEAAACBAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAAABAAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAAUAAAAEAAABBAAAAAQAAAIEAAACBAAAAAQAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAIEAAAABAAAAgQAAAIEAAABBAAAAAQAAAEEAAABXwAAAF8AAAAXAAACFwAAABcAAAEXAAACFwAAAl8AAAAEAAABBAAAAgQAAAEEAAAABAAAAQQAAAEEAAACBAAAAV8AAABfAAAAFwAAABcAAAIXAAAAFwAAAhcAAAJfAAAABAAAAgQAAAEEAAABBAAAAAQAAAIEAAABBAAAAQQAAAFfAAAAXwAAABcAAAIXAAAAFwAAAxcAAAMXAAACXwAAAF8AAABfAAAAXwAAAF8AAAAEAAABBAAAAQQAAAIEAAAAXwAAAFAAAAAXAAABFwAAABcAAAEXAAAAFwAAAxcAAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAACBAAAAQQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAgQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABQAAAAQAAAAEAAACBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAACBAAAAQQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAgQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABQAAAAQAAAAEAAACBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-4: ind: -1,-4 - tiles: BAAAAgQAAAAEAAABBAAAAAQAAAIEAAACBAAAAV4AAAAWAAAAHgAAAh4AAAAWAAADXgAAAAQAAAAEAAABBAAAAQQAAAAEAAACBAAAAgQAAAAEAAACBAAAAAQAAAJeAAAAFgAAAh4AAAIeAAACFgAAAV4AAAAEAAAABAAAAQQAAAAEAAAABAAAAAQAAAIEAAAABAAAAQQAAAIEAAAAXgAAABYAAAIeAAACHgAAARYAAAFeAAAABAAAAgQAAAIEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAABsAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAFgAAAR4AAAEeAAABFgAAAl4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEeAAADHgAAARYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAAhsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAA0QAAAJEAAAARAAAAkQAAANEAAABRAAAA0QAAANEAAACRAAAAV4AAABOAAAATgAAAF4AAABEAAABRAAAAEQAAABEAAABRAAAA0QAAAFEAAAARAAAA0QAAAFEAAABRAAAA0QAAAJPAAAAXgAAAF4AAABeAAAARAAAAEQAAAFEAAABRAAAA14AAABEAAACRAAAAkQAAAJEAAADRAAAAkQAAAFEAAAAXgAAABYAAAIWAAABFgAAAkQAAAJEAAACRAAAAUQAAAJeAAAAGwAAAF4AAABeAAAATwAAAF4AAABeAAAAFgAAAV4AAAAWAAABFgAAAxYAAAJEAAACRAAAAEQAAAJEAAACXgAAAB4AAAFVAAABXgAAAE4AAABeAAAAGgAAABoAAAJeAAAAFgAAAxYAAABeAAAARAAAAkQAAAJEAAABRAAAAF4AAAAeAAACVQAAA14AAABOAAAAXgAAABoAAAMaAAAAXgAAABYAAAIWAAADXgAAAEQAAAFEAAACRAAAA0QAAAJeAAAAHgAAAFUAAANeAAAATgAAAF4AAAAaAAAAGgAAAF4AAABEAAADDwAAAF4AAABeAAAARAAAAl4AAABeAAAAXgAAABsAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAg8AAABeAAAARAAAAUQAAAFEAAABRAAAAUQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: BAAAAgQAAAAEAAABBAAAAAQAAAIEAAACBAAAAV8AAAAXAAAAHwAAAh8AAAAXAAADXwAAAAQAAAAEAAABBAAAAQQAAAAEAAACBAAAAgQAAAAEAAACBAAAAAQAAAJfAAAAFwAAAh8AAAIfAAACFwAAAV8AAAAEAAAABAAAAQQAAAAEAAAABAAAAAQAAAIEAAAABAAAAQQAAAIEAAAAXwAAABcAAAIfAAACHwAAARcAAAFfAAAABAAAAgQAAAIEAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAHAAAABwAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAAFwAAAR8AAAEfAAABFwAAAl8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAEfAAADHwAAARcAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAHAAAAhwAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAABRQAAA0UAAAJFAAAARQAAAkUAAANFAAABRQAAA0UAAANFAAACRQAAAV8AAABPAAAATwAAAF8AAABFAAABRQAAAEUAAABFAAABRQAAA0UAAAFFAAAARQAAA0UAAAFFAAABRQAAA0UAAAJQAAAAXwAAAF8AAABfAAAARQAAAEUAAAFFAAABRQAAA18AAABFAAACRQAAAkUAAAJFAAADRQAAAkUAAAFFAAAAXwAAABcAAAIXAAABFwAAAkUAAAJFAAACRQAAAUUAAAJfAAAAHAAAAF8AAABfAAAAUAAAAF8AAABfAAAAFwAAAV8AAAAXAAABFwAAAxcAAAJFAAACRQAAAEUAAAJFAAACXwAAAB8AAAFWAAABXwAAAE8AAABfAAAAGwAAABsAAAJfAAAAFwAAAxcAAABfAAAARQAAAkUAAAJFAAABRQAAAF8AAAAfAAACVgAAA18AAABPAAAAXwAAABsAAAMbAAAAXwAAABcAAAIXAAADXwAAAEUAAAFFAAACRQAAA0UAAAJfAAAAHwAAAFYAAANfAAAATwAAAF8AAAAbAAAAGwAAAF8AAABFAAADDwAAAF8AAABfAAAARQAAAl8AAABfAAAAXwAAABwAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAg8AAABfAAAARQAAAUUAAAFFAAABRQAAAUUAAABFAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== -2,-4: ind: -2,-4 - tiles: XgAAAF4AAAAEAAAABAAAAAQAAAEEAAACXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAQQAAAIEAAABBAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAIEAAABBAAAAgQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAIEAAACBAAAAQQAAAAEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAAXgAAAE4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAFsAAABeAAAAHwAAAR8AAAJeAAAAXgAAAEcAAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAABGwAAAR8AAAIfAAACXgAAAEcAAABeAAAAXgAAAEcAAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABOAAAAWwAAAl4AAAAfAAACHwAAAl4AAABeAAAARwAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABPAAAAFgAAAhYAAABbAAAAGwAAAlsAAAFbAAACXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAWwAAAhsAAAFeAAAAXgAAAF4AAABHAAAARwAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAVsAAAIbAAABXgAAAFsAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAFgAAABYAAAFbAAABXgAAAF4AAAAbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADMAAAAzAAAAWwAAAV4AAAAZAAABGQAAABkAAAAZAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAzAAAAMwAAAA== + tiles: XwAAAF8AAAAEAAAABAAAAAQAAAEEAAACXwAAAF8AAABfAAAAXwAAAF8AAAAEAAABBAAAAQQAAAIEAAABBAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAQQAAAIEAAABBAAAAgQAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAIEAAACBAAAAQQAAAAEAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAATwAAAE8AAABPAAAAXwAAAE8AAABPAAAATwAAAE8AAABfAAAATwAAAE8AAABfAAAAXwAAAE8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAFwAAABfAAAAIAAAASAAAAJfAAAAXwAAAEgAAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAABHAAAASAAAAIgAAACXwAAAEgAAABfAAAAXwAAAEgAAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAABPAAAAXAAAAl8AAAAgAAACIAAAAl8AAABfAAAASAAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABQAAAAFwAAAhcAAABcAAAAHAAAAlwAAAFcAAACXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAXAAAAhwAAAFfAAAAXwAAAF8AAABIAAAASAAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAAVwAAAIcAAABXwAAAFwAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAAFwAAABcAAAFcAAABXwAAAF8AAAAcAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADQAAAA0AAAAXAAAAV8AAAAaAAABGgAAABoAAAAaAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAA0AAAANAAAAA== -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAEAAAABAAAAQQAAAIFAAAABAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAABAAAAgQAAAIEAAAABAAAAAQAAAFeAAAAFgAAABYAAAAWAAADFgAAAhYAAAMWAAACFgAAAV4AAAAAAAAABAAAAAQAAAJeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAABFgAAAhYAAAAWAAACFgAAAxYAAAMWAAACBAAAAAQAAAAEAAABXgAAAA8AAAAPAAAADwAAAF4AAAAWAAADFgAAABYAAAEWAAABFgAAAxYAAAMWAAADFgAAAQQAAAIEAAACBAAAAF4AAAAdAAAAHQAAAx0AAANeAAAAFgAAAhYAAAIWAAABXgAAAF4AAAAWAAAAFgAAABYAAAIEAAACBAAAAgQAAAJeAAAAHQAAAB0AAAIdAAADGwAAABYAAAAWAAAAFgAAA14AAABeAAAAFgAAARYAAAFeAAAABAAAAQQAAAIEAAAAXgAAAE4AAABOAAAATgAAAF4AAAAWAAACFgAAARYAAAJeAAAAXgAAABYAAAEWAAACXgAAAAAAAAAEAAACBAAAAV4AAABOAAAATgAAAE4AAABeAAAAFgAAAxYAAAMWAAAAXgAAAF4AAAAWAAABFgAAAxsAAAIAAAAAAAAAAAQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAbAAACGwAAA14AAABeAAAAFgAAABYAAAFeAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAACBAAAAF4AAAAWAAACHgAAAx4AAAIWAAADXgAAABYAAAMWAAABGwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAABeAAAAFgAAAR4AAAEeAAADFgAAAl4AAAAWAAABFgAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABXgAAAF4AAAAbAAACGwAAA14AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAFeAAAAXgAAAF4AAABeAAAABAAAAQUAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIFAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAl4AAABeAAAAXgAAAF4AAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAF4AAABeAAAAGwAAAhsAAANeAAAAXgAAAAQAAAAEAAAABAAAAg== + tiles: AAAAAAAAAAAEAAAABAAAAQQAAAIFAAAABAAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAABAAAAgQAAAIEAAAABAAAAAQAAAFfAAAAFwAAABcAAAAXAAADFwAAAhcAAAMXAAACFwAAAV8AAAAAAAAABAAAAAQAAAJfAAAAXwAAAF8AAABfAAAAXwAAABcAAAEXAAABFwAAAhcAAAAXAAACFwAAAxcAAAMXAAACBAAAAAQAAAAEAAABXwAAAA8AAAAPAAAADwAAAF8AAAAXAAADFwAAABcAAAEXAAABFwAAAxcAAAMXAAADFwAAAQQAAAIEAAACBAAAAF8AAAAeAAAAHgAAAx4AAANfAAAAFwAAAhcAAAIXAAABXwAAAF8AAAAXAAAAFwAAABcAAAIEAAACBAAAAgQAAAJfAAAAHgAAAB4AAAIeAAADHAAAABcAAAAXAAAAFwAAA18AAABfAAAAFwAAARcAAAFfAAAABAAAAQQAAAIEAAAAXwAAAE8AAABPAAAATwAAAF8AAAAXAAACFwAAARcAAAJfAAAAXwAAABcAAAEXAAACXwAAAAAAAAAEAAACBAAAAV8AAABPAAAATwAAAE8AAABfAAAAFwAAAxcAAAMXAAAAXwAAAF8AAAAXAAABFwAAAxwAAAIAAAAAAAAAAAQAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAcAAACHAAAA18AAABfAAAAFwAAABcAAAFfAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAACBAAAAF8AAAAXAAACHwAAAx8AAAIXAAADXwAAABcAAAMXAAABHAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAABfAAAAFwAAAR8AAAEfAAADFwAAAl8AAAAXAAABFwAAA18AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABXwAAAF8AAAAcAAACHAAAA18AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAFfAAAAXwAAAF8AAABfAAAABAAAAQUAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIFAAAAXwAAAF8AAABfAAAAXwAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAl8AAABfAAAAXwAAAF8AAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAF8AAABfAAAAHAAAAhwAAANfAAAAXwAAAAQAAAAEAAAABAAAAg== 0,-5: ind: 0,-5 - tiles: FgAAARYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAIbAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAxYAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAMWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FwAAARcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAIcAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAxcAAAJfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-6: ind: -1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAgQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAABBAAAAQQAAAEEAAABBQAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAAABAAAAQQAAAEEAAACBAAAAQQAAAIEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAAABAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAgQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAABBAAAAQQAAAEEAAABBQAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAAABAAAAQQAAAEEAAACBAAAAQQAAAIEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAAABAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADFgAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAAl8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAARcAAAFfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,-2: ind: -3,-2 - tiles: EgAAABIAAAASAAAARAAAAUQAAAJEAAACXgAAABEAAAARAAAAEQAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAABIAAAASAAAAEgAAAF4AAABEAAADRAAAA14AAAARAAAAEQAAABEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAASAAAAEgAAABIAAABeAAAARAAAAUQAAANEAAAAEQAAABEAAAARAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAEAAAABAAAAAwAAAF4AAAAxAAAAMQAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAABAAAAAwAAAAMAAABeAAAAMQAAAF4AAAAxAAAAXgAAAF4AAABOAAAARAAAAUQAAAJeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAEoAAAJEAAABXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABKAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABRAAADUQAAA1EAAAJRAAABUQAAAlEAAAFRAAADUQAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAlEAAAJRAAAAUQAAAFEAAANRAAABUQAAAFEAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAFRAAACUQAAAlEAAAFRAAAAUQAAAFEAAAFRAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAUQAAAl4AAABeAAAAXgAAAF4AAABRAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGgAAAhoAAAIaAAACGgAAAF4AAABRAAAAUQAAAFEAAAI8AAAAPAAAADwAAAA8AAAAXgAAAE4AAABeAAAAXgAAABoAAAAaAAADGgAAAxoAAAFeAAAAUQAAAFEAAAJRAAAAPAAAADwAAAA8AAAAPAAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAANRAAADUQAAAg== + tiles: EwAAABMAAAATAAAARQAAAUUAAAJFAAACXwAAABIAAAASAAAAEgAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAABMAAAATAAAAEwAAAF8AAABFAAADRQAAA18AAAASAAAAEgAAABIAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAATAAAAEwAAABMAAABfAAAARQAAAUUAAANFAAAAEgAAABIAAAASAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAEAAAABAAAAAwAAAF8AAAAyAAAAMgAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAAABAAAAAwAAAAMAAABfAAAAMgAAAF8AAAAyAAAAXwAAAF8AAABPAAAARQAAAUUAAAJfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAEsAAAJFAAABXwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABLAAADRQAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFAAAABSAAADUgAAA1IAAAJSAAABUgAAAlIAAAFSAAADUgAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAUgAAAlIAAAJSAAAAUgAAAFIAAANSAAABUgAAAFIAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAAFSAAACUgAAAlIAAAFSAAAAUgAAAFIAAAFSAAAATwAAAE8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAUgAAAl8AAABfAAAAXwAAAF8AAABSAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAGwAAAhsAAAIbAAACGwAAAF8AAABSAAAAUgAAAFIAAAI9AAAAPQAAAD0AAAA9AAAAXwAAAE8AAABfAAAAXwAAABsAAAAbAAADGwAAAxsAAAFfAAAAUgAAAFIAAAJSAAAAPQAAAD0AAAA9AAAAPQAAAF8AAABPAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFIAAANSAAADUgAAAg== -3,-1: ind: -3,-1 - tiles: PAAAADwAAAA8AAAAPAAAAF4AAABOAAAAXgAAAF4AAABbAAAAWwAAAlsAAAFbAAABXgAAAFEAAAJRAAABUQAAAzwAAAA8AAAAPAAAADwAAABeAAAAXgAAAE8AAABeAAAAWwAAAlsAAABbAAAAWwAAA14AAABRAAACUQAAA1EAAANeAAAAPAAAAF4AAABeAAAAXgAAABYAAAIWAAADXgAAAEQAAAJeAAAARAAAAEQAAANeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAACRAAAA0QAAANEAAADRAAAAUQAAABEAAACRAAAAUQAAAFEAAACRAAAAUQAAABEAAACRAAAAkQAAAJEAAAARAAAA0QAAAFEAAADRAAAAUQAAAJEAAAARAAAAEQAAAFEAAABRAAAAUQAAANEAAADRAAAAEQAAAJEAAACRAAAAkQAAANEAAADRAAAAUQAAAJEAAADRAAAA0QAAANEAAADRAAAA0QAAAJEAAAARAAAAUQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAAQAAAEEAAABBAAAAQQAAAEEAAABXgAAAE8AAABeAAAAXgAAABYAAAIWAAABFgAAAl4AAABOAAAARAAAAU4AAAAEAAAABAAAAAUAAAAEAAAABAAAAV4AAABeAAAATgAAAF4AAAAWAAABFgAAARYAAAJOAAAARAAAAkQAAAJEAAABBAAAAAQAAAEEAAACBAAAAAQAAAFeAAAAXgAAAE4AAABeAAAAFgAAAxYAAAMWAAABXgAAAE4AAABOAAAATgAAAAQAAAAEAAACBAAAAQQAAAAEAAACXgAAAF4AAABOAAAAXgAAABYAAAAWAAAAFgAAAV4AAABeAAAAXgAAAF4AAAAEAAACBAAAAgQAAAIEAAACBAAAAV4AAABeAAAATgAAAF4AAABEAAADRAAAA0QAAAJEAAACRAAAA0QAAAJEAAAABAAAAAQAAAIEAAAABAAAAAQAAAJeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAABRAAAAUQAAAJEAAAARAAAAgQAAAIEAAAABAAAAQQAAAIEAAABXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAA0QAAABEAAADRAAAA0QAAAIEAAAABAAAAgQAAAIEAAACBAAAAV4AAABeAAAAXgAAAE8AAABEAAAARAAAAkQAAABEAAACRAAAAkQAAAJEAAABAAAAAAQAAAIFAAAABAAAAgQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAARAAAAA== + tiles: PQAAAD0AAAA9AAAAPQAAAF8AAABPAAAAXwAAAF8AAABcAAAAXAAAAlwAAAFcAAABXwAAAFIAAAJSAAABUgAAAz0AAAA9AAAAPQAAAD0AAABfAAAAXwAAAFAAAABfAAAAXAAAAlwAAABcAAAAXAAAA18AAABSAAACUgAAA1IAAANfAAAAPQAAAF8AAABfAAAAXwAAABcAAAIXAAADXwAAAEUAAAJfAAAARQAAAEUAAANfAAAAXwAAAF8AAABfAAAARQAAA0UAAANFAAACRQAAA0UAAANFAAADRQAAAUUAAABFAAACRQAAAUUAAAFFAAACRQAAAUUAAABFAAACRQAAAkUAAAJFAAAARQAAA0UAAAFFAAADRQAAAUUAAAJFAAAARQAAAEUAAAFFAAABRQAAAUUAAANFAAADRQAAAEUAAAJFAAACRQAAAkUAAANFAAADRQAAAUUAAAJFAAADRQAAA0UAAANFAAADRQAAA0UAAAJFAAAARQAAAUUAAAFFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAAQAAAEEAAABBAAAAQQAAAEEAAABXwAAAFAAAABfAAAAXwAAABcAAAIXAAABFwAAAl8AAABPAAAARQAAAU8AAAAEAAAABAAAAAUAAAAEAAAABAAAAV8AAABfAAAATwAAAF8AAAAXAAABFwAAARcAAAJPAAAARQAAAkUAAAJFAAABBAAAAAQAAAEEAAACBAAAAAQAAAFfAAAAXwAAAE8AAABfAAAAFwAAAxcAAAMXAAABXwAAAE8AAABPAAAATwAAAAQAAAAEAAACBAAAAQQAAAAEAAACXwAAAF8AAABPAAAAXwAAABcAAAAXAAAAFwAAAV8AAABfAAAAXwAAAF8AAAAEAAACBAAAAgQAAAIEAAACBAAAAV8AAABfAAAATwAAAF8AAABFAAADRQAAA0UAAAJFAAACRQAAA0UAAAJFAAAABAAAAAQAAAIEAAAABAAAAAQAAAJfAAAAXwAAAF8AAABfAAAARQAAAEUAAABFAAABRQAAAUUAAAJFAAAARQAAAgQAAAIEAAAABAAAAQQAAAIEAAABXwAAAF8AAABfAAAAXwAAAEUAAAFFAAACRQAAA0UAAABFAAADRQAAA0UAAAIEAAAABAAAAgQAAAIEAAACBAAAAV8AAABfAAAAXwAAAFAAAABFAAAARQAAAkUAAABFAAACRQAAAkUAAAJFAAABAAAAAAQAAAIFAAAABAAAAgQAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAARQAAAA== -3,0: ind: -3,0 - tiles: AAAAAAQAAAEEAAABBAAAAQQAAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABEAAACRAAAAEQAAANeAAAARAAAAgAAAAAEAAABBAAAAgQAAAIEAAAAXgAAAF4AAABOAAAAXgAAAEQAAAJEAAAAXgAAAEQAAAJEAAAAXgAAAEQAAAIAAAAABAAAAgQAAAAEAAAABAAAAF4AAABeAAAATgAAAF4AAABEAAABMwAAAF4AAAAzAAAARAAAAF4AAABEAAACAAAAAAQAAAAEAAAABAAAAQQAAAFeAAAAXgAAAE4AAABeAAAARAAAAF4AAABeAAAAXgAAAEQAAAJeAAAARAAAAQAAAAAEAAACBAAAAQQAAAAEAAABXgAAAF4AAABeAAAAXgAAAEQAAAIzAAAAMwAAADMAAABEAAABXgAAAEQAAAAAAAAABAAAAQQAAAEFAAAABAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAQAAAAEAAABBAAAAAQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAATgAAAAQAAAIEAAAABAAAAQQAAAIEAAACBgAAAAYAAAAGAAAABgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAAAEAAACBAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEEAAACXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAFAAAABAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAQAAAEEAAABBAAAAQQAAABfAAAAXwAAAF8AAABfAAAARQAAAkUAAABFAAACRQAAAEUAAANfAAAARQAAAgAAAAAEAAABBAAAAgQAAAIEAAAAXwAAAF8AAABPAAAAXwAAAEUAAAJFAAAAXwAAAEUAAAJFAAAAXwAAAEUAAAIAAAAABAAAAgQAAAAEAAAABAAAAF8AAABfAAAATwAAAF8AAABFAAABNAAAAF8AAAA0AAAARQAAAF8AAABFAAACAAAAAAQAAAAEAAAABAAAAQQAAAFfAAAAXwAAAE8AAABfAAAARQAAAF8AAABfAAAAXwAAAEUAAAJfAAAARQAAAQAAAAAEAAACBAAAAQQAAAAEAAABXwAAAF8AAABfAAAAXwAAAEUAAAI0AAAANAAAADQAAABFAAABXwAAAEUAAAAAAAAABAAAAQQAAAEFAAAABAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAQAAAAEAAABBAAAAAQAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAATwAAAAQAAAIEAAAABAAAAQQAAAIEAAACBgAAAAYAAAAGAAAABgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAAAEAAACBAAAAl8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAAQAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAEEAAACXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAFAAAABAAAAl8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAgQAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAAEAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAABBAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAAQAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== -3,-3: ind: -3,-3 - tiles: XgAAAFsAAANeAAAAWwAAAlsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAlsAAAJbAAAAWwAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAAEQAAABEAAAARAAAAkQAAANEAAACRAAAAkQAAANEAAADRAAAAkQAAABEAAABRAAAAEQAAAFEAAACRAAAAEQAAAJEAAADRAAAAUQAAANEAAABRAAAAUQAAABEAAACRAAAAEQAAABEAAAARAAAAkQAAAFEAAADRAAAAEQAAAJEAAAARAAAA0QAAAJEAAABRAAAAkQAAANEAAADRAAAA0QAAAJEAAAARAAAAUQAAAFEAAAARAAAAEQAAABEAAABRAAAAkQAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFUAAANeAAAALgAAAC4AAAAuAAAAXgAAAEQAAABEAAABXgAAAFsAAAFbAAAAWwAAAl4AAABVAAADVQAAAVUAAANVAAABVQAAAC4AAAAuAAAALgAAAF4AAABEAAACRAAAA0QAAABbAAACWwAAA1sAAAFeAAAAVQAAAFUAAAJVAAADVQAAAFUAAAMuAAAALgAAAC4AAABEAAABRAAAAEQAAANeAAAAWwAAA1sAAABbAAACXgAAAFUAAANVAAAAVQAAAFUAAANVAAACXgAAAF4AAAAuAAAAXgAAAEQAAAJEAAAAXgAAAFsAAABbAAACWwAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAACIAAABeAAAAXgAAAF4AAABEAAAARAAAAV4AAABeAAAAXgAAAFsAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAiAAAAIgAAACIAAABeAAAARAAAA0QAAABeAAAAHwAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAIgAAACIAAAAiAAAARAAAAEQAAAFEAAACXgAAAB8AAAIfAAADHwAAAl4AAABeAAAAXgAAAF4AAABeAAAAUAAAAiIAAAAiAAAAIgAAAF4AAABEAAACRAAAAkQAAAMfAAABHwAAAh8AAAJeAAAAXgAAAF4AAABeAAAAUAAAAlAAAAAiAAAAIgAAACIAAABeAAAARAAAAEQAAAJeAAAAHwAAAh8AAAIfAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAA== + tiles: XwAAAFwAAANfAAAAXAAAAlwAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAlwAAAJcAAAAXAAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAAF8AAABfAAAAXwAAAF8AAABFAAADXwAAAEUAAABFAAAARQAAAkUAAANFAAACRQAAAkUAAANFAAADRQAAAkUAAABFAAABRQAAAEUAAAFFAAACRQAAAEUAAAJFAAADRQAAAUUAAANFAAABRQAAAUUAAABFAAACRQAAAEUAAABFAAAARQAAAkUAAAFFAAADRQAAAEUAAAJFAAAARQAAA0UAAAJFAAABRQAAAkUAAANFAAADRQAAA0UAAAJFAAAARQAAAUUAAAFFAAAARQAAAEUAAABFAAABRQAAAkUAAABfAAAAXwAAAF8AAABfAAAARQAAAEUAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFYAAANfAAAALwAAAC8AAAAvAAAAXwAAAEUAAABFAAABXwAAAFwAAAFcAAAAXAAAAl8AAABWAAADVgAAAVYAAANWAAABVgAAAC8AAAAvAAAALwAAAF8AAABFAAACRQAAA0UAAABcAAACXAAAA1wAAAFfAAAAVgAAAFYAAAJWAAADVgAAAFYAAAMvAAAALwAAAC8AAABFAAABRQAAAEUAAANfAAAAXAAAA1wAAABcAAACXwAAAFYAAANWAAAAVgAAAFYAAANWAAACXwAAAF8AAAAvAAAAXwAAAEUAAAJFAAAAXwAAAFwAAABcAAACXAAAAF8AAABfAAAAXwAAAF8AAABQAAAAXwAAACMAAABfAAAAXwAAAF8AAABFAAAARQAAAV8AAABfAAAAXwAAAFwAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAjAAAAIwAAACMAAABfAAAARQAAA0UAAABfAAAAIAAAA18AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAIwAAACMAAAAjAAAARQAAAEUAAAFFAAACXwAAACAAAAIgAAADIAAAAl8AAABfAAAAXwAAAF8AAABfAAAAUQAAAiMAAAAjAAAAIwAAAF8AAABFAAACRQAAAkUAAAMgAAABIAAAAiAAAAJfAAAAXwAAAF8AAABfAAAAUQAAAlEAAAAjAAAAIwAAACMAAABfAAAARQAAAEUAAAJfAAAAIAAAAiAAAAIgAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAANFAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAA== -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAQQAAAIEAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAIEAAACBQAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAAQAAAIEAAAABAAAAgQAAAFeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAAQAAAAEAAACXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAIEAAABBAAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAAABAAAAgQAAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAACWwAAA1sAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABbAAABWwAAAlsAAANbAAADXgAAAF4AAABbAAADXgAAAFsAAAFbAAADWwAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAFsAAABbAAAAWwAAAV4AAABeAAAAWwAAAFsAAANeAAAAXgAAAFsAAAFeAAAAXgAAAF4AAABeAAAAXgAAAFsAAANbAAAAWwAAAFsAAANeAAAAXgAAAFsAAABeAAAAXgAAAFsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAA1sAAANbAAACXgAAAFsAAANbAAABXgAAAFsAAANHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAA1sAAAFbAAACWwAAAl4AAABeAAAAWwAAA1sAAABbAAAAXgAAAEcAAABHAAAAXgAAAF4AAABOAAAAXgAAAFsAAANbAAAAWwAAAVsAAAJeAAAAWwAAAl4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAATgAAAF4AAABbAAAAWwAAA1sAAANbAAACXgAAAFsAAAJbAAACWwAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAWwAAA1sAAABbAAAAWwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAQQAAAIEAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAIEAAACBQAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAAQAAAIEAAAABAAAAgQAAAFfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAAABAAAAAQAAAAEAAACXwAAAF8AAABfAAAAXwAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAAQAAAIEAAABBAAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAAEAAAABAAAAgQAAABfAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFwAAABcAAACXAAAA1wAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABcAAABXAAAAlwAAANcAAADXwAAAF8AAABcAAADXwAAAFwAAAFcAAADXAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAFwAAABcAAAAXAAAAV8AAABfAAAAXAAAAFwAAANfAAAAXwAAAFwAAAFfAAAAXwAAAF8AAABfAAAAXwAAAFwAAANcAAAAXAAAAFwAAANfAAAAXwAAAFwAAABfAAAAXwAAAFwAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAACXAAAA1wAAANcAAACXwAAAFwAAANcAAABXwAAAFwAAANIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAA1wAAAFcAAACXAAAAl8AAABfAAAAXAAAA1wAAABcAAAAXwAAAEgAAABIAAAAXwAAAF8AAABPAAAAXwAAAFwAAANcAAAAXAAAAVwAAAJfAAAAXAAAAl8AAABfAAAAXwAAAF8AAABIAAAAXwAAAF8AAABfAAAATwAAAF8AAABcAAAAXAAAA1wAAANcAAACXwAAAFwAAAJcAAACXAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXAAAA1wAAABcAAAAXAAAAA== -4,-3: ind: -4,-3 - tiles: XQAAAF0AAABdAAAABAAAAAQAAAIEAAABTgAAAE4AAAAPAAAAGwAAAQ8AAABeAAAAWwAAAFsAAAJbAAAAWwAAAF0AAABdAAAABAAAAAQAAAEEAAABXgAAAE4AAABOAAAADwAAABsAAAEPAAAAXgAAAF4AAABeAAAARAAAAV4AAABdAAAAXQAAAAQAAAEEAAACBAAAAV4AAAAWAAABFgAAABYAAAAWAAABFgAAABYAAAEbAAACRAAAAUQAAANEAAABAAAAAF0AAAAEAAACBAAAAQQAAAFeAAAAFgAAARYAAAIWAAADFgAAAxYAAAEWAAAAXgAAAEQAAAJEAAACRAAAA10AAABdAAAABAAAAgQAAAEEAAAAXgAAABYAAAEWAAADFgAAAhYAAAMWAAADFgAAARsAAABEAAABRAAAAUQAAAJdAAAAXQAAAAQAAAAEAAAABAAAAF4AAABOAAAATgAAAA8AAAAbAAADDwAAAF4AAABeAAAAXgAAAE8AAABeAAAAXQAAAF0AAAAEAAABBAAAAQQAAAEEAAAATgAAAE4AAAAPAAAAGwAAAQ8AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAABAAAAAQAAAAFAAAABAAAAQQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABdAAAAAAAAAAQAAAIEAAACBAAAAAQAAAAEAAACBAAAAAQAAAEEAAABBAAAAQQAAAFeAAAATgAAAF4AAABeAAAAAAAAAAAAAAAEAAACBAAAAQQAAAAEAAABBAAAAQQAAAAEAAACBAAAAAQAAAEEAAACXgAAAE4AAABeAAAAXgAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAgQAAAAEAAACBAAAAgQAAAAEAAACBAAAAl4AAABOAAAAXgAAAF4AAAAEAAABBAAAAAQAAAAEAAACBAAAAQQAAAIEAAACBAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAEEAAABBAAAAgQAAAEEAAACBAAAAgQAAAFeAAAARwAAAEcAAABHAAAARwAAAF4AAABeAAAAXgAAAAQAAAEEAAAABAAAAgQAAAEEAAABBAAAAgQAAAEEAAAAXgAAAEcAAABHAAAARwAAAEcAAABeAAAAXgAAAF4AAAAEAAACBAAAAQQAAAAEAAABBAAAAgQAAAAEAAAABAAAAV4AAABHAAAARwAAAEcAAABHAAAAXgAAAF4AAABeAAAABAAAAAQAAAEEAAACBAAAAQQAAAEEAAAABAAAAgQAAAJeAAAARwAAAEcAAABHAAAARwAAAE8AAABeAAAAXgAAAA== + tiles: XgAAAF4AAABeAAAABAAAAAQAAAIEAAABTwAAAE8AAAAPAAAAHAAAAQ8AAABfAAAAXAAAAFwAAAJcAAAAXAAAAF4AAABeAAAABAAAAAQAAAEEAAABXwAAAE8AAABPAAAADwAAABwAAAEPAAAAXwAAAF8AAABfAAAARQAAAV8AAABeAAAAXgAAAAQAAAEEAAACBAAAAV8AAAAXAAABFwAAABcAAAAXAAABFwAAABcAAAEcAAACRQAAAUUAAANFAAABAAAAAF4AAAAEAAACBAAAAQQAAAFfAAAAFwAAARcAAAIXAAADFwAAAxcAAAEXAAAAXwAAAEUAAAJFAAACRQAAA14AAABeAAAABAAAAgQAAAEEAAAAXwAAABcAAAEXAAADFwAAAhcAAAMXAAADFwAAARwAAABFAAABRQAAAUUAAAJeAAAAXgAAAAQAAAAEAAAABAAAAF8AAABPAAAATwAAAA8AAAAcAAADDwAAAF8AAABfAAAAXwAAAFAAAABfAAAAXgAAAF4AAAAEAAABBAAAAQQAAAEEAAAATwAAAE8AAAAPAAAAHAAAAQ8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAABAAAAAQAAAAFAAAABAAAAQQAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABeAAAAAAAAAAQAAAIEAAACBAAAAAQAAAAEAAACBAAAAAQAAAEEAAABBAAAAQQAAAFfAAAATwAAAF8AAABfAAAAAAAAAAAAAAAEAAACBAAAAQQAAAAEAAABBAAAAQQAAAAEAAACBAAAAAQAAAEEAAACXwAAAE8AAABfAAAAXwAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAgQAAAAEAAACBAAAAgQAAAAEAAACBAAAAl8AAABPAAAAXwAAAF8AAAAEAAABBAAAAAQAAAAEAAACBAAAAQQAAAIEAAACBAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAQQAAAEEAAABBAAAAgQAAAEEAAACBAAAAgQAAAFfAAAASAAAAEgAAABIAAAASAAAAF8AAABfAAAAXwAAAAQAAAEEAAAABAAAAgQAAAEEAAABBAAAAgQAAAEEAAAAXwAAAEgAAABIAAAASAAAAEgAAABfAAAAXwAAAF8AAAAEAAACBAAAAQQAAAAEAAABBAAAAgQAAAAEAAAABAAAAV8AAABIAAAASAAAAEgAAABIAAAAXwAAAF8AAABfAAAABAAAAAQAAAEEAAACBAAAAQQAAAEEAAAABAAAAgQAAAJfAAAASAAAAEgAAABIAAAASAAAAFAAAABfAAAAXwAAAA== -4,-2: ind: -4,-2 - tiles: BAAAAQQAAAEEAAABBAAAAQQAAAEEAAACBAAAAgQAAAFeAAAARwAAAEcAAABHAAAARwAAAF4AAABeAAAAXgAAAAQAAAIEAAACBAAAAQQAAAIEAAABBAAAAQQAAAEEAAABXgAAAF4AAABeAAAARwAAAEcAAABeAAAAXgAAAF4AAAAEAAAABAAAAAQAAAIEAAACBAAAAQQAAAIEAAABBAAAAgQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAUAAAAEAAACBAAAAgQAAAAEAAABBAAAAQQAAAIEAAABBAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAACBAAAAgQAAAAFAAAABAAAAAQAAAIEAAAABAAAAQQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAgQAAAEEAAABBAAAAAQAAAAEAAABBAAAAAQAAAEEAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAIEAAAABAAAAAQAAAEEAAACBAAAAAQAAAEEAAACBAAAAF4AAABOAAAAXgAAAF4AAABEAAAARAAAAQoAAAAKAAAABAAAAgQAAAEEAAACBAAAAQQAAAIEAAACBAAAAgQAAAFeAAAATgAAAF4AAABeAAAARAAAAkoAAAMKAAAACgAAAAoAAAAKAAAABAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJKAAACBAAAAQQAAAAKAAAACgAAAAQAAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAARAAAA0QAAAJEAAABRAAAAkQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAJVAAAAVQAAA1UAAAFVAAACRAAAA14AAABeAAAAXgAAAE8AAABPAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAAAVQAAA1UAAABVAAABVQAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAFUAAABVAAAAVQAAAVUAAAJEAAABXgAAAA== + tiles: BAAAAQQAAAEEAAABBAAAAQQAAAEEAAACBAAAAgQAAAFfAAAASAAAAEgAAABIAAAASAAAAF8AAABfAAAAXwAAAAQAAAIEAAACBAAAAQQAAAIEAAABBAAAAQQAAAEEAAABXwAAAF8AAABfAAAASAAAAEgAAABfAAAAXwAAAF8AAAAEAAAABAAAAAQAAAIEAAACBAAAAQQAAAIEAAABBAAAAgQAAAAEAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAAUAAAAEAAACBAAAAgQAAAAEAAABBAAAAQQAAAIEAAABBAAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAAEAAACBAAAAgQAAAAFAAAABAAAAAQAAAIEAAAABAAAAQQAAAJfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAACBAAAAgQAAAEEAAABBAAAAAQAAAAEAAABBAAAAAQAAAEEAAAAXwAAAE8AAABfAAAAXwAAAF8AAABfAAAABAAAAgQAAAIEAAAABAAAAAQAAAEEAAACBAAAAAQAAAEEAAACBAAAAF8AAABPAAAAXwAAAF8AAABFAAAARQAAAQoAAAAKAAAABAAAAgQAAAEEAAACBAAAAQQAAAIEAAACBAAAAgQAAAFfAAAATwAAAF8AAABfAAAARQAAAksAAAMKAAAACgAAAAoAAAAKAAAABAAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAJLAAACBAAAAQQAAAAKAAAACgAAAAQAAABfAAAAXwAAAF8AAABPAAAATwAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABfAAAAUAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAATwAAAF8AAABfAAAARQAAA0UAAAJFAAABRQAAAkUAAAFFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAE8AAABfAAAAXwAAAEUAAAJWAAAAVgAAA1YAAAFWAAACRQAAA18AAABfAAAAXwAAAFAAAABQAAAAXwAAAF8AAABPAAAAXwAAAF8AAABFAAAAVgAAA1YAAABWAAABVgAAA0UAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAFYAAABWAAAAVgAAAVYAAAJFAAABXwAAAA== -4,-1: ind: -4,-1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAFUAAABVAAACVQAAAlUAAANEAAABXgAAAEQAAANEAAAARAAAAUQAAANEAAADRAAAA0QAAANEAAABXgAAAEQAAANEAAADRAAAAUQAAAFEAAAARAAAAl4AAABEAAAASwAAAEsAAABLAAAASwAAAEsAAABEAAADRAAAAF4AAABeAAAARAAAAl4AAABeAAAARAAAAl4AAABeAAAARAAAAUsAAAApAAADKQAAAikAAAJLAAAARAAAAEQAAAFEAAABRAAAAkQAAANEAAAARAAAA0QAAAFEAAAARAAAA0QAAANLAAAASwAAAEsAAABLAAAASwAAAEQAAAJEAAACRAAAAkQAAANEAAABRAAAA0QAAABEAAAARAAAAEQAAABEAAACRAAAA0QAAAJEAAAARAAAAEQAAAJEAAACRAAAA0QAAABEAAABRAAAAEQAAAJEAAACRAAAAUQAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAgQAAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEFAAAABAAAAgQAAAAEAAAABAAAAAQAAAFeAAAABAAAAgUAAAAEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAgQAAAEEAAAABAAAAAQAAAEEAAAAXgAAAAQAAAIEAAACBAAAAV4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAAEAAABBAAAAAQAAAEEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARQAAAFYAAABWAAACVgAAAlYAAANFAAABXwAAAEUAAANFAAAARQAAAUUAAANFAAADRQAAA0UAAANFAAABXwAAAEUAAANFAAADRQAAAUUAAAFFAAAARQAAAl8AAABFAAAATAAAAEwAAABMAAAATAAAAEwAAABFAAADRQAAAF8AAABfAAAARQAAAl8AAABfAAAARQAAAl8AAABfAAAARQAAAUwAAAAqAAADKgAAAioAAAJMAAAARQAAAEUAAAFFAAABRQAAAkUAAANFAAAARQAAA0UAAAFFAAAARQAAA0UAAANMAAAATAAAAEwAAABMAAAATAAAAEUAAAJFAAACRQAAAkUAAANFAAABRQAAA0UAAABFAAAARQAAAEUAAABFAAACRQAAA0UAAAJFAAAARQAAAEUAAAJFAAACRQAAA0UAAABFAAABRQAAAEUAAAJFAAACRQAAAUUAAABFAAADXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAAABAAAAgQAAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAEFAAAABAAAAgQAAAAEAAAABAAAAAQAAAFfAAAABAAAAgUAAAAEAAABXwAAAF8AAABfAAAAXwAAAF8AAAAEAAABBAAAAgQAAAEEAAAABAAAAAQAAAEEAAAAXwAAAAQAAAIEAAACBAAAAV8AAABfAAAAXwAAAF8AAABfAAAABAAAAQQAAAAEAAABBAAAAAQAAAEEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,1: ind: -3,1 - tiles: BAAAAAQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAFAAAABAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEEAAABXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAAQAAAAEAAAABAAAAgQAAAEEAAAABAAAAQQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAEEAAACBQAAAAQAAAIEAAACBAAAAQUAAAAEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAIEAAAABAAAAAQAAAAEAAABBAAAAQQAAAEEAAABBAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAABAAAAAQAAAAEAAACBAAAAAQAAAAEAAAABAAAAQQAAAEEAAABBAAAAV0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAQAAAAEAAABBAAAAgQAAAAEAAACBAAAAAQAAAEEAAABBAAAAgQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAEAAAABAAAAgQAAAIEAAACBAAAAAQAAAIEAAABBAAAAgQAAAEEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAABAAAAQQAAAEEAAACBAAAAQQAAAIEAAABBAAAAQQAAAIEAAAABAAAAV4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAQAAAEEAAABBAAAAAQAAAAEAAAABAAAAAQAAAIEAAAABAAAAgQAAAAEAAABBAAAAQQAAAIEAAACBAAAAgAAAAAAAAAABAAAAAQAAAIEAAACBAAAAAQAAAAEAAACBAAAAAQAAAAEAAAABQAAAAQAAAIEAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAgQAAAAEAAABBAAAAQQAAAAEAAACBAAAAgQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAgQAAAAEAAAABAAAAA== + tiles: BAAAAAQAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAEEAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAFAAAABAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAAQAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAEEAAABXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAEAAABBAAAAAQAAAAEAAAABAAAAgQAAAEEAAAABAAAAQQAAAFfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAABAAAAgQAAAEEAAACBQAAAAQAAAIEAAACBAAAAQUAAAAEAAACXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAQAAAIEAAAABAAAAAQAAAAEAAABBAAAAQQAAAEEAAABBAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAABAAAAAQAAAAEAAACBAAAAAQAAAAEAAAABAAAAQQAAAEEAAABBAAAAV4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAQAAAAEAAABBAAAAgQAAAAEAAACBAAAAAQAAAEEAAABBAAAAgQAAAFfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAEAAAABAAAAgQAAAIEAAACBAAAAAQAAAIEAAABBAAAAgQAAAEEAAABXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAABAAAAQQAAAEEAAACBAAAAQQAAAIEAAABBAAAAQQAAAIEAAAABAAAAV8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAQAAAEEAAABBAAAAAQAAAAEAAAABAAAAAQAAAIEAAAABAAAAgQAAAAEAAABBAAAAQQAAAIEAAACBAAAAgAAAAAAAAAABAAAAAQAAAIEAAACBAAAAAQAAAAEAAACBAAAAAQAAAAEAAAABQAAAAQAAAIEAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAgQAAAAEAAABBAAAAQQAAAAEAAACBAAAAgQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAgQAAAAEAAAABAAAAA== -2,1: ind: -2,1 - tiles: XgAAAF4AAABeAAAABAAAAF4AAABeAAAAXgAAAF4AAAAGAAAABAAAAQQAAAEEAAABBAAAAAQAAAIEAAAAAAAAAF4AAABeAAAAXgAAAAQAAAFeAAAAXgAAAF4AAABeAAAABgAAAAQAAAAEAAAABAAAAQQAAAAEAAACAAAAAAAAAABeAAAAXgAAAF4AAAAEAAAAXgAAAF4AAABeAAAAXgAAAAYAAAAEAAAABAAAAgQAAAIFAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAABAAAAgYAAAAGAAAAXgAAAAYAAAAGAAAABAAAAQQAAAEEAAABBAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAQAAAEEAAAABAAAAAQAAAIEAAAABAAAAQQAAAAEAAABBAAAAAQAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAEAAAABAAAAQQAAAAEAAAABAAAAgQAAAAEAAABBAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAABAAAAAQAAAIEAAABBAAAAAQAAAIEAAACBAAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAQAAAEEAAACBAAAAgQAAAIEAAACBAAAAgQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAAEAAAABAAAAAQAAAAEAAABBAAAAAQAAAIEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAABBQAAAAQAAAIEAAABBAAAAAQAAAIEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAgQAAAEEAAAABAAAAgQAAAIEAAAABAAAAAQAAAEEAAABAAAAAF0AAABdAAAAXQAAAF0AAAAEAAACBAAAAQQAAAAEAAAABAAAAAQAAAEEAAACBAAAAgQAAAEEAAABBAAAAQAAAABdAAAAXQAAAF0AAABdAAAABAAAAgQAAAIEAAAABAAAAgQAAAEEAAAABAAAAQQAAAIEAAABBAAAAgQAAAIAAAAAXQAAAF0AAABdAAAAXQAAAAQAAAAEAAACBAAAAAQAAAIEAAAABAAAAgQAAAEEAAACBAAAAQQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAIEAAABBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAABAAAAgYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAA== + tiles: XwAAAF8AAABfAAAABAAAAF8AAABfAAAAXwAAAF8AAAAGAAAABAAAAQQAAAEEAAABBAAAAAQAAAIEAAAAAAAAAF8AAABfAAAAXwAAAAQAAAFfAAAAXwAAAF8AAABfAAAABgAAAAQAAAAEAAAABAAAAQQAAAAEAAACAAAAAAAAAABfAAAAXwAAAF8AAAAEAAAAXwAAAF8AAABfAAAAXwAAAAYAAAAEAAAABAAAAgQAAAIFAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAABAAAAgYAAAAGAAAAXwAAAAYAAAAGAAAABAAAAQQAAAEEAAABBAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAQAAAEEAAAABAAAAAQAAAIEAAAABAAAAQQAAAAEAAABBAAAAAQAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAEAAAABAAAAQQAAAAEAAAABAAAAgQAAAAEAAABBAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAABAAAAAQAAAIEAAABBAAAAAQAAAIEAAACBAAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAQAAAEEAAACBAAAAgQAAAIEAAACBAAAAgQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAAEAAAABAAAAAQAAAAEAAABBAAAAAQAAAIEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAABBQAAAAQAAAIEAAABBAAAAAQAAAIEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAgQAAAEEAAAABAAAAgQAAAIEAAAABAAAAAQAAAEEAAABAAAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAQQAAAAEAAAABAAAAAQAAAEEAAACBAAAAgQAAAEEAAABBAAAAQAAAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAIEAAAABAAAAgQAAAEEAAAABAAAAQQAAAIEAAABBAAAAgQAAAIAAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAACBAAAAAQAAAIEAAAABAAAAgQAAAEEAAACBAAAAQQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAIEAAABBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAABAAAAgYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAA== -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAEFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAABBAAAAgQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAACBAAAAQQAAAEEAAABBAAAAAQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAAQAAAIEAAABBAAAAAQAAAEEAAABBAAAAV0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAIEAAABBQAAAAQAAAAEAAACBAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAIEAAAABAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAIEAAAABAAAAQQAAABeAAAAWwAAAlsAAAFbAAABWwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAUAAAAEAAAABAAAAQQAAAEEAAABXgAAAFsAAANbAAADWwAAAFsAAABdAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAABBAAAAgQAAAIEAAAABAAAAF4AAABbAAACWwAAAlsAAAFbAAABAAAAAAAAAAAAAAAABAAAAQQAAAEEAAAABAAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAANbAAAAWwAAAg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAEFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAABBAAAAgQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAACBAAAAQQAAAEEAAABBAAAAAQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAAQAAAIEAAABBAAAAAQAAAEEAAABBAAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAIEAAABBQAAAAQAAAAEAAACBAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAIEAAAABAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAIEAAAABAAAAQQAAABfAAAAXAAAAlwAAAFcAAABXAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAUAAAAEAAAABAAAAQQAAAEEAAABXwAAAFwAAANcAAADXAAAAFwAAABeAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAABBAAAAgQAAAIEAAAABAAAAF8AAABcAAACXAAAAlwAAAFcAAABAAAAAAAAAAAAAAAABAAAAQQAAAEEAAAABAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAAVwAAANcAAAAXAAAAg== -5,-1: ind: -5,-1 - tiles: AAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAQAAAIEAAACBAAAAAQAAAEEAAABXgAAAE4AAABeAAAATwAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAQAAAAEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAEAAAABAAAAV4AAAAWAAAAFgAAARYAAAMWAAAAFgAAA14AAABEAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAJeAAAAFgAAAhYAAAIWAAABFgAAAhYAAABKAAABRAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABXgAAABYAAAIWAAADFgAAAhYAAAEWAAAAXgAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAV4AAAAWAAACFgAAAxYAAAIWAAADFgAAA14AAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAIAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQUAAAAEAAAABAAAAV4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAAQAAAJeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAQAAAIEAAACBAAAAAQAAAEEAAABXwAAAE8AAABfAAAAUAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAQAAAAEAAABXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAEUAAAFeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAEAAAABAAAAV8AAAAXAAAAFwAAARcAAAMXAAAAFwAAA18AAABFAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAJfAAAAFwAAAhcAAAIXAAABFwAAAhcAAABLAAABRQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABXwAAABcAAAIXAAADFwAAAhcAAAEXAAAAXwAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAV8AAAAXAAACFwAAAxcAAAIXAAADFwAAA18AAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAIAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQUAAAAEAAAABAAAAV8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAAQAAAJfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,-2: ind: -5,-2 - tiles: AAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIEAAABAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAABAAAAAQAAAIEAAABBAAAAV0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAEAAACBAAAAQQAAAIEAAABBAAAAgUAAAAEAAACAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAABAAAAAQAAAEEAAAABAAAAQAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAAQAAAIEAAACBAAAAgQAAAIAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAAEAAABBAAAAgQAAAAEAAACAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEFAAAABAAAAgQAAAIEAAACBAAAAQAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAABBAAAAl4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAQQAAAFeAAAATgAAAE4AAABOAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAQQAAAEEAAABXgAAAE4AAABOAAAAXgAAAA== + tiles: AAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIEAAABAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAABAAAAAQAAAIEAAABBAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAEAAACBAAAAQQAAAIEAAABBAAAAgUAAAAEAAACAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAABAAAAAQAAAEEAAAABAAAAQAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAAQAAAIEAAACBAAAAgQAAAIAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAAEAAABBAAAAgQAAAAEAAACAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEFAAAABAAAAgQAAAIEAAACBAAAAQAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAABBAAAAl8AAABfAAAAXwAAAF8AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAQQAAAFfAAAATwAAAE8AAABPAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAQQAAAEEAAABXwAAAE8AAABPAAAAXwAAAA== -4,0: ind: -4,0 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAA== @@ -213,7 +215,7 @@ entities: tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAEEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,2: ind: -2,2 - tiles: BAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,2: ind: 1,2 tiles: AAAAAAAAAAAAAAAAAAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== @@ -222,40 +224,40 @@ entities: tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIFAAAABAAAAgQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAEEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAAEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAgQAAAAEAAABBQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAAEAAABXwAAAF8AAABfAAAAXwAAAF8AAAAEAAACBAAAAgQAAAAEAAABBQAAAA== -5,-3: ind: -5,-3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAAAAAABdAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABHAAAARwAAAF4AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQ== + tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAAAAAABeAAAAXgAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABIAAAASAAAAF8AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAAAAAAAAXgAAAF4AAAAAAAAAXwAAAF8AAABfAAAASAAAAF8AAABfAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABIAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQ== -6,-3: ind: -6,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABHAAAARwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAASAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABIAAAASAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEgAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAA== -2,-6: ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,-6: ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAA== -5,-4: ind: -5,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAEgAAABfAAAAXwAAAF8AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== -6,-4: ind: -6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAEcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARwAAAEcAAABHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAASAAAAEgAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAASAAAAF8AAABfAAAAXwAAAA== -6,-2: ind: -6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAA== -6,-1: ind: -6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,1: ind: -1,1 - tiles: XQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAA== + tiles: XgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAA== -1,2: ind: -1,2 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -263,7 +265,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - type: OccluderTree - type: Shuttle - gravityShakeSound: !type:SoundPathSpecifier @@ -272,12 +275,6 @@ entities: - 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' @@ -285,6 +282,12 @@ entities: decals: 2767: -31.248856,-18.00287 2768: -30.815523,-18.00287 + - node: + color: '#DE3A3A96' + id: ArrowsGreyscale + decals: + 2769: -29.218893,-17.986204 + 2770: -28.793892,-17.994537 - node: color: '#FFFFFFFF' id: Basalt1 @@ -300,15 +303,6 @@ entities: 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 @@ -337,11 +331,14 @@ entities: 1391: -4,-20 2754: -12,-25 - node: - angle: 3.141592653589793 rad - color: '#334E6DC8' - id: BotLeftGreyscale + color: '#FFFFFFFF' + id: Bot decals: - 1164: -5,-10 + 1227: 4,-51 + 1360: 47,1 + 1361: 47,4 + 1362: 47,-8 + 1363: 47,-5 - node: color: '#334E6DC8' id: BotLeftGreyscale @@ -349,6 +346,12 @@ entities: 1158: -2,-10 1159: -3,-10 1160: -4,-10 + - node: + angle: 3.141592653589793 rad + color: '#334E6DC8' + id: BotLeftGreyscale + decals: + 1164: -5,-10 - node: color: '#FFFFFFFF' id: Box @@ -764,6 +767,19 @@ entities: id: BrickTileSteelInnerSw decals: 275: 16,-38 + - 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: BrickTileSteelLineE @@ -788,19 +804,6 @@ entities: 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 @@ -912,6 +915,12 @@ entities: 1156: -63,-13 1282: -54,-17 1283: -54,-18 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 548: 0,4 + 1264: -18,-1 - node: color: '#A4610696' id: BrickTileWhiteCornerNe @@ -926,10 +935,16 @@ entities: 1172: -5,-26 - node: color: '#334E6DC8' - id: BrickTileWhiteCornerNe + id: BrickTileWhiteCornerNw decals: - 548: 0,4 - 1264: -18,-1 + 538: -10,4 + 1263: -23,-1 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNw + decals: + 260: 11,-40 + 298: 12,-34 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw @@ -937,41 +952,23 @@ entities: 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: '#A4610696' + id: BrickTileWhiteCornerSe + decals: + 258: 14,-43 - 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 @@ -984,22 +981,17 @@ entities: decals: 259: 11,-43 294: 16,-39 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 697: -25,-17 + 1180: -12,-27 - 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 @@ -1011,11 +1003,23 @@ entities: id: BrickTileWhiteInnerNe decals: 300: 13,-35 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 188: -23,-32 + 377: 13,12 - node: color: '#FFFFFFFF' + id: BrickTileWhiteInnerNe + decals: + 1171: -6,-26 + - node: + color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 1186: -8,-25 + 467: 5,2 + 1235: -16,-3 - node: color: '#A4610696' id: BrickTileWhiteInnerNw @@ -1028,11 +1032,10 @@ entities: 376: 16,12 515: -16,-34 - node: - color: '#334E6DC8' + color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 467: 5,2 - 1235: -16,-3 + 1186: -8,-25 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe @@ -1055,27 +1058,17 @@ entities: 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 + color: '#DE3A3A96' + id: BrickTileWhiteInnerSw decals: - 803: -33,-19 - 804: -33,-18 - 805: -33,-17 - 806: -33,-16 - 807: -33,-15 - 1170: -6,-25 + 379: 16,11 + 514: -16,-32 - node: color: '#334E6DC8' id: BrickTileWhiteLineE @@ -1092,6 +1085,11 @@ entities: 1435: -67,-12 1436: -67,-13 1437: -67,-14 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 2849: -55,-47 - node: color: '#A4610696' id: BrickTileWhiteLineE @@ -1103,17 +1101,6 @@ entities: 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 @@ -1131,6 +1118,23 @@ entities: 1002: -15,-52 1003: -15,-51 2852: -55,-48 + - node: + color: '#D4D4D426' + id: BrickTileWhiteLineE + decals: + 2845: -53,-46 + 2846: -53,-44 + - node: + color: '#D4D4D428' + id: BrickTileWhiteLineE + decals: + 2854: -55,-43 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 186: -23,-31 + 2848: -55,-42 - node: color: '#EFB34196' id: BrickTileWhiteLineE @@ -1140,16 +1144,45 @@ entities: 868: -37,-8 869: -37,-9 - node: - color: '#52B4E996' + color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 2849: -55,-47 + 803: -33,-19 + 804: -33,-18 + 805: -33,-17 + 806: -33,-16 + 807: -33,-15 + 1170: -6,-25 - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineE + color: '#334E6DC8' + id: BrickTileWhiteLineN decals: - 186: -23,-31 - 2848: -55,-42 + 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: '#52B4E996' id: BrickTileWhiteLineN @@ -1185,55 +1218,6 @@ entities: 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 @@ -1298,35 +1282,119 @@ entities: 929: -31,4 931: -30,-1 - node: - color: '#334E6DC8' + color: '#FF9F4196' 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 + 675: -27,-15 + 676: -26,-15 + 677: -25,-15 + 678: -24,-15 + 679: -23,-15 + 680: -22,-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: '#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: '#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: '#A4610696' id: BrickTileWhiteLineS @@ -1339,15 +1407,32 @@ entities: 291: 14,-38 292: 15,-38 - node: - color: '#FF9F4196' + color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 681: -27,-19 - 682: -26,-19 - 683: -25,-18 - 684: -24,-18 - 685: -23,-18 - 686: -22,-18 + 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: BrickTileWhiteLineS @@ -1369,6 +1454,16 @@ entities: 1012: -32,-4 1013: -31,-4 1014: -30,-4 + - 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: '#FFFFFFFF' id: BrickTileWhiteLineS @@ -1409,107 +1504,36 @@ entities: 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 + 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: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 830: -27,-29 + 831: -27,-30 + 832: -27,-31 + 833: -27,-32 + 834: -27,-33 + 835: -27,-34 - node: color: '#9FED5896' id: BrickTileWhiteLineW @@ -1549,15 +1573,14 @@ entities: decals: 513: -16,-33 - node: - color: '#52B4E996' + color: '#EFB34196' id: BrickTileWhiteLineW decals: - 830: -27,-29 - 831: -27,-30 - 832: -27,-31 - 833: -27,-32 - 834: -27,-33 - 835: -27,-34 + 870: -39,-6 + 871: -39,-7 + 872: -39,-8 + 873: -39,-9 + 2851: -55,-43 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW @@ -1574,26 +1597,6 @@ entities: 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 @@ -1733,34 +1736,281 @@ entities: decals: 1161: -1,-10 - node: - color: '#F9801DFF' + cleanable: True + color: '#A4610641' 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 + 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: - color: '#F9801D98' + cleanable: True + color: '#A461067F' 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 + 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: '#A4610696' @@ -2329,281 +2579,34 @@ entities: 2752: -18,-30 2753: -18,-31 - node: - cleanable: True - color: '#A461067F' + color: '#F9801D98' id: Dirt decals: - 1857: -54,-34 - 1858: -52,-33 - 1859: -52,-32 - 1860: -53,-36 - 1861: -55,-36 - 1862: -53,-33 - 1863: -53,-32 + 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: '#A4610641' + color: '#F9801DFF' 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 + 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: cleanable: True color: '#A461067F' @@ -3192,6 +3195,15 @@ entities: 56: -4,-79 57: -3,-79 70: -2,-79 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 793: -35,-19 + 794: -35,-18 + 795: -35,-17 + 796: -35,-16 + 797: -35,-15 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 @@ -3215,15 +3227,6 @@ entities: 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 @@ -3233,12 +3236,6 @@ entities: 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 @@ -3250,6 +3247,12 @@ entities: 98: -5,-64 631: -5,-59 632: -5,-60 + - node: + color: '#D4D4D419' + id: HalfTileOverlayGreyscale90 + decals: + 2837: -53,-44 + 2838: -53,-46 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -3257,6 +3260,11 @@ entities: decals: 1121: 18,-35 1122: 18,-39 + - node: + color: '#334E6DC8' + id: LoadingAreaGreyscale + decals: + 1162: -1,-11 - node: angle: 3.141592653589793 rad color: '#334E6DC8' @@ -3265,21 +3273,24 @@ entities: 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 + 2823: -57,-45 + 2824: -56,-45 + 2825: -55,-45 + 2826: -54,-45 + - 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: '#52B4E9CB' id: MiniTileCheckerAOverlay @@ -3301,13 +3312,15 @@ entities: 1280: -54,-19 1287: -51,-19 - node: - color: '#334E6DC8' + color: '#D381C996' id: MiniTileCheckerAOverlay decals: - 2823: -57,-45 - 2824: -56,-45 - 2825: -55,-45 - 2826: -54,-45 + 1215: -3,-51 + 1216: -2,-51 + 1217: -3,-52 + 1218: -2,-52 + 1219: -3,-53 + 1220: -2,-53 - node: color: '#DE3A3A96' id: MiniTileCheckerAOverlay @@ -3333,27 +3346,17 @@ entities: 429: 16,-2 430: 17,-2 - node: - color: '#D381C996' + color: '#EFB34196' 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 + 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: '#A4610696' id: MiniTileCheckerBOverlay @@ -3367,16 +3370,6 @@ entities: 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 @@ -3395,6 +3388,49 @@ entities: 612: -1,8 613: -2,7 614: -1,7 + - 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: '#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: 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: '#EFB34196' id: QuarterTileOverlayGreyscale @@ -3415,39 +3451,27 @@ entities: 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 + id: QuarterTileOverlayGreyscale180 decals: - 516: -20,-14 - 517: -20,-15 - 518: -20,-16 - 519: -20,-17 - 525: -16,-15 + 520: -20,-17 + 521: -19,-17 + 522: -18,-17 + 523: -17,-17 + 524: -18,-13 - node: color: '#A4610696' - id: QuarterTileOverlayGreyscale + id: QuarterTileOverlayGreyscale180 decals: - 311: 8,-40 - 312: 8,-39 + 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: '#D381C996' id: QuarterTileOverlayGreyscale180 @@ -3462,18 +3486,6 @@ entities: 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 @@ -3483,15 +3495,6 @@ entities: 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 @@ -3512,12 +3515,6 @@ entities: 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 @@ -3527,25 +3524,17 @@ entities: 221: 9,-41 313: 8,-38 314: 8,-37 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 163: -10,-46 + 164: -9,-46 - 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 @@ -3565,16 +3554,30 @@ entities: 201: -22,-34 527: -18,-15 - node: - color: '#DE3A3A96' + color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 317: 6,-11 + 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: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: 167: -11,-48 168: -12,-48 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 317: 6,-11 - node: color: '#9FED5866' id: Rock05 @@ -3663,6 +3666,24 @@ entities: decals: 44: 18,-40 45: 17,-40 + - 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: '#DE3A3A96' id: StandClearGreyscale @@ -3688,24 +3709,6 @@ entities: 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 @@ -5551,12 +5554,11 @@ entities: - id: Moose type: BecomesStation - type: RadiationGridResistance - - nextShake: 0 - shakeTimes: 10 + - shakeTimes: 10 type: GravityShake - type: GasTileOverlay - - nextUpdate: 0 - type: SpreaderGrid + - type: SpreaderGrid + - type: GridPathfinding - uid: 10465 components: - type: MetaData @@ -5566,7 +5568,7 @@ entities: - chunks: 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAABbAAAAWwAAAFsAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAWwAAAFsAAABbAAAAWwAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAABcAAAAXAAAAFwAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAXAAAAFwAAABcAAAAXAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -5574,7 +5576,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - type: OccluderTree - type: Shuttle - gravityShakeSound: !type:SoundPathSpecifier @@ -5652,8 +5655,8 @@ entities: type: GridAtmosphere - type: RadiationGridResistance - type: GasTileOverlay - - nextUpdate: 0 - type: SpreaderGrid + - type: SpreaderGrid + - type: GridPathfinding - uid: 13645 components: - type: MetaData @@ -5666,10 +5669,10 @@ entities: tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAF4AAAAEAAAAXgAAAAQAAABeAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAF8AAAAEAAAAXwAAAAQAAABfAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: XgAAAEEAAABeAAAAXgAAAF4AAABBAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABBAAAAPwAAAEEAAAA/AAAAQQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAQQAAAD8AAABBAAAAPwAAAEEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAQAAAA/AAAAQQAAAD8AAABBAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAQQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XwAAAEIAAABfAAAAXwAAAF8AAABCAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABCAAAAQAAAAEIAAABAAAAAQgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAQgAAAEAAAABCAAAAQAAAAEIAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAQAAABAAAAAQgAAAEAAAABCAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAQgAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,0: ind: -1,0 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== @@ -5680,7 +5683,8 @@ entities: fixedRotation: False bodyType: Dynamic type: Physics - + - fixtures: {} + type: Fixtures - type: OccluderTree - type: Shuttle - gravityShakeSound: !type:SoundPathSpecifier @@ -5737,8 +5741,8 @@ entities: type: GridAtmosphere - type: RadiationGridResistance - type: GasTileOverlay - - nextUpdate: 0 - type: SpreaderGrid + - type: SpreaderGrid + - type: GridPathfinding - proto: AcousticGuitarInstrument entities: - uid: 4891 @@ -6965,28 +6969,24 @@ entities: 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 @@ -6995,28 +6995,24 @@ entities: 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 @@ -7025,56 +7021,48 @@ entities: 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 @@ -7919,7 +7907,7 @@ entities: - pos: -33.5,-54.5 parent: 6 type: Transform -- proto: AMEController +- proto: AmeController entities: - uid: 4894 components: @@ -13089,8 +13077,6 @@ entities: - pos: 11.488698,18.472113 parent: 6 type: Transform - - nextAttack: 2458.7068358 - type: MeleeWeapon - proto: BassGuitarInstrument entities: - uid: 3971 @@ -13374,61 +13360,41 @@ entities: - pos: 23.5,-34.5 parent: 6 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5600 - type: SignalReceiver + - links: + - 5600 + type: DeviceLinkSink - uid: 1265 components: - pos: 23.5,-38.5 parent: 6 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5601 - type: SignalReceiver + - links: + - 5601 + type: DeviceLinkSink - uid: 1266 components: - pos: 20.5,-38.5 parent: 6 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5601 - type: SignalReceiver + - links: + - 5601 + type: DeviceLinkSink - uid: 1267 components: - pos: 20.5,-34.5 parent: 6 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5600 - type: SignalReceiver + - links: + - 5600 + type: DeviceLinkSink - uid: 2968 components: - pos: -55.5,-34.5 parent: 6 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13052 - type: SignalReceiver + - links: + - 13052 + type: DeviceLinkSink - uid: 3511 components: - pos: 48.5,-4.5 @@ -13474,123 +13440,80 @@ entities: - pos: -7.5,-65.5 parent: 6 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3656 - - port: Pressed - uid: 3655 - type: SignalReceiver + - links: + - 3655 + - 3656 + type: DeviceLinkSink - 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 + - links: + - 3655 + - 3656 + type: DeviceLinkSink - 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 + - links: + - 3655 + - 3656 + type: DeviceLinkSink - 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 + - links: + - 3655 + - 3656 + type: DeviceLinkSink - 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 + - links: + - 3655 + - 3656 + type: DeviceLinkSink - 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 + - links: + - 3655 + - 3656 + type: DeviceLinkSink - 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 + - links: + - 4909 + - 4910 + type: DeviceLinkSink - uid: 6386 components: - pos: -6.5,-82.5 parent: 6 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6388 - type: SignalReceiver + - links: + - 6388 + type: DeviceLinkSink - uid: 6387 components: - pos: -2.5,-82.5 parent: 6 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6389 - type: SignalReceiver + - links: + - 6389 + type: DeviceLinkSink - proto: BodyBag_Folded entities: - uid: 7443 @@ -38328,593 +38251,439 @@ entities: 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 @@ -39389,16 +39158,12 @@ entities: 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 @@ -39595,6 +39360,10 @@ entities: occludes: True ents: - 3188 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null type: ContainerContainer - uid: 5852 components: @@ -39626,6 +39395,10 @@ entities: ents: - 5851 - 5958 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null type: ContainerContainer - proto: ClosetEmergencyFilledRandom entities: @@ -42887,176 +42660,130 @@ entities: - 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 @@ -43417,34 +43144,18 @@ entities: 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 + - links: + - 13053 + type: DeviceLinkSink - 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 + - links: + - 13053 + type: DeviceLinkSink - type: ActiveConveyor - uid: 5435 components: @@ -43452,272 +43163,144 @@ entities: 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 + - links: + - 13053 + type: DeviceLinkSink - 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 + - links: + - 13053 + type: DeviceLinkSink - 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 + - links: + - 13053 + type: DeviceLinkSink - 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 + - links: + - 13053 + type: DeviceLinkSink - 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 + - links: + - 13053 + type: DeviceLinkSink - 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 + - links: + - 13053 + type: DeviceLinkSink - 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 + - links: + - 6520 + type: DeviceLinkSink - 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 + - links: + - 6520 + type: DeviceLinkSink - 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 + - links: + - 6520 + type: DeviceLinkSink - 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 + - links: + - 6520 + type: DeviceLinkSink - 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 + - links: + - 6520 + type: DeviceLinkSink - 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 + - links: + - 6520 + type: DeviceLinkSink - 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 + - links: + - 6520 + type: DeviceLinkSink - 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 + - links: + - 6520 + type: DeviceLinkSink - 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 + - links: + - 6520 + type: DeviceLinkSink - 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 + - links: + - 6520 + type: DeviceLinkSink - proto: CowToolboxFilled entities: - uid: 10897 @@ -49429,32 +49012,37 @@ entities: - 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 @@ -49571,8 +49159,6 @@ entities: - pos: 21.361864,-25.670048 parent: 6 type: Transform - - nextAttack: 8133.9348649 - type: MeleeWeapon - proto: FoodBakedBunHoney entities: - uid: 13464 @@ -49925,43 +49511,31 @@ entities: 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 @@ -50002,43 +49576,31 @@ entities: 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 @@ -50050,16 +49612,12 @@ entities: 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 @@ -50068,55 +49626,41 @@ entities: 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 @@ -50125,32 +49669,24 @@ entities: 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 @@ -50159,79 +49695,59 @@ entities: 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 @@ -50239,31 +49755,23 @@ entities: - 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 @@ -50272,8 +49780,6 @@ entities: pos: -35.5,12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2327 @@ -50282,8 +49788,6 @@ entities: pos: -43.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2328 @@ -50292,8 +49796,6 @@ entities: pos: -43.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2329 @@ -50302,8 +49804,6 @@ entities: pos: -43.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2330 @@ -50312,8 +49812,6 @@ entities: pos: -43.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2331 @@ -50322,8 +49820,6 @@ entities: pos: -43.5,12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2332 @@ -50332,8 +49828,6 @@ entities: pos: -43.5,10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2426 @@ -50341,8 +49835,6 @@ entities: - pos: -34.5,23.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2427 @@ -50351,8 +49843,6 @@ entities: pos: -35.5,23.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2439 @@ -50361,8 +49851,6 @@ entities: pos: -33.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2440 @@ -50370,8 +49858,6 @@ entities: - pos: -32.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 4644 @@ -50379,8 +49865,6 @@ entities: - pos: -28.5,-16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6256 components: - pos: -24.5,-7.5 @@ -50388,8 +49872,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6258 components: - pos: -25.5,-6.5 @@ -50397,8 +49879,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6259 components: - rot: -1.5707963267948966 rad @@ -50407,8 +49887,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6261 components: - rot: 3.141592653589793 rad @@ -50417,8 +49895,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6267 components: - rot: 3.141592653589793 rad @@ -50427,8 +49903,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6308 components: - rot: 1.5707963267948966 rad @@ -50437,15 +49911,11 @@ entities: 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 @@ -50454,8 +49924,6 @@ entities: pos: -82.5,-39.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 8052 @@ -50466,8 +49934,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11278 components: - rot: -1.5707963267948966 rad @@ -50476,8 +49942,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11282 components: - rot: 1.5707963267948966 rad @@ -50486,8 +49950,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11358 components: - rot: 1.5707963267948966 rad @@ -50496,8 +49958,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11424 components: - rot: 1.5707963267948966 rad @@ -50506,8 +49966,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11425 components: - rot: 1.5707963267948966 rad @@ -50516,8 +49974,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11485 components: - pos: -13.5,-18.5 @@ -50525,8 +49981,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11486 components: - rot: 3.141592653589793 rad @@ -50535,8 +49989,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11492 components: - rot: -1.5707963267948966 rad @@ -50545,8 +49997,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11493 components: - rot: -1.5707963267948966 rad @@ -50555,16 +50005,12 @@ entities: 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 @@ -50573,8 +50019,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 11557 @@ -50585,8 +50029,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11571 components: - rot: 3.141592653589793 rad @@ -50595,8 +50037,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11675 components: - rot: 3.141592653589793 rad @@ -50605,8 +50045,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11683 components: - rot: -1.5707963267948966 rad @@ -50615,8 +50053,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11701 components: - rot: 1.5707963267948966 rad @@ -50625,8 +50061,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11744 components: - rot: -1.5707963267948966 rad @@ -50635,8 +50069,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11752 components: - rot: 1.5707963267948966 rad @@ -50645,8 +50077,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11759 components: - pos: 14.5,-4.5 @@ -50654,8 +50084,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11760 components: - rot: 3.141592653589793 rad @@ -50664,8 +50092,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11765 components: - rot: 1.5707963267948966 rad @@ -50674,8 +50100,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11773 components: - pos: 17.5,-6.5 @@ -50683,8 +50107,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11778 components: - pos: 15.5,-3.5 @@ -50692,8 +50114,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11779 components: - rot: 3.141592653589793 rad @@ -50702,8 +50122,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11796 components: - rot: 1.5707963267948966 rad @@ -50712,8 +50130,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11797 components: - rot: -1.5707963267948966 rad @@ -50722,8 +50138,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11817 components: - rot: 1.5707963267948966 rad @@ -50732,8 +50146,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11819 components: - rot: -1.5707963267948966 rad @@ -50742,8 +50154,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11857 components: - rot: 1.5707963267948966 rad @@ -50752,8 +50162,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11858 components: - rot: -1.5707963267948966 rad @@ -50762,8 +50170,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11862 components: - rot: 1.5707963267948966 rad @@ -50772,8 +50178,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11977 components: - rot: -1.5707963267948966 rad @@ -50782,8 +50186,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11980 components: - rot: 3.141592653589793 rad @@ -50792,8 +50194,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11987 components: - rot: 3.141592653589793 rad @@ -50802,8 +50202,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11988 components: - pos: 3.5,-48.5 @@ -50811,8 +50209,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11989 components: - rot: 3.141592653589793 rad @@ -50821,24 +50217,18 @@ entities: 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 @@ -50847,8 +50237,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12052 components: - pos: -42.5,-31.5 @@ -50856,8 +50244,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12084 components: - rot: -1.5707963267948966 rad @@ -50866,8 +50252,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12180 components: - pos: 31.5,5.5 @@ -50875,8 +50259,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12244 components: - rot: -1.5707963267948966 rad @@ -50885,8 +50267,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12245 components: - rot: 1.5707963267948966 rad @@ -50895,8 +50275,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12269 components: - rot: -1.5707963267948966 rad @@ -50905,8 +50283,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12335 components: - pos: 9.5,-14.5 @@ -50914,8 +50290,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12341 components: - rot: 1.5707963267948966 rad @@ -50924,8 +50298,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12359 components: - rot: -1.5707963267948966 rad @@ -50934,8 +50306,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12399 components: - rot: -1.5707963267948966 rad @@ -50944,8 +50314,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12402 components: - rot: 1.5707963267948966 rad @@ -50954,8 +50322,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12406 components: - rot: -1.5707963267948966 rad @@ -50964,8 +50330,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12437 components: - rot: 3.141592653589793 rad @@ -50974,8 +50338,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12438 components: - pos: -6.5,-50.5 @@ -50983,8 +50345,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12457 components: - rot: 3.141592653589793 rad @@ -50993,8 +50353,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12459 components: - rot: 3.141592653589793 rad @@ -51003,8 +50361,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12470 components: - rot: 3.141592653589793 rad @@ -51013,8 +50369,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12479 components: - pos: -5.5,-54.5 @@ -51022,8 +50376,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12532 components: - rot: 3.141592653589793 rad @@ -51032,8 +50384,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 13108 components: - rot: 1.5707963267948966 rad @@ -51042,8 +50392,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - proto: GasPipeFourway @@ -51053,8 +50401,6 @@ entities: - pos: -32.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2443 @@ -51062,8 +50408,6 @@ entities: - pos: -32.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 6255 @@ -51073,8 +50417,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6257 components: - pos: -25.5,-7.5 @@ -51082,8 +50424,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11302 components: - pos: -14.5,-12.5 @@ -51091,8 +50431,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11303 components: - pos: -15.5,-10.5 @@ -51100,8 +50438,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11411 components: - pos: -14.5,-16.5 @@ -51109,8 +50445,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11421 components: - pos: -15.5,-15.5 @@ -51118,8 +50452,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11533 components: - pos: -29.5,-20.5 @@ -51127,8 +50459,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11614 components: - pos: 5.5,-10.5 @@ -51136,8 +50466,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11644 components: - pos: 6.5,-12.5 @@ -51145,8 +50473,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11782 components: - pos: 14.5,-0.5 @@ -51154,8 +50480,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12259 components: - pos: 6.5,-36.5 @@ -51163,8 +50487,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12386 components: - pos: 9.5,-36.5 @@ -51172,8 +50494,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12443 components: - pos: -6.5,-54.5 @@ -51181,8 +50501,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12452 components: - pos: -12.5,-52.5 @@ -51190,8 +50508,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - proto: GasPipeStraight entities: - uid: 682 @@ -51199,22 +50515,16 @@ entities: - 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 @@ -51222,8 +50532,6 @@ entities: - pos: -5.5,-79.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 1454 @@ -51231,8 +50539,6 @@ entities: - pos: -3.5,-79.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 1455 @@ -51240,8 +50546,6 @@ entities: - pos: -1.5,-79.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2177 @@ -51250,8 +50554,6 @@ entities: pos: -35.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2178 @@ -51259,8 +50561,6 @@ entities: - pos: -36.5,17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2179 @@ -51268,8 +50568,6 @@ entities: - pos: -36.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2180 @@ -51279,8 +50577,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2182 @@ -51289,8 +50585,6 @@ entities: pos: -38.5,10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2183 @@ -51299,8 +50593,6 @@ entities: pos: -38.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2184 @@ -51309,8 +50601,6 @@ entities: pos: -38.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2185 @@ -51319,8 +50609,6 @@ entities: pos: -38.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2186 @@ -51329,8 +50617,6 @@ entities: pos: -38.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2187 @@ -51339,8 +50625,6 @@ entities: pos: -38.5,19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2188 @@ -51349,8 +50633,6 @@ entities: pos: -37.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2189 @@ -51359,8 +50641,6 @@ entities: pos: -36.5,9.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2190 @@ -51369,8 +50649,6 @@ entities: pos: -37.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2191 @@ -51379,8 +50657,6 @@ entities: pos: -35.5,13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2192 @@ -51388,8 +50664,6 @@ entities: - pos: -36.5,13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2193 @@ -51397,8 +50671,6 @@ entities: - pos: -36.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2194 @@ -51409,8 +50681,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2195 @@ -51419,8 +50689,6 @@ entities: pos: -38.5,9.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2196 @@ -51429,8 +50697,6 @@ entities: pos: -38.5,12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2197 @@ -51439,8 +50705,6 @@ entities: pos: -38.5,13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2198 @@ -51449,8 +50713,6 @@ entities: pos: -38.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2199 @@ -51459,8 +50721,6 @@ entities: pos: -38.5,17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2200 @@ -51469,8 +50729,6 @@ entities: pos: -38.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2201 @@ -51479,8 +50737,6 @@ entities: pos: -37.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2202 @@ -51489,8 +50745,6 @@ entities: pos: -36.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2203 @@ -51499,8 +50753,6 @@ entities: pos: -36.5,13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2204 @@ -51509,8 +50761,6 @@ entities: pos: -36.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2205 @@ -51519,8 +50769,6 @@ entities: pos: -37.5,12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2206 @@ -51529,8 +50777,6 @@ entities: pos: -37.5,10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2207 @@ -51539,8 +50785,6 @@ entities: pos: -37.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2212 @@ -51548,8 +50792,6 @@ entities: - pos: -34.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2213 @@ -51557,8 +50799,6 @@ entities: - pos: -34.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2216 @@ -51566,8 +50806,6 @@ entities: - pos: -34.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2217 @@ -51575,8 +50813,6 @@ entities: - pos: -34.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2218 @@ -51584,8 +50820,6 @@ entities: - pos: -36.5,19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2219 @@ -51594,8 +50828,6 @@ entities: pos: -36.5,17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2220 @@ -51604,8 +50836,6 @@ entities: pos: -36.5,19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2221 @@ -51614,8 +50844,6 @@ entities: pos: -35.5,19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2224 @@ -51624,8 +50852,6 @@ entities: pos: -35.5,10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2225 @@ -51634,8 +50860,6 @@ entities: pos: -35.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2227 @@ -51644,8 +50868,6 @@ entities: pos: -35.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2228 @@ -51653,8 +50875,6 @@ entities: - pos: -34.5,10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2291 @@ -51663,8 +50883,6 @@ entities: pos: -39.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2292 @@ -51673,8 +50891,6 @@ entities: pos: -39.5,19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2293 @@ -51683,8 +50899,6 @@ entities: pos: -39.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2294 @@ -51693,8 +50907,6 @@ entities: pos: -39.5,17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2295 @@ -51703,8 +50915,6 @@ entities: pos: -39.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2296 @@ -51713,8 +50923,6 @@ entities: pos: -39.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2297 @@ -51723,8 +50931,6 @@ entities: pos: -39.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2298 @@ -51733,8 +50939,6 @@ entities: pos: -39.5,13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2299 @@ -51743,8 +50947,6 @@ entities: pos: -39.5,12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2300 @@ -51753,8 +50955,6 @@ entities: pos: -39.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2301 @@ -51763,8 +50963,6 @@ entities: pos: -39.5,10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2302 @@ -51773,8 +50971,6 @@ entities: pos: -39.5,9.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2303 @@ -51783,8 +50979,6 @@ entities: pos: -40.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2304 @@ -51793,8 +50987,6 @@ entities: pos: -40.5,19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2305 @@ -51803,8 +50995,6 @@ entities: pos: -40.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2306 @@ -51813,8 +51003,6 @@ entities: pos: -40.5,17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2307 @@ -51823,8 +51011,6 @@ entities: pos: -40.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2308 @@ -51833,8 +51019,6 @@ entities: pos: -40.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2309 @@ -51843,8 +51027,6 @@ entities: pos: -40.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2310 @@ -51853,8 +51035,6 @@ entities: pos: -40.5,13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2311 @@ -51863,8 +51043,6 @@ entities: pos: -40.5,12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2312 @@ -51873,8 +51051,6 @@ entities: pos: -40.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2313 @@ -51883,8 +51059,6 @@ entities: pos: -40.5,10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2314 @@ -51893,8 +51067,6 @@ entities: pos: -40.5,9.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2315 @@ -51903,8 +51075,6 @@ entities: pos: -41.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2316 @@ -51913,8 +51083,6 @@ entities: pos: -42.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2317 @@ -51923,8 +51091,6 @@ entities: pos: -41.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2318 @@ -51933,8 +51099,6 @@ entities: pos: -42.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2319 @@ -51943,8 +51107,6 @@ entities: pos: -41.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2320 @@ -51953,8 +51115,6 @@ entities: pos: -42.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2321 @@ -51963,8 +51123,6 @@ entities: pos: -41.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2322 @@ -51973,8 +51131,6 @@ entities: pos: -42.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2323 @@ -51983,8 +51139,6 @@ entities: pos: -41.5,12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2324 @@ -51993,8 +51147,6 @@ entities: pos: -42.5,12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2325 @@ -52003,8 +51155,6 @@ entities: pos: -41.5,10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2326 @@ -52013,8 +51163,6 @@ entities: pos: -42.5,10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2339 @@ -52023,8 +51171,6 @@ entities: pos: -41.5,19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2340 @@ -52033,8 +51179,6 @@ entities: pos: -41.5,17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2341 @@ -52043,8 +51187,6 @@ entities: pos: -41.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2342 @@ -52053,8 +51195,6 @@ entities: pos: -41.5,13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2343 @@ -52063,8 +51203,6 @@ entities: pos: -41.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2344 @@ -52073,8 +51211,6 @@ entities: pos: -41.5,9.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2421 @@ -52083,8 +51219,6 @@ entities: pos: -38.5,21.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2428 @@ -52093,8 +51227,6 @@ entities: pos: -35.5,24.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2429 @@ -52103,8 +51235,6 @@ entities: pos: -35.5,25.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2432 @@ -52112,8 +51242,6 @@ entities: - pos: -33.5,25.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2433 @@ -52121,8 +51249,6 @@ entities: - pos: -33.5,24.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2434 @@ -52130,8 +51256,6 @@ entities: - pos: -33.5,23.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2436 @@ -52139,8 +51263,6 @@ entities: - pos: -33.5,21.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2437 @@ -52148,8 +51270,6 @@ entities: - pos: -33.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2438 @@ -52157,8 +51277,6 @@ entities: - pos: -33.5,19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 3124 @@ -52169,8 +51287,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 3125 @@ -52181,8 +51297,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 3132 @@ -52193,8 +51307,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 3133 @@ -52205,8 +51317,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 3136 @@ -52217,8 +51327,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 3137 @@ -52229,8 +51337,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 3140 components: - rot: 3.141592653589793 rad @@ -52239,8 +51345,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 3141 @@ -52251,8 +51355,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 3148 @@ -52263,8 +51365,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 3149 @@ -52275,16 +51375,12 @@ entities: 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 @@ -52295,8 +51391,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 4517 @@ -52307,8 +51401,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 6250 @@ -52318,8 +51410,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 6251 @@ -52329,8 +51419,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 6252 @@ -52340,8 +51428,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 6253 @@ -52351,8 +51437,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 6263 @@ -52363,8 +51447,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6264 components: - rot: -1.5707963267948966 rad @@ -52373,8 +51455,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6265 components: - rot: -1.5707963267948966 rad @@ -52383,8 +51463,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6266 components: - rot: -1.5707963267948966 rad @@ -52393,8 +51471,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6268 components: - rot: 3.141592653589793 rad @@ -52403,8 +51479,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6269 components: - rot: 3.141592653589793 rad @@ -52413,8 +51487,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6270 components: - rot: 3.141592653589793 rad @@ -52423,8 +51495,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6271 components: - rot: 3.141592653589793 rad @@ -52433,8 +51503,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6272 components: - rot: 3.141592653589793 rad @@ -52443,8 +51511,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6275 components: - rot: -1.5707963267948966 rad @@ -52453,8 +51519,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6276 components: - rot: 3.141592653589793 rad @@ -52463,8 +51527,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6277 components: - rot: 3.141592653589793 rad @@ -52473,8 +51535,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6278 components: - rot: 3.141592653589793 rad @@ -52483,8 +51543,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6279 components: - rot: 3.141592653589793 rad @@ -52493,8 +51551,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6280 components: - rot: 3.141592653589793 rad @@ -52503,8 +51559,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6281 components: - rot: 3.141592653589793 rad @@ -52513,8 +51567,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6282 components: - rot: 3.141592653589793 rad @@ -52523,8 +51575,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6283 components: - rot: 3.141592653589793 rad @@ -52533,8 +51583,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 6285 @@ -52544,8 +51592,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6301 components: - rot: 3.141592653589793 rad @@ -52554,8 +51600,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6302 components: - rot: 3.141592653589793 rad @@ -52564,8 +51608,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6304 components: - rot: -1.5707963267948966 rad @@ -52574,8 +51616,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6306 components: - rot: 3.141592653589793 rad @@ -52584,8 +51624,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6307 components: - rot: 3.141592653589793 rad @@ -52594,8 +51632,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6309 components: - rot: 1.5707963267948966 rad @@ -52604,8 +51640,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6310 components: - rot: 1.5707963267948966 rad @@ -52614,8 +51648,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6311 components: - rot: 1.5707963267948966 rad @@ -52624,8 +51656,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6312 components: - rot: 1.5707963267948966 rad @@ -52634,8 +51664,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6314 components: - rot: 1.5707963267948966 rad @@ -52644,8 +51672,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6315 components: - rot: 1.5707963267948966 rad @@ -52654,8 +51680,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6317 components: - rot: 3.141592653589793 rad @@ -52664,8 +51688,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6318 components: - rot: 3.141592653589793 rad @@ -52674,23 +51696,17 @@ entities: 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 @@ -52698,8 +51714,6 @@ entities: - pos: -83.5,-44.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 6744 @@ -52707,8 +51721,6 @@ entities: - pos: -83.5,-45.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 7703 @@ -52719,8 +51731,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 8051 components: - rot: 3.141592653589793 rad @@ -52729,16 +51739,12 @@ entities: 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 @@ -52747,8 +51753,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11180 components: - rot: -1.5707963267948966 rad @@ -52757,8 +51761,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11182 components: - rot: -1.5707963267948966 rad @@ -52767,8 +51769,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11183 components: - rot: -1.5707963267948966 rad @@ -52777,8 +51777,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11184 components: - rot: -1.5707963267948966 rad @@ -52787,8 +51785,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11188 components: - rot: 1.5707963267948966 rad @@ -52797,8 +51793,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11189 components: - rot: 1.5707963267948966 rad @@ -52807,8 +51801,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 11190 @@ -52819,8 +51811,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11191 components: - rot: 1.5707963267948966 rad @@ -52829,8 +51819,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11192 components: - rot: 1.5707963267948966 rad @@ -52839,8 +51827,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11193 components: - rot: 1.5707963267948966 rad @@ -52849,8 +51835,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11194 components: - rot: 1.5707963267948966 rad @@ -52859,8 +51843,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11195 components: - rot: 1.5707963267948966 rad @@ -52869,8 +51851,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11198 components: - rot: 1.5707963267948966 rad @@ -52879,8 +51859,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11201 components: - rot: 1.5707963267948966 rad @@ -52889,8 +51867,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11202 components: - rot: 1.5707963267948966 rad @@ -52899,8 +51875,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11203 components: - rot: 1.5707963267948966 rad @@ -52909,8 +51883,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11204 components: - rot: 1.5707963267948966 rad @@ -52919,8 +51891,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11205 components: - rot: 1.5707963267948966 rad @@ -52929,8 +51899,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11206 components: - rot: 1.5707963267948966 rad @@ -52939,8 +51907,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11207 components: - rot: 1.5707963267948966 rad @@ -52949,8 +51915,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11208 components: - rot: 1.5707963267948966 rad @@ -52959,8 +51923,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 11209 @@ -52971,8 +51933,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11212 components: - rot: 3.141592653589793 rad @@ -52981,8 +51941,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11213 components: - rot: 3.141592653589793 rad @@ -52991,8 +51949,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11215 components: - rot: 3.141592653589793 rad @@ -53001,8 +51957,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11216 components: - rot: 3.141592653589793 rad @@ -53011,8 +51965,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11218 components: - rot: 3.141592653589793 rad @@ -53021,8 +51973,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11220 components: - pos: -14.5,-0.5 @@ -53030,8 +51980,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11221 components: - pos: -14.5,0.5 @@ -53039,8 +51987,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11222 components: - pos: -14.5,1.5 @@ -53048,8 +51994,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11223 components: - pos: -14.5,2.5 @@ -53057,8 +52001,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11224 components: - pos: -14.5,3.5 @@ -53066,8 +52008,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11226 components: - pos: -14.5,5.5 @@ -53075,8 +52015,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11229 components: - pos: -15.5,5.5 @@ -53084,8 +52022,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11230 components: - pos: -15.5,4.5 @@ -53093,8 +52029,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11231 components: - rot: -1.5707963267948966 rad @@ -53103,8 +52037,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11232 components: - rot: -1.5707963267948966 rad @@ -53113,8 +52045,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11233 components: - rot: -1.5707963267948966 rad @@ -53123,8 +52053,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11234 components: - rot: -1.5707963267948966 rad @@ -53133,8 +52061,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11235 components: - rot: -1.5707963267948966 rad @@ -53143,8 +52069,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11236 components: - rot: -1.5707963267948966 rad @@ -53153,8 +52077,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11237 components: - rot: -1.5707963267948966 rad @@ -53163,8 +52085,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11238 components: - rot: -1.5707963267948966 rad @@ -53173,8 +52093,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11242 components: - pos: -5.5,5.5 @@ -53182,8 +52100,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11244 components: - rot: 1.5707963267948966 rad @@ -53192,8 +52108,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11247 components: - rot: 1.5707963267948966 rad @@ -53202,8 +52116,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11248 components: - rot: 1.5707963267948966 rad @@ -53212,8 +52124,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11249 components: - rot: 1.5707963267948966 rad @@ -53222,8 +52132,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11250 components: - rot: 1.5707963267948966 rad @@ -53232,8 +52140,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11251 components: - rot: 1.5707963267948966 rad @@ -53242,8 +52148,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11252 components: - rot: 1.5707963267948966 rad @@ -53252,8 +52156,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11253 components: - pos: -1.5,2.5 @@ -53261,8 +52163,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11254 components: - pos: -1.5,1.5 @@ -53270,8 +52170,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11256 components: - rot: 3.141592653589793 rad @@ -53280,8 +52178,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11257 components: - rot: 3.141592653589793 rad @@ -53290,8 +52186,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11261 components: - rot: -1.5707963267948966 rad @@ -53300,8 +52194,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11262 components: - rot: -1.5707963267948966 rad @@ -53310,8 +52202,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11263 components: - rot: -1.5707963267948966 rad @@ -53320,8 +52210,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11264 components: - rot: -1.5707963267948966 rad @@ -53330,8 +52218,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11265 components: - rot: -1.5707963267948966 rad @@ -53340,8 +52226,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11268 components: - rot: 3.141592653589793 rad @@ -53350,8 +52234,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11269 components: - rot: 3.141592653589793 rad @@ -53360,8 +52242,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11271 components: - rot: 1.5707963267948966 rad @@ -53370,8 +52250,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11272 components: - rot: 1.5707963267948966 rad @@ -53380,8 +52258,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11273 components: - rot: 1.5707963267948966 rad @@ -53390,8 +52266,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11274 components: - rot: 1.5707963267948966 rad @@ -53400,8 +52274,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 11275 @@ -53412,8 +52284,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11276 components: - rot: 1.5707963267948966 rad @@ -53422,8 +52292,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 11280 @@ -53433,8 +52301,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11281 components: - pos: -0.5,3.5 @@ -53442,8 +52308,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11283 components: - rot: 1.5707963267948966 rad @@ -53452,8 +52316,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11284 components: - rot: 1.5707963267948966 rad @@ -53462,8 +52324,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11285 components: - rot: 1.5707963267948966 rad @@ -53472,8 +52332,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11286 components: - rot: 1.5707963267948966 rad @@ -53482,8 +52340,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11287 components: - rot: 1.5707963267948966 rad @@ -53492,8 +52348,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11288 components: - rot: 1.5707963267948966 rad @@ -53502,8 +52356,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11290 components: - rot: 3.141592653589793 rad @@ -53512,8 +52364,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11292 components: - pos: 5.5,4.5 @@ -53521,8 +52371,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11293 components: - pos: 5.5,5.5 @@ -53530,8 +52378,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11295 components: - pos: -14.5,-5.5 @@ -53539,8 +52385,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11296 components: - pos: -14.5,-6.5 @@ -53548,8 +52392,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11297 components: - pos: -14.5,-7.5 @@ -53557,8 +52399,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11298 components: - pos: -14.5,-8.5 @@ -53566,8 +52406,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11299 components: - pos: -14.5,-9.5 @@ -53575,8 +52413,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11300 components: - pos: -14.5,-10.5 @@ -53584,8 +52420,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11301 components: - pos: -14.5,-11.5 @@ -53593,8 +52427,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11304 components: - rot: 3.141592653589793 rad @@ -53603,8 +52435,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11305 components: - rot: 3.141592653589793 rad @@ -53613,8 +52443,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11306 components: - rot: 3.141592653589793 rad @@ -53623,8 +52451,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11307 components: - rot: 3.141592653589793 rad @@ -53633,8 +52459,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11308 components: - rot: 3.141592653589793 rad @@ -53643,8 +52467,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11309 components: - rot: 3.141592653589793 rad @@ -53653,8 +52475,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11310 components: - rot: 3.141592653589793 rad @@ -53663,8 +52483,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11311 components: - rot: 3.141592653589793 rad @@ -53673,8 +52491,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11312 components: - rot: 3.141592653589793 rad @@ -53683,8 +52499,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11313 components: - rot: 1.5707963267948966 rad @@ -53693,8 +52507,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11314 components: - rot: 1.5707963267948966 rad @@ -53703,8 +52515,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11315 components: - rot: 1.5707963267948966 rad @@ -53713,8 +52523,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11316 components: - rot: 1.5707963267948966 rad @@ -53723,8 +52531,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11317 components: - rot: 1.5707963267948966 rad @@ -53733,8 +52539,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11318 components: - rot: 1.5707963267948966 rad @@ -53743,8 +52547,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11319 components: - rot: 1.5707963267948966 rad @@ -53753,8 +52555,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11321 components: - rot: 1.5707963267948966 rad @@ -53763,8 +52563,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11323 components: - rot: 1.5707963267948966 rad @@ -53773,8 +52571,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11324 components: - rot: 1.5707963267948966 rad @@ -53783,8 +52579,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11326 components: - rot: 1.5707963267948966 rad @@ -53793,8 +52587,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11327 components: - rot: 1.5707963267948966 rad @@ -53803,8 +52595,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11328 components: - rot: 1.5707963267948966 rad @@ -53813,8 +52603,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11329 components: - rot: 1.5707963267948966 rad @@ -53823,8 +52611,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11330 components: - rot: 1.5707963267948966 rad @@ -53833,8 +52619,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11331 components: - rot: 1.5707963267948966 rad @@ -53843,8 +52627,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11332 components: - rot: 1.5707963267948966 rad @@ -53853,8 +52635,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11334 components: - rot: 1.5707963267948966 rad @@ -53863,8 +52643,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11335 components: - rot: 1.5707963267948966 rad @@ -53873,8 +52651,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11336 components: - rot: 1.5707963267948966 rad @@ -53883,8 +52659,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11337 components: - rot: 1.5707963267948966 rad @@ -53893,8 +52667,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11338 components: - rot: 1.5707963267948966 rad @@ -53903,8 +52675,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11339 components: - rot: 1.5707963267948966 rad @@ -53913,8 +52683,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11340 components: - rot: 1.5707963267948966 rad @@ -53923,8 +52691,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11341 components: - rot: 1.5707963267948966 rad @@ -53933,8 +52699,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11342 components: - rot: 1.5707963267948966 rad @@ -53943,8 +52707,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11343 components: - rot: 1.5707963267948966 rad @@ -53953,8 +52715,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11344 components: - rot: 1.5707963267948966 rad @@ -53963,8 +52723,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11346 components: - rot: 1.5707963267948966 rad @@ -53973,8 +52731,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11347 components: - rot: 1.5707963267948966 rad @@ -53983,8 +52739,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11348 components: - rot: 1.5707963267948966 rad @@ -53993,8 +52747,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11349 components: - rot: 1.5707963267948966 rad @@ -54003,8 +52755,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11350 components: - rot: 1.5707963267948966 rad @@ -54013,8 +52763,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11351 components: - rot: 1.5707963267948966 rad @@ -54023,8 +52771,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11352 components: - rot: 1.5707963267948966 rad @@ -54033,8 +52779,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11353 components: - rot: 1.5707963267948966 rad @@ -54043,8 +52787,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11354 components: - rot: 1.5707963267948966 rad @@ -54053,8 +52795,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11357 components: - pos: -63.5,-11.5 @@ -54062,8 +52802,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11359 components: - rot: 1.5707963267948966 rad @@ -54072,8 +52810,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11360 components: - rot: 1.5707963267948966 rad @@ -54082,8 +52818,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11361 components: - rot: 1.5707963267948966 rad @@ -54092,8 +52826,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11362 components: - rot: 1.5707963267948966 rad @@ -54102,8 +52834,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11363 components: - rot: 1.5707963267948966 rad @@ -54112,8 +52842,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11364 components: - rot: 1.5707963267948966 rad @@ -54122,8 +52850,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11365 components: - rot: 1.5707963267948966 rad @@ -54132,8 +52858,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11366 components: - rot: 1.5707963267948966 rad @@ -54142,8 +52866,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11367 components: - rot: 1.5707963267948966 rad @@ -54152,8 +52874,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11368 components: - rot: 1.5707963267948966 rad @@ -54162,8 +52882,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11370 components: - rot: 1.5707963267948966 rad @@ -54172,8 +52890,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11371 components: - rot: 1.5707963267948966 rad @@ -54182,8 +52898,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11372 components: - rot: 1.5707963267948966 rad @@ -54192,8 +52906,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11373 components: - rot: 1.5707963267948966 rad @@ -54202,8 +52914,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11374 components: - rot: 1.5707963267948966 rad @@ -54212,8 +52922,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11375 components: - rot: 1.5707963267948966 rad @@ -54222,8 +52930,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11376 components: - rot: 1.5707963267948966 rad @@ -54232,8 +52938,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11377 components: - rot: 1.5707963267948966 rad @@ -54242,8 +52946,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11378 components: - rot: 1.5707963267948966 rad @@ -54252,8 +52954,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11379 components: - rot: 1.5707963267948966 rad @@ -54262,8 +52962,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11380 components: - rot: 1.5707963267948966 rad @@ -54272,8 +52970,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11381 components: - rot: 1.5707963267948966 rad @@ -54282,8 +52978,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11383 components: - rot: 1.5707963267948966 rad @@ -54292,8 +52986,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11384 components: - rot: 1.5707963267948966 rad @@ -54302,8 +52994,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11385 components: - rot: 1.5707963267948966 rad @@ -54312,8 +53002,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11386 components: - rot: 1.5707963267948966 rad @@ -54322,8 +53010,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11387 components: - rot: 1.5707963267948966 rad @@ -54332,8 +53018,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11388 components: - rot: 1.5707963267948966 rad @@ -54342,8 +53026,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11389 components: - rot: 1.5707963267948966 rad @@ -54352,8 +53034,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11390 components: - rot: 1.5707963267948966 rad @@ -54362,8 +53042,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11391 components: - rot: 1.5707963267948966 rad @@ -54372,8 +53050,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11393 components: - rot: 1.5707963267948966 rad @@ -54382,8 +53058,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11394 components: - rot: 1.5707963267948966 rad @@ -54392,8 +53066,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11395 components: - rot: 1.5707963267948966 rad @@ -54402,8 +53074,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11397 components: - rot: 1.5707963267948966 rad @@ -54412,8 +53082,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11398 components: - rot: 1.5707963267948966 rad @@ -54422,8 +53090,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11400 components: - rot: 1.5707963267948966 rad @@ -54432,8 +53098,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11401 components: - rot: 1.5707963267948966 rad @@ -54442,8 +53106,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11402 components: - rot: 1.5707963267948966 rad @@ -54452,8 +53114,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11403 components: - rot: 1.5707963267948966 rad @@ -54462,8 +53122,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11404 components: - rot: 1.5707963267948966 rad @@ -54472,8 +53130,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11405 components: - rot: 1.5707963267948966 rad @@ -54482,8 +53138,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11408 components: - pos: -14.5,-13.5 @@ -54491,8 +53145,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11409 components: - pos: -14.5,-14.5 @@ -54500,8 +53152,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11410 components: - pos: -14.5,-15.5 @@ -54509,8 +53159,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11412 components: - pos: -14.5,-17.5 @@ -54518,8 +53166,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11413 components: - rot: -1.5707963267948966 rad @@ -54528,8 +53174,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11414 components: - rot: -1.5707963267948966 rad @@ -54538,8 +53182,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11415 components: - rot: -1.5707963267948966 rad @@ -54548,8 +53190,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11417 components: - rot: -1.5707963267948966 rad @@ -54558,8 +53198,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11418 components: - rot: -1.5707963267948966 rad @@ -54568,8 +53206,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11419 components: - rot: -1.5707963267948966 rad @@ -54578,8 +53214,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11420 components: - rot: -1.5707963267948966 rad @@ -54588,8 +53222,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11422 components: - rot: -1.5707963267948966 rad @@ -54598,8 +53230,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11423 components: - rot: -1.5707963267948966 rad @@ -54608,8 +53238,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11426 components: - rot: 1.5707963267948966 rad @@ -54618,8 +53246,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11427 components: - rot: 1.5707963267948966 rad @@ -54628,8 +53254,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11428 components: - pos: -15.5,-14.5 @@ -54637,8 +53261,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11429 components: - pos: -15.5,-13.5 @@ -54646,8 +53268,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11430 components: - pos: -15.5,-12.5 @@ -54655,8 +53275,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11431 components: - pos: -15.5,-11.5 @@ -54664,8 +53282,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11432 components: - pos: -15.5,-39.5 @@ -54673,8 +53289,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11433 components: - pos: -15.5,-40.5 @@ -54682,8 +53296,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11434 components: - pos: -15.5,-41.5 @@ -54691,8 +53303,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11435 components: - pos: -15.5,-42.5 @@ -54700,8 +53310,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11436 components: - pos: -15.5,-16.5 @@ -54709,8 +53317,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11437 components: - pos: -15.5,-17.5 @@ -54718,8 +53324,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11438 components: - pos: -15.5,-18.5 @@ -54727,8 +53331,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11439 components: - pos: -15.5,-19.5 @@ -54736,8 +53338,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11440 components: - pos: -15.5,-20.5 @@ -54745,8 +53345,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11441 components: - pos: -15.5,-21.5 @@ -54754,8 +53352,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11443 components: - pos: -15.5,-23.5 @@ -54763,8 +53359,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11445 components: - pos: -15.5,-25.5 @@ -54772,8 +53366,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11446 components: - pos: -15.5,-26.5 @@ -54781,8 +53373,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11447 components: - pos: -15.5,-27.5 @@ -54790,8 +53380,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11448 components: - pos: -15.5,-28.5 @@ -54799,8 +53387,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11450 components: - pos: -15.5,-30.5 @@ -54808,8 +53394,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11451 components: - pos: -15.5,-31.5 @@ -54817,8 +53401,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11452 components: - pos: -15.5,-32.5 @@ -54826,8 +53408,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11453 components: - pos: -15.5,-33.5 @@ -54835,8 +53415,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11454 components: - pos: -15.5,-34.5 @@ -54844,8 +53422,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11455 components: - rot: -1.5707963267948966 rad @@ -54854,8 +53430,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11457 components: - pos: -15.5,-37.5 @@ -54863,8 +53437,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11458 components: - pos: -15.5,-38.5 @@ -54872,8 +53444,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11459 components: - pos: -13.5,-44.5 @@ -54881,8 +53451,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11460 components: - pos: -13.5,-43.5 @@ -54890,8 +53458,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11461 components: - pos: -13.5,-42.5 @@ -54899,8 +53465,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11462 components: - pos: -13.5,-41.5 @@ -54908,8 +53472,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11463 components: - pos: -13.5,-40.5 @@ -54917,8 +53479,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11464 components: - pos: -13.5,-39.5 @@ -54926,8 +53486,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11465 components: - pos: -13.5,-38.5 @@ -54935,8 +53493,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11466 components: - pos: -13.5,-37.5 @@ -54944,8 +53500,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11467 components: - pos: -13.5,-36.5 @@ -54953,8 +53507,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11468 components: - pos: -13.5,-35.5 @@ -54962,8 +53514,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11471 components: - pos: -13.5,-32.5 @@ -54971,8 +53521,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11472 components: - pos: -13.5,-31.5 @@ -54980,8 +53528,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11474 components: - pos: -13.5,-29.5 @@ -54989,8 +53535,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11475 components: - pos: -13.5,-28.5 @@ -54998,8 +53542,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11476 components: - pos: -13.5,-27.5 @@ -55007,8 +53549,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11477 components: - pos: -13.5,-26.5 @@ -55016,8 +53556,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11478 components: - rot: 1.5707963267948966 rad @@ -55026,8 +53564,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11479 components: - pos: -13.5,-24.5 @@ -55035,8 +53571,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11480 components: - pos: -13.5,-23.5 @@ -55044,8 +53578,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11481 components: - pos: -13.5,-22.5 @@ -55053,8 +53585,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11483 components: - pos: -13.5,-20.5 @@ -55062,8 +53592,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11484 components: - pos: -13.5,-19.5 @@ -55071,8 +53599,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11487 components: - rot: 3.141592653589793 rad @@ -55081,8 +53607,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11488 components: - rot: 3.141592653589793 rad @@ -55091,8 +53615,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11489 components: - rot: 3.141592653589793 rad @@ -55101,8 +53623,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 11490 @@ -55113,8 +53633,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11491 components: - rot: 3.141592653589793 rad @@ -55123,8 +53641,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11494 components: - rot: 3.141592653589793 rad @@ -55133,8 +53649,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11495 components: - rot: 3.141592653589793 rad @@ -55143,8 +53657,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11496 components: - rot: 3.141592653589793 rad @@ -55153,8 +53665,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11497 components: - rot: 1.5707963267948966 rad @@ -55163,8 +53673,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11498 components: - rot: 1.5707963267948966 rad @@ -55173,8 +53681,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11499 components: - rot: 1.5707963267948966 rad @@ -55183,8 +53689,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11500 components: - rot: 1.5707963267948966 rad @@ -55193,8 +53697,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11501 components: - rot: 1.5707963267948966 rad @@ -55203,8 +53705,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11502 components: - rot: 1.5707963267948966 rad @@ -55213,8 +53713,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11507 components: - rot: 1.5707963267948966 rad @@ -55223,8 +53721,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11510 components: - pos: -23.5,-19.5 @@ -55232,8 +53728,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11511 components: - pos: -23.5,-18.5 @@ -55241,8 +53735,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11514 components: - pos: -21.5,-20.5 @@ -55250,8 +53742,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11515 components: - pos: -21.5,-19.5 @@ -55259,8 +53749,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11516 components: - pos: -21.5,-18.5 @@ -55268,8 +53756,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 11518 @@ -55280,8 +53766,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11519 components: - rot: -1.5707963267948966 rad @@ -55290,8 +53774,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11520 components: - rot: -1.5707963267948966 rad @@ -55300,8 +53782,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 11521 @@ -55312,8 +53792,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11522 components: - rot: -1.5707963267948966 rad @@ -55322,8 +53800,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11524 components: - pos: -30.5,-20.5 @@ -55331,8 +53807,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11525 components: - pos: -30.5,-19.5 @@ -55340,8 +53814,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 11526 @@ -55351,8 +53823,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11532 components: - pos: -29.5,-19.5 @@ -55360,8 +53830,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11534 components: - rot: 1.5707963267948966 rad @@ -55370,8 +53838,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11535 components: - rot: 1.5707963267948966 rad @@ -55380,8 +53846,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11536 components: - rot: 1.5707963267948966 rad @@ -55390,8 +53854,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11538 components: - rot: 1.5707963267948966 rad @@ -55400,8 +53862,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11539 components: - pos: -25.5,-21.5 @@ -55409,8 +53869,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11540 components: - pos: -25.5,-22.5 @@ -55418,8 +53876,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11541 components: - pos: -25.5,-23.5 @@ -55427,8 +53883,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11542 components: - pos: -25.5,-24.5 @@ -55436,8 +53890,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11543 components: - pos: -25.5,-25.5 @@ -55445,8 +53897,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11544 components: - pos: -25.5,-26.5 @@ -55454,8 +53904,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11545 components: - pos: -25.5,-27.5 @@ -55463,8 +53911,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11546 components: - pos: -25.5,-28.5 @@ -55472,8 +53918,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 11547 @@ -55483,8 +53927,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11550 components: - rot: 3.141592653589793 rad @@ -55493,8 +53935,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11551 components: - rot: 3.141592653589793 rad @@ -55503,8 +53943,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11552 components: - rot: 3.141592653589793 rad @@ -55513,8 +53951,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11553 components: - rot: 3.141592653589793 rad @@ -55523,8 +53959,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11554 components: - rot: 3.141592653589793 rad @@ -55533,8 +53967,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11555 components: - rot: 3.141592653589793 rad @@ -55543,8 +53975,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11556 components: - rot: 3.141592653589793 rad @@ -55553,8 +53983,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11559 components: - rot: -1.5707963267948966 rad @@ -55563,8 +53991,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11560 components: - rot: -1.5707963267948966 rad @@ -55573,8 +53999,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11561 components: - rot: -1.5707963267948966 rad @@ -55583,8 +54007,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11562 components: - rot: -1.5707963267948966 rad @@ -55593,8 +54015,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11563 components: - rot: -1.5707963267948966 rad @@ -55603,8 +54023,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11564 components: - rot: -1.5707963267948966 rad @@ -55613,8 +54031,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11567 components: - rot: 1.5707963267948966 rad @@ -55623,8 +54039,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11569 components: - rot: 1.5707963267948966 rad @@ -55633,8 +54047,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11570 components: - rot: 1.5707963267948966 rad @@ -55643,8 +54055,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11572 components: - rot: 3.141592653589793 rad @@ -55653,8 +54063,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11575 components: - rot: 3.141592653589793 rad @@ -55663,8 +54071,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11576 components: - rot: 3.141592653589793 rad @@ -55673,8 +54079,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 11578 @@ -55684,8 +54088,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11579 components: - pos: -34.5,-19.5 @@ -55693,8 +54095,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 11580 @@ -55704,8 +54104,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11581 components: - pos: -34.5,-17.5 @@ -55713,8 +54111,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11582 components: - pos: -33.5,-19.5 @@ -55722,8 +54118,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11583 components: - pos: -33.5,-18.5 @@ -55731,8 +54125,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11584 components: - pos: -33.5,-17.5 @@ -55740,8 +54132,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11587 components: - rot: -1.5707963267948966 rad @@ -55750,8 +54140,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11588 components: - rot: -1.5707963267948966 rad @@ -55760,8 +54148,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11594 components: - rot: 1.5707963267948966 rad @@ -55770,8 +54156,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11595 components: - rot: 1.5707963267948966 rad @@ -55780,8 +54164,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11596 components: - rot: 1.5707963267948966 rad @@ -55790,8 +54172,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11597 components: - rot: 1.5707963267948966 rad @@ -55800,8 +54180,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11598 components: - rot: 1.5707963267948966 rad @@ -55810,8 +54188,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11599 components: - rot: 1.5707963267948966 rad @@ -55820,8 +54196,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11600 components: - rot: 1.5707963267948966 rad @@ -55830,8 +54204,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11601 components: - rot: 1.5707963267948966 rad @@ -55840,8 +54212,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11602 components: - rot: 1.5707963267948966 rad @@ -55850,8 +54220,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11603 components: - rot: 1.5707963267948966 rad @@ -55860,8 +54228,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11604 components: - rot: 1.5707963267948966 rad @@ -55870,8 +54236,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11605 components: - rot: 1.5707963267948966 rad @@ -55880,8 +54244,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11608 components: - rot: 1.5707963267948966 rad @@ -55890,8 +54252,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11609 components: - rot: 1.5707963267948966 rad @@ -55900,8 +54260,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11610 components: - rot: 1.5707963267948966 rad @@ -55910,8 +54268,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11611 components: - rot: 1.5707963267948966 rad @@ -55920,8 +54276,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11612 components: - rot: 1.5707963267948966 rad @@ -55930,8 +54284,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11613 components: - rot: 1.5707963267948966 rad @@ -55940,8 +54292,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11615 components: - pos: 5.5,-9.5 @@ -55949,8 +54299,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11616 components: - pos: 5.5,-8.5 @@ -55958,8 +54306,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11617 components: - pos: 5.5,-7.5 @@ -55967,8 +54313,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11618 components: - pos: 5.5,-6.5 @@ -55976,8 +54320,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11619 components: - pos: 5.5,-5.5 @@ -55985,8 +54327,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11620 components: - pos: 5.5,-4.5 @@ -55994,8 +54334,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11621 components: - pos: 5.5,-3.5 @@ -56003,8 +54341,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11622 components: - pos: 5.5,-2.5 @@ -56012,8 +54348,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11623 components: - pos: 5.5,-1.5 @@ -56021,8 +54355,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11624 components: - pos: 5.5,-0.5 @@ -56030,8 +54362,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11625 components: - pos: 5.5,0.5 @@ -56039,8 +54369,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11626 components: - pos: 5.5,1.5 @@ -56048,8 +54376,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11628 components: - pos: 6.5,3.5 @@ -56057,8 +54383,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11629 components: - pos: 6.5,2.5 @@ -56066,8 +54390,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11630 components: - pos: 6.5,1.5 @@ -56075,8 +54397,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11631 components: - pos: 6.5,0.5 @@ -56084,8 +54404,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11632 components: - pos: 6.5,-0.5 @@ -56093,8 +54411,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11633 components: - pos: 6.5,-1.5 @@ -56102,8 +54418,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11634 components: - pos: 6.5,-2.5 @@ -56111,8 +54425,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11635 components: - pos: 6.5,-3.5 @@ -56120,8 +54432,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11637 components: - pos: 6.5,-5.5 @@ -56129,8 +54439,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11638 components: - pos: 6.5,-6.5 @@ -56138,8 +54446,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11639 components: - pos: 6.5,-7.5 @@ -56147,8 +54453,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11640 components: - pos: 6.5,-8.5 @@ -56156,8 +54460,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11641 components: - pos: 6.5,-9.5 @@ -56165,8 +54467,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11642 components: - pos: 6.5,-10.5 @@ -56174,8 +54474,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11643 components: - pos: 6.5,-11.5 @@ -56183,8 +54481,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11645 components: - rot: -1.5707963267948966 rad @@ -56193,8 +54489,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11646 components: - rot: -1.5707963267948966 rad @@ -56203,8 +54497,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11647 components: - rot: -1.5707963267948966 rad @@ -56213,8 +54505,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11648 components: - rot: -1.5707963267948966 rad @@ -56223,8 +54513,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11649 components: - rot: -1.5707963267948966 rad @@ -56233,8 +54521,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11650 components: - rot: -1.5707963267948966 rad @@ -56243,8 +54529,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11652 components: - rot: -1.5707963267948966 rad @@ -56253,8 +54537,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11653 components: - rot: -1.5707963267948966 rad @@ -56263,8 +54545,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11655 components: - rot: -1.5707963267948966 rad @@ -56273,8 +54553,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11656 components: - rot: -1.5707963267948966 rad @@ -56283,8 +54561,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11657 components: - rot: -1.5707963267948966 rad @@ -56293,8 +54569,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11658 components: - rot: -1.5707963267948966 rad @@ -56303,8 +54577,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11659 components: - rot: -1.5707963267948966 rad @@ -56313,8 +54585,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11660 components: - rot: -1.5707963267948966 rad @@ -56323,8 +54593,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11661 components: - rot: -1.5707963267948966 rad @@ -56333,8 +54601,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11662 components: - rot: -1.5707963267948966 rad @@ -56343,8 +54609,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11663 components: - rot: -1.5707963267948966 rad @@ -56353,8 +54617,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11664 components: - rot: -1.5707963267948966 rad @@ -56363,8 +54625,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11665 components: - rot: 3.141592653589793 rad @@ -56373,8 +54633,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11666 components: - rot: 3.141592653589793 rad @@ -56383,8 +54641,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11667 components: - rot: 3.141592653589793 rad @@ -56393,8 +54649,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11668 components: - rot: 3.141592653589793 rad @@ -56403,8 +54657,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11669 components: - rot: 3.141592653589793 rad @@ -56413,8 +54665,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11672 components: - pos: -1.5,-9.5 @@ -56422,8 +54672,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11673 components: - pos: -1.5,-8.5 @@ -56431,8 +54679,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 11677 @@ -56443,8 +54689,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11678 components: - rot: -1.5707963267948966 rad @@ -56453,8 +54697,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 11679 @@ -56465,8 +54707,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11680 components: - rot: -1.5707963267948966 rad @@ -56475,8 +54715,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11684 components: - rot: -1.5707963267948966 rad @@ -56485,8 +54723,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11685 components: - rot: -1.5707963267948966 rad @@ -56495,8 +54731,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11690 components: - rot: -1.5707963267948966 rad @@ -56505,8 +54739,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11691 components: - rot: -1.5707963267948966 rad @@ -56515,8 +54747,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11698 components: - pos: 10.5,-11.5 @@ -56524,8 +54754,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11699 components: - pos: 10.5,-10.5 @@ -56533,8 +54761,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11700 components: - pos: 10.5,-9.5 @@ -56542,8 +54768,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11702 components: - rot: 1.5707963267948966 rad @@ -56552,8 +54776,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11705 components: - rot: -1.5707963267948966 rad @@ -56562,8 +54784,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11706 components: - rot: -1.5707963267948966 rad @@ -56572,8 +54792,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11707 components: - rot: -1.5707963267948966 rad @@ -56582,8 +54800,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11708 components: - rot: -1.5707963267948966 rad @@ -56592,8 +54808,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11709 components: - rot: -1.5707963267948966 rad @@ -56602,8 +54816,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11711 components: - rot: -1.5707963267948966 rad @@ -56612,8 +54824,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11712 components: - rot: -1.5707963267948966 rad @@ -56622,8 +54832,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11713 components: - rot: -1.5707963267948966 rad @@ -56632,8 +54840,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11714 components: - rot: -1.5707963267948966 rad @@ -56642,8 +54848,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11715 components: - rot: -1.5707963267948966 rad @@ -56652,8 +54856,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11716 components: - rot: -1.5707963267948966 rad @@ -56662,8 +54864,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11717 components: - rot: -1.5707963267948966 rad @@ -56672,8 +54872,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11718 components: - rot: -1.5707963267948966 rad @@ -56682,8 +54880,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11720 components: - rot: -1.5707963267948966 rad @@ -56692,8 +54888,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11721 components: - rot: -1.5707963267948966 rad @@ -56702,8 +54896,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11722 components: - rot: -1.5707963267948966 rad @@ -56712,8 +54904,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11725 components: - rot: -1.5707963267948966 rad @@ -56722,8 +54912,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11726 components: - rot: -1.5707963267948966 rad @@ -56732,8 +54920,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11727 components: - rot: -1.5707963267948966 rad @@ -56742,8 +54928,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11728 components: - rot: -1.5707963267948966 rad @@ -56752,8 +54936,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11729 components: - rot: -1.5707963267948966 rad @@ -56762,8 +54944,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11730 components: - rot: -1.5707963267948966 rad @@ -56772,8 +54952,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11731 components: - rot: -1.5707963267948966 rad @@ -56782,8 +54960,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11733 components: - rot: -1.5707963267948966 rad @@ -56792,8 +54968,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11734 components: - rot: -1.5707963267948966 rad @@ -56802,8 +54976,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11735 components: - rot: -1.5707963267948966 rad @@ -56812,8 +54984,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11737 components: - rot: -1.5707963267948966 rad @@ -56822,8 +54992,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11738 components: - rot: -1.5707963267948966 rad @@ -56832,8 +55000,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11739 components: - rot: 1.5707963267948966 rad @@ -56842,8 +55008,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11740 components: - rot: -1.5707963267948966 rad @@ -56852,8 +55016,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11741 components: - rot: -1.5707963267948966 rad @@ -56862,8 +55024,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11742 components: - rot: -1.5707963267948966 rad @@ -56872,8 +55032,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11743 components: - rot: -1.5707963267948966 rad @@ -56882,8 +55040,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11746 components: - rot: 1.5707963267948966 rad @@ -56892,8 +55048,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11747 components: - rot: 1.5707963267948966 rad @@ -56902,8 +55056,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11749 components: - rot: 3.141592653589793 rad @@ -56912,8 +55064,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11750 components: - rot: 3.141592653589793 rad @@ -56922,8 +55072,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11751 components: - rot: 3.141592653589793 rad @@ -56932,8 +55080,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11753 components: - rot: 1.5707963267948966 rad @@ -56942,8 +55088,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11754 components: - rot: 1.5707963267948966 rad @@ -56952,8 +55096,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11755 components: - rot: 1.5707963267948966 rad @@ -56962,8 +55104,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11756 components: - rot: 1.5707963267948966 rad @@ -56972,8 +55112,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11758 components: - rot: 3.141592653589793 rad @@ -56982,8 +55120,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11761 components: - rot: 1.5707963267948966 rad @@ -56992,8 +55128,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11763 components: - rot: -1.5707963267948966 rad @@ -57002,8 +55136,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11764 components: - rot: -1.5707963267948966 rad @@ -57012,8 +55144,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11767 components: - rot: 3.141592653589793 rad @@ -57022,8 +55152,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11771 components: - rot: -1.5707963267948966 rad @@ -57032,8 +55160,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11772 components: - rot: -1.5707963267948966 rad @@ -57042,8 +55168,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 11775 @@ -57054,8 +55178,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11776 components: - rot: 3.141592653589793 rad @@ -57064,8 +55186,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11777 components: - rot: 3.141592653589793 rad @@ -57074,8 +55194,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11780 components: - rot: 3.141592653589793 rad @@ -57084,8 +55202,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11781 components: - rot: 3.141592653589793 rad @@ -57094,8 +55210,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11784 components: - rot: 1.5707963267948966 rad @@ -57104,8 +55218,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11785 components: - rot: 1.5707963267948966 rad @@ -57114,8 +55226,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11788 components: - rot: 1.5707963267948966 rad @@ -57124,8 +55234,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11789 components: - rot: 1.5707963267948966 rad @@ -57134,8 +55242,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11790 components: - rot: 1.5707963267948966 rad @@ -57144,8 +55250,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 11791 @@ -57156,8 +55260,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11793 components: - rot: 3.141592653589793 rad @@ -57166,8 +55268,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11794 components: - rot: 3.141592653589793 rad @@ -57176,8 +55276,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11795 components: - rot: 3.141592653589793 rad @@ -57186,8 +55284,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 11798 @@ -57198,8 +55294,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11799 components: - rot: 3.141592653589793 rad @@ -57208,8 +55302,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11800 components: - rot: 3.141592653589793 rad @@ -57218,8 +55310,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11801 components: - rot: 3.141592653589793 rad @@ -57228,8 +55318,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11802 components: - rot: 3.141592653589793 rad @@ -57238,8 +55326,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11803 components: - rot: 3.141592653589793 rad @@ -57248,8 +55334,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11804 components: - rot: 3.141592653589793 rad @@ -57258,8 +55342,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11805 components: - rot: 3.141592653589793 rad @@ -57268,8 +55350,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11806 components: - rot: 3.141592653589793 rad @@ -57278,8 +55358,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11807 components: - rot: 3.141592653589793 rad @@ -57288,8 +55366,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11809 components: - rot: 3.141592653589793 rad @@ -57298,8 +55374,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11810 components: - rot: 3.141592653589793 rad @@ -57308,8 +55382,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11811 components: - rot: 3.141592653589793 rad @@ -57318,8 +55390,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11814 components: - pos: 12.5,1.5 @@ -57327,8 +55397,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11815 components: - pos: 12.5,2.5 @@ -57336,8 +55404,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11818 components: - rot: 1.5707963267948966 rad @@ -57346,8 +55412,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11820 components: - rot: 3.141592653589793 rad @@ -57356,8 +55420,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11823 components: - rot: -1.5707963267948966 rad @@ -57366,8 +55428,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11824 components: - rot: -1.5707963267948966 rad @@ -57376,8 +55436,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11826 components: - rot: 1.5707963267948966 rad @@ -57386,8 +55444,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11828 components: - pos: 14.5,8.5 @@ -57395,8 +55451,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11829 components: - pos: 14.5,9.5 @@ -57404,8 +55458,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11830 components: - pos: 14.5,10.5 @@ -57413,8 +55465,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11831 components: - pos: 14.5,11.5 @@ -57422,8 +55472,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11832 components: - pos: 14.5,12.5 @@ -57431,8 +55479,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11833 components: - pos: 14.5,13.5 @@ -57440,8 +55486,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11834 components: - pos: 14.5,14.5 @@ -57449,8 +55493,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11835 components: - pos: 14.5,15.5 @@ -57458,8 +55500,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11837 components: - pos: 14.5,17.5 @@ -57467,8 +55507,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11840 components: - rot: 1.5707963267948966 rad @@ -57477,8 +55515,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11841 components: - rot: 1.5707963267948966 rad @@ -57487,8 +55523,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 11842 @@ -57499,8 +55533,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11843 components: - rot: 1.5707963267948966 rad @@ -57509,8 +55541,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11844 components: - rot: 1.5707963267948966 rad @@ -57519,8 +55549,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11846 components: - rot: 1.5707963267948966 rad @@ -57529,8 +55557,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 11847 @@ -57541,8 +55567,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11848 components: - rot: 1.5707963267948966 rad @@ -57551,8 +55575,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11849 components: - rot: 1.5707963267948966 rad @@ -57561,8 +55583,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11850 components: - rot: 1.5707963267948966 rad @@ -57571,8 +55591,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11851 components: - rot: 1.5707963267948966 rad @@ -57581,8 +55599,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11854 components: - rot: -1.5707963267948966 rad @@ -57591,8 +55607,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11855 components: - rot: -1.5707963267948966 rad @@ -57601,8 +55615,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11856 components: - rot: -1.5707963267948966 rad @@ -57611,8 +55623,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11860 components: - rot: 1.5707963267948966 rad @@ -57621,8 +55631,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11861 components: - rot: 1.5707963267948966 rad @@ -57631,8 +55639,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11864 components: - rot: 1.5707963267948966 rad @@ -57641,8 +55647,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11866 components: - rot: 1.5707963267948966 rad @@ -57651,8 +55655,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11867 components: - rot: 1.5707963267948966 rad @@ -57661,8 +55663,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11868 components: - rot: 1.5707963267948966 rad @@ -57671,8 +55671,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11869 components: - rot: 1.5707963267948966 rad @@ -57681,8 +55679,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11870 components: - rot: 1.5707963267948966 rad @@ -57691,8 +55687,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11871 components: - rot: 1.5707963267948966 rad @@ -57701,8 +55695,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11872 components: - rot: 1.5707963267948966 rad @@ -57711,8 +55703,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11873 components: - rot: 1.5707963267948966 rad @@ -57721,8 +55711,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11877 components: - rot: 1.5707963267948966 rad @@ -57731,8 +55719,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11878 components: - rot: 1.5707963267948966 rad @@ -57741,8 +55727,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11879 components: - rot: 1.5707963267948966 rad @@ -57751,8 +55735,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11880 components: - rot: 1.5707963267948966 rad @@ -57761,8 +55743,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11882 components: - rot: 1.5707963267948966 rad @@ -57771,8 +55751,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11883 components: - rot: 1.5707963267948966 rad @@ -57781,8 +55759,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11884 components: - rot: 1.5707963267948966 rad @@ -57791,8 +55767,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11885 components: - rot: 1.5707963267948966 rad @@ -57801,8 +55775,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11886 components: - rot: 1.5707963267948966 rad @@ -57811,8 +55783,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11888 components: - rot: 1.5707963267948966 rad @@ -57821,8 +55791,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11889 components: - rot: 1.5707963267948966 rad @@ -57831,8 +55799,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11890 components: - rot: 1.5707963267948966 rad @@ -57841,8 +55807,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11892 components: - rot: 1.5707963267948966 rad @@ -57851,8 +55815,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11893 components: - rot: 1.5707963267948966 rad @@ -57861,8 +55823,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11894 components: - rot: 1.5707963267948966 rad @@ -57871,8 +55831,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11895 components: - rot: 1.5707963267948966 rad @@ -57881,8 +55839,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11896 components: - rot: 1.5707963267948966 rad @@ -57891,8 +55847,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11897 components: - rot: 1.5707963267948966 rad @@ -57901,8 +55855,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11898 components: - rot: 1.5707963267948966 rad @@ -57911,8 +55863,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11899 components: - rot: 1.5707963267948966 rad @@ -57921,8 +55871,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11900 components: - rot: 1.5707963267948966 rad @@ -57931,8 +55879,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11901 components: - rot: 1.5707963267948966 rad @@ -57941,8 +55887,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11902 components: - rot: 1.5707963267948966 rad @@ -57951,8 +55895,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11903 components: - rot: 1.5707963267948966 rad @@ -57961,8 +55903,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11904 components: - rot: 1.5707963267948966 rad @@ -57971,8 +55911,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11905 components: - rot: 1.5707963267948966 rad @@ -57981,8 +55919,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11906 components: - rot: 1.5707963267948966 rad @@ -57991,8 +55927,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11907 components: - rot: 1.5707963267948966 rad @@ -58001,8 +55935,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11910 components: - rot: 1.5707963267948966 rad @@ -58011,8 +55943,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11912 components: - rot: 1.5707963267948966 rad @@ -58021,8 +55951,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11913 components: - rot: 1.5707963267948966 rad @@ -58031,8 +55959,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11914 components: - rot: 1.5707963267948966 rad @@ -58041,8 +55967,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11915 components: - rot: 1.5707963267948966 rad @@ -58051,8 +55975,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11916 components: - rot: 1.5707963267948966 rad @@ -58061,8 +55983,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11917 components: - rot: 1.5707963267948966 rad @@ -58071,8 +55991,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11918 components: - rot: 1.5707963267948966 rad @@ -58081,8 +55999,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11919 components: - rot: 1.5707963267948966 rad @@ -58091,8 +56007,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11920 components: - rot: 1.5707963267948966 rad @@ -58101,8 +56015,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11921 components: - rot: 1.5707963267948966 rad @@ -58111,8 +56023,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11922 components: - rot: 1.5707963267948966 rad @@ -58121,8 +56031,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11923 components: - rot: 1.5707963267948966 rad @@ -58131,8 +56039,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11924 components: - rot: 1.5707963267948966 rad @@ -58141,8 +56047,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11925 components: - rot: 1.5707963267948966 rad @@ -58151,8 +56055,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11926 components: - rot: 1.5707963267948966 rad @@ -58161,8 +56063,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11927 components: - rot: 1.5707963267948966 rad @@ -58171,8 +56071,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11929 components: - rot: 1.5707963267948966 rad @@ -58181,8 +56079,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11930 components: - rot: 1.5707963267948966 rad @@ -58191,8 +56087,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11931 components: - rot: 1.5707963267948966 rad @@ -58201,8 +56095,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11932 components: - rot: 1.5707963267948966 rad @@ -58211,8 +56103,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11933 components: - rot: 1.5707963267948966 rad @@ -58221,8 +56111,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11935 components: - rot: 1.5707963267948966 rad @@ -58231,8 +56119,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11936 components: - rot: 1.5707963267948966 rad @@ -58241,8 +56127,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11937 components: - rot: 1.5707963267948966 rad @@ -58251,8 +56135,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11938 components: - rot: 1.5707963267948966 rad @@ -58261,8 +56143,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11939 components: - rot: 1.5707963267948966 rad @@ -58271,8 +56151,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11941 components: - rot: 1.5707963267948966 rad @@ -58281,8 +56159,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11942 components: - rot: 1.5707963267948966 rad @@ -58291,8 +56167,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11943 components: - rot: 1.5707963267948966 rad @@ -58301,8 +56175,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11944 components: - rot: 1.5707963267948966 rad @@ -58311,8 +56183,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11945 components: - rot: 1.5707963267948966 rad @@ -58321,8 +56191,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11946 components: - rot: 1.5707963267948966 rad @@ -58331,8 +56199,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11948 components: - rot: 1.5707963267948966 rad @@ -58341,8 +56207,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11949 components: - rot: 1.5707963267948966 rad @@ -58351,8 +56215,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11951 components: - rot: 1.5707963267948966 rad @@ -58361,8 +56223,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11952 components: - rot: 1.5707963267948966 rad @@ -58371,8 +56231,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11958 components: - rot: -1.5707963267948966 rad @@ -58381,8 +56239,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11959 components: - rot: -1.5707963267948966 rad @@ -58391,8 +56247,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11960 components: - rot: -1.5707963267948966 rad @@ -58401,8 +56255,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11961 components: - rot: -1.5707963267948966 rad @@ -58411,8 +56263,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11962 components: - rot: -1.5707963267948966 rad @@ -58421,8 +56271,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11964 components: - rot: -1.5707963267948966 rad @@ -58431,8 +56279,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11965 components: - rot: -1.5707963267948966 rad @@ -58441,8 +56287,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11966 components: - rot: -1.5707963267948966 rad @@ -58451,8 +56295,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11967 components: - rot: -1.5707963267948966 rad @@ -58461,8 +56303,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11968 components: - rot: -1.5707963267948966 rad @@ -58471,8 +56311,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11969 components: - rot: -1.5707963267948966 rad @@ -58481,8 +56319,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11970 components: - rot: -1.5707963267948966 rad @@ -58491,8 +56327,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11972 components: - rot: -1.5707963267948966 rad @@ -58501,8 +56335,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11973 components: - rot: -1.5707963267948966 rad @@ -58511,8 +56343,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11974 components: - rot: -1.5707963267948966 rad @@ -58521,8 +56351,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11976 components: - rot: -1.5707963267948966 rad @@ -58531,8 +56359,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11978 components: - pos: 4.5,-46.5 @@ -58540,8 +56366,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11979 components: - pos: 4.5,-47.5 @@ -58549,8 +56373,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11983 components: - pos: 2.5,-44.5 @@ -58558,8 +56380,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11984 components: - pos: 2.5,-45.5 @@ -58567,8 +56387,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11985 components: - pos: 2.5,-46.5 @@ -58576,8 +56394,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11986 components: - pos: 2.5,-47.5 @@ -58585,40 +56401,30 @@ entities: 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 @@ -58627,8 +56433,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12006 components: - rot: 3.141592653589793 rad @@ -58637,8 +56441,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12007 components: - pos: -33.5,-41.5 @@ -58646,8 +56448,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12015 components: - pos: -43.5,-42.5 @@ -58655,8 +56455,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12016 components: - pos: -43.5,-41.5 @@ -58664,8 +56462,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12017 components: - pos: -43.5,-38.5 @@ -58673,8 +56469,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12018 components: - pos: -43.5,-37.5 @@ -58682,8 +56476,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12020 components: - pos: -43.5,-33.5 @@ -58691,8 +56483,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12021 components: - pos: -43.5,-32.5 @@ -58700,8 +56490,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12022 components: - pos: -43.5,-30.5 @@ -58709,8 +56497,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12023 components: - rot: -1.5707963267948966 rad @@ -58719,8 +56505,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12024 components: - rot: -1.5707963267948966 rad @@ -58729,8 +56513,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12025 components: - rot: -1.5707963267948966 rad @@ -58739,8 +56521,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12032 components: - rot: -1.5707963267948966 rad @@ -58749,8 +56529,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12033 components: - rot: -1.5707963267948966 rad @@ -58759,8 +56537,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12034 components: - rot: -1.5707963267948966 rad @@ -58769,8 +56545,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12035 components: - rot: -1.5707963267948966 rad @@ -58779,8 +56553,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12036 components: - rot: -1.5707963267948966 rad @@ -58789,8 +56561,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12037 components: - rot: -1.5707963267948966 rad @@ -58799,8 +56569,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12038 components: - rot: 3.141592653589793 rad @@ -58809,8 +56577,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12039 components: - rot: 3.141592653589793 rad @@ -58819,8 +56585,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12040 components: - rot: 3.141592653589793 rad @@ -58829,8 +56593,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12041 components: - rot: 3.141592653589793 rad @@ -58839,8 +56601,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12042 components: - rot: 3.141592653589793 rad @@ -58849,8 +56609,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12045 components: - pos: -42.5,-38.5 @@ -58858,8 +56616,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12046 components: - pos: -42.5,-37.5 @@ -58867,8 +56623,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12047 components: - pos: -42.5,-36.5 @@ -58876,8 +56630,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12048 components: - pos: -42.5,-35.5 @@ -58885,8 +56637,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12049 components: - pos: -42.5,-34.5 @@ -58894,8 +56644,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12050 components: - pos: -42.5,-33.5 @@ -58903,8 +56651,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12051 components: - pos: -42.5,-32.5 @@ -58912,8 +56658,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12055 components: - rot: 3.141592653589793 rad @@ -58922,8 +56666,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12056 components: - rot: 3.141592653589793 rad @@ -58932,8 +56674,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12057 components: - rot: 3.141592653589793 rad @@ -58942,8 +56682,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12060 @@ -58953,8 +56691,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12063 @@ -58965,8 +56701,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12064 components: - rot: 1.5707963267948966 rad @@ -58975,8 +56709,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12065 components: - rot: 1.5707963267948966 rad @@ -58985,8 +56717,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12072 components: - rot: -1.5707963267948966 rad @@ -58995,8 +56725,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12073 components: - rot: -1.5707963267948966 rad @@ -59005,8 +56733,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12074 components: - rot: -1.5707963267948966 rad @@ -59015,8 +56741,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12075 components: - rot: -1.5707963267948966 rad @@ -59025,8 +56749,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12076 components: - rot: -1.5707963267948966 rad @@ -59035,8 +56757,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12077 components: - rot: -1.5707963267948966 rad @@ -59045,8 +56765,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12078 components: - rot: -1.5707963267948966 rad @@ -59055,8 +56773,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12079 components: - rot: -1.5707963267948966 rad @@ -59065,8 +56781,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12080 components: - rot: -1.5707963267948966 rad @@ -59075,8 +56789,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12081 components: - rot: -1.5707963267948966 rad @@ -59085,8 +56797,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12082 components: - rot: -1.5707963267948966 rad @@ -59095,8 +56805,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12083 components: - rot: -1.5707963267948966 rad @@ -59105,8 +56813,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12085 components: - rot: 3.141592653589793 rad @@ -59115,8 +56821,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12086 components: - rot: 3.141592653589793 rad @@ -59125,8 +56829,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12087 components: - rot: 3.141592653589793 rad @@ -59135,8 +56837,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12088 components: - rot: 3.141592653589793 rad @@ -59145,8 +56845,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12089 components: - rot: 3.141592653589793 rad @@ -59155,8 +56853,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12095 components: - rot: 3.141592653589793 rad @@ -59165,8 +56861,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12096 components: - rot: 3.141592653589793 rad @@ -59175,8 +56869,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12097 components: - rot: 3.141592653589793 rad @@ -59185,8 +56877,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12098 components: - rot: 3.141592653589793 rad @@ -59195,8 +56885,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12099 components: - rot: 3.141592653589793 rad @@ -59205,8 +56893,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12100 components: - rot: 3.141592653589793 rad @@ -59215,8 +56901,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12101 components: - rot: 3.141592653589793 rad @@ -59225,8 +56909,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12102 components: - rot: 3.141592653589793 rad @@ -59235,8 +56917,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12103 components: - rot: 3.141592653589793 rad @@ -59245,8 +56925,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12104 components: - rot: 3.141592653589793 rad @@ -59255,8 +56933,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12105 components: - rot: 3.141592653589793 rad @@ -59265,8 +56941,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12108 components: - rot: 3.141592653589793 rad @@ -59275,8 +56949,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12109 components: - rot: 3.141592653589793 rad @@ -59285,8 +56957,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12110 components: - rot: 3.141592653589793 rad @@ -59295,8 +56965,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12111 components: - rot: 3.141592653589793 rad @@ -59305,8 +56973,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12112 components: - rot: 3.141592653589793 rad @@ -59315,8 +56981,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12113 components: - rot: 3.141592653589793 rad @@ -59325,8 +56989,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12114 components: - rot: 3.141592653589793 rad @@ -59335,8 +56997,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12115 components: - rot: 3.141592653589793 rad @@ -59345,8 +57005,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12116 components: - rot: 3.141592653589793 rad @@ -59355,8 +57013,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12117 components: - rot: 3.141592653589793 rad @@ -59365,8 +57021,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12118 components: - rot: 3.141592653589793 rad @@ -59375,8 +57029,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12119 components: - rot: 3.141592653589793 rad @@ -59385,8 +57037,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12149 components: - rot: -1.5707963267948966 rad @@ -59395,8 +57045,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12150 components: - rot: -1.5707963267948966 rad @@ -59405,8 +57053,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12151 components: - rot: -1.5707963267948966 rad @@ -59415,8 +57061,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12152 components: - rot: -1.5707963267948966 rad @@ -59425,8 +57069,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12153 components: - rot: -1.5707963267948966 rad @@ -59435,8 +57077,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12160 components: - rot: 1.5707963267948966 rad @@ -59445,8 +57085,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12161 components: - rot: 1.5707963267948966 rad @@ -59455,8 +57093,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12162 components: - rot: 1.5707963267948966 rad @@ -59465,8 +57101,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12163 @@ -59477,8 +57111,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12181 components: - pos: 31.5,4.5 @@ -59486,8 +57118,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12182 components: - pos: 31.5,3.5 @@ -59495,8 +57125,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12183 components: - pos: 31.5,2.5 @@ -59504,8 +57132,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12184 components: - pos: 31.5,1.5 @@ -59513,8 +57139,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12185 components: - pos: 31.5,0.5 @@ -59522,8 +57146,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12186 components: - pos: 31.5,-0.5 @@ -59531,8 +57153,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12187 components: - pos: 31.5,-1.5 @@ -59540,8 +57160,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12196 components: - rot: 1.5707963267948966 rad @@ -59550,8 +57168,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12197 components: - rot: 1.5707963267948966 rad @@ -59560,8 +57176,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12198 @@ -59572,8 +57186,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12201 components: - rot: 1.5707963267948966 rad @@ -59582,8 +57194,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12202 components: - rot: 1.5707963267948966 rad @@ -59592,8 +57202,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12203 @@ -59603,8 +57211,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12204 components: - pos: 30.5,1.5 @@ -59612,8 +57218,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12205 components: - pos: 30.5,0.5 @@ -59621,8 +57225,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12207 components: - pos: 30.5,-1.5 @@ -59630,8 +57232,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12210 components: - pos: -53.5,-11.5 @@ -59639,8 +57239,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12211 components: - pos: -53.5,-12.5 @@ -59648,8 +57246,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12212 components: - pos: -53.5,-13.5 @@ -59657,8 +57253,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12213 components: - pos: -53.5,-14.5 @@ -59666,8 +57260,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12214 components: - pos: -53.5,-15.5 @@ -59675,8 +57267,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12215 components: - pos: -50.5,-13.5 @@ -59684,8 +57274,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12216 components: - pos: -50.5,-14.5 @@ -59693,8 +57281,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12217 components: - pos: -50.5,-15.5 @@ -59702,8 +57288,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12220 components: - pos: -46.5,-11.5 @@ -59711,8 +57295,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12221 components: - pos: -46.5,-12.5 @@ -59720,8 +57302,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12222 components: - pos: -46.5,-13.5 @@ -59729,8 +57309,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12223 components: - pos: -46.5,-14.5 @@ -59738,8 +57316,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12224 components: - pos: -46.5,-15.5 @@ -59747,8 +57323,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12225 components: - pos: -45.5,-15.5 @@ -59756,8 +57330,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12226 components: - pos: -45.5,-14.5 @@ -59765,8 +57337,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12227 components: - pos: -45.5,-13.5 @@ -59774,8 +57344,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12230 @@ -59786,8 +57354,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12231 components: - rot: 1.5707963267948966 rad @@ -59796,8 +57362,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12232 @@ -59808,8 +57372,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12233 components: - rot: 1.5707963267948966 rad @@ -59818,8 +57380,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12236 @@ -59829,8 +57389,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12237 components: - pos: 5.5,-12.5 @@ -59838,8 +57396,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12238 components: - pos: 5.5,-13.5 @@ -59847,8 +57403,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12241 components: - pos: 5.5,-16.5 @@ -59856,8 +57410,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12242 components: - pos: 5.5,-17.5 @@ -59865,8 +57417,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12243 components: - pos: 5.5,-18.5 @@ -59874,8 +57424,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12246 components: - pos: 4.5,-20.5 @@ -59883,8 +57431,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12247 components: - rot: -1.5707963267948966 rad @@ -59893,8 +57439,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12248 components: - pos: 4.5,-22.5 @@ -59902,8 +57446,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12250 components: - pos: 4.5,-24.5 @@ -59911,8 +57453,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12252 components: - pos: 4.5,-26.5 @@ -59920,8 +57460,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12253 components: - pos: 4.5,-27.5 @@ -59929,8 +57467,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12254 components: - pos: 4.5,-28.5 @@ -59938,8 +57474,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12255 components: - pos: 4.5,-29.5 @@ -59947,8 +57481,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12256 components: - pos: 4.5,-30.5 @@ -59956,8 +57488,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12257 components: - pos: 4.5,-31.5 @@ -59965,8 +57495,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12258 components: - pos: 4.5,-32.5 @@ -59974,8 +57502,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12261 components: - pos: 4.5,-35.5 @@ -59983,8 +57509,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12262 components: - pos: 4.5,-36.5 @@ -59992,8 +57516,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12263 components: - pos: 4.5,-37.5 @@ -60001,8 +57523,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12264 components: - pos: 4.5,-38.5 @@ -60010,8 +57530,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12265 components: - pos: 4.5,-39.5 @@ -60019,8 +57537,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12267 components: - pos: 4.5,-41.5 @@ -60028,8 +57544,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12268 components: - pos: 4.5,-42.5 @@ -60037,8 +57551,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12270 components: - rot: -1.5707963267948966 rad @@ -60047,8 +57559,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12272 components: - rot: -1.5707963267948966 rad @@ -60057,8 +57567,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12273 components: - rot: -1.5707963267948966 rad @@ -60067,8 +57575,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12274 components: - rot: -1.5707963267948966 rad @@ -60077,8 +57583,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12275 components: - rot: -1.5707963267948966 rad @@ -60087,8 +57591,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12276 components: - rot: -1.5707963267948966 rad @@ -60097,8 +57599,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12277 components: - rot: -1.5707963267948966 rad @@ -60107,8 +57607,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12278 components: - rot: -1.5707963267948966 rad @@ -60117,8 +57615,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12279 components: - rot: -1.5707963267948966 rad @@ -60127,8 +57623,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12280 components: - rot: -1.5707963267948966 rad @@ -60137,8 +57631,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12281 components: - rot: -1.5707963267948966 rad @@ -60147,8 +57639,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12282 components: - rot: -1.5707963267948966 rad @@ -60157,8 +57647,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12283 components: - rot: -1.5707963267948966 rad @@ -60167,8 +57655,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12284 components: - rot: -1.5707963267948966 rad @@ -60177,8 +57663,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12286 components: - rot: -1.5707963267948966 rad @@ -60187,8 +57671,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12287 components: - rot: -1.5707963267948966 rad @@ -60197,8 +57679,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12289 components: - rot: 3.141592653589793 rad @@ -60207,8 +57687,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12290 components: - rot: 3.141592653589793 rad @@ -60217,8 +57695,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12291 components: - rot: 3.141592653589793 rad @@ -60227,8 +57703,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12292 components: - rot: 3.141592653589793 rad @@ -60237,8 +57711,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12294 components: - rot: 3.141592653589793 rad @@ -60247,8 +57719,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12295 components: - rot: 3.141592653589793 rad @@ -60257,8 +57727,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12296 components: - rot: 3.141592653589793 rad @@ -60267,8 +57735,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12297 components: - rot: 3.141592653589793 rad @@ -60277,8 +57743,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12298 components: - rot: 3.141592653589793 rad @@ -60287,8 +57751,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12299 components: - rot: 3.141592653589793 rad @@ -60297,8 +57759,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12300 components: - rot: 3.141592653589793 rad @@ -60307,8 +57767,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12301 components: - rot: 3.141592653589793 rad @@ -60317,8 +57775,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12302 components: - rot: 3.141592653589793 rad @@ -60327,8 +57783,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12303 components: - rot: 3.141592653589793 rad @@ -60337,8 +57791,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12304 components: - rot: 3.141592653589793 rad @@ -60347,8 +57799,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12307 components: - rot: 3.141592653589793 rad @@ -60357,8 +57807,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12308 components: - rot: 3.141592653589793 rad @@ -60367,8 +57815,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12309 components: - rot: 3.141592653589793 rad @@ -60377,8 +57823,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12310 components: - rot: 3.141592653589793 rad @@ -60387,8 +57831,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12311 components: - rot: 3.141592653589793 rad @@ -60397,8 +57839,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12312 components: - rot: 3.141592653589793 rad @@ -60407,8 +57847,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12313 components: - rot: 3.141592653589793 rad @@ -60417,8 +57855,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12314 components: - rot: 3.141592653589793 rad @@ -60427,8 +57863,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12315 components: - rot: 3.141592653589793 rad @@ -60437,8 +57871,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12316 components: - rot: 3.141592653589793 rad @@ -60447,8 +57879,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12318 components: - rot: 3.141592653589793 rad @@ -60457,8 +57887,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12320 components: - pos: 13.5,-11.5 @@ -60466,8 +57894,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12321 components: - pos: 13.5,-12.5 @@ -60475,8 +57901,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12322 components: - pos: 13.5,-13.5 @@ -60484,8 +57908,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12323 components: - pos: 13.5,-14.5 @@ -60493,8 +57915,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12324 components: - pos: 13.5,-15.5 @@ -60502,8 +57922,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12325 components: - pos: 13.5,-16.5 @@ -60511,8 +57929,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12326 components: - pos: 16.5,-16.5 @@ -60520,8 +57936,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12327 components: - pos: 16.5,-15.5 @@ -60529,8 +57943,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12328 components: - pos: 16.5,-14.5 @@ -60538,8 +57950,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12329 components: - pos: 16.5,-13.5 @@ -60547,8 +57957,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12332 components: - rot: 1.5707963267948966 rad @@ -60557,8 +57965,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12333 components: - rot: 1.5707963267948966 rad @@ -60567,8 +57973,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12334 @@ -60579,8 +57983,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12337 components: - rot: -1.5707963267948966 rad @@ -60589,8 +57991,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12338 components: - rot: -1.5707963267948966 rad @@ -60599,8 +57999,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12339 components: - rot: -1.5707963267948966 rad @@ -60609,8 +58007,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12340 components: - rot: -1.5707963267948966 rad @@ -60619,8 +58015,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12342 components: - rot: 1.5707963267948966 rad @@ -60629,8 +58023,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12343 components: - rot: 1.5707963267948966 rad @@ -60639,8 +58031,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12344 components: - rot: 1.5707963267948966 rad @@ -60649,8 +58039,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12347 components: - rot: -1.5707963267948966 rad @@ -60659,8 +58047,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12348 components: - rot: -1.5707963267948966 rad @@ -60669,8 +58055,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12349 components: - rot: -1.5707963267948966 rad @@ -60679,8 +58063,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12350 components: - rot: -1.5707963267948966 rad @@ -60689,8 +58071,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12351 components: - rot: -1.5707963267948966 rad @@ -60699,8 +58079,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12352 components: - rot: -1.5707963267948966 rad @@ -60709,8 +58087,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12353 @@ -60721,8 +58097,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12354 components: - rot: -1.5707963267948966 rad @@ -60731,8 +58105,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12355 components: - rot: -1.5707963267948966 rad @@ -60741,8 +58113,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12360 components: - rot: -1.5707963267948966 rad @@ -60751,8 +58121,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12361 components: - rot: -1.5707963267948966 rad @@ -60761,8 +58129,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12362 components: - rot: -1.5707963267948966 rad @@ -60771,8 +58137,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12365 components: - rot: 1.5707963267948966 rad @@ -60781,8 +58145,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12366 components: - rot: 1.5707963267948966 rad @@ -60791,8 +58153,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12367 components: - rot: 1.5707963267948966 rad @@ -60801,8 +58161,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12370 components: - rot: -1.5707963267948966 rad @@ -60811,8 +58169,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12371 components: - rot: -1.5707963267948966 rad @@ -60821,8 +58177,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12372 components: - rot: -1.5707963267948966 rad @@ -60831,8 +58185,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12373 components: - rot: -1.5707963267948966 rad @@ -60841,8 +58193,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12374 components: - rot: -1.5707963267948966 rad @@ -60851,8 +58201,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12375 components: - rot: -1.5707963267948966 rad @@ -60861,8 +58209,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12376 components: - rot: -1.5707963267948966 rad @@ -60871,8 +58217,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12377 components: - rot: -1.5707963267948966 rad @@ -60881,8 +58225,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12378 components: - rot: -1.5707963267948966 rad @@ -60891,8 +58233,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12379 components: - rot: -1.5707963267948966 rad @@ -60901,8 +58241,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12384 components: - rot: -1.5707963267948966 rad @@ -60911,8 +58249,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12385 components: - rot: -1.5707963267948966 rad @@ -60921,8 +58257,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12387 components: - rot: -1.5707963267948966 rad @@ -60931,8 +58265,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12388 components: - rot: -1.5707963267948966 rad @@ -60941,8 +58273,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12389 components: - rot: -1.5707963267948966 rad @@ -60951,8 +58281,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12391 components: - rot: 1.5707963267948966 rad @@ -60961,8 +58289,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12392 components: - rot: 1.5707963267948966 rad @@ -60971,8 +58297,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12394 components: - rot: 1.5707963267948966 rad @@ -60981,8 +58305,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12395 components: - rot: 1.5707963267948966 rad @@ -60991,8 +58313,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12396 components: - rot: 1.5707963267948966 rad @@ -61001,8 +58321,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12398 components: - rot: -1.5707963267948966 rad @@ -61011,8 +58329,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12400 components: - rot: 3.141592653589793 rad @@ -61021,8 +58337,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12401 components: - rot: 3.141592653589793 rad @@ -61031,8 +58345,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12403 components: - rot: 1.5707963267948966 rad @@ -61041,8 +58353,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12404 components: - rot: 1.5707963267948966 rad @@ -61051,8 +58361,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12405 components: - rot: 1.5707963267948966 rad @@ -61061,8 +58369,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12409 components: - rot: 3.141592653589793 rad @@ -61071,8 +58377,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12410 components: - rot: 3.141592653589793 rad @@ -61081,8 +58385,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12411 components: - rot: 3.141592653589793 rad @@ -61091,8 +58393,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12412 components: - rot: 3.141592653589793 rad @@ -61101,8 +58401,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12422 components: - pos: 8.5,-39.5 @@ -61110,8 +58408,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12423 components: - pos: 8.5,-37.5 @@ -61119,8 +58415,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12424 components: - pos: 8.5,-36.5 @@ -61128,8 +58422,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12425 components: - pos: 8.5,-35.5 @@ -61137,8 +58429,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12426 components: - pos: 8.5,-34.5 @@ -61146,8 +58436,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12427 @@ -61157,8 +58445,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12428 components: - pos: 9.5,-34.5 @@ -61166,8 +58452,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12433 @@ -61178,8 +58462,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12434 components: - rot: 3.141592653589793 rad @@ -61188,8 +58470,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12436 components: - rot: 3.141592653589793 rad @@ -61198,8 +58478,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12441 components: - pos: -6.5,-52.5 @@ -61207,8 +58485,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12442 components: - pos: -6.5,-53.5 @@ -61216,8 +58492,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12444 @@ -61227,8 +58501,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12445 components: - pos: -12.5,-45.5 @@ -61236,8 +58508,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12446 components: - pos: -12.5,-46.5 @@ -61245,8 +58515,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12447 components: - pos: -12.5,-47.5 @@ -61254,8 +58522,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12449 components: - pos: -12.5,-49.5 @@ -61263,8 +58529,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12450 @@ -61274,8 +58538,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12451 components: - pos: -12.5,-51.5 @@ -61283,8 +58545,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12455 components: - rot: 1.5707963267948966 rad @@ -61293,8 +58553,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12456 components: - rot: 1.5707963267948966 rad @@ -61303,8 +58561,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12461 components: - rot: -1.5707963267948966 rad @@ -61313,8 +58569,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12462 components: - rot: -1.5707963267948966 rad @@ -61323,8 +58577,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12463 components: - rot: -1.5707963267948966 rad @@ -61333,8 +58585,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12464 components: - rot: -1.5707963267948966 rad @@ -61343,8 +58593,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12468 components: - pos: -12.5,-53.5 @@ -61352,8 +58600,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12469 components: - pos: -12.5,-54.5 @@ -61361,8 +58607,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12471 components: - rot: 1.5707963267948966 rad @@ -61371,8 +58615,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12472 components: - rot: 1.5707963267948966 rad @@ -61381,8 +58623,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12473 components: - rot: 1.5707963267948966 rad @@ -61391,8 +58631,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12474 components: - rot: 1.5707963267948966 rad @@ -61401,8 +58639,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12476 components: - rot: 1.5707963267948966 rad @@ -61411,8 +58647,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12481 components: - rot: 3.141592653589793 rad @@ -61421,8 +58655,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12482 components: - rot: 3.141592653589793 rad @@ -61431,8 +58663,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12483 components: - rot: 3.141592653589793 rad @@ -61441,8 +58671,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12484 components: - rot: 3.141592653589793 rad @@ -61451,8 +58679,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12485 components: - rot: 3.141592653589793 rad @@ -61461,8 +58687,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12486 components: - rot: 3.141592653589793 rad @@ -61471,8 +58695,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12487 components: - rot: 3.141592653589793 rad @@ -61481,8 +58703,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12492 components: - pos: -5.5,-60.5 @@ -61490,8 +58710,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12493 components: - pos: -5.5,-59.5 @@ -61499,8 +58717,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12494 components: - pos: -5.5,-58.5 @@ -61508,8 +58724,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12495 components: - pos: -5.5,-57.5 @@ -61517,8 +58731,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12496 components: - pos: -5.5,-56.5 @@ -61526,8 +58738,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12497 components: - pos: -5.5,-62.5 @@ -61535,8 +58745,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12498 components: - pos: -5.5,-63.5 @@ -61544,8 +58752,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12499 components: - pos: -5.5,-64.5 @@ -61553,8 +58759,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12500 components: - pos: -5.5,-65.5 @@ -61562,8 +58766,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12501 @@ -61573,8 +58775,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12502 @@ -61584,8 +58784,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12503 @@ -61595,8 +58793,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12508 components: - pos: -6.5,-69.5 @@ -61604,8 +58800,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12509 components: - pos: -6.5,-68.5 @@ -61613,8 +58807,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12510 components: - pos: -6.5,-67.5 @@ -61622,8 +58814,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12511 @@ -61633,8 +58823,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12512 @@ -61644,8 +58832,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12513 @@ -61655,8 +58841,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12514 components: - pos: -6.5,-63.5 @@ -61664,8 +58848,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12515 components: - pos: -5.5,-70.5 @@ -61673,8 +58855,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12516 components: - pos: -5.5,-71.5 @@ -61682,8 +58862,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12517 components: - pos: -6.5,-71.5 @@ -61691,8 +58869,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12518 components: - pos: -6.5,-72.5 @@ -61700,8 +58876,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12519 components: - pos: -6.5,-73.5 @@ -61709,8 +58883,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12521 components: - rot: -1.5707963267948966 rad @@ -61719,8 +58891,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12522 components: - rot: -1.5707963267948966 rad @@ -61729,8 +58899,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12524 components: - pos: -5.5,-72.5 @@ -61738,8 +58906,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12525 components: - pos: -5.5,-73.5 @@ -61747,8 +58913,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12526 components: - pos: -5.5,-74.5 @@ -61756,8 +58920,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12529 components: - rot: 1.5707963267948966 rad @@ -61766,8 +58928,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12530 components: - rot: 1.5707963267948966 rad @@ -61776,8 +58936,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12531 @@ -61788,8 +58946,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12533 components: - rot: 3.141592653589793 rad @@ -61798,8 +58954,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12534 components: - rot: 3.141592653589793 rad @@ -61808,8 +58962,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12536 components: - pos: -34.5,-44.5 @@ -61817,8 +58969,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12537 components: - pos: -34.5,-45.5 @@ -61826,8 +58976,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12538 components: - pos: -34.5,-46.5 @@ -61835,8 +58983,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12539 components: - pos: -34.5,-47.5 @@ -61844,8 +58990,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12540 components: - pos: -34.5,-48.5 @@ -61853,8 +58997,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12541 components: - pos: -32.5,-46.5 @@ -61862,8 +59004,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12542 components: - pos: -32.5,-47.5 @@ -61871,8 +59011,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12543 components: - pos: -32.5,-48.5 @@ -61880,8 +59018,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12552 components: - pos: -48.5,-46.5 @@ -61889,8 +59025,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 12553 @@ -61900,8 +59034,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12554 components: - pos: -48.5,-48.5 @@ -61909,8 +59041,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12555 components: - pos: -49.5,-44.5 @@ -61918,8 +59048,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12556 components: - pos: -49.5,-45.5 @@ -61927,8 +59055,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12557 components: - pos: -49.5,-46.5 @@ -61936,8 +59062,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12558 components: - pos: -49.5,-47.5 @@ -61945,8 +59069,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12559 components: - pos: -49.5,-48.5 @@ -61954,8 +59076,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 13067 components: - rot: 3.141592653589793 rad @@ -61964,8 +59084,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 13068 components: - rot: 3.141592653589793 rad @@ -61974,8 +59092,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 13069 components: - rot: 3.141592653589793 rad @@ -61984,8 +59100,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 13070 components: - rot: 3.141592653589793 rad @@ -61994,8 +59108,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 13106 components: - rot: 3.141592653589793 rad @@ -62004,8 +59116,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 13107 @@ -62016,8 +59126,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 13109 @@ -62028,8 +59136,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - proto: GasPipeTJunction @@ -62042,8 +59148,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2222 @@ -62052,8 +59156,6 @@ entities: pos: -35.5,9.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2223 @@ -62062,8 +59164,6 @@ entities: pos: -34.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2419 @@ -62072,8 +59172,6 @@ entities: pos: -34.5,21.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2420 @@ -62081,8 +59179,6 @@ entities: - pos: -36.5,21.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 2444 @@ -62091,8 +59187,6 @@ entities: pos: -32.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 3128 @@ -62103,8 +59197,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 3129 @@ -62115,8 +59207,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 3409 @@ -62125,16 +59215,12 @@ entities: 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 @@ -62142,8 +59228,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6273 components: - pos: -29.5,-1.5 @@ -62151,8 +59235,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6274 components: - rot: 1.5707963267948966 rad @@ -62161,8 +59243,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6284 components: - rot: 1.5707963267948966 rad @@ -62171,8 +59251,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - enabled: True type: AmbientSound - uid: 6286 @@ -62183,8 +59261,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6303 components: - rot: -1.5707963267948966 rad @@ -62193,8 +59269,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6305 components: - rot: 3.141592653589793 rad @@ -62203,8 +59277,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6313 components: - pos: -25.5,-1.5 @@ -62212,8 +59284,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6316 components: - rot: 3.141592653589793 rad @@ -62222,8 +59292,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6320 components: - pos: -25.5,-0.5 @@ -62231,16 +59299,12 @@ entities: 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 @@ -62250,8 +59314,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11186 components: - rot: -1.5707963267948966 rad @@ -62260,8 +59322,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11196 components: - pos: -20.5,-0.5 @@ -62269,8 +59329,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11197 components: - rot: 3.141592653589793 rad @@ -62279,8 +59337,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11210 components: - rot: -1.5707963267948966 rad @@ -62289,8 +59345,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11211 components: - rot: -1.5707963267948966 rad @@ -62299,8 +59353,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11214 components: - rot: -1.5707963267948966 rad @@ -62309,8 +59361,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11217 components: - rot: 1.5707963267948966 rad @@ -62319,8 +59369,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11225 components: - rot: 1.5707963267948966 rad @@ -62329,8 +59377,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11239 components: - rot: 3.141592653589793 rad @@ -62339,8 +59385,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11246 components: - pos: -1.5,3.5 @@ -62348,8 +59392,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11255 components: - rot: 3.141592653589793 rad @@ -62358,8 +59400,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11259 components: - rot: 3.141592653589793 rad @@ -62368,8 +59408,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11267 components: - rot: -1.5707963267948966 rad @@ -62378,8 +59416,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11270 components: - rot: 3.141592653589793 rad @@ -62388,8 +59424,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11289 components: - rot: -1.5707963267948966 rad @@ -62398,8 +59432,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11320 components: - pos: -45.5,-12.5 @@ -62407,8 +59439,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11322 components: - rot: 3.141592653589793 rad @@ -62417,8 +59447,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11325 components: - pos: -50.5,-12.5 @@ -62426,8 +59454,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11333 components: - rot: 3.141592653589793 rad @@ -62436,8 +59462,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11345 components: - rot: 3.141592653589793 rad @@ -62446,8 +59470,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11369 components: - pos: -30.5,-10.5 @@ -62455,8 +59477,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11392 components: - pos: -53.5,-10.5 @@ -62464,8 +59484,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11396 components: - pos: -49.5,-10.5 @@ -62473,8 +59491,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11399 components: - pos: -46.5,-10.5 @@ -62482,8 +59498,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11407 components: - pos: -17.5,-10.5 @@ -62491,8 +59505,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11442 components: - rot: -1.5707963267948966 rad @@ -62501,8 +59513,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11444 components: - rot: 1.5707963267948966 rad @@ -62511,8 +59521,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11449 components: - rot: -1.5707963267948966 rad @@ -62521,8 +59529,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11456 components: - rot: 1.5707963267948966 rad @@ -62531,8 +59537,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11469 components: - rot: 1.5707963267948966 rad @@ -62541,8 +59545,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11470 components: - rot: -1.5707963267948966 rad @@ -62551,8 +59553,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11473 components: - rot: -1.5707963267948966 rad @@ -62561,8 +59561,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11482 components: - rot: 1.5707963267948966 rad @@ -62571,8 +59569,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11503 components: - rot: 3.141592653589793 rad @@ -62581,8 +59577,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11504 components: - pos: -22.5,-20.5 @@ -62590,8 +59584,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11505 components: - rot: 3.141592653589793 rad @@ -62600,8 +59592,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11506 components: - rot: 3.141592653589793 rad @@ -62610,8 +59600,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11517 components: - pos: -24.5,-21.5 @@ -62619,8 +59607,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11523 components: - rot: 3.141592653589793 rad @@ -62629,16 +59615,12 @@ entities: 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 @@ -62646,8 +59628,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11565 components: - rot: 3.141592653589793 rad @@ -62656,8 +59636,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11566 components: - rot: 3.141592653589793 rad @@ -62666,8 +59644,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11568 components: - pos: -35.5,-20.5 @@ -62675,8 +59651,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11574 components: - rot: 3.141592653589793 rad @@ -62685,8 +59659,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11606 components: - pos: -2.5,-10.5 @@ -62694,8 +59666,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11607 components: - rot: 3.141592653589793 rad @@ -62704,8 +59674,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11627 components: - rot: 1.5707963267948966 rad @@ -62714,8 +59682,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11636 components: - rot: -1.5707963267948966 rad @@ -62724,8 +59690,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11651 components: - rot: 3.141592653589793 rad @@ -62734,8 +59698,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11654 components: - rot: 3.141592653589793 rad @@ -62744,8 +59706,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11670 components: - pos: -0.5,-6.5 @@ -62753,8 +59713,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11674 components: - pos: -1.5,-7.5 @@ -62762,8 +59720,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11692 components: - pos: 8.5,-10.5 @@ -62771,8 +59727,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11693 components: - rot: 3.141592653589793 rad @@ -62781,8 +59735,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11694 components: - rot: 3.141592653589793 rad @@ -62791,8 +59743,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11695 components: - rot: 3.141592653589793 rad @@ -62801,8 +59751,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11703 components: - rot: 3.141592653589793 rad @@ -62811,8 +59759,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11710 components: - pos: 13.5,-10.5 @@ -62820,8 +59766,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11719 components: - pos: 22.5,-10.5 @@ -62829,8 +59773,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11723 components: - rot: 3.141592653589793 rad @@ -62839,8 +59781,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11724 components: - rot: 3.141592653589793 rad @@ -62849,8 +59789,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11732 components: - rot: 3.141592653589793 rad @@ -62859,8 +59797,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11736 components: - pos: 16.5,-12.5 @@ -62868,8 +59804,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11745 components: - rot: 1.5707963267948966 rad @@ -62878,8 +59812,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11757 components: - rot: 3.141592653589793 rad @@ -62888,8 +59820,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11762 components: - rot: -1.5707963267948966 rad @@ -62898,8 +59828,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11768 components: - rot: 1.5707963267948966 rad @@ -62908,8 +59836,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11769 components: - rot: -1.5707963267948966 rad @@ -62918,8 +59844,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11787 components: - rot: 1.5707963267948966 rad @@ -62928,8 +59852,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11808 components: - rot: -1.5707963267948966 rad @@ -62938,8 +59860,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11816 components: - rot: -1.5707963267948966 rad @@ -62948,8 +59868,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11821 components: - rot: 1.5707963267948966 rad @@ -62958,8 +59876,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11822 components: - rot: -1.5707963267948966 rad @@ -62968,8 +59884,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11836 components: - rot: 1.5707963267948966 rad @@ -62978,8 +59892,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11845 components: - rot: 1.5707963267948966 rad @@ -62988,8 +59900,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11865 components: - rot: 1.5707963267948966 rad @@ -62998,8 +59908,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11876 components: - rot: 3.141592653589793 rad @@ -63008,8 +59916,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11881 components: - rot: 3.141592653589793 rad @@ -63018,8 +59924,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11887 components: - pos: -49.5,-43.5 @@ -63027,8 +59931,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11891 components: - pos: -16.5,-43.5 @@ -63036,8 +59938,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11908 components: - rot: 3.141592653589793 rad @@ -63046,8 +59946,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11909 components: - pos: -34.5,-43.5 @@ -63055,8 +59953,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11911 components: - rot: 3.141592653589793 rad @@ -63065,8 +59961,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11928 components: - rot: 3.141592653589793 rad @@ -63075,8 +59969,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11934 components: - pos: -48.5,-45.5 @@ -63084,8 +59976,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11940 components: - rot: 3.141592653589793 rad @@ -63094,8 +59984,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11947 components: - pos: -36.5,-43.5 @@ -63103,8 +59991,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11950 components: - pos: -32.5,-45.5 @@ -63112,8 +59998,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11953 components: - rot: 3.141592653589793 rad @@ -63122,8 +60006,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11963 components: - pos: -7.5,-45.5 @@ -63131,8 +60013,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11971 components: - rot: 3.141592653589793 rad @@ -63141,8 +60021,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11975 components: - pos: 4.5,-45.5 @@ -63150,8 +60028,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11982 components: - pos: 2.5,-43.5 @@ -63159,8 +60035,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12009 components: - rot: 1.5707963267948966 rad @@ -63169,8 +60043,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12010 components: - rot: -1.5707963267948966 rad @@ -63179,8 +60051,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12011 components: - rot: -1.5707963267948966 rad @@ -63189,8 +60059,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12012 components: - rot: 1.5707963267948966 rad @@ -63199,8 +60067,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12013 components: - rot: -1.5707963267948966 rad @@ -63209,8 +60075,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12019 components: - rot: 1.5707963267948966 rad @@ -63219,8 +60083,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12043 components: - rot: -1.5707963267948966 rad @@ -63229,8 +60091,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12066 components: - rot: 3.141592653589793 rad @@ -63239,8 +60099,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12067 components: - rot: 3.141592653589793 rad @@ -63249,8 +60107,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12069 components: - rot: 3.141592653589793 rad @@ -63259,8 +60115,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12090 components: - rot: 1.5707963267948966 rad @@ -63269,8 +60123,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12107 components: - rot: -1.5707963267948966 rad @@ -63279,8 +60131,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12206 components: - rot: 1.5707963267948966 rad @@ -63289,8 +60139,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12239 components: - rot: 1.5707963267948966 rad @@ -63299,8 +60147,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12240 components: - rot: -1.5707963267948966 rad @@ -63309,8 +60155,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12249 components: - rot: 1.5707963267948966 rad @@ -63319,8 +60163,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12251 components: - rot: 1.5707963267948966 rad @@ -63329,8 +60171,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12260 components: - rot: -1.5707963267948966 rad @@ -63339,8 +60179,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12266 components: - rot: 1.5707963267948966 rad @@ -63349,8 +60187,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12271 components: - pos: 1.5,-43.5 @@ -63358,8 +60194,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12285 components: - pos: -12.5,-43.5 @@ -63367,8 +60201,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12288 components: - rot: -1.5707963267948966 rad @@ -63377,8 +60209,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12293 components: - rot: -1.5707963267948966 rad @@ -63387,8 +60217,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12306 components: - rot: -1.5707963267948966 rad @@ -63397,8 +60225,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12317 components: - rot: -1.5707963267948966 rad @@ -63407,8 +60233,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12319 components: - rot: 1.5707963267948966 rad @@ -63417,8 +60241,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12356 components: - rot: -1.5707963267948966 rad @@ -63427,8 +60249,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12382 components: - rot: 1.5707963267948966 rad @@ -63437,8 +60257,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12390 components: - pos: 13.5,-36.5 @@ -63446,8 +60264,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12393 components: - rot: 3.141592653589793 rad @@ -63456,8 +60272,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12397 components: - pos: 12.5,-40.5 @@ -63465,8 +60279,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12421 components: - rot: 1.5707963267948966 rad @@ -63475,8 +60287,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12435 components: - rot: -1.5707963267948966 rad @@ -63485,8 +60295,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12439 components: - rot: -1.5707963267948966 rad @@ -63495,8 +60303,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12448 components: - rot: 1.5707963267948966 rad @@ -63505,8 +60311,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12466 components: - rot: -1.5707963267948966 rad @@ -63515,8 +60319,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12475 components: - rot: 3.141592653589793 rad @@ -63525,8 +60327,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12477 components: - pos: -5.5,-55.5 @@ -63534,8 +60334,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12488 components: - rot: 1.5707963267948966 rad @@ -63544,8 +60342,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12490 components: - rot: -1.5707963267948966 rad @@ -63554,8 +60350,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12504 components: - rot: -1.5707963267948966 rad @@ -63564,8 +60358,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12505 components: - rot: 1.5707963267948966 rad @@ -63574,8 +60366,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12520 components: - rot: -1.5707963267948966 rad @@ -63584,8 +60374,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - proto: GasPort entities: - uid: 1415 @@ -63593,109 +60381,81 @@ entities: - 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 @@ -63704,8 +60464,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6353 components: - rot: 3.141592653589793 rad @@ -63714,8 +60472,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6354 components: - rot: 3.141592653589793 rad @@ -63724,8 +60480,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6355 components: - rot: 3.141592653589793 rad @@ -63734,8 +60488,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6356 components: - rot: 3.141592653589793 rad @@ -63744,16 +60496,12 @@ entities: 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 @@ -63761,109 +60509,81 @@ entities: - 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 @@ -63905,20 +60625,16 @@ entities: type: Transform - open: False type: GasValve + - enabled: False + type: AmbientSound - 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 @@ -63927,17 +60643,13 @@ entities: type: Transform - open: False type: GasValve - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - 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 @@ -63945,788 +60657,788 @@ entities: - pos: -28.5,-6.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6287 components: - rot: -1.5707963267948966 rad pos: -30.5,7.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6288 components: - pos: -31.5,10.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6300 components: - rot: 3.141592653589793 rad pos: -31.5,-2.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6319 components: - pos: -26.5,1.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6322 components: - rot: 3.141592653589793 rad pos: -25.5,-2.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6745 components: - pos: -76.5,-45.5 parent: 6 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 11185 components: - rot: 1.5707963267948966 rad pos: -37.5,-7.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11187 components: - rot: 1.5707963267948966 rad pos: -34.5,-8.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11199 components: - pos: -19.5,-0.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11219 components: - rot: 1.5707963267948966 rad pos: -15.5,-4.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11227 components: - pos: -14.5,6.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11240 components: - rot: -1.5707963267948966 rad pos: -4.5,4.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11241 components: - pos: -5.5,6.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11277 components: - rot: 1.5707963267948966 rad pos: -7.5,-0.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11279 components: - pos: 0.5,0.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11291 components: - pos: 6.5,6.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11355 components: - rot: 1.5707963267948966 rad pos: -57.5,-12.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11406 components: - pos: -16.5,-11.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11416 components: - rot: -1.5707963267948966 rad pos: -10.5,-16.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11509 components: - pos: -23.5,-20.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11512 components: - pos: -21.5,-17.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11558 components: - rot: -1.5707963267948966 rad pos: -23.5,-29.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11577 components: - pos: -37.5,-18.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11586 components: - pos: -34.5,-16.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11592 components: - rot: 1.5707963267948966 rad pos: -38.5,-21.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11671 components: - rot: 1.5707963267948966 rad pos: -1.5,-6.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11681 components: - rot: -1.5707963267948966 rad pos: 2.5,-6.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11686 components: - pos: -3.5,-11.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11688 components: - rot: 1.5707963267948966 rad pos: 5.5,-4.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11697 components: - pos: 9.5,-11.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11704 components: - pos: 12.5,-7.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11748 components: - rot: -1.5707963267948966 rad pos: 18.5,-7.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11783 components: - rot: 1.5707963267948966 rad pos: 13.5,-0.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11786 components: - rot: -1.5707963267948966 rad pos: 17.5,-0.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11812 components: - pos: 15.5,18.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11813 components: - rot: 1.5707963267948966 rad pos: 14.5,14.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11853 components: - rot: -1.5707963267948966 rad pos: -7.5,-25.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11859 components: - rot: 1.5707963267948966 rad pos: -18.5,-31.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11875 components: - rot: -1.5707963267948966 rad pos: -9.5,-34.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11955 components: - rot: 1.5707963267948966 rad pos: -14.5,-21.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11956 components: - rot: 1.5707963267948966 rad pos: -14.5,-33.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11981 components: - rot: -1.5707963267948966 rad pos: 5.5,-48.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - 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 + - enabled: False + type: AmbientSound - uid: 12004 components: - pos: -35.5,-44.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12044 components: - rot: 1.5707963267948966 rad pos: -43.5,-39.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12053 components: - rot: 1.5707963267948966 rad pos: -43.5,-31.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12058 components: - pos: 28.5,-8.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12061 components: - pos: 20.5,-11.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12071 components: - pos: 37.5,-11.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12168 components: - rot: -1.5707963267948966 rad pos: 46.5,-6.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12170 components: - rot: -1.5707963267948966 rad pos: 46.5,2.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12199 components: - rot: 1.5707963267948966 rad pos: 27.5,5.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12208 components: - rot: 1.5707963267948966 rad pos: 30.5,-2.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12219 components: - rot: 3.141592653589793 rad pos: -50.5,-16.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12229 components: - rot: 3.141592653589793 rad pos: -45.5,-16.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12305 components: - rot: 1.5707963267948966 rad pos: 5.5,-36.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12330 components: - rot: 3.141592653589793 rad pos: 16.5,-17.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12346 components: - rot: 3.141592653589793 rad pos: 1.5,-17.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12358 components: - rot: 1.5707963267948966 rad pos: -0.5,-24.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12364 components: - rot: 1.5707963267948966 rad pos: 5.5,-21.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12368 components: - rot: -1.5707963267948966 rad pos: 9.5,-22.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12381 components: - rot: 1.5707963267948966 rad pos: -0.5,-35.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12408 components: - rot: -1.5707963267948966 rad pos: 14.5,-36.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12413 components: - rot: 3.141592653589793 rad pos: 13.5,-41.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12419 components: - rot: 3.141592653589793 rad pos: 9.5,-37.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12430 components: - pos: 9.5,-33.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12431 components: - pos: 0.5,-44.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12440 components: - rot: 1.5707963267948966 rad pos: -7.5,-51.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12453 components: - rot: 1.5707963267948966 rad pos: -8.5,-48.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12460 components: - pos: -15.5,-52.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12467 components: - pos: -10.5,-52.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12480 components: - rot: 3.141592653589793 rad pos: -5.5,-55.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12489 components: - rot: -1.5707963267948966 rad pos: -5.5,-62.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12506 components: - rot: -1.5707963267948966 rad pos: -5.5,-70.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12523 components: - rot: 1.5707963267948966 rad pos: -9.5,-74.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12528 components: - rot: 3.141592653589793 rad pos: -6.5,-75.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12544 components: - rot: 3.141592653589793 rad pos: -32.5,-49.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12547 components: - pos: -47.5,-11.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12548 components: - pos: -28.5,-11.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12550 components: - pos: -15.5,-44.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12560 components: - rot: 3.141592653589793 rad pos: -48.5,-49.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - proto: GasVentScrubber entities: - uid: 6262 @@ -64734,847 +61446,847 @@ entities: - pos: -26.5,-6.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6321 components: - rot: 3.141592653589793 rad pos: -25.5,-1.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6379 components: - pos: -32.5,-2.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11200 components: - rot: 3.141592653589793 rad pos: -20.5,-1.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11228 components: - pos: -15.5,6.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11243 components: - rot: -1.5707963267948966 rad pos: -14.5,2.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11245 components: - rot: 1.5707963267948966 rad pos: -4.5,3.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11258 components: - pos: -3.5,6.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11260 components: - rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11266 components: - rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11294 components: - pos: 5.5,6.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11356 components: - rot: 3.141592653589793 rad pos: -63.5,-12.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11382 components: - rot: 3.141592653589793 rad pos: -17.5,-11.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11508 components: - rot: 3.141592653589793 rad pos: -22.5,-21.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11513 components: - pos: -23.5,-17.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11530 components: - pos: -29.5,-17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 11549 components: - rot: -1.5707963267948966 rad pos: -24.5,-30.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11573 components: - pos: -38.5,-18.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11585 components: - pos: -33.5,-16.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11593 components: - rot: 3.141592653589793 rad pos: -35.5,-21.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11676 components: - pos: -2.5,-6.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11682 components: - pos: 3.5,-6.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11687 components: - rot: 3.141592653589793 rad pos: -2.5,-11.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11689 components: - rot: -1.5707963267948966 rad pos: 6.5,2.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11696 components: - rot: 3.141592653589793 rad pos: 8.5,-11.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11766 components: - rot: 3.141592653589793 rad pos: 9.5,-4.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11770 components: - rot: -1.5707963267948966 rad pos: 13.5,-1.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11774 components: - rot: 3.141592653589793 rad pos: 17.5,-7.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11792 components: - rot: -1.5707963267948966 rad pos: 17.5,0.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11825 components: - rot: -1.5707963267948966 rad pos: 17.5,6.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11827 components: - rot: 1.5707963267948966 rad pos: 12.5,7.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11838 components: - pos: 14.5,18.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11839 components: - rot: -1.5707963267948966 rad pos: 15.5,16.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11852 components: - rot: -1.5707963267948966 rad pos: -6.5,-24.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11863 components: - rot: 3.141592653589793 rad pos: -19.5,-30.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11874 components: - rot: -1.5707963267948966 rad pos: -9.5,-35.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11954 components: - rot: -1.5707963267948966 rad pos: -14.5,-22.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11957 components: - rot: -1.5707963267948966 rad pos: -14.5,-36.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11990 components: - rot: -1.5707963267948966 rad pos: 4.5,-49.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12001 components: - pos: -56.5,-42.5 parent: 6 type: Transform - - bodyType: Static - type: Physics + - enabled: False + type: AmbientSound - uid: 12005 components: - rot: 3.141592653589793 rad pos: -36.5,-44.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12008 components: - pos: -33.5,-40.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12026 components: - rot: 1.5707963267948966 rad pos: -45.5,-39.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12027 components: - rot: 1.5707963267948966 rad pos: -45.5,-35.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12028 components: - rot: 1.5707963267948966 rad pos: -45.5,-31.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12029 components: - rot: -1.5707963267948966 rad pos: -40.5,-29.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12030 components: - rot: -1.5707963267948966 rad pos: -40.5,-34.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12031 components: - rot: -1.5707963267948966 rad pos: -40.5,-40.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12054 components: - rot: -1.5707963267948966 rad pos: -42.5,-36.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12059 components: - pos: 26.5,-8.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12062 components: - rot: 3.141592653589793 rad pos: 22.5,-11.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12070 components: - rot: 3.141592653589793 rad pos: 36.5,-11.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12200 components: - rot: 1.5707963267948966 rad pos: 27.5,3.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12209 components: - rot: -1.5707963267948966 rad pos: 31.5,-0.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12218 components: - rot: 3.141592653589793 rad pos: -53.5,-16.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12228 components: - rot: 3.141592653589793 rad pos: -46.5,-16.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12234 components: - rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12235 components: - rot: 1.5707963267948966 rad pos: 9.5,3.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12331 components: - rot: 3.141592653589793 rad pos: 13.5,-17.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12336 components: - rot: 3.141592653589793 rad pos: 9.5,-15.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12345 components: - rot: 1.5707963267948966 rad pos: 1.5,-15.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12357 components: - rot: 1.5707963267948966 rad pos: -0.5,-21.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12363 components: - pos: 5.5,-24.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12369 components: - rot: -1.5707963267948966 rad pos: 9.5,-23.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12380 components: - rot: 1.5707963267948966 rad pos: -0.5,-34.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12383 components: - rot: -1.5707963267948966 rad pos: 5.5,-33.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12407 components: - pos: 18.5,-36.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12414 components: - rot: 3.141592653589793 rad pos: 12.5,-41.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12420 components: - rot: -1.5707963267948966 rad pos: 9.5,-38.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12429 components: - pos: 8.5,-33.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12432 components: - rot: 3.141592653589793 rad pos: 1.5,-44.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12454 components: - rot: -1.5707963267948966 rad pos: -11.5,-48.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12458 components: - pos: -15.5,-51.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12465 components: - rot: -1.5707963267948966 rad pos: -11.5,-52.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12478 components: - rot: -1.5707963267948966 rad pos: -4.5,-55.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12491 components: - rot: 1.5707963267948966 rad pos: -6.5,-61.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12507 components: - rot: 1.5707963267948966 rad pos: -6.5,-69.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12527 components: - rot: 3.141592653589793 rad pos: -5.5,-75.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12535 components: - pos: -7.5,-52.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12545 components: - rot: 3.141592653589793 rad pos: -34.5,-49.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12546 components: - rot: 3.141592653589793 rad pos: -49.5,-11.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12549 components: - rot: 3.141592653589793 rad pos: -30.5,-11.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12551 components: - rot: 3.141592653589793 rad pos: -16.5,-44.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12561 components: - rot: 3.141592653589793 rad pos: -49.5,-49.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 13071 components: - rot: 3.141592653589793 rad pos: -29.5,-25.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 13074 components: - rot: -1.5707963267948966 rad pos: -10.5,-15.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 13110 components: - rot: -1.5707963267948966 rad pos: -31.5,11.5 parent: 6 type: Transform + - enabled: False + type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - proto: GasVolumePump entities: - uid: 3408 @@ -65585,8 +62297,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - proto: Gauze entities: - uid: 6192 @@ -69431,8 +66141,6 @@ entities: - pos: 3.5,-0.5 parent: 13645 type: Transform - - bodyType: Static - type: Physics - proto: Handcuffs entities: - uid: 6335 @@ -69812,7 +66520,66 @@ entities: - pos: 2.4263153,-7.4032135 parent: 10465 type: Transform -- proto: Intercom +- 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: IntercomCommon entities: - uid: 13170 components: @@ -69895,65 +66662,6 @@ entities: 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 @@ -70738,6 +67446,10 @@ entities: occludes: True ents: - 5173 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null type: ContainerContainer - uid: 5076 components: @@ -70772,6 +67484,10 @@ entities: - 6324 - 6323 - 5174 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null type: ContainerContainer - proto: LockerHeadOfPersonnelFilled entities: @@ -71223,36 +67939,26 @@ entities: - 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 @@ -71963,8 +68669,6 @@ entities: - pos: -20.5,3.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - proto: Omnitool entities: - uid: 5173 @@ -72458,36 +69162,26 @@ entities: - 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 @@ -72533,8 +69227,6 @@ entities: - pos: -22.621544,4.592372 parent: 6 type: Transform - - nextAttack: 33302.4501269 - type: MeleeWeapon - proto: PlushieRGBee entities: - uid: 7839 @@ -76928,18 +73620,9 @@ entities: 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 + - links: + - 13053 + type: DeviceLinkSink - proto: ReinforcedGirder entities: - uid: 2831 @@ -79260,8 +75943,6 @@ entities: - pos: -2.83597,-56.558304 parent: 6 type: Transform - - nextAttack: 37935.7649256 - type: MeleeWeapon - proto: SecurityTechFab entities: - uid: 4704 @@ -79317,8 +75998,6 @@ entities: - pos: -25.512861,-52.433327 parent: 6 type: Transform - - nextAttack: 7464.2216396 - type: MeleeWeapon - uid: 7453 components: - pos: -22.503988,-54.424194 @@ -79565,25 +76244,17 @@ entities: - pos: -17.5,-46.5 parent: 6 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3965 - type: SignalReceiver + - links: + - 3965 + type: DeviceLinkSink - uid: 1346 components: - pos: -16.5,-46.5 parent: 6 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3965 - type: SignalReceiver + - links: + - 3965 + type: DeviceLinkSink - uid: 5597 components: - pos: 18.5,-39.5 @@ -79592,13 +76263,9 @@ entities: - SecondsUntilStateChange: -114478.85 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5599 - type: SignalReceiver + - links: + - 5599 + type: DeviceLinkSink - uid: 5598 components: - pos: 17.5,-39.5 @@ -79607,13 +76274,9 @@ entities: - SecondsUntilStateChange: -114478.85 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5599 - type: SignalReceiver + - links: + - 5599 + type: DeviceLinkSink - uid: 8381 components: - rot: 1.5707963267948966 rad @@ -79623,13 +76286,9 @@ entities: - SecondsUntilStateChange: -116215.945 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8384 - type: SignalReceiver + - links: + - 8384 + type: DeviceLinkSink - uid: 8382 components: - rot: 1.5707963267948966 rad @@ -79639,13 +76298,9 @@ entities: - SecondsUntilStateChange: -116215.945 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8384 - type: SignalReceiver + - links: + - 8384 + type: DeviceLinkSink - uid: 13023 components: - rot: -1.5707963267948966 rad @@ -79655,13 +76310,9 @@ entities: - SecondsUntilStateChange: -116732.86 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver + - links: + - 13040 + type: DeviceLinkSink - uid: 13024 components: - rot: -1.5707963267948966 rad @@ -79671,13 +76322,9 @@ entities: - SecondsUntilStateChange: -116732.86 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver + - links: + - 13040 + type: DeviceLinkSink - uid: 13025 components: - rot: 1.5707963267948966 rad @@ -79687,13 +76334,9 @@ entities: - SecondsUntilStateChange: -116732.86 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver + - links: + - 13040 + type: DeviceLinkSink - uid: 13026 components: - rot: 1.5707963267948966 rad @@ -79703,13 +76346,9 @@ entities: - SecondsUntilStateChange: -116732.86 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver + - links: + - 13040 + type: DeviceLinkSink - uid: 13027 components: - pos: -8.5,11.5 @@ -79718,13 +76357,9 @@ entities: - SecondsUntilStateChange: -116732.86 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver + - links: + - 13040 + type: DeviceLinkSink - uid: 13028 components: - pos: -6.5,11.5 @@ -79733,13 +76368,9 @@ entities: - SecondsUntilStateChange: -116732.86 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver + - links: + - 13040 + type: DeviceLinkSink - uid: 13029 components: - pos: -7.5,11.5 @@ -79748,13 +76379,9 @@ entities: - SecondsUntilStateChange: -116732.86 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver + - links: + - 13040 + type: DeviceLinkSink - uid: 13030 components: - pos: -5.5,11.5 @@ -79763,13 +76390,9 @@ entities: - SecondsUntilStateChange: -116732.86 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver + - links: + - 13040 + type: DeviceLinkSink - uid: 13031 components: - pos: -3.5,11.5 @@ -79778,13 +76401,9 @@ entities: - SecondsUntilStateChange: -116732.86 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver + - links: + - 13040 + type: DeviceLinkSink - uid: 13032 components: - pos: -2.5,11.5 @@ -79793,13 +76412,9 @@ entities: - SecondsUntilStateChange: -116732.86 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver + - links: + - 13040 + type: DeviceLinkSink - uid: 13033 components: - pos: -1.5,11.5 @@ -79808,13 +76423,9 @@ entities: - SecondsUntilStateChange: -116732.86 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver + - links: + - 13040 + type: DeviceLinkSink - uid: 13034 components: - pos: -0.5,11.5 @@ -79823,13 +76434,9 @@ entities: - SecondsUntilStateChange: -116732.86 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13040 - type: SignalReceiver + - links: + - 13040 + type: DeviceLinkSink - uid: 13035 components: - pos: -3.5,-8.5 @@ -79838,13 +76445,9 @@ entities: - SecondsUntilStateChange: -116728.36 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13039 - type: SignalReceiver + - links: + - 13039 + type: DeviceLinkSink - uid: 13036 components: - pos: -2.5,-8.5 @@ -79853,13 +76456,9 @@ entities: - SecondsUntilStateChange: -116728.36 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13039 - type: SignalReceiver + - links: + - 13039 + type: DeviceLinkSink - uid: 13037 components: - pos: -1.5,-8.5 @@ -79868,13 +76467,9 @@ entities: - SecondsUntilStateChange: -116728.36 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13039 - type: SignalReceiver + - links: + - 13039 + type: DeviceLinkSink - uid: 13042 components: - pos: 13.5,9.5 @@ -79883,13 +76478,9 @@ entities: - SecondsUntilStateChange: -116547.05 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13041 - type: SignalReceiver + - links: + - 13041 + type: DeviceLinkSink - uid: 13043 components: - pos: 13.5,8.5 @@ -79898,13 +76489,9 @@ entities: - SecondsUntilStateChange: -116547.05 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13041 - type: SignalReceiver + - links: + - 13041 + type: DeviceLinkSink - uid: 13044 components: - pos: 13.5,7.5 @@ -79913,13 +76500,9 @@ entities: - SecondsUntilStateChange: -116547.05 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13041 - type: SignalReceiver + - links: + - 13041 + type: DeviceLinkSink - uid: 13048 components: - pos: 8.5,-34.5 @@ -79928,13 +76511,9 @@ entities: - SecondsUntilStateChange: -116369.23 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13047 - type: SignalReceiver + - links: + - 13047 + type: DeviceLinkSink - uid: 13049 components: - pos: 9.5,-34.5 @@ -79943,13 +76522,9 @@ entities: - SecondsUntilStateChange: -116369.23 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13047 - type: SignalReceiver + - links: + - 13047 + type: DeviceLinkSink - uid: 13050 components: - pos: 11.5,-33.5 @@ -79958,13 +76533,9 @@ entities: - SecondsUntilStateChange: -116369.23 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13047 - type: SignalReceiver + - links: + - 13047 + type: DeviceLinkSink - proto: ShuttersNormalOpen entities: - uid: 7667 @@ -79973,90 +76544,62 @@ entities: pos: 7.5,4.5 parent: 6 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6523 - type: SignalReceiver + - links: + - 6523 + type: DeviceLinkSink - 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 + - links: + - 6523 + type: DeviceLinkSink - 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 + - links: + - 6523 + type: DeviceLinkSink - 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 + - links: + - 6524 + type: DeviceLinkSink - 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 + - links: + - 6524 + type: DeviceLinkSink - 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 + - links: + - 6524 + type: DeviceLinkSink - uid: 8383 components: - pos: -23.5,-5.5 parent: 6 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8384 - type: SignalReceiver + - links: + - 8384 + type: DeviceLinkSink - proto: ShuttersWindow entities: - uid: 13038 @@ -80067,13 +76610,9 @@ entities: - SecondsUntilStateChange: -116728.36 state: Opening type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13039 - type: SignalReceiver + - links: + - 13039 + type: DeviceLinkSink - proto: ShuttersWindowOpen entities: - uid: 7364 @@ -80081,115 +76620,79 @@ entities: - pos: 0.5,-18.5 parent: 6 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13045 - type: SignalReceiver + - links: + - 13045 + type: DeviceLinkSink - uid: 7365 components: - pos: 1.5,-18.5 parent: 6 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13045 - type: SignalReceiver + - links: + - 13045 + type: DeviceLinkSink - uid: 7366 components: - pos: 2.5,-18.5 parent: 6 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13045 - type: SignalReceiver + - links: + - 13045 + type: DeviceLinkSink - 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 + - links: + - 13045 + type: DeviceLinkSink - 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 + - links: + - 13045 + type: DeviceLinkSink - 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 + - links: + - 13045 + type: DeviceLinkSink - 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 + - links: + - 13045 + type: DeviceLinkSink - 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 + - links: + - 13046 + type: DeviceLinkSink - 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 + - links: + - 13046 + type: DeviceLinkSink - proto: ShuttleConsoleCircuitboard entities: - uid: 13628 @@ -80238,75 +76741,70 @@ entities: 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 + - linkedPorts: + 3699: + - Pressed: Toggle + 3700: + - Pressed: Toggle + 3702: + - Pressed: Toggle + 3696: + - Pressed: Toggle + 3697: + - Pressed: Toggle + 3698: + - Pressed: Toggle + type: DeviceLinkSource - 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 + - linkedPorts: + 3699: + - Pressed: Toggle + 3700: + - Pressed: Toggle + 3702: + - Pressed: Toggle + 3696: + - Pressed: Toggle + 3697: + - Pressed: Toggle + 3698: + - Pressed: Toggle + type: DeviceLinkSource - 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 + - linkedPorts: + 1345: + - Pressed: Toggle + 1346: + - Pressed: Toggle + type: DeviceLinkSource - uid: 4909 components: - pos: -31.5,20.5 parent: 6 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4908 - type: SignalTransmitter + - linkedPorts: + 4908: + - Pressed: Toggle + type: DeviceLinkSource - uid: 4910 components: - rot: 3.141592653589793 rad pos: -32.5,27.5 parent: 6 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4908 - type: SignalTransmitter + - linkedPorts: + 4908: + - Pressed: Toggle + type: DeviceLinkSource - uid: 5599 components: - rot: 3.141592653589793 rad @@ -80315,13 +76813,12 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 5597 - - port: Toggle - uid: 5598 - type: SignalTransmitter + - linkedPorts: + 5597: + - Pressed: Toggle + 5598: + - Pressed: Toggle + type: DeviceLinkSource - type: ItemCooldown - uid: 5600 components: @@ -80329,78 +76826,72 @@ entities: pos: 20.217419,-36.337383 parent: 6 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1267 - - port: Toggle - uid: 1264 - type: SignalTransmitter + - linkedPorts: + 1267: + - Pressed: Toggle + 1264: + - Pressed: Toggle + type: DeviceLinkSource - 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 + - linkedPorts: + 1266: + - Pressed: Toggle + 1265: + - Pressed: Toggle + type: DeviceLinkSource - uid: 6388 components: - rot: 1.5707963267948966 rad pos: -8.5,-78.5 parent: 6 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6386 - type: SignalTransmitter + - linkedPorts: + 6386: + - Pressed: Toggle + type: DeviceLinkSource - uid: 6389 components: - rot: -1.5707963267948966 rad pos: -0.5,-78.5 parent: 6 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6387 - type: SignalTransmitter + - linkedPorts: + 6387: + - Pressed: Toggle + type: DeviceLinkSource - 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 + - linkedPorts: + 7669: + - Pressed: Toggle + 7668: + - Pressed: Toggle + 7667: + - Pressed: Toggle + type: DeviceLinkSource - 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 + - linkedPorts: + 7670: + - Pressed: Toggle + 7671: + - Pressed: Toggle + 7672: + - Pressed: Toggle + type: DeviceLinkSource - uid: 8384 components: - rot: 1.5707963267948966 rad @@ -80409,15 +76900,14 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 8382 - - port: Toggle - uid: 8381 - - port: Toggle - uid: 8383 - type: SignalTransmitter + - linkedPorts: + 8382: + - Pressed: Toggle + 8381: + - Pressed: Toggle + 8383: + - Pressed: Toggle + type: DeviceLinkSource - type: ItemCooldown - uid: 13039 components: @@ -80426,17 +76916,16 @@ entities: 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 + - linkedPorts: + 13035: + - Pressed: Toggle + 13036: + - Pressed: Toggle + 13037: + - Pressed: Toggle + 13038: + - Pressed: Toggle + type: DeviceLinkSource - type: ItemCooldown - uid: 13040 components: @@ -80446,33 +76935,32 @@ entities: 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 + - linkedPorts: + 13027: + - Pressed: Toggle + 13029: + - Pressed: Toggle + 13028: + - Pressed: Toggle + 13030: + - Pressed: Toggle + 13031: + - Pressed: Toggle + 13032: + - Pressed: Toggle + 13033: + - Pressed: Toggle + 13034: + - Pressed: Toggle + 13025: + - Pressed: Toggle + 13026: + - Pressed: Toggle + 13023: + - Pressed: Toggle + 13024: + - Pressed: Toggle + type: DeviceLinkSource - type: ItemCooldown - uid: 13041 components: @@ -80481,15 +76969,14 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 13044 - - port: Toggle - uid: 13043 - - port: Toggle - uid: 13042 - type: SignalTransmitter + - linkedPorts: + 13044: + - Pressed: Toggle + 13043: + - Pressed: Toggle + 13042: + - Pressed: Toggle + type: DeviceLinkSource - type: ItemCooldown - uid: 13045 components: @@ -80497,35 +76984,33 @@ entities: 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 + - linkedPorts: + 7364: + - Pressed: Toggle + 7365: + - Pressed: Toggle + 7366: + - Pressed: Toggle + 7367: + - Pressed: Toggle + 7368: + - Pressed: Toggle + 7369: + - Pressed: Toggle + 7370: + - Pressed: Toggle + type: DeviceLinkSource - uid: 13046 components: - pos: -8.5,-23.5 parent: 6 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7371 - - port: Toggle - uid: 7372 - type: SignalTransmitter + - linkedPorts: + 7371: + - Pressed: Toggle + 7372: + - Pressed: Toggle + type: DeviceLinkSource - uid: 13047 components: - rot: -1.5707963267948966 rad @@ -80534,26 +77019,24 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 13050 - - port: Toggle - uid: 13049 - - port: Toggle - uid: 13048 - type: SignalTransmitter + - linkedPorts: + 13050: + - Pressed: Toggle + 13049: + - Pressed: Toggle + 13048: + - Pressed: Toggle + type: DeviceLinkSource - type: ItemCooldown - uid: 13052 components: - pos: -53.5,-30.5 parent: 6 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2968 - type: SignalTransmitter + - linkedPorts: + 2968: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignAnomaly entities: - uid: 13310 @@ -86253,16 +82736,12 @@ entities: 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 @@ -86341,15 +82820,11 @@ entities: 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 @@ -86358,24 +82833,18 @@ entities: 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 @@ -86407,8 +82876,6 @@ entities: - pos: 4.055664,5.260956 parent: 13645 type: Transform - - nextAttack: 3861.317892 - type: MeleeWeapon - proto: ToolboxEmergencyFilled entities: - uid: 5189 @@ -86416,8 +82883,6 @@ entities: - pos: -12.496316,8.164643 parent: 6 type: Transform - - nextAttack: 416.6816706 - type: MeleeWeapon - uid: 6330 components: - pos: 1.30425,8.527272 @@ -86487,135 +82952,91 @@ entities: - 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 + - linkedPorts: + 6498: + - Left: Forward + - Right: Reverse + - Middle: Off + 6497: + - Left: Forward + - Right: Reverse + - Middle: Off + 6496: + - Left: Forward + - Right: Reverse + - Middle: Off + 6495: + - Left: Forward + - Right: Reverse + - Middle: Off + 6494: + - Left: Forward + - Right: Reverse + - Middle: Off + 6499: + - Left: Forward + - Right: Reverse + - Middle: Off + 6500: + - Left: Forward + - Right: Reverse + - Middle: Off + 6501: + - Left: Forward + - Right: Reverse + - Middle: Off + 6502: + - Left: Forward + - Right: Reverse + - Middle: Off + 6503: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - 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 + - linkedPorts: + 5439: + - Left: Forward + - Right: Reverse + - Middle: Off + 5438: + - Left: Forward + - Right: Reverse + - Middle: Off + 5437: + - Left: Forward + - Right: Reverse + - Middle: Off + 5436: + - Left: Forward + - Right: Reverse + - Middle: Off + 5435: + - Left: Forward + - Right: Reverse + - Middle: Off + 5434: + - Left: Forward + - Right: Reverse + - Middle: Off + 5433: + - Left: Forward + - Right: Reverse + - Middle: Off + 5440: + - Left: Forward + - Right: Reverse + - Middle: Off + 5427: + - Left: Reverse + - Right: Forward + - Middle: Off + type: DeviceLinkSource - proto: UniformPrinter entities: - uid: 4402 @@ -86652,8 +83073,6 @@ entities: - pos: -53.5,-31.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - proto: VehicleKeyATV entities: - uid: 3287 @@ -96449,7 +92868,6 @@ entities: - pos: -49.5,-19.5 parent: 6 type: Transform - - open: True removedMasks: 20 type: EntityStorage @@ -97089,7 +93507,56 @@ entities: pos: -21.5,-40.5 parent: 6 type: Transform -- proto: WindoorArmoryLocked +- proto: WindoorBarLocked + entities: + - uid: 828 + components: + - pos: -0.5,-18.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: WindoorSecure + entities: + - uid: 5101 + components: + - pos: -0.5,-8.5 + parent: 6 + type: Transform +- proto: WindoorSecureArmoryLocked entities: - uid: 272 components: @@ -97142,21 +93609,28 @@ entities: 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 +- proto: WindoorSecureBrigLocked entities: - uid: 7796 components: - pos: 12.5,-18.5 parent: 6 type: Transform -- proto: WindoorChemistryLocked +- 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: WindoorSecureChemistryLocked entities: - uid: 4817 components: @@ -97170,7 +93644,7 @@ entities: pos: -20.5,-15.5 parent: 6 type: Transform -- proto: WindoorCommandLocked +- proto: WindoorSecureCommandLocked entities: - uid: 3866 components: @@ -97183,7 +93657,7 @@ entities: pos: -54.5,-43.5 parent: 6 type: Transform -- proto: WindoorEngineeringLocked +- proto: WindoorSecureEngineeringLocked entities: - uid: 4899 components: @@ -97209,7 +93683,7 @@ entities: pos: -37.5,-5.5 parent: 6 type: Transform -- proto: WindoorHeadOfPersonnelLocked +- proto: WindoorSecureHeadOfPersonnelLocked entities: - uid: 707 components: @@ -97217,42 +93691,7 @@ entities: 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 +- proto: WindoorSecureMedicalLocked entities: - uid: 4836 components: @@ -97260,34 +93699,6 @@ entities: 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 @@ -97295,7 +93706,14 @@ entities: - pos: 4.5,-46.5 parent: 6 type: Transform -- proto: WindoorSecurityLocked +- proto: WindoorSecureScienceLocked + entities: + - uid: 7592 + components: + - pos: -11.5,-49.5 + parent: 6 + type: Transform +- proto: WindoorSecureSecurityLocked entities: - uid: 5251 components: diff --git a/Resources/Maps/nukieplanet.yml b/Resources/Maps/nukieplanet.yml index 0d657e0926..8d6ebb8065 100644 --- a/Resources/Maps/nukieplanet.yml +++ b/Resources/Maps/nukieplanet.yml @@ -122,379 +122,379 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 325: 27,-15 + 318: 27,-15 - node: color: '#FFFFFFFF' id: Arrows decals: - 323: 18,-19 - 324: 26,-19 + 316: 18,-19 + 317: 26,-19 - node: color: '#FFFFFFFF' id: Bot decals: - 309: 21,-16 - 310: 22,-15 - 311: 23,-16 - 316: 22,-17 - 317: 17,-19 - 318: 27,-19 + 302: 21,-16 + 303: 22,-15 + 304: 23,-16 + 309: 22,-17 + 310: 17,-19 + 311: 27,-19 - node: color: '#FFFFFFFF' id: BotLeft decals: - 208: 5,-11 - 209: 4,-11 - 314: 23,-15 - 315: 21,-17 - 319: 27,-18 - 320: 17,-20 + 201: 5,-11 + 202: 4,-11 + 307: 23,-15 + 308: 21,-17 + 312: 27,-18 + 313: 17,-20 - node: color: '#FFFFFFFF' id: BotRight decals: - 312: 23,-17 - 313: 21,-15 - 321: 27,-20 - 322: 17,-18 + 305: 23,-17 + 306: 21,-15 + 314: 27,-20 + 315: 17,-18 - node: color: '#FFFFFFFF' id: Box decals: - 220: 12,-22 + 213: 12,-22 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 343: 2,-1 - 344: 1,-1 - 345: 0,-1 + 333: 2,-1 + 334: 1,-1 + 335: 0,-1 - node: color: '#52B4E996' id: BrickTileSteelBox decals: - 252: -3,-15 - 253: -2,-17 - 254: 1,-17 - 255: 1,-13 - 256: -2,-13 + 245: -3,-15 + 246: -2,-17 + 247: 1,-17 + 248: 1,-13 + 249: -2,-13 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNe decals: - 157: 15,-12 - 163: 10,-11 - 200: 5,-11 - 351: 10,-7 - 365: 15,-7 + 150: 15,-12 + 156: 10,-11 + 193: 5,-11 + 339: 10,-7 + 346: 15,-7 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNw decals: - 164: 9,-11 - 201: 3,-11 - 366: 12,-7 + 157: 9,-11 + 194: 3,-11 + 347: 12,-7 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSe decals: - 155: 15,-15 - 202: 5,-13 - 273: 27,-17 - 278: 26,-20 - 347: 10,-9 - 368: 15,-9 + 148: 15,-15 + 195: 5,-13 + 266: 27,-17 + 271: 26,-20 + 336: 10,-9 + 349: 15,-9 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSw decals: - 141: 14,-15 - 152: 9,-13 - 203: 3,-13 - 270: 17,-17 - 277: 18,-20 - 359: 5,-9 - 367: 12,-9 + 134: 14,-15 + 145: 9,-13 + 196: 3,-13 + 263: 17,-17 + 270: 18,-20 + 342: 5,-9 + 348: 12,-9 - node: color: '#DE3A3A96' id: BrickTileSteelEndS decals: - 139: 10,-15 - 140: 12,-15 + 132: 10,-15 + 133: 12,-15 - node: color: '#DE3A3A96' id: BrickTileSteelInnerNe decals: - 162: 10,-12 - 264: -3,-17 + 155: 10,-12 + 257: -3,-17 - node: color: '#DE3A3A96' id: BrickTileSteelInnerSe decals: - 153: 10,-13 - 154: 12,-13 - 263: -3,-13 - 274: 26,-17 - 303: 20,-14 + 146: 10,-13 + 147: 12,-13 + 256: -3,-13 + 267: 26,-17 + 296: 20,-14 - node: color: '#DE3A3A96' id: BrickTileSteelInnerSw decals: - 147: 10,-13 - 148: 12,-13 - 149: 14,-13 - 275: 18,-17 - 299: 24,-14 + 140: 10,-13 + 141: 12,-13 + 142: 14,-13 + 268: 18,-17 + 292: 24,-14 - node: color: '#DE3A3A96' id: BrickTileSteelLineE decals: - 142: 12,-14 - 143: 10,-14 - 156: 15,-13 - 205: 5,-12 - 261: -3,-16 - 262: -3,-14 - 271: 26,-19 - 272: 26,-18 - 279: 20,-17 - 280: 20,-16 - 281: 20,-15 - 304: 20,-19 - 326: 27,-16 - 327: 27,-15 + 135: 12,-14 + 136: 10,-14 + 149: 15,-13 + 198: 5,-12 + 254: -3,-16 + 255: -3,-14 + 264: 26,-19 + 265: 26,-18 + 272: 20,-17 + 273: 20,-16 + 274: 20,-15 + 297: 20,-19 + 319: 27,-16 + 320: 27,-15 - node: color: '#DE3A3A96' id: BrickTileSteelLineN decals: - 158: 14,-12 - 159: 13,-12 - 160: 12,-12 - 161: 11,-12 - 206: 4,-11 - 257: 0,-17 - 258: -1,-17 - 288: 26,-14 - 289: 25,-14 - 290: 23,-14 - 291: 22,-14 - 292: 21,-14 - 293: 20,-14 - 294: 18,-14 - 295: 19,-14 - 298: 24,-14 - 352: 9,-7 - 356: 8,-7 - 371: 13,-7 + 151: 14,-12 + 152: 13,-12 + 153: 12,-12 + 154: 11,-12 + 199: 4,-11 + 250: 0,-17 + 251: -1,-17 + 281: 26,-14 + 282: 25,-14 + 283: 23,-14 + 284: 22,-14 + 285: 21,-14 + 286: 20,-14 + 287: 18,-14 + 288: 19,-14 + 291: 24,-14 + 340: 9,-7 + 341: 8,-7 + 352: 13,-7 - node: color: '#DE3A3A96' id: BrickTileSteelLineS decals: - 150: 13,-13 - 151: 11,-13 - 204: 4,-13 - 259: 0,-13 - 260: -1,-13 - 286: 25,-20 - 287: 19,-20 - 300: 23,-14 - 301: 22,-14 - 302: 21,-14 - 348: 8,-9 - 349: 7,-9 - 369: 14,-9 - 370: 13,-9 + 143: 13,-13 + 144: 11,-13 + 197: 4,-13 + 252: 0,-13 + 253: -1,-13 + 279: 25,-20 + 280: 19,-20 + 293: 23,-14 + 294: 22,-14 + 295: 21,-14 + 337: 8,-9 + 338: 7,-9 + 350: 14,-9 + 351: 13,-9 - node: color: '#DE3A3A96' id: BrickTileSteelLineW decals: - 144: 14,-14 - 145: 12,-14 - 146: 10,-14 - 165: 9,-12 - 207: 3,-12 - 267: 18,-18 - 268: 17,-16 - 269: 17,-15 - 276: 18,-19 - 282: 24,-19 - 283: 24,-17 - 284: 24,-16 - 285: 24,-15 - 360: 5,-8 - 385: 5,-7 + 137: 14,-14 + 138: 12,-14 + 139: 10,-14 + 158: 9,-12 + 200: 3,-12 + 260: 18,-18 + 261: 17,-16 + 262: 17,-15 + 269: 18,-19 + 275: 24,-19 + 276: 24,-17 + 277: 24,-16 + 278: 24,-15 + 343: 5,-8 + 366: 5,-7 - node: color: '#9FED5896' id: BrickTileWhiteCornerNe decals: - 173: 7,-11 + 166: 7,-11 - node: color: '#9FED5896' id: BrickTileWhiteCornerNw decals: - 174: 6,-11 - 192: 3,-14 + 167: 6,-11 + 185: 3,-14 - node: color: '#9FED5896' id: BrickTileWhiteCornerSe decals: - 185: 7,-18 + 178: 7,-18 - node: color: '#9FED5896' id: BrickTileWhiteCornerSw decals: - 188: 3,-18 + 181: 3,-18 - node: color: '#9FED5896' id: BrickTileWhiteInnerNw decals: - 176: 6,-14 + 169: 6,-14 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 179: 7,-12 - 180: 7,-13 - 181: 7,-14 - 182: 7,-15 - 183: 7,-16 - 184: 7,-17 + 172: 7,-12 + 173: 7,-13 + 174: 7,-14 + 175: 7,-15 + 176: 7,-16 + 177: 7,-17 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 177: 5,-14 - 178: 4,-14 + 170: 5,-14 + 171: 4,-14 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 186: 6,-18 - 187: 5,-18 - 189: 4,-18 + 179: 6,-18 + 180: 5,-18 + 182: 4,-18 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 175: 6,-13 - 190: 3,-17 - 191: 3,-16 + 168: 6,-13 + 183: 3,-17 + 184: 3,-16 - node: color: '#A4610647' id: CheckerNWSE decals: - 210: -13,6 - 211: -14,6 - 212: -15,6 - 213: -15,7 - 214: -14,7 - 215: -13,7 - 216: -14,8 - 217: -15,8 + 203: -13,6 + 204: -14,6 + 205: -15,6 + 206: -15,7 + 207: -14,7 + 208: -13,7 + 209: -14,8 + 210: -15,8 - node: color: '#D381C996' id: CheckerNWSE decals: - 221: 10,-19 - 222: 11,-19 - 223: 12,-19 - 224: 13,-19 - 225: 14,-19 - 226: 14,-18 - 227: 14,-17 - 228: 13,-17 - 229: 13,-18 - 230: 12,-18 - 231: 12,-17 - 232: 11,-17 - 233: 11,-18 - 234: 10,-18 - 235: 10,-17 + 214: 10,-19 + 215: 11,-19 + 216: 12,-19 + 217: 13,-19 + 218: 14,-19 + 219: 14,-18 + 220: 14,-17 + 221: 13,-17 + 222: 13,-18 + 223: 12,-18 + 224: 12,-17 + 225: 11,-17 + 226: 11,-18 + 227: 10,-18 + 228: 10,-17 - node: color: '#FFFFFFFF' id: Delivery decals: - 218: -16,8 - 219: -16,9 - 265: 7,-18 - 266: 6,-18 + 211: -16,8 + 212: -16,9 + 258: 7,-18 + 259: 6,-18 - node: color: '#DE3A3A96' id: DeliveryGreyscale decals: - 297: 16,-14 + 290: 16,-14 - node: color: '#9FED5896' id: FullTileOverlayGreyscale decals: - 195: 5,-17 - 196: 5,-16 - 197: 5,-15 - 198: 6,-16 - 199: 4,-16 + 188: 5,-17 + 189: 5,-16 + 190: 5,-15 + 191: 6,-16 + 192: 4,-16 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 246: 1,-14 - 247: 0,-14 - 248: -1,-14 + 239: 1,-14 + 240: 0,-14 + 241: -1,-14 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 341: 11,-2 + 331: 11,-2 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 243: 1,-16 - 244: 0,-16 - 245: -1,-16 + 236: 1,-16 + 237: 0,-16 + 238: -1,-16 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 decals: - 342: 11,0 + 332: 11,0 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 249: -2,-15 + 242: -2,-15 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: - 340: 12,-1 + 330: 12,-1 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 339: 10,-1 + 329: 10,-1 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: - 331: 9,0 - 332: 10,0 + 321: 9,0 + 322: 10,0 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 335: 13,-2 - 336: 12,-2 + 325: 13,-2 + 326: 12,-2 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: - 337: 9,-2 - 338: 10,-2 + 327: 9,-2 + 328: 10,-2 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 333: 13,0 - 334: 12,0 + 323: 13,0 + 324: 12,0 - node: color: '#FFFFFFFF' id: Rock06 @@ -504,17 +504,17 @@ entities: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 251: -2,-14 + 244: -2,-14 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 250: -2,-16 + 243: -2,-16 - node: color: '#FFFFFFFF' id: WarnBox decals: - 138: -5,-3 + 131: -5,-3 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -552,130 +552,130 @@ entities: color: '#DE3A3A96' id: WarnCornerGreyscaleNW decals: - 296: 17,-14 + 289: 17,-14 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 306: 20,-20 + 299: 20,-20 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 240: 10,-19 - 305: 24,-20 + 233: 10,-19 + 298: 24,-20 - node: color: '#FFFFFFFF' id: WarnEndE decals: - 168: 1,-9 + 161: 1,-9 - node: color: '#FFFFFFFF' id: WarnEndN decals: - 170: 7,-2 + 163: 7,-2 - node: color: '#FFFFFFFF' id: WarnEndS decals: - 127: -6,21 - 169: 7,-4 + 123: -6,21 + 162: 7,-4 - node: color: '#FFFFFFFF' id: WarnEndW decals: - 167: 0,-9 + 160: 0,-9 - node: color: '#DE3A3A96' id: WarnFullGreyscale decals: - 378: 16,-8 - 379: 11,-8 - 380: 9,-10 - 381: 6,-10 + 359: 16,-8 + 360: 11,-8 + 361: 9,-10 + 362: 6,-10 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 172: 7,-3 - 308: 20,-18 + 165: 7,-3 + 301: 20,-18 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE decals: - 166: 15,-14 - 375: 10,-8 - 376: 15,-8 + 159: 15,-14 + 356: 10,-8 + 357: 15,-8 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 377: 14,-7 - 382: 7,-7 - 383: 6,-7 - 384: 5,-7 + 358: 14,-7 + 363: 7,-7 + 364: 6,-7 + 365: 5,-7 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 372: 9,-9 - 373: 6,-9 + 353: 9,-9 + 354: 6,-9 - node: color: '#DE3A3A96' id: WarnLineGreyscaleW decals: - 374: 12,-8 + 355: 12,-8 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 193: 3,-15 - 194: 6,-12 + 186: 3,-15 + 187: 6,-12 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 236: 14,-19 - 237: 13,-19 - 238: 12,-19 - 239: 11,-19 + 229: 14,-19 + 230: 13,-19 + 231: 12,-19 + 232: 11,-19 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 98: -9,4 - 99: -9,3 - 100: -9,2 - 101: -9,1 - 102: -9,0 - 103: -9,-1 - 104: -9,-2 - 105: -9,-3 - 106: -9,-4 - 107: -9,-5 - 108: -9,-6 - 109: -9,-7 - 110: -9,-8 - 111: -9,-9 - 112: -9,-10 - 113: -9,-11 - 114: -9,-12 - 115: -9,-13 - 116: -9,-14 - 117: -9,-15 - 118: -9,-16 - 119: -9,-17 - 120: -9,-18 - 121: -9,-19 - 122: -9,-20 - 123: -9,-21 - 124: -9,-22 - 125: -9,-23 - 126: -9,-24 - 171: 7,-3 - 241: 10,-18 - 242: 10,-17 - 307: 24,-18 + 94: -9,4 + 95: -9,3 + 96: -9,2 + 97: -9,1 + 98: -9,0 + 99: -9,-1 + 100: -9,-2 + 101: -9,-3 + 102: -9,-4 + 103: -9,-5 + 104: -9,-6 + 105: -9,-7 + 106: -9,-8 + 107: -9,-9 + 108: -9,-10 + 109: -9,-11 + 110: -9,-12 + 111: -9,-13 + 112: -9,-14 + 113: -9,-15 + 114: -9,-16 + 115: -9,-17 + 116: -9,-18 + 117: -9,-19 + 118: -9,-20 + 119: -9,-21 + 120: -9,-22 + 121: -9,-23 + 122: -9,-24 + 164: 7,-3 + 234: 10,-18 + 235: 10,-17 + 300: 24,-18 - node: color: '#FFFFFFFF' id: WarningLine @@ -715,24 +715,24 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 137: 5,-6 + 130: 5,-6 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 131: 4,-6 - 132: 3,-6 - 133: 2,-6 - 134: 1,-6 - 135: 0,-6 - 136: -1,-6 + 124: 4,-6 + 125: 3,-6 + 126: 2,-6 + 127: 1,-6 + 128: 0,-6 + 129: -1,-6 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 362: 5,-9 - 363: 5,-8 - 386: 5,-7 + 344: 5,-9 + 345: 5,-8 + 367: 5,-7 - node: color: '#FFFFFFFF' id: bushsnowa1 diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index d7fc3e917c..0287a41c68 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -9875,109 +9875,73 @@ entities: - pos: 23.5,24.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2938 - type: SignalReceiver + - links: + - 2938 + type: DeviceLinkSink - uid: 2866 components: - pos: 23.5,28.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2938 - type: SignalReceiver + - links: + - 2938 + type: DeviceLinkSink - uid: 5573 components: - pos: 21.5,-30.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6690 - type: SignalReceiver + - links: + - 6690 + type: DeviceLinkSink - uid: 5574 components: - pos: 21.5,-29.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6690 - type: SignalReceiver + - links: + - 6690 + type: DeviceLinkSink - uid: 5575 components: - pos: 21.5,-28.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6690 - type: SignalReceiver + - links: + - 6690 + type: DeviceLinkSink - uid: 5794 components: - pos: 2.5,-27.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6218 - type: SignalReceiver + - links: + - 6218 + type: DeviceLinkSink - uid: 5795 components: - pos: 2.5,-26.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6218 - type: SignalReceiver + - links: + - 6218 + type: DeviceLinkSink - uid: 5796 components: - pos: 2.5,-25.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6218 - type: SignalReceiver + - links: + - 6218 + type: DeviceLinkSink - uid: 9496 components: - pos: -44.5,18.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9504 - type: SignalReceiver + - links: + - 9504 + type: DeviceLinkSink - proto: BlockGameArcade entities: - uid: 4549 @@ -10457,31 +10421,11 @@ entities: - pos: -27.5,18.5 parent: 4812 type: Transform - - outputs: - Start: - - port: Close - uid: 7786 - Timer: - - port: AutoClose - uid: 7786 - - port: Open - uid: 7786 - type: SignalTransmitter - uid: 4811 components: - pos: -27.5,15.5 parent: 4812 type: Transform - - outputs: - Start: - - port: Close - uid: 7785 - Timer: - - port: AutoClose - uid: 7785 - - port: Open - uid: 7785 - type: SignalTransmitter - proto: Bucket entities: - uid: 1477 @@ -33685,11 +33629,6 @@ entities: pos: 22.5,-26.5 parent: 4812 type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 6319 - type: SignalTransmitter - proto: computerBodyScanner entities: - uid: 4921 @@ -34037,187 +33976,99 @@ entities: pos: 22.5,28.5 parent: 4812 type: Transform - - inputs: - Reverse: - - port: Right - uid: 3188 - Forward: - - port: Left - uid: 3188 - Off: - - port: Middle - uid: 3188 - type: SignalReceiver + - links: + - 3188 + type: DeviceLinkSink - uid: 2771 components: - rot: -1.5707963267948966 rad pos: 23.5,28.5 parent: 4812 type: Transform - - inputs: - Reverse: - - port: Right - uid: 3188 - Forward: - - port: Left - uid: 3188 - Off: - - port: Middle - uid: 3188 - type: SignalReceiver + - links: + - 3188 + type: DeviceLinkSink - uid: 2863 components: - rot: -1.5707963267948966 rad pos: 19.5,28.5 parent: 4812 type: Transform - - inputs: - Reverse: - - port: Right - uid: 3188 - Forward: - - port: Left - uid: 3188 - Off: - - port: Middle - uid: 3188 - type: SignalReceiver + - links: + - 3188 + type: DeviceLinkSink - uid: 3013 components: - rot: 1.5707963267948966 rad pos: 23.5,24.5 parent: 4812 type: Transform - - inputs: - Reverse: - - port: Right - uid: 3034 - Forward: - - port: Left - uid: 3034 - Off: - - port: Middle - uid: 3034 - type: SignalReceiver + - links: + - 3034 + type: DeviceLinkSink - uid: 3014 components: - rot: 1.5707963267948966 rad pos: 22.5,24.5 parent: 4812 type: Transform - - inputs: - Reverse: - - port: Right - uid: 3034 - Forward: - - port: Left - uid: 3034 - Off: - - port: Middle - uid: 3034 - type: SignalReceiver + - links: + - 3034 + type: DeviceLinkSink - uid: 3028 components: - rot: 1.5707963267948966 rad pos: 20.5,24.5 parent: 4812 type: Transform - - inputs: - Reverse: - - port: Right - uid: 3034 - Forward: - - port: Left - uid: 3034 - Off: - - port: Middle - uid: 3034 - type: SignalReceiver + - links: + - 3034 + type: DeviceLinkSink - uid: 3029 components: - rot: 1.5707963267948966 rad pos: 19.5,24.5 parent: 4812 type: Transform - - inputs: - Reverse: - - port: Right - uid: 3034 - Forward: - - port: Left - uid: 3034 - Off: - - port: Middle - uid: 3034 - type: SignalReceiver + - links: + - 3034 + type: DeviceLinkSink - uid: 3033 components: - rot: 1.5707963267948966 rad pos: 21.5,24.5 parent: 4812 type: Transform - - inputs: - Reverse: - - port: Right - uid: 3034 - Forward: - - port: Left - uid: 3034 - Off: - - port: Middle - uid: 3034 - type: SignalReceiver + - links: + - 3034 + type: DeviceLinkSink - uid: 3043 components: - rot: -1.5707963267948966 rad pos: 20.5,28.5 parent: 4812 type: Transform - - inputs: - Reverse: - - port: Right - uid: 3188 - Forward: - - port: Left - uid: 3188 - Off: - - port: Middle - uid: 3188 - type: SignalReceiver + - links: + - 3188 + type: DeviceLinkSink - uid: 3046 components: - rot: -1.5707963267948966 rad pos: 21.5,28.5 parent: 4812 type: Transform - - inputs: - Reverse: - - port: Right - uid: 3188 - Forward: - - port: Left - uid: 3188 - Off: - - port: Middle - uid: 3188 - type: SignalReceiver + - links: + - 3188 + type: DeviceLinkSink - uid: 11235 components: - rot: 1.5707963267948966 rad pos: 9.5,-38.5 parent: 4812 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11245 - Forward: - - port: Left - uid: 11245 - Off: - - port: Middle - uid: 11245 - type: SignalReceiver + - links: + - 11245 + type: DeviceLinkSink - proto: CornSeeds entities: - uid: 9618 @@ -60855,11 +60706,6 @@ entities: - pos: 22.5,-29.5 parent: 4812 type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 6313 - type: SignalReceiver - proto: MachineFrame entities: - uid: 3952 @@ -65647,17 +65493,9 @@ entities: pos: 10.5,-38.5 parent: 4812 type: Transform - - inputs: - Reverse: - - port: Right - uid: 11245 - Forward: - - port: Left - uid: 11245 - Off: - - port: Middle - uid: 11245 - type: SignalReceiver + - links: + - 11245 + type: DeviceLinkSink - proto: ReinforcedPlasmaWindow entities: - uid: 4138 @@ -68151,237 +67989,161 @@ entities: pos: 1.5,9.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 712 - type: SignalReceiver + - links: + - 712 + type: DeviceLinkSink - uid: 356 components: - rot: -1.5707963267948966 rad pos: 1.5,8.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 712 - type: SignalReceiver + - links: + - 712 + type: DeviceLinkSink - uid: 357 components: - rot: -1.5707963267948966 rad pos: 1.5,7.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 712 - type: SignalReceiver + - links: + - 712 + type: DeviceLinkSink - uid: 358 components: - rot: -1.5707963267948966 rad pos: 1.5,6.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 712 - type: SignalReceiver + - links: + - 712 + type: DeviceLinkSink - uid: 359 components: - pos: 2.5,4.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 712 - type: SignalReceiver + - links: + - 712 + type: DeviceLinkSink - uid: 360 components: - pos: 3.5,4.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 712 - type: SignalReceiver + - links: + - 712 + type: DeviceLinkSink - uid: 785 components: - rot: -1.5707963267948966 rad pos: 1.5,-2.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1646 - type: SignalReceiver + - links: + - 1646 + type: DeviceLinkSink - uid: 786 components: - rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1646 - type: SignalReceiver + - links: + - 1646 + type: DeviceLinkSink - uid: 787 components: - rot: -1.5707963267948966 rad pos: 1.5,-1.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1646 - type: SignalReceiver + - links: + - 1646 + type: DeviceLinkSink - uid: 1929 components: - pos: -13.5,26.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2241 - type: SignalReceiver + - links: + - 2241 + type: DeviceLinkSink - uid: 1930 components: - pos: 5.5,27.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1965 - type: SignalReceiver + - links: + - 1965 + type: DeviceLinkSink - uid: 1931 components: - pos: -10.5,26.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2241 - type: SignalReceiver + - links: + - 2241 + type: DeviceLinkSink - uid: 2234 components: - pos: -12.5,26.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2241 - type: SignalReceiver + - links: + - 2241 + type: DeviceLinkSink - uid: 2235 components: - pos: 8.5,27.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1965 - type: SignalReceiver + - links: + - 1965 + type: DeviceLinkSink - uid: 2236 components: - pos: 7.5,27.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1965 - type: SignalReceiver + - links: + - 1965 + type: DeviceLinkSink - uid: 2835 components: - pos: 16.5,28.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2844 - type: SignalReceiver + - links: + - 2844 + type: DeviceLinkSink - uid: 2836 components: - rot: 1.5707963267948966 rad pos: 18.5,30.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2844 - type: SignalReceiver + - links: + - 2844 + type: DeviceLinkSink - uid: 2837 components: - rot: 1.5707963267948966 rad pos: 18.5,31.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2844 - type: SignalReceiver + - links: + - 2844 + type: DeviceLinkSink - uid: 2870 components: - pos: 16.5,36.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2844 - type: SignalReceiver + - links: + - 2844 + type: DeviceLinkSink - uid: 3945 components: - pos: 10.5,47.5 @@ -68397,196 +68159,132 @@ entities: - pos: 26.5,-21.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5576 - type: SignalReceiver + - links: + - 5576 + type: DeviceLinkSink - uid: 5508 components: - pos: 27.5,-21.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5576 - type: SignalReceiver + - links: + - 5576 + type: DeviceLinkSink - uid: 5509 components: - pos: 25.5,-21.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5576 - type: SignalReceiver + - links: + - 5576 + type: DeviceLinkSink - uid: 6570 components: - pos: -7.5,-16.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6587 - type: SignalReceiver + - links: + - 6587 + type: DeviceLinkSink - uid: 6574 components: - pos: -12.5,-13.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6587 - type: SignalReceiver + - links: + - 6587 + type: DeviceLinkSink - uid: 6575 components: - pos: -9.5,-13.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6587 - type: SignalReceiver + - links: + - 6587 + type: DeviceLinkSink - uid: 6576 components: - pos: -10.5,-13.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6587 - type: SignalReceiver + - links: + - 6587 + type: DeviceLinkSink - uid: 6577 components: - pos: -8.5,-13.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6587 - type: SignalReceiver + - links: + - 6587 + type: DeviceLinkSink - uid: 6578 components: - pos: -7.5,-14.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6587 - type: SignalReceiver + - links: + - 6587 + type: DeviceLinkSink - uid: 6586 components: - pos: -7.5,-18.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6587 - type: SignalReceiver + - links: + - 6587 + type: DeviceLinkSink - uid: 8153 components: - pos: -21.5,21.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8165 - type: SignalReceiver + - links: + - 8165 + type: DeviceLinkSink - uid: 8160 components: - pos: -20.5,21.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8165 - type: SignalReceiver + - links: + - 8165 + type: DeviceLinkSink - uid: 8161 components: - pos: -23.5,21.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8165 - type: SignalReceiver + - links: + - 8165 + type: DeviceLinkSink - uid: 10673 components: - rot: 1.5707963267948966 rad pos: -47.5,-8.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10676 - type: SignalReceiver + - links: + - 10676 + type: DeviceLinkSink - uid: 10674 components: - rot: 1.5707963267948966 rad pos: -47.5,-7.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10676 - type: SignalReceiver + - links: + - 10676 + type: DeviceLinkSink - uid: 10675 components: - rot: 1.5707963267948966 rad pos: -47.5,-6.5 parent: 4812 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10676 - type: SignalReceiver + - links: + - 10676 + type: DeviceLinkSink - proto: ShuttleConsoleCircuitboard entities: - uid: 2730 @@ -68613,169 +68311,158 @@ entities: - pos: 4.5,5.5 parent: 4812 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 360 - - port: Toggle - uid: 359 - - port: Toggle - uid: 358 - - port: Toggle - uid: 357 - - port: Toggle - uid: 356 - - port: Toggle - uid: 355 - type: SignalTransmitter + - linkedPorts: + 360: + - Pressed: Toggle + 359: + - Pressed: Toggle + 358: + - Pressed: Toggle + 357: + - Pressed: Toggle + 356: + - Pressed: Toggle + 355: + - Pressed: Toggle + type: DeviceLinkSource - uid: 1646 components: - pos: 3.5,-4.5 parent: 4812 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 785 - - port: Toggle - uid: 787 - - port: Toggle - uid: 786 - type: SignalTransmitter + - linkedPorts: + 785: + - Pressed: Toggle + 787: + - Pressed: Toggle + 786: + - Pressed: Toggle + type: DeviceLinkSource - uid: 1965 components: - pos: 9.5,29.5 parent: 4812 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2235 - - port: Toggle - uid: 2236 - - port: Toggle - uid: 1930 - type: SignalTransmitter + - linkedPorts: + 2235: + - Pressed: Toggle + 2236: + - Pressed: Toggle + 1930: + - Pressed: Toggle + type: DeviceLinkSource - uid: 2241 components: - pos: -14.5,27.5 parent: 4812 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1929 - - port: Toggle - uid: 2234 - - port: Toggle - uid: 1931 - type: SignalTransmitter + - linkedPorts: + 1929: + - Pressed: Toggle + 2234: + - Pressed: Toggle + 1931: + - Pressed: Toggle + type: DeviceLinkSource - uid: 2844 components: - pos: 17.5,33.5 parent: 4812 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2835 - - port: Toggle - uid: 2870 - - port: Toggle - uid: 2837 - - port: Toggle - uid: 2836 - type: SignalTransmitter + - linkedPorts: + 2835: + - Pressed: Toggle + 2870: + - Pressed: Toggle + 2837: + - Pressed: Toggle + 2836: + - Pressed: Toggle + type: DeviceLinkSource - uid: 2938 components: - pos: 21.5,26.5 parent: 4812 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2864 - - port: Toggle - uid: 2866 - type: SignalTransmitter + - linkedPorts: + 2864: + - Pressed: Toggle + 2866: + - Pressed: Toggle + type: DeviceLinkSource - uid: 5576 components: - pos: 23.5,-19.5 parent: 4812 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5509 - - port: Toggle - uid: 5507 - - port: Toggle - uid: 5508 - type: SignalTransmitter + - linkedPorts: + 5509: + - Pressed: Toggle + 5507: + - Pressed: Toggle + 5508: + - Pressed: Toggle + type: DeviceLinkSource - uid: 6218 components: - pos: 7.5,-27.5 parent: 4812 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5794 - - port: Toggle - uid: 5795 - - port: Toggle - uid: 5796 - type: SignalTransmitter + - linkedPorts: + 5794: + - Pressed: Toggle + 5795: + - Pressed: Toggle + 5796: + - Pressed: Toggle + type: DeviceLinkSource - uid: 6587 components: - pos: -13.5,-14.5 parent: 4812 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6574 - - port: Toggle - uid: 6576 - - port: Toggle - uid: 6575 - - port: Toggle - uid: 6577 - - port: Toggle - uid: 6578 - - port: Toggle - uid: 6570 - - port: Toggle - uid: 6586 - type: SignalTransmitter + - linkedPorts: + 6574: + - Pressed: Toggle + 6576: + - Pressed: Toggle + 6575: + - Pressed: Toggle + 6577: + - Pressed: Toggle + 6578: + - Pressed: Toggle + 6570: + - Pressed: Toggle + 6586: + - Pressed: Toggle + type: DeviceLinkSource - uid: 6690 components: - pos: 26.5,-28.5 parent: 4812 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5575 - - port: Toggle - uid: 5574 - - port: Toggle - uid: 5573 - type: SignalTransmitter + - linkedPorts: + 5575: + - Pressed: Toggle + 5574: + - Pressed: Toggle + 5573: + - Pressed: Toggle + type: DeviceLinkSource - uid: 8165 components: - pos: -20.5,26.5 parent: 4812 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 8160 - - port: Toggle - uid: 8153 - - port: Toggle - uid: 8161 - type: SignalTransmitter + - linkedPorts: + 8160: + - Pressed: Toggle + 8153: + - Pressed: Toggle + 8161: + - Pressed: Toggle + type: DeviceLinkSource - uid: 9497 components: - pos: -45.5,18.5 @@ -68786,25 +68473,23 @@ entities: - pos: -41.5,13.5 parent: 4812 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9496 - type: SignalTransmitter + - linkedPorts: + 9496: + - Pressed: Toggle + type: DeviceLinkSource - uid: 10676 components: - pos: -51.5,-7.5 parent: 4812 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10675 - - port: Toggle - uid: 10674 - - port: Toggle - uid: 10673 - type: SignalTransmitter + - linkedPorts: + 10675: + - Pressed: Toggle + 10674: + - Pressed: Toggle + 10673: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignAnomaly2 entities: - uid: 6342 @@ -74032,41 +73717,28 @@ entities: - pos: 19.5,23.5 parent: 4812 type: Transform - - outputs: - Left: - - port: Forward - uid: 3013 - - port: Forward - uid: 3014 - - port: Forward - uid: 3033 - - port: Forward - uid: 3028 - - port: Forward - uid: 3029 - Right: - - port: Reverse - uid: 3013 - - port: Reverse - uid: 3014 - - port: Reverse - uid: 3033 - - port: Reverse - uid: 3028 - - port: Reverse - uid: 3029 - Middle: - - port: Off - uid: 3013 - - port: Off - uid: 3014 - - port: Off - uid: 3033 - - port: Off - uid: 3028 - - port: Off - uid: 3029 - type: SignalTransmitter + - linkedPorts: + 3013: + - Left: Forward + - Right: Reverse + - Middle: Off + 3014: + - Left: Forward + - Right: Reverse + - Middle: Off + 3033: + - Left: Forward + - Right: Reverse + - Middle: Off + 3028: + - Left: Forward + - Right: Reverse + - Middle: Off + 3029: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 3188 components: - pos: 18.5,27.5 @@ -74074,63 +73746,43 @@ entities: type: Transform - nextSignalLeft: True type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 2863 - - port: Forward - uid: 3043 - - port: Forward - uid: 3046 - - port: Forward - uid: 2765 - - port: Forward - uid: 2771 - Right: - - port: Reverse - uid: 2863 - - port: Reverse - uid: 3043 - - port: Reverse - uid: 3046 - - port: Reverse - uid: 2765 - - port: Reverse - uid: 2771 - Middle: - - port: Off - uid: 2863 - - port: Off - uid: 3043 - - port: Off - uid: 3046 - - port: Off - uid: 2765 - - port: Off - uid: 2771 - type: SignalTransmitter + - linkedPorts: + 2863: + - Left: Forward + - Right: Reverse + - Middle: Off + 3043: + - Left: Forward + - Right: Reverse + - Middle: Off + 3046: + - Left: Forward + - Right: Reverse + - Middle: Off + 2765: + - Left: Forward + - Right: Reverse + - Middle: Off + 2771: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 11245 components: - pos: 8.5,-37.5 parent: 4812 type: Transform - - outputs: - Left: - - port: Forward - uid: 11235 - - port: Forward - uid: 11244 - Right: - - port: Reverse - uid: 11235 - - port: Reverse - uid: 11244 - Middle: - - port: Off - uid: 11235 - - port: Off - uid: 11244 - type: SignalTransmitter + - linkedPorts: + 11235: + - Left: Forward + - Right: Reverse + - Middle: Off + 11244: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - proto: UniformPrinter entities: - uid: 2513 @@ -83892,36 +83544,12 @@ entities: pos: -27.5,16.5 parent: 4812 type: Transform - - inputs: - Open: - - port: Timer - uid: 4811 - Close: - - port: Start - uid: 4811 - Toggle: [] - AutoClose: - - port: Timer - uid: 4811 - type: SignalReceiver - uid: 7786 components: - rot: 1.5707963267948966 rad pos: -27.5,19.5 parent: 4812 type: Transform - - inputs: - Open: - - port: Timer - uid: 4810 - Close: - - port: Start - uid: 4810 - Toggle: [] - AutoClose: - - port: Timer - uid: 4810 - type: SignalReceiver - proto: WindoorTheatreLocked entities: - uid: 896 diff --git a/Resources/Maps/origin.yml b/Resources/Maps/origin.yml index 7c79f278bf..d63dcf3987 100644 --- a/Resources/Maps/origin.yml +++ b/Resources/Maps/origin.yml @@ -22303,15 +22303,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23624 - Close: - - port: Off - uid: 23624 - Toggle: [] - type: SignalReceiver + - links: + - 23624 + type: DeviceLinkSink - uid: 2071 components: - pos: 10.5,49.5 @@ -22326,15 +22320,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23624 - Close: - - port: Off - uid: 23624 - Toggle: [] - type: SignalReceiver + - links: + - 23624 + type: DeviceLinkSink - uid: 2072 components: - pos: 10.5,48.5 @@ -22349,15 +22337,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23624 - Close: - - port: Off - uid: 23624 - Toggle: [] - type: SignalReceiver + - links: + - 23624 + type: DeviceLinkSink - proto: BlastDoorExterior1 entities: - uid: 2073 @@ -22374,15 +22356,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23598 - Close: - - port: Off - uid: 23598 - Toggle: [] - type: SignalReceiver + - links: + - 23598 + type: DeviceLinkSink - uid: 2074 components: - pos: 47.5,-51.5 @@ -22397,15 +22373,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23594 - Close: - - port: Off - uid: 23594 - Toggle: [] - type: SignalReceiver + - links: + - 23594 + type: DeviceLinkSink - uid: 2075 components: - pos: 47.5,-52.5 @@ -22420,15 +22390,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23594 - Close: - - port: Off - uid: 23594 - Toggle: [] - type: SignalReceiver + - links: + - 23594 + type: DeviceLinkSink - uid: 2076 components: - pos: 47.5,-53.5 @@ -22443,15 +22407,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23594 - Close: - - port: Off - uid: 23594 - Toggle: [] - type: SignalReceiver + - links: + - 23594 + type: DeviceLinkSink - uid: 2077 components: - pos: 47.5,-54.5 @@ -22466,15 +22424,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23594 - Close: - - port: Off - uid: 23594 - Toggle: [] - type: SignalReceiver + - links: + - 23594 + type: DeviceLinkSink - uid: 2078 components: - pos: 52.5,-58.5 @@ -22489,15 +22441,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23595 - Close: - - port: Off - uid: 23595 - Toggle: [] - type: SignalReceiver + - links: + - 23595 + type: DeviceLinkSink - uid: 2079 components: - pos: 50.5,-62.5 @@ -22512,15 +22458,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23630 - Close: - - port: Off - uid: 23630 - Toggle: [] - type: SignalReceiver + - links: + - 23630 + type: DeviceLinkSink - uid: 2080 components: - rot: 1.5707963267948966 rad @@ -22536,15 +22476,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23597 - Close: - - port: Off - uid: 23597 - Toggle: [] - type: SignalReceiver + - links: + - 23597 + type: DeviceLinkSink - uid: 2081 components: - rot: 1.5707963267948966 rad @@ -22560,15 +22494,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23597 - Close: - - port: Off - uid: 23597 - Toggle: [] - type: SignalReceiver + - links: + - 23597 + type: DeviceLinkSink - uid: 2082 components: - pos: -45.5,-34.5 @@ -22583,15 +22511,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23601 - Close: - - port: Off - uid: 23601 - Toggle: [] - type: SignalReceiver + - links: + - 23601 + type: DeviceLinkSink - uid: 2083 components: - rot: -1.5707963267948966 rad @@ -22607,15 +22529,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23602 - Close: - - port: Off - uid: 23602 - Toggle: [] - type: SignalReceiver + - links: + - 23602 + type: DeviceLinkSink - uid: 2084 components: - rot: -1.5707963267948966 rad @@ -22631,15 +22547,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23602 - Close: - - port: Off - uid: 23602 - Toggle: [] - type: SignalReceiver + - links: + - 23602 + type: DeviceLinkSink - uid: 2085 components: - rot: -1.5707963267948966 rad @@ -22655,15 +22565,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23602 - Close: - - port: Off - uid: 23602 - Toggle: [] - type: SignalReceiver + - links: + - 23602 + type: DeviceLinkSink - uid: 2086 components: - rot: -1.5707963267948966 rad @@ -22679,15 +22583,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23602 - Close: - - port: Off - uid: 23602 - Toggle: [] - type: SignalReceiver + - links: + - 23602 + type: DeviceLinkSink - uid: 2087 components: - pos: -49.5,19.5 @@ -22702,15 +22600,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23604 - Close: - - port: Off - uid: 23604 - Toggle: [] - type: SignalReceiver + - links: + - 23604 + type: DeviceLinkSink - uid: 2088 components: - pos: -49.5,23.5 @@ -22725,15 +22617,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23604 - Close: - - port: Off - uid: 23604 - Toggle: [] - type: SignalReceiver + - links: + - 23604 + type: DeviceLinkSink - uid: 2089 components: - pos: 51.5,44.5 @@ -22748,23 +22634,11 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: Off - uid: 23614 - - port: Off - uid: 23612 - - port: Off - uid: 23619 - Close: - - port: On - uid: 23614 - - port: On - uid: 23612 - - port: On - uid: 23619 - Toggle: [] - type: SignalReceiver + - links: + - 23612 + - 23614 + - 23619 + type: DeviceLinkSink - uid: 2090 components: - pos: 54.5,45.5 @@ -22779,19 +22653,10 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23612 - - port: Off - uid: 23610 - Close: - - port: Off - uid: 23612 - - port: On - uid: 23610 - Toggle: [] - type: SignalReceiver + - links: + - 23610 + - 23612 + type: DeviceLinkSink - uid: 2091 components: - pos: -52.5,34.5 @@ -22806,15 +22671,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23636 - Close: - - port: Off - uid: 23636 - Toggle: [] - type: SignalReceiver + - links: + - 23636 + type: DeviceLinkSink - uid: 2092 components: - pos: -52.5,30.5 @@ -22829,15 +22688,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23596 - Close: - - port: Off - uid: 23596 - Toggle: [] - type: SignalReceiver + - links: + - 23596 + type: DeviceLinkSink - uid: 2093 components: - pos: -53.5,23.5 @@ -22852,15 +22705,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23603 - Close: - - port: Off - uid: 23603 - Toggle: [] - type: SignalReceiver + - links: + - 23603 + type: DeviceLinkSink - uid: 2094 components: - pos: -53.5,19.5 @@ -22875,15 +22722,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23603 - Close: - - port: Off - uid: 23603 - Toggle: [] - type: SignalReceiver + - links: + - 23603 + type: DeviceLinkSink - uid: 2095 components: - pos: 53.5,46.5 @@ -22898,23 +22739,11 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23615 - - port: Off - uid: 23606 - - port: On - uid: 23623 - Close: - - port: Off - uid: 23615 - - port: On - uid: 23606 - - port: Off - uid: 23623 - Toggle: [] - type: SignalReceiver + - links: + - 23606 + - 23615 + - 23623 + type: DeviceLinkSink - uid: 2096 components: - pos: 55.5,46.5 @@ -22929,19 +22758,10 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23610 - - port: Off - uid: 23613 - Close: - - port: Off - uid: 23610 - - port: On - uid: 23613 - Toggle: [] - type: SignalReceiver + - links: + - 23610 + - 23613 + type: DeviceLinkSink - uid: 2097 components: - pos: 50.5,47.5 @@ -22956,15 +22776,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23608 - Close: - - port: Off - uid: 23608 - Toggle: [] - type: SignalReceiver + - links: + - 23608 + type: DeviceLinkSink - uid: 2098 components: - pos: 57.5,44.5 @@ -22979,15 +22793,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23614 - Close: - - port: Off - uid: 23614 - Toggle: [] - type: SignalReceiver + - links: + - 23614 + type: DeviceLinkSink - uid: 2099 components: - pos: 56.5,47.5 @@ -23002,15 +22810,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23605 - Close: - - port: Off - uid: 23605 - Toggle: [] - type: SignalReceiver + - links: + - 23605 + type: DeviceLinkSink - uid: 2100 components: - pos: 51.5,48.5 @@ -23030,37 +22832,19 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: Off - uid: 23605 - - port: On - uid: 23620 - - port: On - uid: 23623 - Close: - - port: On - uid: 23605 - - port: Off - uid: 23620 - - port: Off - uid: 23623 - Toggle: [] - type: SignalReceiver + - links: + - 23605 + - 23620 + - 23623 + type: DeviceLinkSink - uid: 2102 components: - pos: 55.5,48.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23620 - Close: - - port: Off - uid: 23620 - Toggle: [] - type: SignalReceiver + - links: + - 23620 + type: DeviceLinkSink - uid: 2103 components: - pos: 58.5,47.5 @@ -23075,15 +22859,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23606 - Close: - - port: Off - uid: 23606 - Toggle: [] - type: SignalReceiver + - links: + - 23606 + type: DeviceLinkSink - uid: 2104 components: - pos: 52.5,45.5 @@ -23098,19 +22876,10 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23609 - - port: Off - uid: 23618 - Close: - - port: Off - uid: 23609 - - port: On - uid: 23618 - Toggle: [] - type: SignalReceiver + - links: + - 23609 + - 23618 + type: DeviceLinkSink - uid: 2105 components: - pos: 53.5,44.5 @@ -23125,19 +22894,10 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: Off - uid: 23616 - - port: On - uid: 23623 - Close: - - port: On - uid: 23616 - - port: Off - uid: 23623 - Toggle: [] - type: SignalReceiver + - links: + - 23616 + - 23623 + type: DeviceLinkSink - uid: 2106 components: - pos: 55.5,44.5 @@ -23152,19 +22912,10 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23616 - - port: On - uid: 23619 - Close: - - port: Off - uid: 23616 - - port: Off - uid: 23619 - Toggle: [] - type: SignalReceiver + - links: + - 23616 + - 23619 + type: DeviceLinkSink - uid: 2107 components: - pos: 58.5,45.5 @@ -23179,15 +22930,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: Off - uid: 23617 - Close: - - port: On - uid: 23617 - Toggle: [] - type: SignalReceiver + - links: + - 23617 + type: DeviceLinkSink - uid: 2108 components: - pos: 57.5,46.5 @@ -23202,23 +22947,11 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: Off - uid: 23609 - - port: On - uid: 23611 - - port: Off - uid: 23620 - Close: - - port: On - uid: 23609 - - port: Off - uid: 23611 - - port: On - uid: 23620 - Toggle: [] - type: SignalReceiver + - links: + - 23609 + - 23611 + - 23620 + type: DeviceLinkSink - uid: 2109 components: - pos: 57.5,48.5 @@ -23238,15 +22971,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23613 - Close: - - port: Off - uid: 23613 - Toggle: [] - type: SignalReceiver + - links: + - 23613 + type: DeviceLinkSink - uid: 2111 components: - pos: 52.5,47.5 @@ -23261,15 +22988,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: Off - uid: 23615 - Close: - - port: On - uid: 23615 - Toggle: [] - type: SignalReceiver + - links: + - 23615 + type: DeviceLinkSink - uid: 2112 components: - pos: 51.5,46.5 @@ -23284,19 +23005,10 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23619 - - port: Off - uid: 23620 - Close: - - port: Off - uid: 23619 - - port: On - uid: 23620 - Toggle: [] - type: SignalReceiver + - links: + - 23619 + - 23620 + type: DeviceLinkSink - uid: 2113 components: - pos: 56.5,45.5 @@ -23311,19 +23023,10 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: Off - uid: 23611 - - port: On - uid: 23617 - Close: - - port: On - uid: 23611 - - port: Off - uid: 23617 - Toggle: [] - type: SignalReceiver + - links: + - 23611 + - 23617 + type: DeviceLinkSink - uid: 2114 components: - pos: 50.5,45.5 @@ -23338,19 +23041,10 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23618 - - port: Off - uid: 23608 - Close: - - port: Off - uid: 23618 - - port: On - uid: 23608 - Toggle: [] - type: SignalReceiver + - links: + - 23608 + - 23618 + type: DeviceLinkSink - uid: 2115 components: - pos: -18.5,-96.5 @@ -23365,15 +23059,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23626 - Close: - - port: Off - uid: 23626 - Toggle: [] - type: SignalReceiver + - links: + - 23626 + type: DeviceLinkSink - uid: 2116 components: - pos: -18.5,-98.5 @@ -23388,15 +23076,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23626 - Close: - - port: Off - uid: 23626 - Toggle: [] - type: SignalReceiver + - links: + - 23626 + type: DeviceLinkSink - uid: 2117 components: - pos: -26.5,-96.5 @@ -23411,15 +23093,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23627 - Close: - - port: Off - uid: 23627 - Toggle: [] - type: SignalReceiver + - links: + - 23627 + type: DeviceLinkSink - uid: 2118 components: - pos: -26.5,-98.5 @@ -23434,15 +23110,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23627 - Close: - - port: Off - uid: 23627 - Toggle: [] - type: SignalReceiver + - links: + - 23627 + type: DeviceLinkSink - uid: 2119 components: - pos: 67.5,-39.5 @@ -23457,30 +23127,18 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23593 - Close: - - port: Off - uid: 23593 - Toggle: [] - type: SignalReceiver + - links: + - 23593 + type: DeviceLinkSink - uid: 2120 components: - rot: 3.141592653589793 rad pos: 72.5,-27.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23631 - Close: - - port: Off - uid: 23631 - Toggle: [] - type: SignalReceiver + - links: + - 23631 + type: DeviceLinkSink - proto: BlastDoorExterior1Open entities: - uid: 2121 @@ -23498,15 +23156,9 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23625 - Close: - - port: Off - uid: 23625 - Toggle: [] - type: SignalReceiver + - links: + - 23625 + type: DeviceLinkSink - uid: 2122 components: - rot: -1.5707963267948966 rad @@ -23522,15 +23174,9 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23625 - Close: - - port: Off - uid: 23625 - Toggle: [] - type: SignalReceiver + - links: + - 23625 + type: DeviceLinkSink - uid: 2123 components: - rot: -1.5707963267948966 rad @@ -23546,15 +23192,9 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23625 - Close: - - port: Off - uid: 23625 - Toggle: [] - type: SignalReceiver + - links: + - 23625 + type: DeviceLinkSink - uid: 2124 components: - rot: -1.5707963267948966 rad @@ -23570,15 +23210,9 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23625 - Close: - - port: Off - uid: 23625 - Toggle: [] - type: SignalReceiver + - links: + - 23625 + type: DeviceLinkSink - uid: 2125 components: - rot: -1.5707963267948966 rad @@ -23594,15 +23228,9 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23625 - Close: - - port: Off - uid: 23625 - Toggle: [] - type: SignalReceiver + - links: + - 23625 + type: DeviceLinkSink - uid: 2126 components: - rot: -1.5707963267948966 rad @@ -23618,15 +23246,9 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23625 - Close: - - port: Off - uid: 23625 - Toggle: [] - type: SignalReceiver + - links: + - 23625 + type: DeviceLinkSink - uid: 2127 components: - rot: -1.5707963267948966 rad @@ -23642,15 +23264,9 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23625 - Close: - - port: Off - uid: 23625 - Toggle: [] - type: SignalReceiver + - links: + - 23625 + type: DeviceLinkSink - uid: 2128 components: - rot: -1.5707963267948966 rad @@ -23666,15 +23282,9 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23625 - Close: - - port: Off - uid: 23625 - Toggle: [] - type: SignalReceiver + - links: + - 23625 + type: DeviceLinkSink - uid: 2129 components: - rot: -1.5707963267948966 rad @@ -23690,15 +23300,9 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23625 - Close: - - port: Off - uid: 23625 - Toggle: [] - type: SignalReceiver + - links: + - 23625 + type: DeviceLinkSink - uid: 2130 components: - rot: -1.5707963267948966 rad @@ -23714,15 +23318,9 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23625 - Close: - - port: Off - uid: 23625 - Toggle: [] - type: SignalReceiver + - links: + - 23625 + type: DeviceLinkSink - uid: 2131 components: - pos: -8.5,-91.5 @@ -23737,19 +23335,10 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23628 - - port: On - uid: 23629 - Close: - - port: Off - uid: 23628 - - port: Off - uid: 23629 - Toggle: [] - type: SignalReceiver + - links: + - 23628 + - 23629 + type: DeviceLinkSink - uid: 2132 components: - pos: -8.5,-92.5 @@ -23764,19 +23353,10 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23629 - - port: On - uid: 23628 - Close: - - port: Off - uid: 23629 - - port: Off - uid: 23628 - Toggle: [] - type: SignalReceiver + - links: + - 23628 + - 23629 + type: DeviceLinkSink - uid: 2133 components: - pos: -8.5,-93.5 @@ -23791,19 +23371,10 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23629 - - port: On - uid: 23628 - Close: - - port: Off - uid: 23629 - - port: Off - uid: 23628 - Toggle: [] - type: SignalReceiver + - links: + - 23628 + - 23629 + type: DeviceLinkSink - uid: 2134 components: - pos: -6.5,-91.5 @@ -23818,19 +23389,10 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23628 - - port: On - uid: 23629 - Close: - - port: Off - uid: 23628 - - port: Off - uid: 23629 - Toggle: [] - type: SignalReceiver + - links: + - 23628 + - 23629 + type: DeviceLinkSink - uid: 2135 components: - pos: -6.5,-90.5 @@ -23845,19 +23407,10 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23628 - - port: On - uid: 23629 - Close: - - port: Off - uid: 23628 - - port: Off - uid: 23629 - Toggle: [] - type: SignalReceiver + - links: + - 23628 + - 23629 + type: DeviceLinkSink - uid: 2136 components: - pos: -6.5,-92.5 @@ -23872,19 +23425,10 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23628 - - port: On - uid: 23629 - Close: - - port: Off - uid: 23628 - - port: Off - uid: 23629 - Toggle: [] - type: SignalReceiver + - links: + - 23628 + - 23629 + type: DeviceLinkSink - uid: 2137 components: - pos: -6.5,-93.5 @@ -23899,19 +23443,10 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23628 - - port: On - uid: 23629 - Close: - - port: Off - uid: 23628 - - port: Off - uid: 23629 - Toggle: [] - type: SignalReceiver + - links: + - 23628 + - 23629 + type: DeviceLinkSink - uid: 2138 components: - pos: -8.5,-90.5 @@ -23926,19 +23461,10 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23628 - - port: On - uid: 23629 - Close: - - port: Off - uid: 23628 - - port: Off - uid: 23629 - Toggle: [] - type: SignalReceiver + - links: + - 23628 + - 23629 + type: DeviceLinkSink - proto: BlastDoorExterior2 entities: - uid: 2139 @@ -23955,15 +23481,9 @@ entities: type: Physics - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23590 - Close: - - port: Off - uid: 23590 - Toggle: [] - type: SignalReceiver + - links: + - 23590 + type: DeviceLinkSink - proto: BlastDoorOpen entities: - uid: 2140 @@ -23980,15 +23500,9 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23600 - Close: - - port: Off - uid: 23600 - Toggle: [] - type: SignalReceiver + - links: + - 23600 + type: DeviceLinkSink - uid: 2141 components: - pos: -56.5,-12.5 @@ -24003,15 +23517,9 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23600 - Close: - - port: Off - uid: 23600 - Toggle: [] - type: SignalReceiver + - links: + - 23600 + type: DeviceLinkSink - uid: 2142 components: - pos: -56.5,-13.5 @@ -24026,15 +23534,9 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23600 - Close: - - port: Off - uid: 23600 - Toggle: [] - type: SignalReceiver + - links: + - 23600 + type: DeviceLinkSink - uid: 2143 components: - pos: -56.5,-14.5 @@ -24049,15 +23551,9 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23600 - Close: - - port: Off - uid: 23600 - Toggle: [] - type: SignalReceiver + - links: + - 23600 + type: DeviceLinkSink - uid: 2144 components: - pos: -56.5,-15.5 @@ -24072,15 +23568,9 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23600 - Close: - - port: Off - uid: 23600 - Toggle: [] - type: SignalReceiver + - links: + - 23600 + type: DeviceLinkSink - uid: 2145 components: - rot: -1.5707963267948966 rad @@ -24096,15 +23586,9 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23599 - Close: - - port: Off - uid: 23599 - Toggle: [] - type: SignalReceiver + - links: + - 23599 + type: DeviceLinkSink - uid: 2146 components: - rot: -1.5707963267948966 rad @@ -24120,15 +23604,9 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23599 - Close: - - port: Off - uid: 23599 - Toggle: [] - type: SignalReceiver + - links: + - 23599 + type: DeviceLinkSink - uid: 2147 components: - rot: -1.5707963267948966 rad @@ -24144,15 +23622,9 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23599 - Close: - - port: Off - uid: 23599 - Toggle: [] - type: SignalReceiver + - links: + - 23599 + type: DeviceLinkSink - uid: 2148 components: - rot: -1.5707963267948966 rad @@ -24168,15 +23640,9 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23599 - Close: - - port: Off - uid: 23599 - Toggle: [] - type: SignalReceiver + - links: + - 23599 + type: DeviceLinkSink - uid: 2149 components: - rot: -1.5707963267948966 rad @@ -24192,15 +23658,9 @@ entities: type: Physics - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23599 - Close: - - port: Off - uid: 23599 - Toggle: [] - type: SignalReceiver + - links: + - 23599 + type: DeviceLinkSink - proto: BlockGameArcadeComputerCircuitboard entities: - uid: 2150 @@ -24817,16 +24277,6 @@ entities: pos: 36.5,13.5 parent: 2 type: Transform - - outputs: - Start: - - port: Close - uid: 30428 - Timer: - - port: AutoClose - uid: 30428 - - port: Open - uid: 30428 - type: SignalTransmitter - uid: 2252 components: - name: cell 1 brig timer @@ -24835,16 +24285,6 @@ entities: pos: 30.5,13.5 parent: 2 type: Transform - - outputs: - Start: - - port: Close - uid: 30420 - Timer: - - port: AutoClose - uid: 30420 - - port: Open - uid: 30420 - type: SignalTransmitter - uid: 2253 components: - name: cell 2 brig timer @@ -24853,16 +24293,6 @@ entities: pos: 33.5,13.5 parent: 2 type: Transform - - outputs: - Start: - - port: Close - uid: 30425 - Timer: - - port: AutoClose - uid: 30425 - - port: Open - uid: 30425 - type: SignalTransmitter - uid: 2254 components: - name: cell 4 brig timer @@ -24871,16 +24301,6 @@ entities: pos: 39.5,9.5 parent: 2 type: Transform - - outputs: - Start: - - port: Close - uid: 30421 - Timer: - - port: AutoClose - uid: 30421 - - port: Open - uid: 30421 - type: SignalTransmitter - uid: 2255 components: - name: cell 5 brig timer @@ -24889,16 +24309,6 @@ entities: pos: 39.5,6.5 parent: 2 type: Transform - - outputs: - Start: - - port: Close - uid: 30426 - Timer: - - port: AutoClose - uid: 30426 - - port: Open - uid: 30426 - type: SignalTransmitter - proto: BrigTimerElectronics entities: - uid: 2256 @@ -82939,11 +82349,6 @@ entities: - pos: 73.5,-31.5 parent: 2 type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 20936 - type: SignalTransmitter - proto: computerBodyScanner entities: - uid: 12409 @@ -83498,1380 +82903,724 @@ entities: pos: 16.5,-55.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25233 - Forward: - - port: Left - uid: 25233 - Off: - - port: Middle - uid: 25233 - type: SignalReceiver + - links: + - 25233 + type: DeviceLinkSink - uid: 12501 components: - pos: 18.5,-56.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25233 - Forward: - - port: Left - uid: 25233 - Off: - - port: Middle - uid: 25233 - type: SignalReceiver + - links: + - 25233 + type: DeviceLinkSink - uid: 12502 components: - rot: 1.5707963267948966 rad pos: 17.5,-55.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25233 - Forward: - - port: Left - uid: 25233 - Off: - - port: Middle - uid: 25233 - type: SignalReceiver + - links: + - 25233 + type: DeviceLinkSink - uid: 12503 components: - rot: 1.5707963267948966 rad pos: 15.5,-55.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25233 - Forward: - - port: Left - uid: 25233 - Off: - - port: Middle - uid: 25233 - type: SignalReceiver + - links: + - 25233 + type: DeviceLinkSink - uid: 12504 components: - pos: 18.5,-55.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25233 - Forward: - - port: Left - uid: 25233 - Off: - - port: Middle - uid: 25233 - type: SignalReceiver + - links: + - 25233 + type: DeviceLinkSink - uid: 12505 components: - rot: -1.5707963267948966 rad pos: -12.5,-10.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25246 - - port: Left - uid: 25246 - Forward: [] - Off: - - port: Middle - uid: 25246 - type: SignalReceiver + - links: + - 25246 + type: DeviceLinkSink - uid: 12506 components: - pos: 15.5,-54.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25233 - Forward: - - port: Left - uid: 25233 - Off: - - port: Middle - uid: 25233 - type: SignalReceiver + - links: + - 25233 + type: DeviceLinkSink - uid: 12507 components: - pos: 18.5,-57.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25233 - Forward: - - port: Left - uid: 25233 - Off: - - port: Middle - uid: 25233 - type: SignalReceiver + - links: + - 25233 + type: DeviceLinkSink - uid: 12508 components: - rot: -1.5707963267948966 rad pos: 17.5,-54.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25233 - Forward: - - port: Left - uid: 25233 - Off: - - port: Middle - uid: 25233 - type: SignalReceiver + - links: + - 25233 + type: DeviceLinkSink - uid: 12509 components: - rot: -1.5707963267948966 rad pos: 16.5,-54.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25233 - Forward: - - port: Left - uid: 25233 - Off: - - port: Middle - uid: 25233 - type: SignalReceiver + - links: + - 25233 + type: DeviceLinkSink - uid: 12510 components: - rot: -1.5707963267948966 rad pos: 18.5,-54.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25233 - Forward: - - port: Left - uid: 25233 - Off: - - port: Middle - uid: 25233 - type: SignalReceiver + - links: + - 25233 + type: DeviceLinkSink - uid: 12511 components: - rot: -1.5707963267948966 rad pos: -14.5,-10.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25246 - - port: Left - uid: 25246 - Forward: [] - Off: - - port: Middle - uid: 25246 - type: SignalReceiver + - links: + - 25246 + type: DeviceLinkSink - uid: 12512 components: - rot: -1.5707963267948966 rad pos: -13.5,-10.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25246 - - port: Left - uid: 25246 - Forward: [] - Off: - - port: Middle - uid: 25246 - type: SignalReceiver + - links: + - 25246 + type: DeviceLinkSink - uid: 12513 components: - rot: 3.141592653589793 rad pos: -11.5,-10.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25246 - - port: Left - uid: 25246 - Forward: [] - Off: - - port: Middle - uid: 25246 - type: SignalReceiver + - links: + - 25246 + type: DeviceLinkSink - uid: 12514 components: - rot: 1.5707963267948966 rad pos: -25.5,25.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25234 - Forward: - - port: Left - uid: 25234 - Off: - - port: Middle - uid: 25234 - type: SignalReceiver + - links: + - 25234 + type: DeviceLinkSink - uid: 12515 components: - rot: 1.5707963267948966 rad pos: -26.5,25.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25234 - Forward: - - port: Left - uid: 25234 - Off: - - port: Middle - uid: 25234 - type: SignalReceiver + - links: + - 25234 + type: DeviceLinkSink - uid: 12516 components: - rot: 1.5707963267948966 rad pos: -27.5,25.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25234 - Forward: - - port: Left - uid: 25234 - Off: - - port: Middle - uid: 25234 - type: SignalReceiver + - links: + - 25234 + type: DeviceLinkSink - uid: 12517 components: - rot: 1.5707963267948966 rad pos: -28.5,25.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25234 - Forward: - - port: Left - uid: 25234 - Off: - - port: Middle - uid: 25234 - type: SignalReceiver + - links: + - 25234 + type: DeviceLinkSink - uid: 12518 components: - rot: 1.5707963267948966 rad pos: -30.5,25.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25234 - Forward: - - port: Left - uid: 25234 - Off: - - port: Middle - uid: 25234 - type: SignalReceiver + - links: + - 25234 + type: DeviceLinkSink - uid: 12519 components: - rot: 1.5707963267948966 rad pos: -29.5,25.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25234 - Forward: - - port: Left - uid: 25234 - Off: - - port: Middle - uid: 25234 - type: SignalReceiver + - links: + - 25234 + type: DeviceLinkSink - uid: 12520 components: - rot: 1.5707963267948966 rad pos: -35.5,25.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25238 - Forward: - - port: Left - uid: 25238 - Off: - - port: Middle - uid: 25238 - type: SignalReceiver + - links: + - 25238 + type: DeviceLinkSink - uid: 12521 components: - rot: 1.5707963267948966 rad pos: -34.5,25.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25238 - Forward: - - port: Left - uid: 25238 - Off: - - port: Middle - uid: 25238 - type: SignalReceiver + - links: + - 25238 + type: DeviceLinkSink - uid: 12522 components: - rot: 1.5707963267948966 rad pos: -36.5,25.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25238 - Forward: - - port: Left - uid: 25238 - Off: - - port: Middle - uid: 25238 - type: SignalReceiver + - links: + - 25238 + type: DeviceLinkSink - uid: 12523 components: - rot: 1.5707963267948966 rad pos: -37.5,25.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25238 - Forward: - - port: Left - uid: 25238 - Off: - - port: Middle - uid: 25238 - type: SignalReceiver + - links: + - 25238 + type: DeviceLinkSink - uid: 12524 components: - rot: 1.5707963267948966 rad pos: -38.5,25.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25238 - Forward: - - port: Left - uid: 25238 - Off: - - port: Middle - uid: 25238 - type: SignalReceiver + - links: + - 25238 + type: DeviceLinkSink - uid: 12525 components: - rot: 1.5707963267948966 rad pos: -48.5,19.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25237 - Forward: - - port: Left - uid: 25237 - Off: - - port: Middle - uid: 25237 - type: SignalReceiver + - links: + - 25237 + type: DeviceLinkSink - uid: 12526 components: - rot: 1.5707963267948966 rad pos: -49.5,19.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25237 - Forward: - - port: Left - uid: 25237 - Off: - - port: Middle - uid: 25237 - type: SignalReceiver + - links: + - 25237 + type: DeviceLinkSink - uid: 12527 components: - rot: 1.5707963267948966 rad pos: -50.5,19.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25237 - Forward: - - port: Left - uid: 25237 - Off: - - port: Middle - uid: 25237 - type: SignalReceiver + - links: + - 25237 + type: DeviceLinkSink - uid: 12528 components: - rot: 1.5707963267948966 rad pos: -51.5,19.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25237 - Forward: - - port: Left - uid: 25237 - Off: - - port: Middle - uid: 25237 - type: SignalReceiver + - links: + - 25237 + type: DeviceLinkSink - uid: 12529 components: - rot: 1.5707963267948966 rad pos: -48.5,23.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25236 - Forward: - - port: Left - uid: 25236 - Off: - - port: Middle - uid: 25236 - type: SignalReceiver + - links: + - 25236 + type: DeviceLinkSink - uid: 12530 components: - rot: 1.5707963267948966 rad pos: -49.5,23.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25236 - Forward: - - port: Left - uid: 25236 - Off: - - port: Middle - uid: 25236 - type: SignalReceiver + - links: + - 25236 + type: DeviceLinkSink - uid: 12531 components: - rot: 1.5707963267948966 rad pos: -50.5,23.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25236 - Forward: - - port: Left - uid: 25236 - Off: - - port: Middle - uid: 25236 - type: SignalReceiver + - links: + - 25236 + type: DeviceLinkSink - uid: 12532 components: - rot: 1.5707963267948966 rad pos: -51.5,23.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25236 - Forward: - - port: Left - uid: 25236 - Off: - - port: Middle - uid: 25236 - type: SignalReceiver + - links: + - 25236 + type: DeviceLinkSink - uid: 12533 components: - rot: 1.5707963267948966 rad pos: -52.5,19.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25237 - Forward: - - port: Left - uid: 25237 - Off: - - port: Middle - uid: 25237 - type: SignalReceiver + - links: + - 25237 + type: DeviceLinkSink - uid: 12534 components: - rot: 1.5707963267948966 rad pos: -53.5,19.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25237 - Forward: - - port: Left - uid: 25237 - Off: - - port: Middle - uid: 25237 - type: SignalReceiver + - links: + - 25237 + type: DeviceLinkSink - uid: 12535 components: - rot: 1.5707963267948966 rad pos: -47.5,19.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25237 - Forward: - - port: Left - uid: 25237 - Off: - - port: Middle - uid: 25237 - type: SignalReceiver + - links: + - 25237 + type: DeviceLinkSink - uid: 12536 components: - rot: 1.5707963267948966 rad pos: -46.5,19.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25237 - Forward: - - port: Left - uid: 25237 - Off: - - port: Middle - uid: 25237 - type: SignalReceiver + - links: + - 25237 + type: DeviceLinkSink - uid: 12537 components: - rot: 1.5707963267948966 rad pos: -47.5,23.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25236 - Forward: - - port: Left - uid: 25236 - Off: - - port: Middle - uid: 25236 - type: SignalReceiver + - links: + - 25236 + type: DeviceLinkSink - uid: 12538 components: - rot: 1.5707963267948966 rad pos: -46.5,23.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25236 - Forward: - - port: Left - uid: 25236 - Off: - - port: Middle - uid: 25236 - type: SignalReceiver + - links: + - 25236 + type: DeviceLinkSink - uid: 12539 components: - rot: 1.5707963267948966 rad pos: -53.5,23.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25236 - Forward: - - port: Left - uid: 25236 - Off: - - port: Middle - uid: 25236 - type: SignalReceiver + - links: + - 25236 + type: DeviceLinkSink - uid: 12540 components: - rot: 1.5707963267948966 rad pos: -52.5,23.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25236 - Forward: - - port: Left - uid: 25236 - Off: - - port: Middle - uid: 25236 - type: SignalReceiver + - links: + - 25236 + type: DeviceLinkSink - uid: 12541 components: - rot: 3.141592653589793 rad pos: -42.5,14.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25235 - Forward: - - port: Left - uid: 25235 - Off: - - port: Middle - uid: 25235 - type: SignalReceiver + - links: + - 25235 + type: DeviceLinkSink - uid: 12542 components: - rot: 1.5707963267948966 rad pos: -51.5,30.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25240 - Forward: - - port: Left - uid: 25240 - Off: - - port: Middle - uid: 25240 - type: SignalReceiver + - links: + - 25240 + type: DeviceLinkSink - uid: 12543 components: - rot: 1.5707963267948966 rad pos: -52.5,30.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25240 - Forward: - - port: Left - uid: 25240 - Off: - - port: Middle - uid: 25240 - type: SignalReceiver + - links: + - 25240 + type: DeviceLinkSink - uid: 12544 components: - rot: 1.5707963267948966 rad pos: -50.5,30.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25240 - Forward: - - port: Left - uid: 25240 - Off: - - port: Middle - uid: 25240 - type: SignalReceiver + - links: + - 25240 + type: DeviceLinkSink - uid: 12545 components: - rot: 1.5707963267948966 rad pos: -49.5,30.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25240 - Forward: - - port: Left - uid: 25240 - Off: - - port: Middle - uid: 25240 - type: SignalReceiver + - links: + - 25240 + type: DeviceLinkSink - uid: 12546 components: - rot: 1.5707963267948966 rad pos: -48.5,30.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25240 - Forward: - - port: Left - uid: 25240 - Off: - - port: Middle - uid: 25240 - type: SignalReceiver + - links: + - 25240 + type: DeviceLinkSink - uid: 12547 components: - rot: 1.5707963267948966 rad pos: -52.5,34.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25241 - Forward: - - port: Left - uid: 25241 - Off: - - port: Middle - uid: 25241 - type: SignalReceiver + - links: + - 25241 + type: DeviceLinkSink - uid: 12548 components: - rot: 1.5707963267948966 rad pos: -51.5,34.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25241 - Forward: - - port: Left - uid: 25241 - Off: - - port: Middle - uid: 25241 - type: SignalReceiver + - links: + - 25241 + type: DeviceLinkSink - uid: 12549 components: - rot: 1.5707963267948966 rad pos: -50.5,34.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25241 - Forward: - - port: Left - uid: 25241 - Off: - - port: Middle - uid: 25241 - type: SignalReceiver + - links: + - 25241 + type: DeviceLinkSink - uid: 12550 components: - rot: 1.5707963267948966 rad pos: -49.5,34.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25241 - Forward: - - port: Left - uid: 25241 - Off: - - port: Middle - uid: 25241 - type: SignalReceiver + - links: + - 25241 + type: DeviceLinkSink - uid: 12551 components: - rot: 1.5707963267948966 rad pos: -48.5,34.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25241 - Forward: - - port: Left - uid: 25241 - Off: - - port: Middle - uid: 25241 - type: SignalReceiver + - links: + - 25241 + type: DeviceLinkSink - uid: 12552 components: - rot: 1.5707963267948966 rad pos: -53.5,34.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25241 - Forward: - - port: Left - uid: 25241 - Off: - - port: Middle - uid: 25241 - type: SignalReceiver + - links: + - 25241 + type: DeviceLinkSink - uid: 12553 components: - rot: 1.5707963267948966 rad pos: -53.5,30.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25240 - Forward: - - port: Left - uid: 25240 - Off: - - port: Middle - uid: 25240 - type: SignalReceiver + - links: + - 25240 + type: DeviceLinkSink - uid: 12554 components: - rot: 1.5707963267948966 rad pos: -47.5,34.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25241 - Forward: - - port: Left - uid: 25241 - Off: - - port: Middle - uid: 25241 - type: SignalReceiver + - links: + - 25241 + type: DeviceLinkSink - uid: 12555 components: - rot: 1.5707963267948966 rad pos: -47.5,30.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25240 - Forward: - - port: Left - uid: 25240 - Off: - - port: Middle - uid: 25240 - type: SignalReceiver + - links: + - 25240 + type: DeviceLinkSink - uid: 12556 components: - rot: -1.5707963267948966 rad pos: -12.5,27.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Left - uid: 25239 - Forward: - - port: Right - uid: 25239 - Off: - - port: Middle - uid: 25239 - type: SignalReceiver + - links: + - 25239 + type: DeviceLinkSink - uid: 12557 components: - pos: -10.5,28.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Left - uid: 25239 - Forward: - - port: Right - uid: 25239 - Off: - - port: Middle - uid: 25239 - type: SignalReceiver + - links: + - 25239 + type: DeviceLinkSink - uid: 12558 components: - rot: -1.5707963267948966 rad pos: -9.5,28.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Left - uid: 25239 - Forward: - - port: Right - uid: 25239 - Off: - - port: Middle - uid: 25239 - type: SignalReceiver + - links: + - 25239 + type: DeviceLinkSink - uid: 12559 components: - rot: 3.141592653589793 rad pos: -42.5,15.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25235 - Forward: - - port: Left - uid: 25235 - Off: - - port: Middle - uid: 25235 - type: SignalReceiver + - links: + - 25235 + type: DeviceLinkSink - uid: 12560 components: - rot: 3.141592653589793 rad pos: -42.5,17.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25235 - Forward: - - port: Left - uid: 25235 - Off: - - port: Middle - uid: 25235 - type: SignalReceiver + - links: + - 25235 + type: DeviceLinkSink - uid: 12561 components: - rot: 3.141592653589793 rad pos: -42.5,13.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25235 - Forward: - - port: Left - uid: 25235 - Off: - - port: Middle - uid: 25235 - type: SignalReceiver + - links: + - 25235 + type: DeviceLinkSink - uid: 12562 components: - pos: -47.5,13.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25242 - Forward: - - port: Left - uid: 25242 - Off: - - port: Middle - uid: 25242 - type: SignalReceiver + - links: + - 25242 + type: DeviceLinkSink - uid: 12563 components: - pos: -47.5,14.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25242 - Forward: - - port: Left - uid: 25242 - Off: - - port: Middle - uid: 25242 - type: SignalReceiver + - links: + - 25242 + type: DeviceLinkSink - uid: 12564 components: - pos: -47.5,12.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25242 - Forward: - - port: Left - uid: 25242 - Off: - - port: Middle - uid: 25242 - type: SignalReceiver + - links: + - 25242 + type: DeviceLinkSink - uid: 12565 components: - rot: 1.5707963267948966 rad pos: -8.5,22.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25239 - Forward: - - port: Left - uid: 25239 - Off: - - port: Middle - uid: 25239 - type: SignalReceiver + - links: + - 25239 + type: DeviceLinkSink - uid: 12566 components: - rot: 1.5707963267948966 rad pos: -7.5,22.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25239 - Forward: - - port: Left - uid: 25239 - Off: - - port: Middle - uid: 25239 - type: SignalReceiver + - links: + - 25239 + type: DeviceLinkSink - uid: 12567 components: - rot: 1.5707963267948966 rad pos: -6.5,22.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25239 - Forward: - - port: Left - uid: 25239 - Off: - - port: Middle - uid: 25239 - type: SignalReceiver + - links: + - 25239 + type: DeviceLinkSink - uid: 12568 components: - rot: 1.5707963267948966 rad pos: 43.5,37.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25243 - Forward: - - port: Left - uid: 25243 - Off: - - port: Middle - uid: 25243 - type: SignalReceiver + - links: + - 25243 + type: DeviceLinkSink - uid: 12569 components: - rot: 1.5707963267948966 rad pos: 44.5,37.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25243 - Forward: - - port: Left - uid: 25243 - Off: - - port: Middle - uid: 25243 - type: SignalReceiver + - links: + - 25243 + type: DeviceLinkSink - uid: 12570 components: - rot: 1.5707963267948966 rad pos: 45.5,37.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25243 - Forward: - - port: Left - uid: 25243 - Off: - - port: Middle - uid: 25243 - type: SignalReceiver + - links: + - 25243 + type: DeviceLinkSink - uid: 12571 components: - pos: 46.5,37.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25243 - Forward: - - port: Left - uid: 25243 - Off: - - port: Middle - uid: 25243 - type: SignalReceiver + - links: + - 25243 + type: DeviceLinkSink - uid: 12572 components: - rot: 1.5707963267948966 rad pos: 46.5,36.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25243 - Forward: - - port: Left - uid: 25243 - Off: - - port: Middle - uid: 25243 - type: SignalReceiver + - links: + - 25243 + type: DeviceLinkSink - uid: 12573 components: - rot: 1.5707963267948966 rad pos: 47.5,36.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25243 - Forward: - - port: Left - uid: 25243 - Off: - - port: Middle - uid: 25243 - type: SignalReceiver + - links: + - 25243 + type: DeviceLinkSink - uid: 12574 components: - rot: 3.141592653589793 rad pos: 48.5,36.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25243 - Forward: - - port: Left - uid: 25243 - Off: - - port: Middle - uid: 25243 - type: SignalReceiver + - links: + - 25243 + type: DeviceLinkSink - uid: 12575 components: - rot: 3.141592653589793 rad pos: 48.5,37.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25243 - Forward: - - port: Left - uid: 25243 - Off: - - port: Middle - uid: 25243 - type: SignalReceiver + - links: + - 25243 + type: DeviceLinkSink - uid: 12576 components: - rot: 1.5707963267948966 rad pos: -9.5,22.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25239 - Forward: - - port: Left - uid: 25239 - Off: - - port: Middle - uid: 25239 - type: SignalReceiver + - links: + - 25239 + type: DeviceLinkSink - uid: 12577 components: - pos: -9.5,27.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25239 - Forward: - - port: Left - uid: 25239 - Off: - - port: Middle - uid: 25239 - type: SignalReceiver + - links: + - 25239 + type: DeviceLinkSink - uid: 12578 components: - pos: -9.5,26.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25239 - Forward: - - port: Left - uid: 25239 - Off: - - port: Middle - uid: 25239 - type: SignalReceiver + - links: + - 25239 + type: DeviceLinkSink - uid: 12579 components: - pos: -9.5,25.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25239 - Forward: - - port: Left - uid: 25239 - Off: - - port: Middle - uid: 25239 - type: SignalReceiver + - links: + - 25239 + type: DeviceLinkSink - uid: 12580 components: - pos: -9.5,24.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25239 - Forward: - - port: Left - uid: 25239 - Off: - - port: Middle - uid: 25239 - type: SignalReceiver + - links: + - 25239 + type: DeviceLinkSink - uid: 12581 components: - pos: -9.5,23.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25239 - Forward: - - port: Left - uid: 25239 - Off: - - port: Middle - uid: 25239 - type: SignalReceiver + - links: + - 25239 + type: DeviceLinkSink - type: ActiveConveyor - uid: 12582 components: @@ -84879,389 +83628,182 @@ entities: pos: -10.5,22.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25239 - Forward: - - port: Left - uid: 25239 - Off: - - port: Middle - uid: 25239 - type: SignalReceiver + - links: + - 25239 + type: DeviceLinkSink - uid: 12583 components: - rot: 1.5707963267948966 rad pos: -10.5,23.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25239 - Forward: - - port: Left - uid: 25239 - Off: - - port: Middle - uid: 25239 - type: SignalReceiver + - links: + - 25239 + type: DeviceLinkSink - uid: 12584 components: - rot: -1.5707963267948966 rad pos: -10.5,27.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Left - uid: 25239 - Forward: - - port: Right - uid: 25239 - Off: - - port: Middle - uid: 25239 - type: SignalReceiver + - links: + - 25239 + type: DeviceLinkSink - uid: 12585 components: - rot: -1.5707963267948966 rad pos: -11.5,27.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Left - uid: 25239 - Forward: - - port: Right - uid: 25239 - Off: - - port: Middle - uid: 25239 - type: SignalReceiver + - links: + - 25239 + type: DeviceLinkSink - uid: 12586 components: - rot: 3.141592653589793 rad pos: 48.5,38.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25243 - Forward: - - port: Left - uid: 25243 - Off: - - port: Middle - uid: 25243 - type: SignalReceiver + - links: + - 25243 + type: DeviceLinkSink - uid: 12587 components: - rot: 3.141592653589793 rad pos: -37.5,-99.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25244 - - port: Right - uid: 25245 - Forward: - - port: Left - uid: 25244 - - port: Left - uid: 25245 - Off: - - port: Middle - uid: 25244 - - port: Middle - uid: 25245 - type: SignalReceiver + - links: + - 25244 + - 25245 + type: DeviceLinkSink - uid: 12588 components: - rot: 3.141592653589793 rad pos: -37.5,-98.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25244 - - port: Right - uid: 25245 - Forward: - - port: Left - uid: 25244 - - port: Left - uid: 25245 - Off: - - port: Middle - uid: 25244 - - port: Middle - uid: 25245 - type: SignalReceiver + - links: + - 25244 + - 25245 + type: DeviceLinkSink - uid: 12589 components: - rot: 3.141592653589793 rad pos: -37.5,-100.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25244 - - port: Right - uid: 25245 - Forward: - - port: Left - uid: 25244 - - port: Left - uid: 25245 - Off: - - port: Middle - uid: 25244 - - port: Middle - uid: 25245 - type: SignalReceiver + - links: + - 25244 + - 25245 + type: DeviceLinkSink - uid: 12590 components: - rot: 3.141592653589793 rad pos: -37.5,-101.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25244 - - port: Right - uid: 25245 - Forward: - - port: Left - uid: 25244 - - port: Left - uid: 25245 - Off: - - port: Middle - uid: 25244 - - port: Middle - uid: 25245 - type: SignalReceiver + - links: + - 25244 + - 25245 + type: DeviceLinkSink - uid: 12591 components: - rot: 3.141592653589793 rad pos: -37.5,-102.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25244 - - port: Right - uid: 25245 - Forward: - - port: Left - uid: 25244 - - port: Left - uid: 25245 - Off: - - port: Middle - uid: 25244 - - port: Middle - uid: 25245 - type: SignalReceiver + - links: + - 25244 + - 25245 + type: DeviceLinkSink - uid: 12592 components: - rot: 3.141592653589793 rad pos: -37.5,-103.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25244 - - port: Right - uid: 25245 - Forward: - - port: Left - uid: 25244 - - port: Left - uid: 25245 - Off: - - port: Middle - uid: 25244 - - port: Middle - uid: 25245 - type: SignalReceiver + - links: + - 25244 + - 25245 + type: DeviceLinkSink - uid: 12593 components: - rot: 3.141592653589793 rad pos: -37.5,-104.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25244 - - port: Right - uid: 25245 - Forward: - - port: Left - uid: 25244 - - port: Left - uid: 25245 - Off: - - port: Middle - uid: 25244 - - port: Middle - uid: 25245 - type: SignalReceiver + - links: + - 25244 + - 25245 + type: DeviceLinkSink - uid: 12594 components: - rot: -1.5707963267948966 rad pos: -37.5,-105.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25244 - - port: Right - uid: 25245 - Forward: - - port: Left - uid: 25244 - - port: Left - uid: 25245 - Off: - - port: Middle - uid: 25244 - - port: Middle - uid: 25245 - type: SignalReceiver + - links: + - 25244 + - 25245 + type: DeviceLinkSink - uid: 12595 components: - rot: -1.5707963267948966 rad pos: -36.5,-105.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25244 - - port: Right - uid: 25245 - Forward: - - port: Left - uid: 25244 - - port: Left - uid: 25245 - Off: - - port: Middle - uid: 25244 - - port: Middle - uid: 25245 - type: SignalReceiver + - links: + - 25244 + - 25245 + type: DeviceLinkSink - uid: 12596 components: - rot: 3.141592653589793 rad pos: -38.5,-105.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25244 - - port: Right - uid: 25245 - Forward: - - port: Left - uid: 25244 - - port: Left - uid: 25245 - Off: - - port: Middle - uid: 25244 - - port: Middle - uid: 25245 - type: SignalReceiver + - links: + - 25244 + - 25245 + type: DeviceLinkSink - uid: 12597 components: - rot: 1.5707963267948966 rad pos: -38.5,-104.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25244 - - port: Right - uid: 25245 - Forward: - - port: Left - uid: 25244 - - port: Left - uid: 25245 - Off: - - port: Middle - uid: 25244 - - port: Middle - uid: 25245 - type: SignalReceiver + - links: + - 25244 + - 25245 + type: DeviceLinkSink - uid: 12598 components: - rot: 3.141592653589793 rad pos: -11.5,-11.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25246 - - port: Left - uid: 25246 - Forward: [] - Off: - - port: Middle - uid: 25246 - type: SignalReceiver + - links: + - 25246 + type: DeviceLinkSink - uid: 12599 components: - rot: 3.141592653589793 rad pos: -11.5,-12.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25246 - - port: Left - uid: 25246 - Forward: [] - Off: - - port: Middle - uid: 25246 - type: SignalReceiver + - links: + - 25246 + type: DeviceLinkSink - uid: 12600 components: - rot: 3.141592653589793 rad pos: -42.5,16.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25235 - Forward: - - port: Left - uid: 25235 - Off: - - port: Middle - uid: 25235 - type: SignalReceiver + - links: + - 25235 + type: DeviceLinkSink - proto: ConveyorBeltAssembly entities: - uid: 12601 @@ -145819,11 +144361,6 @@ entities: pos: 72.5,-28.5 parent: 2 type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 12408 - type: SignalReceiver - proto: MachineFrame entities: - uid: 20937 @@ -158094,17 +156631,9 @@ entities: pos: 17.5,-55.5 parent: 2 type: Transform - - inputs: - Reverse: - - port: Right - uid: 25233 - Forward: - - port: Left - uid: 25233 - Off: - - port: Middle - uid: 25233 - type: SignalReceiver + - links: + - 25233 + type: DeviceLinkSink - proto: ReinforcedPlasmaWindow entities: - uid: 22789 @@ -161745,15 +160274,9 @@ entities: type: Door - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23592 - Close: - - port: Off - uid: 23592 - Toggle: [] - type: SignalReceiver + - links: + - 23592 + type: DeviceLinkSink - uid: 23453 components: - rot: -1.5707963267948966 rad @@ -161769,15 +160292,9 @@ entities: type: Door - airBlocked: False type: Airtight - - inputs: - Open: - - port: On - uid: 23592 - Close: - - port: Off - uid: 23592 - Toggle: [] - type: SignalReceiver + - links: + - 23592 + type: DeviceLinkSink - proto: ShuttersNormalOpen entities: - uid: 23454 @@ -161813,15 +160330,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23589 - Close: - - port: Off - uid: 23589 - Toggle: [] - type: SignalReceiver + - links: + - 23589 + type: DeviceLinkSink - uid: 23457 components: - rot: -1.5707963267948966 rad @@ -161842,15 +160353,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23622 - Close: - - port: Off - uid: 23622 - Toggle: [] - type: SignalReceiver + - links: + - 23622 + type: DeviceLinkSink - uid: 23459 components: - pos: 37.5,-0.5 @@ -161865,29 +160370,17 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23591 - Close: - - port: Off - uid: 23591 - Toggle: [] - type: SignalReceiver + - links: + - 23591 + type: DeviceLinkSink - uid: 23460 components: - pos: -8.5,4.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23640 - Close: - - port: Off - uid: 23640 - Toggle: [] - type: SignalReceiver + - links: + - 23640 + type: DeviceLinkSink - uid: 23461 components: - rot: -1.5707963267948966 rad @@ -161903,15 +160396,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23589 - Close: - - port: Off - uid: 23589 - Toggle: [] - type: SignalReceiver + - links: + - 23589 + type: DeviceLinkSink - uid: 23462 components: - rot: -1.5707963267948966 rad @@ -161927,15 +160414,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23589 - Close: - - port: Off - uid: 23589 - Toggle: [] - type: SignalReceiver + - links: + - 23589 + type: DeviceLinkSink - uid: 23463 components: - rot: -1.5707963267948966 rad @@ -161951,15 +160432,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23639 - Close: - - port: Off - uid: 23639 - Toggle: [] - type: SignalReceiver + - links: + - 23639 + type: DeviceLinkSink - uid: 23464 components: - pos: -0.5,-2.5 @@ -161974,15 +160449,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23639 - Close: - - port: Off - uid: 23639 - Toggle: [] - type: SignalReceiver + - links: + - 23639 + type: DeviceLinkSink - uid: 23465 components: - pos: 18.5,15.5 @@ -161997,15 +160466,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23589 - Close: - - port: Off - uid: 23589 - Toggle: [] - type: SignalReceiver + - links: + - 23589 + type: DeviceLinkSink - uid: 23466 components: - pos: 17.5,15.5 @@ -162020,29 +160483,17 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23589 - Close: - - port: Off - uid: 23589 - Toggle: [] - type: SignalReceiver + - links: + - 23589 + type: DeviceLinkSink - uid: 23467 components: - pos: -6.5,4.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23640 - Close: - - port: Off - uid: 23640 - Toggle: [] - type: SignalReceiver + - links: + - 23640 + type: DeviceLinkSink - uid: 23468 components: - rot: 1.5707963267948966 rad @@ -162058,15 +160509,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23588 - Close: - - port: Off - uid: 23588 - Toggle: [] - type: SignalReceiver + - links: + - 23588 + type: DeviceLinkSink - uid: 23469 components: - rot: -1.5707963267948966 rad @@ -162082,15 +160527,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23632 - Close: - - port: Off - uid: 23632 - Toggle: [] - type: SignalReceiver + - links: + - 23632 + type: DeviceLinkSink - uid: 23470 components: - rot: -1.5707963267948966 rad @@ -162106,15 +160545,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23589 - Close: - - port: Off - uid: 23589 - Toggle: [] - type: SignalReceiver + - links: + - 23589 + type: DeviceLinkSink - uid: 23471 components: - pos: 61.5,-56.5 @@ -162129,15 +160562,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23633 - Close: - - port: Off - uid: 23633 - Toggle: [] - type: SignalReceiver + - links: + - 23633 + type: DeviceLinkSink - uid: 23472 components: - rot: -1.5707963267948966 rad @@ -162153,15 +160580,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23589 - Close: - - port: Off - uid: 23589 - Toggle: [] - type: SignalReceiver + - links: + - 23589 + type: DeviceLinkSink - uid: 23473 components: - pos: 45.5,9.5 @@ -162176,15 +160597,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23588 - Close: - - port: Off - uid: 23588 - Toggle: [] - type: SignalReceiver + - links: + - 23588 + type: DeviceLinkSink - uid: 23474 components: - pos: 43.5,7.5 @@ -162199,15 +160614,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23588 - Close: - - port: Off - uid: 23588 - Toggle: [] - type: SignalReceiver + - links: + - 23588 + type: DeviceLinkSink - uid: 23475 components: - pos: 62.5,-56.5 @@ -162222,15 +160631,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23633 - Close: - - port: Off - uid: 23633 - Toggle: [] - type: SignalReceiver + - links: + - 23633 + type: DeviceLinkSink - uid: 23476 components: - pos: 63.5,-56.5 @@ -162245,15 +160648,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23633 - Close: - - port: Off - uid: 23633 - Toggle: [] - type: SignalReceiver + - links: + - 23633 + type: DeviceLinkSink - uid: 23477 components: - pos: 22.5,-40.5 @@ -162268,15 +160665,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23621 - Close: - - port: Off - uid: 23621 - Toggle: [] - type: SignalReceiver + - links: + - 23621 + type: DeviceLinkSink - uid: 23478 components: - pos: -30.5,27.5 @@ -162291,15 +160682,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23622 - Close: - - port: Off - uid: 23622 - Toggle: [] - type: SignalReceiver + - links: + - 23622 + type: DeviceLinkSink - uid: 23479 components: - pos: 29.5,9.5 @@ -162314,15 +160699,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23632 - Close: - - port: Off - uid: 23632 - Toggle: [] - type: SignalReceiver + - links: + - 23632 + type: DeviceLinkSink - uid: 23480 components: - pos: 34.5,9.5 @@ -162337,15 +160716,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23632 - Close: - - port: Off - uid: 23632 - Toggle: [] - type: SignalReceiver + - links: + - 23632 + type: DeviceLinkSink - uid: 23481 components: - pos: -31.5,27.5 @@ -162360,15 +160733,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23622 - Close: - - port: Off - uid: 23622 - Toggle: [] - type: SignalReceiver + - links: + - 23622 + type: DeviceLinkSink - uid: 23482 components: - rot: -1.5707963267948966 rad @@ -162384,15 +160751,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23632 - Close: - - port: Off - uid: 23632 - Toggle: [] - type: SignalReceiver + - links: + - 23632 + type: DeviceLinkSink - uid: 23483 components: - pos: -33.5,27.5 @@ -162407,15 +160768,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23622 - Close: - - port: Off - uid: 23622 - Toggle: [] - type: SignalReceiver + - links: + - 23622 + type: DeviceLinkSink - uid: 23484 components: - pos: -49.5,13.5 @@ -162430,15 +160785,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23607 - Close: - - port: Off - uid: 23607 - Toggle: [] - type: SignalReceiver + - links: + - 23607 + type: DeviceLinkSink - uid: 23485 components: - pos: -48.5,13.5 @@ -162453,15 +160802,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23607 - Close: - - port: Off - uid: 23607 - Toggle: [] - type: SignalReceiver + - links: + - 23607 + type: DeviceLinkSink - uid: 23486 components: - pos: -31.5,32.5 @@ -162476,15 +160819,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23622 - Close: - - port: Off - uid: 23622 - Toggle: [] - type: SignalReceiver + - links: + - 23622 + type: DeviceLinkSink - uid: 23487 components: - pos: 32.5,9.5 @@ -162499,15 +160836,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23632 - Close: - - port: Off - uid: 23632 - Toggle: [] - type: SignalReceiver + - links: + - 23632 + type: DeviceLinkSink - uid: 23488 components: - pos: 39.5,-0.5 @@ -162522,15 +160853,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23591 - Close: - - port: Off - uid: 23591 - Toggle: [] - type: SignalReceiver + - links: + - 23591 + type: DeviceLinkSink - uid: 23489 components: - pos: -33.5,32.5 @@ -162545,15 +160870,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23622 - Close: - - port: Off - uid: 23622 - Toggle: [] - type: SignalReceiver + - links: + - 23622 + type: DeviceLinkSink - uid: 23490 components: - pos: -46.5,13.5 @@ -162568,15 +160887,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23607 - Close: - - port: Off - uid: 23607 - Toggle: [] - type: SignalReceiver + - links: + - 23607 + type: DeviceLinkSink - uid: 23491 components: - pos: -47.5,13.5 @@ -162591,15 +160904,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23607 - Close: - - port: Off - uid: 23607 - Toggle: [] - type: SignalReceiver + - links: + - 23607 + type: DeviceLinkSink - uid: 23492 components: - pos: 43.5,5.5 @@ -162614,15 +160921,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23588 - Close: - - port: Off - uid: 23588 - Toggle: [] - type: SignalReceiver + - links: + - 23588 + type: DeviceLinkSink - uid: 23493 components: - pos: 59.5,-54.5 @@ -162637,15 +160938,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23633 - Close: - - port: Off - uid: 23633 - Toggle: [] - type: SignalReceiver + - links: + - 23633 + type: DeviceLinkSink - uid: 23494 components: - pos: 65.5,-54.5 @@ -162660,15 +160955,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23633 - Close: - - port: Off - uid: 23633 - Toggle: [] - type: SignalReceiver + - links: + - 23633 + type: DeviceLinkSink - uid: 23495 components: - rot: 1.5707963267948966 rad @@ -162684,15 +160973,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23633 - Close: - - port: Off - uid: 23633 - Toggle: [] - type: SignalReceiver + - links: + - 23633 + type: DeviceLinkSink - uid: 23496 components: - rot: 1.5707963267948966 rad @@ -162708,15 +160991,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23633 - Close: - - port: Off - uid: 23633 - Toggle: [] - type: SignalReceiver + - links: + - 23633 + type: DeviceLinkSink - uid: 23497 components: - rot: -1.5707963267948966 rad @@ -162732,15 +161009,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23633 - Close: - - port: Off - uid: 23633 - Toggle: [] - type: SignalReceiver + - links: + - 23633 + type: DeviceLinkSink - uid: 23498 components: - rot: -1.5707963267948966 rad @@ -162756,15 +161027,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23633 - Close: - - port: Off - uid: 23633 - Toggle: [] - type: SignalReceiver + - links: + - 23633 + type: DeviceLinkSink - uid: 23499 components: - pos: 61.5,-50.5 @@ -162779,15 +161044,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23633 - Close: - - port: Off - uid: 23633 - Toggle: [] - type: SignalReceiver + - links: + - 23633 + type: DeviceLinkSink - uid: 23500 components: - pos: 63.5,-50.5 @@ -162802,15 +161061,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23633 - Close: - - port: Off - uid: 23633 - Toggle: [] - type: SignalReceiver + - links: + - 23633 + type: DeviceLinkSink - uid: 23501 components: - pos: -20.5,-58.5 @@ -162825,15 +161078,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23634 - Close: - - port: Off - uid: 23634 - Toggle: [] - type: SignalReceiver + - links: + - 23634 + type: DeviceLinkSink - uid: 23502 components: - pos: -18.5,-58.5 @@ -162848,15 +161095,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23634 - Close: - - port: Off - uid: 23634 - Toggle: [] - type: SignalReceiver + - links: + - 23634 + type: DeviceLinkSink - uid: 23503 components: - pos: -37.5,-14.5 @@ -162871,15 +161112,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23635 - Close: - - port: Off - uid: 23635 - Toggle: [] - type: SignalReceiver + - links: + - 23635 + type: DeviceLinkSink - uid: 23504 components: - rot: -1.5707963267948966 rad @@ -162895,15 +161130,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23635 - Close: - - port: Off - uid: 23635 - Toggle: [] - type: SignalReceiver + - links: + - 23635 + type: DeviceLinkSink - uid: 23505 components: - rot: -1.5707963267948966 rad @@ -162919,15 +161148,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23635 - Close: - - port: Off - uid: 23635 - Toggle: [] - type: SignalReceiver + - links: + - 23635 + type: DeviceLinkSink - uid: 23506 components: - pos: 0.5,-2.5 @@ -162942,15 +161165,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23639 - Close: - - port: Off - uid: 23639 - Toggle: [] - type: SignalReceiver + - links: + - 23639 + type: DeviceLinkSink - uid: 23507 components: - pos: 1.5,-2.5 @@ -162965,15 +161182,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23639 - Close: - - port: Off - uid: 23639 - Toggle: [] - type: SignalReceiver + - links: + - 23639 + type: DeviceLinkSink - uid: 23508 components: - rot: -1.5707963267948966 rad @@ -162989,15 +161200,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23637 - Close: - - port: Off - uid: 23637 - Toggle: [] - type: SignalReceiver + - links: + - 23637 + type: DeviceLinkSink - uid: 23509 components: - rot: -1.5707963267948966 rad @@ -163013,15 +161218,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23637 - Close: - - port: Off - uid: 23637 - Toggle: [] - type: SignalReceiver + - links: + - 23637 + type: DeviceLinkSink - uid: 23510 components: - rot: -1.5707963267948966 rad @@ -163037,15 +161236,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23637 - Close: - - port: Off - uid: 23637 - Toggle: [] - type: SignalReceiver + - links: + - 23637 + type: DeviceLinkSink - uid: 23511 components: - pos: 2.5,4.5 @@ -163060,29 +161253,17 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23637 - Close: - - port: Off - uid: 23637 - Toggle: [] - type: SignalReceiver + - links: + - 23637 + type: DeviceLinkSink - uid: 23512 components: - pos: 1.5,4.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23637 - Close: - - port: Off - uid: 23637 - Toggle: [] - type: SignalReceiver + - links: + - 23637 + type: DeviceLinkSink - uid: 23513 components: - pos: 0.5,4.5 @@ -163097,15 +161278,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23637 - Close: - - port: Off - uid: 23637 - Toggle: [] - type: SignalReceiver + - links: + - 23637 + type: DeviceLinkSink - uid: 23514 components: - pos: 5.5,11.5 @@ -163120,15 +161295,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23637 - Close: - - port: Off - uid: 23637 - Toggle: [] - type: SignalReceiver + - links: + - 23637 + type: DeviceLinkSink - uid: 23515 components: - pos: 4.5,11.5 @@ -163143,15 +161312,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23637 - Close: - - port: Off - uid: 23637 - Toggle: [] - type: SignalReceiver + - links: + - 23637 + type: DeviceLinkSink - uid: 23516 components: - pos: 23.5,-40.5 @@ -163166,15 +161329,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23621 - Close: - - port: Off - uid: 23621 - Toggle: [] - type: SignalReceiver + - links: + - 23621 + type: DeviceLinkSink - uid: 23517 components: - pos: 24.5,-40.5 @@ -163189,15 +161346,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23621 - Close: - - port: Off - uid: 23621 - Toggle: [] - type: SignalReceiver + - links: + - 23621 + type: DeviceLinkSink - uid: 23518 components: - pos: 25.5,-40.5 @@ -163212,15 +161363,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23621 - Close: - - port: Off - uid: 23621 - Toggle: [] - type: SignalReceiver + - links: + - 23621 + type: DeviceLinkSink - uid: 23519 components: - pos: 26.5,-40.5 @@ -163235,15 +161380,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23621 - Close: - - port: Off - uid: 23621 - Toggle: [] - type: SignalReceiver + - links: + - 23621 + type: DeviceLinkSink - uid: 23520 components: - pos: 27.5,-40.5 @@ -163258,15 +161397,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23621 - Close: - - port: Off - uid: 23621 - Toggle: [] - type: SignalReceiver + - links: + - 23621 + type: DeviceLinkSink - uid: 23521 components: - pos: 28.5,-40.5 @@ -163281,15 +161414,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23621 - Close: - - port: Off - uid: 23621 - Toggle: [] - type: SignalReceiver + - links: + - 23621 + type: DeviceLinkSink - uid: 23522 components: - rot: -1.5707963267948966 rad @@ -163305,15 +161432,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23639 - Close: - - port: Off - uid: 23639 - Toggle: [] - type: SignalReceiver + - links: + - 23639 + type: DeviceLinkSink - uid: 23523 components: - rot: -1.5707963267948966 rad @@ -163329,15 +161450,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23587 - Close: - - port: Off - uid: 23587 - Toggle: [] - type: SignalReceiver + - links: + - 23587 + type: DeviceLinkSink - uid: 23524 components: - pos: 34.5,18.5 @@ -163352,15 +161467,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23638 - Close: - - port: Off - uid: 23638 - Toggle: [] - type: SignalReceiver + - links: + - 23638 + type: DeviceLinkSink - uid: 23525 components: - pos: 35.5,18.5 @@ -163375,15 +161484,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23638 - Close: - - port: Off - uid: 23638 - Toggle: [] - type: SignalReceiver + - links: + - 23638 + type: DeviceLinkSink - uid: 23526 components: - pos: 36.5,18.5 @@ -163398,29 +161501,17 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23638 - Close: - - port: Off - uid: 23638 - Toggle: [] - type: SignalReceiver + - links: + - 23638 + type: DeviceLinkSink - uid: 23527 components: - pos: -7.5,4.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23640 - Close: - - port: Off - uid: 23640 - Toggle: [] - type: SignalReceiver + - links: + - 23640 + type: DeviceLinkSink - uid: 23528 components: - rot: 1.5707963267948966 rad @@ -163436,15 +161527,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23588 - Close: - - port: Off - uid: 23588 - Toggle: [] - type: SignalReceiver + - links: + - 23588 + type: DeviceLinkSink - uid: 23529 components: - pos: 46.5,9.5 @@ -163459,15 +161544,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23588 - Close: - - port: Off - uid: 23588 - Toggle: [] - type: SignalReceiver + - links: + - 23588 + type: DeviceLinkSink - uid: 23530 components: - rot: 1.5707963267948966 rad @@ -163483,15 +161562,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23591 - Close: - - port: Off - uid: 23591 - Toggle: [] - type: SignalReceiver + - links: + - 23591 + type: DeviceLinkSink - uid: 23531 components: - rot: 1.5707963267948966 rad @@ -163507,15 +161580,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23591 - Close: - - port: Off - uid: 23591 - Toggle: [] - type: SignalReceiver + - links: + - 23591 + type: DeviceLinkSink - uid: 23532 components: - rot: 1.5707963267948966 rad @@ -163531,15 +161598,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23591 - Close: - - port: Off - uid: 23591 - Toggle: [] - type: SignalReceiver + - links: + - 23591 + type: DeviceLinkSink - uid: 23533 components: - rot: 1.5707963267948966 rad @@ -163555,15 +161616,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23591 - Close: - - port: Off - uid: 23591 - Toggle: [] - type: SignalReceiver + - links: + - 23591 + type: DeviceLinkSink - uid: 23534 components: - pos: 41.5,-0.5 @@ -163578,15 +161633,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23641 - Close: - - port: Off - uid: 23641 - Toggle: [] - type: SignalReceiver + - links: + - 23641 + type: DeviceLinkSink - uid: 23535 components: - pos: 42.5,-0.5 @@ -163601,15 +161650,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23641 - Close: - - port: Off - uid: 23641 - Toggle: [] - type: SignalReceiver + - links: + - 23641 + type: DeviceLinkSink - uid: 23536 components: - pos: 43.5,-0.5 @@ -163624,15 +161667,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23641 - Close: - - port: Off - uid: 23641 - Toggle: [] - type: SignalReceiver + - links: + - 23641 + type: DeviceLinkSink - uid: 23537 components: - pos: 46.5,3.5 @@ -163647,15 +161684,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23588 - Close: - - port: Off - uid: 23588 - Toggle: [] - type: SignalReceiver + - links: + - 23588 + type: DeviceLinkSink - uid: 23538 components: - rot: -1.5707963267948966 rad @@ -163671,15 +161702,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23587 - Close: - - port: Off - uid: 23587 - Toggle: [] - type: SignalReceiver + - links: + - 23587 + type: DeviceLinkSink - uid: 23539 components: - rot: -1.5707963267948966 rad @@ -163695,15 +161720,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23587 - Close: - - port: Off - uid: 23587 - Toggle: [] - type: SignalReceiver + - links: + - 23587 + type: DeviceLinkSink - uid: 23540 components: - pos: 3.5,-44.5 @@ -163718,15 +161737,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23587 - Close: - - port: Off - uid: 23587 - Toggle: [] - type: SignalReceiver + - links: + - 23587 + type: DeviceLinkSink - uid: 23541 components: - pos: 4.5,-44.5 @@ -163741,15 +161754,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23587 - Close: - - port: Off - uid: 23587 - Toggle: [] - type: SignalReceiver + - links: + - 23587 + type: DeviceLinkSink - uid: 23542 components: - pos: 5.5,-44.5 @@ -163764,15 +161771,9 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23587 - Close: - - port: Off - uid: 23587 - Toggle: [] - type: SignalReceiver + - links: + - 23587 + type: DeviceLinkSink - uid: 23543 components: - pos: 3.5,-51.5 @@ -163787,155 +161788,89 @@ entities: type: Occluder - airBlocked: True type: Airtight - - inputs: - Open: - - port: On - uid: 23587 - Close: - - port: Off - uid: 23587 - Toggle: [] - type: SignalReceiver + - links: + - 23587 + type: DeviceLinkSink - uid: 23544 components: - pos: 23.5,5.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23642 - Close: - - port: Off - uid: 23642 - Toggle: [] - type: SignalReceiver + - links: + - 23642 + type: DeviceLinkSink - uid: 23545 components: - pos: 22.5,5.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23642 - Close: - - port: Off - uid: 23642 - Toggle: [] - type: SignalReceiver + - links: + - 23642 + type: DeviceLinkSink - uid: 23546 components: - pos: 21.5,5.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23642 - Close: - - port: Off - uid: 23642 - Toggle: [] - type: SignalReceiver + - links: + - 23642 + type: DeviceLinkSink - uid: 23547 components: - pos: 25.5,5.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23642 - Close: - - port: Off - uid: 23642 - Toggle: [] - type: SignalReceiver + - links: + - 23642 + type: DeviceLinkSink - uid: 23548 components: - pos: 26.5,5.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23642 - Close: - - port: Off - uid: 23642 - Toggle: [] - type: SignalReceiver + - links: + - 23642 + type: DeviceLinkSink - uid: 23549 components: - pos: 27.5,5.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23642 - Close: - - port: Off - uid: 23642 - Toggle: [] - type: SignalReceiver + - links: + - 23642 + type: DeviceLinkSink - uid: 23550 components: - pos: 27.5,-3.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23642 - Close: - - port: Off - uid: 23642 - Toggle: [] - type: SignalReceiver + - links: + - 23642 + type: DeviceLinkSink - uid: 23551 components: - pos: 26.5,-3.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23642 - Close: - - port: Off - uid: 23642 - Toggle: [] - type: SignalReceiver + - links: + - 23642 + type: DeviceLinkSink - uid: 23552 components: - pos: 25.5,-3.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23642 - Close: - - port: Off - uid: 23642 - Toggle: [] - type: SignalReceiver + - links: + - 23642 + type: DeviceLinkSink - uid: 23553 components: - pos: 23.5,-3.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23642 - Close: - - port: Off - uid: 23642 - Toggle: [] - type: SignalReceiver + - links: + - 23642 + type: DeviceLinkSink - uid: 23554 components: - pos: 22.5,-3.5 @@ -163946,105 +161881,63 @@ entities: - pos: 21.5,-3.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23642 - Close: - - port: Off - uid: 23642 - Toggle: [] - type: SignalReceiver + - links: + - 23642 + type: DeviceLinkSink - uid: 23556 components: - rot: 1.5707963267948966 rad pos: 19.5,3.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23642 - Close: - - port: Off - uid: 23642 - Toggle: [] - type: SignalReceiver + - links: + - 23642 + type: DeviceLinkSink - uid: 23557 components: - rot: 1.5707963267948966 rad pos: 19.5,2.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23642 - Close: - - port: Off - uid: 23642 - Toggle: [] - type: SignalReceiver + - links: + - 23642 + type: DeviceLinkSink - uid: 23558 components: - rot: 1.5707963267948966 rad pos: 19.5,1.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23642 - Close: - - port: Off - uid: 23642 - Toggle: [] - type: SignalReceiver + - links: + - 23642 + type: DeviceLinkSink - uid: 23559 components: - rot: 1.5707963267948966 rad pos: 19.5,0.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23642 - Close: - - port: Off - uid: 23642 - Toggle: [] - type: SignalReceiver + - links: + - 23642 + type: DeviceLinkSink - uid: 23560 components: - rot: 1.5707963267948966 rad pos: 19.5,-0.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23642 - Close: - - port: Off - uid: 23642 - Toggle: [] - type: SignalReceiver + - links: + - 23642 + type: DeviceLinkSink - uid: 23561 components: - rot: 1.5707963267948966 rad pos: 19.5,-1.5 parent: 2 type: Transform - - inputs: - Open: - - port: On - uid: 23642 - Close: - - port: Off - uid: 23642 - Toggle: [] - type: SignalReceiver + - links: + - 23642 + type: DeviceLinkSink - uid: 23562 components: - pos: 22.5,-20.5 @@ -164153,9 +162046,6 @@ entities: - linkedPorts: 108: - Pressed: DoorBolt - registeredSinks: - Pressed: - - 108 type: DeviceLinkSource - uid: 23580 components: @@ -164165,9 +162055,6 @@ entities: - linkedPorts: 107: - Pressed: DoorBolt - registeredSinks: - Pressed: - - 107 type: DeviceLinkSource - uid: 23581 components: @@ -164178,9 +162065,6 @@ entities: - linkedPorts: 106: - Pressed: DoorBolt - registeredSinks: - Pressed: - - 106 type: DeviceLinkSource - uid: 23582 components: @@ -164191,9 +162075,6 @@ entities: - linkedPorts: 109: - Pressed: DoorBolt - registeredSinks: - Pressed: - - 109 type: DeviceLinkSource - uid: 23583 components: @@ -164204,9 +162085,6 @@ entities: - linkedPorts: 110: - Pressed: DoorBolt - registeredSinks: - Pressed: - - 110 type: DeviceLinkSource - uid: 23584 components: @@ -164217,9 +162095,6 @@ entities: - linkedPorts: 111: - Pressed: DoorBolt - registeredSinks: - Pressed: - - 111 type: DeviceLinkSource - uid: 23585 components: @@ -164229,9 +162104,6 @@ entities: - linkedPorts: 770: - Pressed: DoorBolt - registeredSinks: - Pressed: - - 770 type: DeviceLinkSource - uid: 23586 components: @@ -164241,9 +162113,6 @@ entities: - linkedPorts: 772: - Pressed: DoorBolt - registeredSinks: - Pressed: - - 772 type: DeviceLinkSource - proto: SignalSwitch entities: @@ -164255,38 +162124,29 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 23543 - - port: Open - uid: 23539 - - port: Open - uid: 23538 - - port: Open - uid: 23523 - - port: Open - uid: 23540 - - port: Open - uid: 23541 - - port: Open - uid: 23542 - Off: - - port: Close - uid: 23543 - - port: Close - uid: 23539 - - port: Close - uid: 23538 - - port: Close - uid: 23523 - - port: Close - uid: 23540 - - port: Close - uid: 23541 - - port: Close - uid: 23542 - type: SignalTransmitter + - linkedPorts: + 23543: + - On: Open + - Off: Close + 23539: + - On: Open + - Off: Close + 23538: + - On: Open + - Off: Close + 23523: + - On: Open + - Off: Close + 23540: + - On: Open + - Off: Close + 23541: + - On: Open + - Off: Close + 23542: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23588 components: @@ -164296,38 +162156,29 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 23468 - - port: Open - uid: 23528 - - port: Open - uid: 23529 - - port: Open - uid: 23473 - - port: Open - uid: 23474 - - port: Open - uid: 23492 - - port: Open - uid: 23537 - Off: - - port: Close - uid: 23468 - - port: Close - uid: 23528 - - port: Close - uid: 23529 - - port: Close - uid: 23473 - - port: Close - uid: 23474 - - port: Close - uid: 23492 - - port: Close - uid: 23537 - type: SignalTransmitter + - linkedPorts: + 23468: + - On: Open + - Off: Close + 23528: + - On: Open + - Off: Close + 23529: + - On: Open + - Off: Close + 23473: + - On: Open + - Off: Close + 23474: + - On: Open + - Off: Close + 23492: + - On: Open + - Off: Close + 23537: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23589 components: @@ -164336,38 +162187,29 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 23456 - - port: Open - uid: 23461 - - port: Open - uid: 23462 - - port: Open - uid: 23470 - - port: Open - uid: 23466 - - port: Open - uid: 23465 - - port: Open - uid: 23472 - Off: - - port: Close - uid: 23456 - - port: Close - uid: 23461 - - port: Close - uid: 23462 - - port: Close - uid: 23470 - - port: Close - uid: 23466 - - port: Close - uid: 23465 - - port: Close - uid: 23472 - type: SignalTransmitter + - linkedPorts: + 23456: + - On: Open + - Off: Close + 23461: + - On: Open + - Off: Close + 23462: + - On: Open + - Off: Close + 23470: + - On: Open + - Off: Close + 23466: + - On: Open + - Off: Close + 23465: + - On: Open + - Off: Close + 23472: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23590 components: @@ -164375,14 +162217,11 @@ entities: pos: -13.5,-16.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2139 - Off: - - port: Close - uid: 2139 - type: SignalTransmitter + - linkedPorts: + 2139: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23591 components: @@ -164392,34 +162231,26 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 23488 - - port: Open - uid: 23459 - - port: Open - uid: 23530 - - port: Open - uid: 23531 - - port: Open - uid: 23532 - - port: Open - uid: 23533 - Off: - - port: Close - uid: 23488 - - port: Close - uid: 23459 - - port: Close - uid: 23530 - - port: Close - uid: 23531 - - port: Close - uid: 23532 - - port: Close - uid: 23533 - type: SignalTransmitter + - linkedPorts: + 23488: + - On: Open + - Off: Close + 23459: + - On: Open + - Off: Close + 23530: + - On: Open + - Off: Close + 23531: + - On: Open + - Off: Close + 23532: + - On: Open + - Off: Close + 23533: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23592 components: @@ -164427,18 +162258,14 @@ entities: pos: 66.5,-44.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 23452 - - port: Open - uid: 23453 - Off: - - port: Close - uid: 23452 - - port: Close - uid: 23453 - type: SignalTransmitter + - linkedPorts: + 23452: + - On: Open + - Off: Close + 23453: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23593 components: @@ -164446,66 +162273,51 @@ entities: pos: 70.5,-39.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2119 - Off: - - port: Close - uid: 2119 - type: SignalTransmitter + - linkedPorts: + 2119: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23594 components: - pos: 47.5,-55.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2077 - - port: Open - uid: 2076 - - port: Open - uid: 2075 - - port: Open - uid: 2074 - Off: - - port: Close - uid: 2077 - - port: Close - uid: 2076 - - port: Close - uid: 2075 - - port: Close - uid: 2074 - type: SignalTransmitter + - linkedPorts: + 2077: + - On: Open + - Off: Close + 2076: + - On: Open + - Off: Close + 2075: + - On: Open + - Off: Close + 2074: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23595 components: - rot: -1.5707963267948966 rad pos: 52.5,-56.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2078 - Off: - - port: Close - uid: 2078 - type: SignalTransmitter + - linkedPorts: + 2078: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23596 components: - pos: -51.5,32.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2092 - Off: - - port: Close - uid: 2092 - type: SignalTransmitter + - linkedPorts: + 2092: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23597 components: @@ -164513,60 +162325,46 @@ entities: pos: 60.5,-55.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2080 - - port: Open - uid: 2081 - Off: - - port: Close - uid: 2080 - - port: Close - uid: 2081 - type: SignalTransmitter + - linkedPorts: + 2080: + - On: Open + - Off: Close + 2081: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23598 components: - pos: 16.5,-51.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2073 - Off: - - port: Close - uid: 2073 - type: SignalTransmitter + - linkedPorts: + 2073: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23599 components: - pos: -62.5,-26.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2149 - - port: Open - uid: 2148 - - port: Open - uid: 2147 - - port: Open - uid: 2146 - - port: Open - uid: 2145 - Off: - - port: Close - uid: 2149 - - port: Close - uid: 2148 - - port: Close - uid: 2147 - - port: Close - uid: 2146 - - port: Close - uid: 2145 - type: SignalTransmitter + - linkedPorts: + 2149: + - On: Open + - Off: Close + 2148: + - On: Open + - Off: Close + 2147: + - On: Open + - Off: Close + 2146: + - On: Open + - Off: Close + 2145: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23600 components: @@ -164575,103 +162373,79 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 2140 - - port: Open - uid: 2141 - - port: Open - uid: 2142 - - port: Open - uid: 2143 - - port: Open - uid: 2144 - Off: - - port: Close - uid: 2140 - - port: Close - uid: 2141 - - port: Close - uid: 2142 - - port: Close - uid: 2143 - - port: Close - uid: 2144 - type: SignalTransmitter + - linkedPorts: + 2140: + - On: Open + - Off: Close + 2141: + - On: Open + - Off: Close + 2142: + - On: Open + - Off: Close + 2143: + - On: Open + - Off: Close + 2144: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23601 components: - pos: -43.5,-39.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2082 - Off: - - port: Close - uid: 2082 - type: SignalTransmitter + - linkedPorts: + 2082: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23602 components: - pos: -36.5,-40.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2086 - - port: Open - uid: 2085 - - port: Open - uid: 2084 - - port: Open - uid: 2083 - Off: - - port: Close - uid: 2086 - - port: Close - uid: 2085 - - port: Close - uid: 2084 - - port: Close - uid: 2083 - type: SignalTransmitter + - linkedPorts: + 2086: + - On: Open + - Off: Close + 2085: + - On: Open + - Off: Close + 2084: + - On: Open + - Off: Close + 2083: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23603 components: - pos: -51.5,21.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2093 - - port: Open - uid: 2094 - Off: - - port: Close - uid: 2093 - - port: Close - uid: 2094 - type: SignalTransmitter + - linkedPorts: + 2093: + - On: Open + - Off: Close + 2094: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23604 components: - pos: -49.5,24.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2088 - - port: Open - uid: 2087 - Off: - - port: Close - uid: 2088 - - port: Close - uid: 2087 - type: SignalTransmitter + - linkedPorts: + 2088: + - On: Open + - Off: Close + 2087: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23605 components: - pos: 50.5,48.5 @@ -164679,18 +162453,14 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 2099 - - port: Close - uid: 2101 - Off: - - port: Close - uid: 2099 - - port: Open - uid: 2101 - type: SignalTransmitter + - linkedPorts: + 2099: + - On: Open + - Off: Close + 2101: + - On: Close + - Off: Open + type: DeviceLinkSource - uid: 23606 components: - pos: 52.5,48.5 @@ -164698,18 +162468,14 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 2103 - - port: Close - uid: 2095 - Off: - - port: Close - uid: 2103 - - port: Open - uid: 2095 - type: SignalTransmitter + - linkedPorts: + 2103: + - On: Open + - Off: Close + 2095: + - On: Close + - Off: Open + type: DeviceLinkSource - uid: 23607 components: - pos: -46.5,17.5 @@ -164717,26 +162483,20 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 23484 - - port: Open - uid: 23485 - - port: Open - uid: 23490 - - port: Open - uid: 23491 - Off: - - port: Close - uid: 23484 - - port: Close - uid: 23485 - - port: Close - uid: 23490 - - port: Close - uid: 23491 - type: SignalTransmitter + - linkedPorts: + 23484: + - On: Open + - Off: Close + 23485: + - On: Open + - Off: Close + 23490: + - On: Open + - Off: Close + 23491: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23608 components: @@ -164745,52 +162505,40 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 2097 - - port: Close - uid: 2114 - Off: - - port: Close - uid: 2097 - - port: Open - uid: 2114 - type: SignalTransmitter + - linkedPorts: + 2097: + - On: Open + - Off: Close + 2114: + - On: Close + - Off: Open + type: DeviceLinkSource - uid: 23609 components: - pos: 54.5,46.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2104 - - port: Close - uid: 2108 - Off: - - port: Close - uid: 2104 - - port: Open - uid: 2108 - type: SignalTransmitter + - linkedPorts: + 2104: + - On: Open + - Off: Close + 2108: + - On: Close + - Off: Open + type: DeviceLinkSource - uid: 23610 components: - pos: 52.5,46.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2096 - - port: Close - uid: 2090 - Off: - - port: Close - uid: 2096 - - port: Open - uid: 2090 - type: SignalTransmitter + - linkedPorts: + 2096: + - On: Open + - Off: Close + 2090: + - On: Close + - Off: Open + type: DeviceLinkSource - uid: 23611 components: - pos: 54.5,48.5 @@ -164798,18 +162546,14 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 2108 - - port: Close - uid: 2113 - Off: - - port: Close - uid: 2108 - - port: Open - uid: 2113 - type: SignalTransmitter + - linkedPorts: + 2108: + - On: Open + - Off: Close + 2113: + - On: Close + - Off: Open + type: DeviceLinkSource - uid: 23612 components: - pos: 56.5,44.5 @@ -164817,18 +162561,14 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 2090 - - port: Close - uid: 2089 - Off: - - port: Close - uid: 2090 - - port: Open - uid: 2089 - type: SignalTransmitter + - linkedPorts: + 2090: + - On: Open + - Off: Close + 2089: + - On: Close + - Off: Open + type: DeviceLinkSource - uid: 23613 components: - pos: 50.5,44.5 @@ -164836,18 +162576,14 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 2110 - - port: Close - uid: 2096 - Off: - - port: Close - uid: 2110 - - port: Open - uid: 2096 - type: SignalTransmitter + - linkedPorts: + 2110: + - On: Open + - Off: Close + 2096: + - On: Close + - Off: Open + type: DeviceLinkSource - uid: 23614 components: - pos: 52.5,44.5 @@ -164855,35 +162591,27 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Close - uid: 2089 - - port: Open - uid: 2098 - Off: - - port: Open - uid: 2089 - - port: Close - uid: 2098 - type: SignalTransmitter + - linkedPorts: + 2089: + - On: Close + - Off: Open + 2098: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23615 components: - pos: 58.5,46.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2095 - - port: Close - uid: 2111 - Off: - - port: Close - uid: 2095 - - port: Open - uid: 2111 - type: SignalTransmitter + - linkedPorts: + 2095: + - On: Open + - Off: Close + 2111: + - On: Close + - Off: Open + type: DeviceLinkSource - uid: 23616 components: - pos: 54.5,44.5 @@ -164891,35 +162619,27 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 2106 - - port: Close - uid: 2105 - Off: - - port: Close - uid: 2106 - - port: Open - uid: 2105 - type: SignalTransmitter + - linkedPorts: + 2106: + - On: Open + - Off: Close + 2105: + - On: Close + - Off: Open + type: DeviceLinkSource - uid: 23617 components: - pos: 50.5,46.5 parent: 2 type: Transform - - outputs: - On: - - port: Close - uid: 2107 - - port: Open - uid: 2113 - Off: - - port: Open - uid: 2107 - - port: Close - uid: 2113 - type: SignalTransmitter + - linkedPorts: + 2107: + - On: Close + - Off: Open + 2113: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23618 components: - pos: 56.5,46.5 @@ -164927,18 +162647,14 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 2114 - - port: Close - uid: 2104 - Off: - - port: Close - uid: 2114 - - port: Open - uid: 2104 - type: SignalTransmitter + - linkedPorts: + 2114: + - On: Open + - Off: Close + 2104: + - On: Close + - Off: Open + type: DeviceLinkSource - uid: 23619 components: - pos: 58.5,44.5 @@ -164946,47 +162662,36 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 2106 - - port: Open - uid: 2112 - - port: Close - uid: 2089 - Off: - - port: Close - uid: 2106 - - port: Close - uid: 2112 - - port: Open - uid: 2089 - type: SignalTransmitter + - linkedPorts: + 2106: + - On: Open + - Off: Close + 2112: + - On: Open + - Off: Close + 2089: + - On: Close + - Off: Open + type: DeviceLinkSource - uid: 23620 components: - pos: 56.5,48.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2102 - - port: Open - uid: 2101 - - port: Close - uid: 2108 - - port: Close - uid: 2112 - Off: - - port: Close - uid: 2102 - - port: Close - uid: 2101 - - port: Open - uid: 2108 - - port: Open - uid: 2112 - type: SignalTransmitter + - linkedPorts: + 2102: + - On: Open + - Off: Close + 2101: + - On: Open + - Off: Close + 2108: + - On: Close + - Off: Open + 2112: + - On: Close + - Off: Open + type: DeviceLinkSource - uid: 23621 components: - rot: -1.5707963267948966 rad @@ -164995,38 +162700,29 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 23477 - - port: Open - uid: 23516 - - port: Open - uid: 23518 - - port: Open - uid: 23519 - - port: Open - uid: 23520 - - port: Open - uid: 23521 - - port: Open - uid: 23517 - Off: - - port: Close - uid: 23477 - - port: Close - uid: 23516 - - port: Close - uid: 23518 - - port: Close - uid: 23519 - - port: Close - uid: 23520 - - port: Close - uid: 23521 - - port: Close - uid: 23517 - type: SignalTransmitter + - linkedPorts: + 23477: + - On: Open + - Off: Close + 23516: + - On: Open + - Off: Close + 23518: + - On: Open + - Off: Close + 23519: + - On: Open + - Off: Close + 23520: + - On: Open + - Off: Close + 23521: + - On: Open + - Off: Close + 23517: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23622 components: @@ -165036,78 +162732,60 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 23483 - - port: Open - uid: 23481 - - port: Open - uid: 23478 - - port: Open - uid: 23489 - - port: Open - uid: 23458 - - port: Open - uid: 23486 - Off: - - port: Close - uid: 23483 - - port: Close - uid: 23481 - - port: Close - uid: 23478 - - port: Close - uid: 23489 - - port: Close - uid: 23458 - - port: Close - uid: 23486 - type: SignalTransmitter + - linkedPorts: + 23483: + - On: Open + - Off: Close + 23481: + - On: Open + - Off: Close + 23478: + - On: Open + - Off: Close + 23489: + - On: Open + - Off: Close + 23458: + - On: Open + - Off: Close + 23486: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23623 components: - pos: 54.5,51.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2101 - - port: Open - uid: 2095 - - port: Open - uid: 2105 - Off: - - port: Close - uid: 2101 - - port: Close - uid: 2095 - - port: Close - uid: 2105 - type: SignalTransmitter + - linkedPorts: + 2101: + - On: Open + - Off: Close + 2095: + - On: Open + - Off: Close + 2105: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23624 components: - pos: 5.5,49.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2071 - - port: Open - uid: 2072 - - port: Open - uid: 2070 - Off: - - port: Close - uid: 2071 - - port: Close - uid: 2072 - - port: Close - uid: 2070 - type: SignalTransmitter + - linkedPorts: + 2071: + - On: Open + - Off: Close + 2072: + - On: Open + - Off: Close + 2070: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23625 components: - pos: 27.5,44.5 @@ -165115,84 +162793,64 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 2124 - - port: Open - uid: 2127 - - port: Open - uid: 2128 - - port: Open - uid: 2123 - - port: Open - uid: 2121 - - port: Open - uid: 2122 - - port: Open - uid: 2130 - - port: Open - uid: 2129 - - port: Open - uid: 2126 - - port: Open - uid: 2125 - Off: - - port: Close - uid: 2124 - - port: Close - uid: 2127 - - port: Close - uid: 2128 - - port: Close - uid: 2123 - - port: Close - uid: 2121 - - port: Close - uid: 2122 - - port: Close - uid: 2130 - - port: Close - uid: 2129 - - port: Close - uid: 2126 - - port: Close - uid: 2125 - type: SignalTransmitter + - linkedPorts: + 2124: + - On: Open + - Off: Close + 2127: + - On: Open + - Off: Close + 2128: + - On: Open + - Off: Close + 2123: + - On: Open + - Off: Close + 2121: + - On: Open + - Off: Close + 2122: + - On: Open + - Off: Close + 2130: + - On: Open + - Off: Close + 2129: + - On: Open + - Off: Close + 2126: + - On: Open + - Off: Close + 2125: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23626 components: - pos: -28.5,-96.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2115 - - port: Open - uid: 2116 - Off: - - port: Close - uid: 2115 - - port: Close - uid: 2116 - type: SignalTransmitter + - linkedPorts: + 2115: + - On: Open + - Off: Close + 2116: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23627 components: - pos: -16.5,-96.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2117 - - port: Open - uid: 2118 - Off: - - port: Close - uid: 2117 - - port: Close - uid: 2118 - type: SignalTransmitter + - linkedPorts: + 2117: + - On: Open + - Off: Close + 2118: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23628 components: - rot: 3.141592653589793 rad @@ -165201,42 +162859,32 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 2138 - - port: Open - uid: 2131 - - port: Open - uid: 2132 - - port: Open - uid: 2135 - - port: Open - uid: 2133 - - port: Open - uid: 2134 - - port: Open - uid: 2136 - - port: Open - uid: 2137 - Off: - - port: Close - uid: 2138 - - port: Close - uid: 2131 - - port: Close - uid: 2132 - - port: Close - uid: 2135 - - port: Close - uid: 2133 - - port: Close - uid: 2134 - - port: Close - uid: 2136 - - port: Close - uid: 2137 - type: SignalTransmitter + - linkedPorts: + 2138: + - On: Open + - Off: Close + 2131: + - On: Open + - Off: Close + 2132: + - On: Open + - Off: Close + 2135: + - On: Open + - Off: Close + 2133: + - On: Open + - Off: Close + 2134: + - On: Open + - Off: Close + 2136: + - On: Open + - Off: Close + 2137: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23629 components: - pos: -8.5,-94.5 @@ -165244,69 +162892,53 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 2138 - - port: Open - uid: 2131 - - port: Open - uid: 2132 - - port: Open - uid: 2133 - - port: Open - uid: 2135 - - port: Open - uid: 2134 - - port: Open - uid: 2136 - - port: Open - uid: 2137 - Off: - - port: Close - uid: 2138 - - port: Close - uid: 2131 - - port: Close - uid: 2132 - - port: Close - uid: 2133 - - port: Close - uid: 2135 - - port: Close - uid: 2134 - - port: Close - uid: 2136 - - port: Close - uid: 2137 - type: SignalTransmitter + - linkedPorts: + 2138: + - On: Open + - Off: Close + 2131: + - On: Open + - Off: Close + 2132: + - On: Open + - Off: Close + 2133: + - On: Open + - Off: Close + 2135: + - On: Open + - Off: Close + 2134: + - On: Open + - Off: Close + 2136: + - On: Open + - Off: Close + 2137: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23630 components: - rot: 3.141592653589793 rad pos: 48.5,-59.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2079 - Off: - - port: Close - uid: 2079 - type: SignalTransmitter + - linkedPorts: + 2079: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23631 components: - pos: 69.5,-32.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2120 - Off: - - port: Close - uid: 2120 - type: SignalTransmitter + - linkedPorts: + 2120: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23632 components: - pos: 33.483017,17.346874 @@ -165314,30 +162946,23 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 23479 - - port: Open - uid: 23487 - - port: Open - uid: 23480 - - port: Open - uid: 23482 - - port: Open - uid: 23469 - Off: - - port: Close - uid: 23479 - - port: Close - uid: 23487 - - port: Close - uid: 23480 - - port: Close - uid: 23482 - - port: Close - uid: 23469 - type: SignalTransmitter + - linkedPorts: + 23479: + - On: Open + - Off: Close + 23487: + - On: Open + - Off: Close + 23480: + - On: Open + - Off: Close + 23482: + - On: Open + - Off: Close + 23469: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23633 components: @@ -165347,54 +162972,41 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 23476 - - port: Open - uid: 23475 - - port: Open - uid: 23471 - - port: Open - uid: 23494 - - port: Open - uid: 23493 - - port: Open - uid: 23496 - - port: Open - uid: 23495 - - port: Open - uid: 23497 - - port: Open - uid: 23498 - - port: Open - uid: 23499 - - port: Open - uid: 23500 - Off: - - port: Close - uid: 23476 - - port: Close - uid: 23475 - - port: Close - uid: 23471 - - port: Close - uid: 23494 - - port: Close - uid: 23493 - - port: Close - uid: 23496 - - port: Close - uid: 23495 - - port: Close - uid: 23497 - - port: Close - uid: 23498 - - port: Close - uid: 23499 - - port: Close - uid: 23500 - type: SignalTransmitter + - linkedPorts: + 23476: + - On: Open + - Off: Close + 23475: + - On: Open + - Off: Close + 23471: + - On: Open + - Off: Close + 23494: + - On: Open + - Off: Close + 23493: + - On: Open + - Off: Close + 23496: + - On: Open + - Off: Close + 23495: + - On: Open + - Off: Close + 23497: + - On: Open + - Off: Close + 23498: + - On: Open + - Off: Close + 23499: + - On: Open + - Off: Close + 23500: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23634 components: @@ -165404,18 +163016,14 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 23502 - - port: Open - uid: 23501 - Off: - - port: Close - uid: 23502 - - port: Close - uid: 23501 - type: SignalTransmitter + - linkedPorts: + 23502: + - On: Open + - Off: Close + 23501: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23635 components: @@ -165425,36 +163033,28 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 23505 - - port: Open - uid: 23504 - - port: Open - uid: 23503 - Off: - - port: Close - uid: 23505 - - port: Close - uid: 23504 - - port: Close - uid: 23503 - type: SignalTransmitter + - linkedPorts: + 23505: + - On: Open + - Off: Close + 23504: + - On: Open + - Off: Close + 23503: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23636 components: - pos: -51.5,36.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 2091 - Off: - - port: Close - uid: 2091 - type: SignalTransmitter + - linkedPorts: + 2091: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23637 components: @@ -165464,42 +163064,32 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 23508 - - port: Open - uid: 23509 - - port: Open - uid: 23510 - - port: Open - uid: 23515 - - port: Open - uid: 23514 - - port: Open - uid: 23513 - - port: Open - uid: 23512 - - port: Open - uid: 23511 - Off: - - port: Close - uid: 23508 - - port: Close - uid: 23509 - - port: Close - uid: 23510 - - port: Close - uid: 23515 - - port: Close - uid: 23514 - - port: Close - uid: 23513 - - port: Close - uid: 23512 - - port: Close - uid: 23511 - type: SignalTransmitter + - linkedPorts: + 23508: + - On: Open + - Off: Close + 23509: + - On: Open + - Off: Close + 23510: + - On: Open + - Off: Close + 23515: + - On: Open + - Off: Close + 23514: + - On: Open + - Off: Close + 23513: + - On: Open + - Off: Close + 23512: + - On: Open + - Off: Close + 23511: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23638 components: @@ -165508,22 +163098,17 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 23524 - - port: Open - uid: 23525 - - port: Open - uid: 23526 - Off: - - port: Close - uid: 23524 - - port: Close - uid: 23525 - - port: Close - uid: 23526 - type: SignalTransmitter + - linkedPorts: + 23524: + - On: Open + - Off: Close + 23525: + - On: Open + - Off: Close + 23526: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23639 components: @@ -165533,30 +163118,23 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 23464 - - port: Open - uid: 23506 - - port: Open - uid: 23507 - - port: Open - uid: 23522 - - port: Open - uid: 23463 - Off: - - port: Close - uid: 23464 - - port: Close - uid: 23506 - - port: Close - uid: 23507 - - port: Close - uid: 23522 - - port: Close - uid: 23463 - type: SignalTransmitter + - linkedPorts: + 23464: + - On: Open + - Off: Close + 23506: + - On: Open + - Off: Close + 23507: + - On: Open + - Off: Close + 23522: + - On: Open + - Off: Close + 23463: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23640 components: @@ -165564,22 +163142,17 @@ entities: pos: -5.5,10.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 23460 - - port: Open - uid: 23527 - - port: Open - uid: 23467 - Off: - - port: Close - uid: 23460 - - port: Close - uid: 23527 - - port: Close - uid: 23467 - type: SignalTransmitter + - linkedPorts: + 23460: + - On: Open + - Off: Close + 23527: + - On: Open + - Off: Close + 23467: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23641 components: - rot: -1.5707963267948966 rad @@ -165588,22 +163161,17 @@ entities: type: Transform - state: True type: SignalSwitch - - outputs: - On: - - port: Open - uid: 23536 - - port: Open - uid: 23535 - - port: Open - uid: 23534 - Off: - - port: Close - uid: 23536 - - port: Close - uid: 23535 - - port: Close - uid: 23534 - type: SignalTransmitter + - linkedPorts: + 23536: + - On: Open + - Off: Close + 23535: + - On: Open + - Off: Close + 23534: + - On: Open + - Off: Close + type: DeviceLinkSource - type: ItemCooldown - uid: 23642 components: @@ -165611,78 +163179,59 @@ entities: pos: 29.5,-1.5 parent: 2 type: Transform - - outputs: - On: - - port: Open - uid: 23546 - - port: Open - uid: 23545 - - port: Open - uid: 23544 - - port: Open - uid: 23547 - - port: Open - uid: 23548 - - port: Open - uid: 23549 - - port: Open - uid: 23550 - - port: Open - uid: 23551 - - port: Open - uid: 23552 - - port: Open - uid: 23553 - - port: Open - uid: 23555 - - port: Open - uid: 23561 - - port: Open - uid: 23560 - - port: Open - uid: 23559 - - port: Open - uid: 23558 - - port: Open - uid: 23557 - - port: Open - uid: 23556 - Off: - - port: Close - uid: 23546 - - port: Close - uid: 23545 - - port: Close - uid: 23544 - - port: Close - uid: 23547 - - port: Close - uid: 23548 - - port: Close - uid: 23549 - - port: Close - uid: 23550 - - port: Close - uid: 23551 - - port: Close - uid: 23552 - - port: Close - uid: 23553 - - port: Close - uid: 23555 - - port: Close - uid: 23561 - - port: Close - uid: 23560 - - port: Close - uid: 23559 - - port: Close - uid: 23558 - - port: Close - uid: 23557 - - port: Close - uid: 23556 - type: SignalTransmitter + - linkedPorts: + 23546: + - On: Open + - Off: Close + 23545: + - On: Open + - Off: Close + 23544: + - On: Open + - Off: Close + 23547: + - On: Open + - Off: Close + 23548: + - On: Open + - Off: Close + 23549: + - On: Open + - Off: Close + 23550: + - On: Open + - Off: Close + 23551: + - On: Open + - Off: Close + 23552: + - On: Open + - Off: Close + 23553: + - On: Open + - Off: Close + 23555: + - On: Open + - Off: Close + 23561: + - On: Open + - Off: Close + 23560: + - On: Open + - Off: Close + 23559: + - On: Open + - Off: Close + 23558: + - On: Open + - Off: Close + 23557: + - On: Open + - Off: Close + 23556: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 23643 components: - rot: -1.5707963267948966 rad @@ -165703,16 +163252,6 @@ entities: - On: Open - Off: Close - Status: Toggle - registeredSinks: - On: - - 23454 - - 23455 - Off: - - 23454 - - 23455 - Status: - - 23454 - - 23455 type: DeviceLinkSource - type: ItemCooldown - proto: SignAnomaly @@ -174947,13 +172486,6 @@ entities: - pos: 64.471924,-66.472046 parent: 2 type: Transform -- proto: ToyAssistant - entities: - - uid: 25204 - components: - - pos: -17.943565,62.415245 - parent: 2 - type: Transform - proto: ToyDurand entities: - uid: 25205 @@ -174961,6 +172493,13 @@ entities: - pos: -18.14669,61.77462 parent: 2 type: Transform +- proto: ToyFigurinePassenger + entities: + - uid: 25204 + components: + - pos: -17.943565,62.415245 + parent: 2 + type: Transform - proto: ToyGygax entities: - uid: 25206 @@ -175133,222 +172672,150 @@ entities: type: Transform - nextSignalLeft: True type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 12510 - - port: Forward - uid: 12508 - - port: Forward - uid: 12509 - - port: Forward - uid: 12506 - - port: Forward - uid: 12503 - - port: Forward - uid: 12500 - - port: Forward - uid: 12502 - - port: Forward - uid: 12504 - - port: Forward - uid: 22788 - - port: Forward - uid: 12501 - - port: Forward - uid: 12507 - Right: - - port: Reverse - uid: 12510 - - port: Reverse - uid: 12508 - - port: Reverse - uid: 12509 - - port: Reverse - uid: 12506 - - port: Reverse - uid: 12503 - - port: Reverse - uid: 12500 - - port: Reverse - uid: 12502 - - port: Reverse - uid: 12504 - - port: Reverse - uid: 22788 - - port: Reverse - uid: 12501 - - port: Reverse - uid: 12507 - Middle: - - port: Off - uid: 12510 - - port: Off - uid: 12508 - - port: Off - uid: 12509 - - port: Off - uid: 12506 - - port: Off - uid: 12503 - - port: Off - uid: 12500 - - port: Off - uid: 12502 - - port: Off - uid: 12504 - - port: Off - uid: 22788 - - port: Off - uid: 12501 - - port: Off - uid: 12507 - type: SignalTransmitter + - linkedPorts: + 12510: + - Left: Forward + - Right: Reverse + - Middle: Off + 12508: + - Left: Forward + - Right: Reverse + - Middle: Off + 12509: + - Left: Forward + - Right: Reverse + - Middle: Off + 12506: + - Left: Forward + - Right: Reverse + - Middle: Off + 12503: + - Left: Forward + - Right: Reverse + - Middle: Off + 12500: + - Left: Forward + - Right: Reverse + - Middle: Off + 12502: + - Left: Forward + - Right: Reverse + - Middle: Off + 12504: + - Left: Forward + - Right: Reverse + - Middle: Off + 22788: + - Left: Forward + - Right: Reverse + - Middle: Off + 12501: + - Left: Forward + - Right: Reverse + - Middle: Off + 12507: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 25234 components: - pos: -28.5,24.5 parent: 2 type: Transform - - outputs: - Left: - - port: Forward - uid: 12518 - - port: Forward - uid: 12519 - - port: Forward - uid: 12517 - - port: Forward - uid: 12516 - - port: Forward - uid: 12515 - - port: Forward - uid: 12514 - Right: - - port: Reverse - uid: 12518 - - port: Reverse - uid: 12519 - - port: Reverse - uid: 12517 - - port: Reverse - uid: 12516 - - port: Reverse - uid: 12515 - - port: Reverse - uid: 12514 - Middle: - - port: Off - uid: 12518 - - port: Off - uid: 12519 - - port: Off - uid: 12517 - - port: Off - uid: 12516 - - port: Off - uid: 12515 - - port: Off - uid: 12514 - type: SignalTransmitter + - linkedPorts: + 12518: + - Left: Forward + - Right: Reverse + - Middle: Off + 12519: + - Left: Forward + - Right: Reverse + - Middle: Off + 12517: + - Left: Forward + - Right: Reverse + - Middle: Off + 12516: + - Left: Forward + - Right: Reverse + - Middle: Off + 12515: + - Left: Forward + - Right: Reverse + - Middle: Off + 12514: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - type: ItemCooldown - uid: 25235 components: - pos: -41.5,17.5 parent: 2 type: Transform - - outputs: - Left: - - port: Forward - uid: 12560 - - port: Forward - uid: 12600 - - port: Forward - uid: 12559 - - port: Forward - uid: 12541 - - port: Forward - uid: 12561 - Right: - - port: Reverse - uid: 12560 - - port: Reverse - uid: 12600 - - port: Reverse - uid: 12559 - - port: Reverse - uid: 12541 - - port: Reverse - uid: 12561 - Middle: - - port: Off - uid: 12560 - - port: Off - uid: 12600 - - port: Off - uid: 12559 - - port: Off - uid: 12541 - - port: Off - uid: 12561 - type: SignalTransmitter + - linkedPorts: + 12560: + - Left: Forward + - Right: Reverse + - Middle: Off + 12600: + - Left: Forward + - Right: Reverse + - Middle: Off + 12559: + - Left: Forward + - Right: Reverse + - Middle: Off + 12541: + - Left: Forward + - Right: Reverse + - Middle: Off + 12561: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 25236 components: - pos: -48.5,24.5 parent: 2 type: Transform - - outputs: - Left: - - port: Forward - uid: 12532 - - port: Forward - uid: 12531 - - port: Forward - uid: 12530 - - port: Forward - uid: 12529 - - port: Forward - uid: 12537 - - port: Forward - uid: 12538 - - port: Forward - uid: 12539 - - port: Forward - uid: 12540 - Right: - - port: Reverse - uid: 12532 - - port: Reverse - uid: 12531 - - port: Reverse - uid: 12530 - - port: Reverse - uid: 12529 - - port: Reverse - uid: 12537 - - port: Reverse - uid: 12538 - - port: Reverse - uid: 12539 - - port: Reverse - uid: 12540 - Middle: - - port: Off - uid: 12532 - - port: Off - uid: 12531 - - port: Off - uid: 12530 - - port: Off - uid: 12529 - - port: Off - uid: 12537 - - port: Off - uid: 12538 - - port: Off - uid: 12539 - - port: Off - uid: 12540 - type: SignalTransmitter + - linkedPorts: + 12532: + - Left: Forward + - Right: Reverse + - Middle: Off + 12531: + - Left: Forward + - Right: Reverse + - Middle: Off + 12530: + - Left: Forward + - Right: Reverse + - Middle: Off + 12529: + - Left: Forward + - Right: Reverse + - Middle: Off + 12537: + - Left: Forward + - Right: Reverse + - Middle: Off + 12538: + - Left: Forward + - Right: Reverse + - Middle: Off + 12539: + - Left: Forward + - Right: Reverse + - Middle: Off + 12540: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 25237 components: - pos: -48.5,18.5 @@ -175356,59 +172823,40 @@ entities: type: Transform - nextSignalLeft: True type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 12528 - - port: Forward - uid: 12527 - - port: Forward - uid: 12526 - - port: Forward - uid: 12525 - - port: Forward - uid: 12535 - - port: Forward - uid: 12536 - - port: Forward - uid: 12534 - - port: Forward - uid: 12533 - Right: - - port: Reverse - uid: 12528 - - port: Reverse - uid: 12527 - - port: Reverse - uid: 12526 - - port: Reverse - uid: 12525 - - port: Reverse - uid: 12535 - - port: Reverse - uid: 12536 - - port: Reverse - uid: 12534 - - port: Reverse - uid: 12533 - Middle: - - port: Off - uid: 12528 - - port: Off - uid: 12527 - - port: Off - uid: 12526 - - port: Off - uid: 12525 - - port: Off - uid: 12535 - - port: Off - uid: 12536 - - port: Off - uid: 12534 - - port: Off - uid: 12533 - type: SignalTransmitter + - linkedPorts: + 12528: + - Left: Forward + - Right: Reverse + - Middle: Off + 12527: + - Left: Forward + - Right: Reverse + - Middle: Off + 12526: + - Left: Forward + - Right: Reverse + - Middle: Off + 12525: + - Left: Forward + - Right: Reverse + - Middle: Off + 12535: + - Left: Forward + - Right: Reverse + - Middle: Off + 12536: + - Left: Forward + - Right: Reverse + - Middle: Off + 12534: + - Left: Forward + - Right: Reverse + - Middle: Off + 12533: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 25238 components: - pos: -36.5,24.5 @@ -175416,147 +172864,99 @@ entities: type: Transform - nextSignalLeft: True type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 12524 - - port: Forward - uid: 12523 - - port: Forward - uid: 12522 - - port: Forward - uid: 12520 - - port: Forward - uid: 12521 - Right: - - port: Reverse - uid: 12524 - - port: Reverse - uid: 12523 - - port: Reverse - uid: 12522 - - port: Reverse - uid: 12520 - - port: Reverse - uid: 12521 - Middle: - - port: Off - uid: 12524 - - port: Off - uid: 12523 - - port: Off - uid: 12522 - - port: Off - uid: 12520 - - port: Off - uid: 12521 - type: SignalTransmitter + - linkedPorts: + 12524: + - Left: Forward + - Right: Reverse + - Middle: Off + 12523: + - Left: Forward + - Right: Reverse + - Middle: Off + 12522: + - Left: Forward + - Right: Reverse + - Middle: Off + 12520: + - Left: Forward + - Right: Reverse + - Middle: Off + 12521: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 25239 components: - pos: -11.5,28.5 parent: 2 type: Transform - - outputs: - Left: - - port: Forward - uid: 12577 - - port: Forward - uid: 12578 - - port: Forward - uid: 12579 - - port: Forward - uid: 12580 - - port: Forward - uid: 12581 - - port: Forward - uid: 12576 - - port: Forward - uid: 12565 - - port: Forward - uid: 12566 - - port: Forward - uid: 12567 - - port: Forward - uid: 12583 - - port: Forward - uid: 12582 - - port: Reverse - uid: 12558 - - port: Reverse - uid: 12557 - - port: Reverse - uid: 12584 - - port: Reverse - uid: 12585 - - port: Reverse - uid: 12556 - Right: - - port: Reverse - uid: 12577 - - port: Reverse - uid: 12578 - - port: Reverse - uid: 12579 - - port: Reverse - uid: 12580 - - port: Reverse - uid: 12581 - - port: Reverse - uid: 12576 - - port: Reverse - uid: 12565 - - port: Reverse - uid: 12566 - - port: Reverse - uid: 12567 - - port: Reverse - uid: 12583 - - port: Reverse - uid: 12582 - - port: Forward - uid: 12558 - - port: Forward - uid: 12557 - - port: Forward - uid: 12584 - - port: Forward - uid: 12585 - - port: Forward - uid: 12556 - Middle: - - port: Off - uid: 12577 - - port: Off - uid: 12578 - - port: Off - uid: 12579 - - port: Off - uid: 12580 - - port: Off - uid: 12581 - - port: Off - uid: 12576 - - port: Off - uid: 12565 - - port: Off - uid: 12566 - - port: Off - uid: 12567 - - port: Off - uid: 12583 - - port: Off - uid: 12582 - - port: Off - uid: 12558 - - port: Off - uid: 12557 - - port: Off - uid: 12584 - - port: Off - uid: 12585 - - port: Off - uid: 12556 - type: SignalTransmitter + - linkedPorts: + 12577: + - Left: Forward + - Right: Reverse + - Middle: Off + 12578: + - Left: Forward + - Right: Reverse + - Middle: Off + 12579: + - Left: Forward + - Right: Reverse + - Middle: Off + 12580: + - Left: Forward + - Right: Reverse + - Middle: Off + 12581: + - Left: Forward + - Right: Reverse + - Middle: Off + 12576: + - Left: Forward + - Right: Reverse + - Middle: Off + 12565: + - Left: Forward + - Right: Reverse + - Middle: Off + 12566: + - Left: Forward + - Right: Reverse + - Middle: Off + 12567: + - Left: Forward + - Right: Reverse + - Middle: Off + 12583: + - Left: Forward + - Right: Reverse + - Middle: Off + 12582: + - Left: Forward + - Right: Reverse + - Middle: Off + 12558: + - Left: Reverse + - Right: Forward + - Middle: Off + 12557: + - Left: Reverse + - Right: Forward + - Middle: Off + 12584: + - Left: Reverse + - Right: Forward + - Middle: Off + 12585: + - Left: Reverse + - Right: Forward + - Middle: Off + 12556: + - Left: Reverse + - Right: Forward + - Middle: Off + type: DeviceLinkSource - uid: 25240 components: - pos: -48.5,29.5 @@ -175564,53 +172964,36 @@ entities: type: Transform - nextSignalLeft: True type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 12553 - - port: Forward - uid: 12543 - - port: Forward - uid: 12542 - - port: Forward - uid: 12544 - - port: Forward - uid: 12545 - - port: Forward - uid: 12546 - - port: Forward - uid: 12555 - Right: - - port: Reverse - uid: 12553 - - port: Reverse - uid: 12543 - - port: Reverse - uid: 12542 - - port: Reverse - uid: 12544 - - port: Reverse - uid: 12545 - - port: Reverse - uid: 12546 - - port: Reverse - uid: 12555 - Middle: - - port: Off - uid: 12553 - - port: Off - uid: 12543 - - port: Off - uid: 12542 - - port: Off - uid: 12544 - - port: Off - uid: 12545 - - port: Off - uid: 12546 - - port: Off - uid: 12555 - type: SignalTransmitter + - linkedPorts: + 12553: + - Left: Forward + - Right: Reverse + - Middle: Off + 12543: + - Left: Forward + - Right: Reverse + - Middle: Off + 12542: + - Left: Forward + - Right: Reverse + - Middle: Off + 12544: + - Left: Forward + - Right: Reverse + - Middle: Off + 12545: + - Left: Forward + - Right: Reverse + - Middle: Off + 12546: + - Left: Forward + - Right: Reverse + - Middle: Off + 12555: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 25241 components: - pos: -48.5,35.5 @@ -175618,53 +173001,36 @@ entities: type: Transform - nextSignalLeft: True type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 12552 - - port: Forward - uid: 12547 - - port: Forward - uid: 12548 - - port: Forward - uid: 12549 - - port: Forward - uid: 12550 - - port: Forward - uid: 12551 - - port: Forward - uid: 12554 - Right: - - port: Reverse - uid: 12552 - - port: Reverse - uid: 12547 - - port: Reverse - uid: 12548 - - port: Reverse - uid: 12549 - - port: Reverse - uid: 12550 - - port: Reverse - uid: 12551 - - port: Reverse - uid: 12554 - Middle: - - port: Off - uid: 12552 - - port: Off - uid: 12547 - - port: Off - uid: 12548 - - port: Off - uid: 12549 - - port: Off - uid: 12550 - - port: Off - uid: 12551 - - port: Off - uid: 12554 - type: SignalTransmitter + - linkedPorts: + 12552: + - Left: Forward + - Right: Reverse + - Middle: Off + 12547: + - Left: Forward + - Right: Reverse + - Middle: Off + 12548: + - Left: Forward + - Right: Reverse + - Middle: Off + 12549: + - Left: Forward + - Right: Reverse + - Middle: Off + 12550: + - Left: Forward + - Right: Reverse + - Middle: Off + 12551: + - Left: Forward + - Right: Reverse + - Middle: Off + 12554: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 25242 components: - pos: -46.5,14.5 @@ -175672,29 +173038,20 @@ entities: type: Transform - nextSignalLeft: True type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 12563 - - port: Forward - uid: 12562 - - port: Forward - uid: 12564 - Right: - - port: Reverse - uid: 12563 - - port: Reverse - uid: 12562 - - port: Reverse - uid: 12564 - Middle: - - port: Off - uid: 12563 - - port: Off - uid: 12562 - - port: Off - uid: 12564 - type: SignalTransmitter + - linkedPorts: + 12563: + - Left: Forward + - Right: Reverse + - Middle: Off + 12562: + - Left: Forward + - Right: Reverse + - Middle: Off + 12564: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - type: ItemCooldown - uid: 25243 components: @@ -175703,263 +173060,177 @@ entities: type: Transform - nextSignalLeft: True type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 12568 - - port: Forward - uid: 12569 - - port: Forward - uid: 12570 - - port: Forward - uid: 12571 - - port: Forward - uid: 12572 - - port: Forward - uid: 12573 - - port: Forward - uid: 12574 - - port: Forward - uid: 12575 - - port: Forward - uid: 12586 - Right: - - port: Reverse - uid: 12568 - - port: Reverse - uid: 12569 - - port: Reverse - uid: 12570 - - port: Reverse - uid: 12571 - - port: Reverse - uid: 12572 - - port: Reverse - uid: 12573 - - port: Reverse - uid: 12574 - - port: Reverse - uid: 12575 - - port: Reverse - uid: 12586 - Middle: - - port: Off - uid: 12568 - - port: Off - uid: 12569 - - port: Off - uid: 12570 - - port: Off - uid: 12571 - - port: Off - uid: 12572 - - port: Off - uid: 12573 - - port: Off - uid: 12574 - - port: Off - uid: 12575 - - port: Off - uid: 12586 - type: SignalTransmitter + - linkedPorts: + 12568: + - Left: Forward + - Right: Reverse + - Middle: Off + 12569: + - Left: Forward + - Right: Reverse + - Middle: Off + 12570: + - Left: Forward + - Right: Reverse + - Middle: Off + 12571: + - Left: Forward + - Right: Reverse + - Middle: Off + 12572: + - Left: Forward + - Right: Reverse + - Middle: Off + 12573: + - Left: Forward + - Right: Reverse + - Middle: Off + 12574: + - Left: Forward + - Right: Reverse + - Middle: Off + 12575: + - Left: Forward + - Right: Reverse + - Middle: Off + 12586: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 25244 components: - pos: -36.5,-98.5 parent: 2 type: Transform - - outputs: - Left: - - port: Forward - uid: 12588 - - port: Forward - uid: 12587 - - port: Forward - uid: 12589 - - port: Forward - uid: 12590 - - port: Forward - uid: 12591 - - port: Forward - uid: 12592 - - port: Forward - uid: 12593 - - port: Forward - uid: 12597 - - port: Forward - uid: 12596 - - port: Forward - uid: 12594 - - port: Forward - uid: 12595 - Right: - - port: Reverse - uid: 12588 - - port: Reverse - uid: 12587 - - port: Reverse - uid: 12589 - - port: Reverse - uid: 12590 - - port: Reverse - uid: 12591 - - port: Reverse - uid: 12592 - - port: Reverse - uid: 12593 - - port: Reverse - uid: 12597 - - port: Reverse - uid: 12596 - - port: Reverse - uid: 12594 - - port: Reverse - uid: 12595 - Middle: - - port: Off - uid: 12588 - - port: Off - uid: 12587 - - port: Off - uid: 12589 - - port: Off - uid: 12590 - - port: Off - uid: 12591 - - port: Off - uid: 12592 - - port: Off - uid: 12593 - - port: Off - uid: 12597 - - port: Off - uid: 12596 - - port: Off - uid: 12594 - - port: Off - uid: 12595 - type: SignalTransmitter + - linkedPorts: + 12588: + - Left: Forward + - Right: Reverse + - Middle: Off + 12587: + - Left: Forward + - Right: Reverse + - Middle: Off + 12589: + - Left: Forward + - Right: Reverse + - Middle: Off + 12590: + - Left: Forward + - Right: Reverse + - Middle: Off + 12591: + - Left: Forward + - Right: Reverse + - Middle: Off + 12592: + - Left: Forward + - Right: Reverse + - Middle: Off + 12593: + - Left: Forward + - Right: Reverse + - Middle: Off + 12597: + - Left: Forward + - Right: Reverse + - Middle: Off + 12596: + - Left: Forward + - Right: Reverse + - Middle: Off + 12594: + - Left: Forward + - Right: Reverse + - Middle: Off + 12595: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 25245 components: - pos: -36.5,-104.5 parent: 2 type: Transform - - outputs: - Left: - - port: Forward - uid: 12595 - - port: Forward - uid: 12594 - - port: Forward - uid: 12596 - - port: Forward - uid: 12597 - - port: Forward - uid: 12593 - - port: Forward - uid: 12592 - - port: Forward - uid: 12591 - - port: Forward - uid: 12590 - - port: Forward - uid: 12589 - - port: Forward - uid: 12587 - - port: Forward - uid: 12588 - Right: - - port: Reverse - uid: 12595 - - port: Reverse - uid: 12594 - - port: Reverse - uid: 12596 - - port: Reverse - uid: 12597 - - port: Reverse - uid: 12593 - - port: Reverse - uid: 12592 - - port: Reverse - uid: 12591 - - port: Reverse - uid: 12590 - - port: Reverse - uid: 12589 - - port: Reverse - uid: 12587 - - port: Reverse - uid: 12588 - Middle: - - port: Off - uid: 12595 - - port: Off - uid: 12594 - - port: Off - uid: 12596 - - port: Off - uid: 12597 - - port: Off - uid: 12593 - - port: Off - uid: 12592 - - port: Off - uid: 12591 - - port: Off - uid: 12590 - - port: Off - uid: 12589 - - port: Off - uid: 12587 - - port: Off - uid: 12588 - type: SignalTransmitter + - linkedPorts: + 12595: + - Left: Forward + - Right: Reverse + - Middle: Off + 12594: + - Left: Forward + - Right: Reverse + - Middle: Off + 12596: + - Left: Forward + - Right: Reverse + - Middle: Off + 12597: + - Left: Forward + - Right: Reverse + - Middle: Off + 12593: + - Left: Forward + - Right: Reverse + - Middle: Off + 12592: + - Left: Forward + - Right: Reverse + - Middle: Off + 12591: + - Left: Forward + - Right: Reverse + - Middle: Off + 12590: + - Left: Forward + - Right: Reverse + - Middle: Off + 12589: + - Left: Forward + - Right: Reverse + - Middle: Off + 12587: + - Left: Forward + - Right: Reverse + - Middle: Off + 12588: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - uid: 25246 components: - pos: -9.5,-12.5 parent: 2 type: Transform - - outputs: - Left: - - port: Reverse - uid: 12511 - - port: Reverse - uid: 12512 - - port: Reverse - uid: 12505 - - port: Reverse - uid: 12599 - - port: Reverse - uid: 12598 - - port: Reverse - uid: 12513 - Right: - - port: Reverse - uid: 12511 - - port: Reverse - uid: 12512 - - port: Reverse - uid: 12505 - - port: Reverse - uid: 12599 - - port: Reverse - uid: 12598 - - port: Reverse - uid: 12513 - Middle: - - port: Off - uid: 12598 - - port: Off - uid: 12513 - - port: Off - uid: 12505 - - port: Off - uid: 12512 - - port: Off - uid: 12511 - - port: Off - uid: 12599 - type: SignalTransmitter + - linkedPorts: + 12511: + - Left: Reverse + - Right: Reverse + - Middle: Off + 12512: + - Left: Reverse + - Right: Reverse + - Middle: Off + 12505: + - Left: Reverse + - Right: Reverse + - Middle: Off + 12599: + - Left: Reverse + - Right: Reverse + - Middle: Off + 12598: + - Left: Reverse + - Right: Reverse + - Middle: Off + 12513: + - Left: Reverse + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - proto: UnfinishedMachineFrame entities: - uid: 25247 @@ -204368,36 +201639,12 @@ entities: pos: 29.5,13.5 parent: 2 type: Transform - - inputs: - Open: - - port: Timer - uid: 2252 - Close: - - port: Start - uid: 2252 - Toggle: [] - AutoClose: - - port: Timer - uid: 2252 - type: SignalReceiver - uid: 30421 components: - rot: 1.5707963267948966 rad pos: 39.5,7.5 parent: 2 type: Transform - - inputs: - Open: - - port: Timer - uid: 2254 - Close: - - port: Start - uid: 2254 - Toggle: [] - AutoClose: - - port: Timer - uid: 2254 - type: SignalReceiver - uid: 30422 components: - rot: 3.141592653589793 rad @@ -204422,36 +201669,12 @@ entities: pos: 32.5,13.5 parent: 2 type: Transform - - inputs: - Open: - - port: Timer - uid: 2253 - Close: - - port: Start - uid: 2253 - Toggle: [] - AutoClose: - - port: Timer - uid: 2253 - type: SignalReceiver - uid: 30426 components: - rot: 1.5707963267948966 rad pos: 39.5,4.5 parent: 2 type: Transform - - inputs: - Open: - - port: Timer - uid: 2255 - Close: - - port: Start - uid: 2255 - Toggle: [] - AutoClose: - - port: Timer - uid: 2255 - type: SignalReceiver - uid: 30427 components: - rot: 3.141592653589793 rad @@ -204464,18 +201687,6 @@ entities: pos: 35.5,13.5 parent: 2 type: Transform - - inputs: - Open: - - port: Timer - uid: 2251 - Close: - - port: Start - uid: 2251 - Toggle: [] - AutoClose: - - port: Timer - uid: 2251 - type: SignalReceiver - uid: 30429 components: - rot: 3.141592653589793 rad diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index 6698f71820..35bc1af575 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -10652,11 +10652,6 @@ entities: - Start: Close - Timer: AutoClose - Timer: Open - registeredSinks: - Start: - - 2258 - Timer: - - 2258 type: DeviceLinkSource - uid: 7718 components: @@ -10668,11 +10663,6 @@ entities: - Start: Close - Timer: AutoClose - Timer: Open - registeredSinks: - Start: - - 2259 - Timer: - - 2259 type: DeviceLinkSource - proto: Brutepack entities: @@ -35651,9 +35641,6 @@ entities: - linkedPorts: 8666: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - registeredSinks: - ArtifactAnalyzerSender: - - 8666 type: DeviceLinkSource - uid: 10667 components: @@ -36103,17 +36090,6 @@ entities: - links: - 2154 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 2154 - Forward: - - port: Left - uid: 2154 - Off: - - port: Middle - uid: 2154 - type: SignalReceiver - uid: 2040 components: - rot: -1.5707963267948966 rad @@ -36123,17 +36099,6 @@ entities: - links: - 2154 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 2154 - Forward: - - port: Left - uid: 2154 - Off: - - port: Middle - uid: 2154 - type: SignalReceiver - uid: 2041 components: - rot: 1.5707963267948966 rad @@ -36171,17 +36136,6 @@ entities: - links: - 2154 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 2154 - Forward: - - port: Left - uid: 2154 - Off: - - port: Middle - uid: 2154 - type: SignalReceiver - uid: 2064 components: - rot: 1.5707963267948966 rad @@ -36205,17 +36159,6 @@ entities: - links: - 2154 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 2154 - Forward: - - port: Left - uid: 2154 - Off: - - port: Middle - uid: 2154 - type: SignalReceiver - uid: 2067 components: - rot: -1.5707963267948966 rad @@ -36225,17 +36168,6 @@ entities: - links: - 2154 type: DeviceLinkSink - - inputs: - Reverse: - - port: Right - uid: 2154 - Forward: - - port: Left - uid: 2154 - Off: - - port: Middle - uid: 2154 - type: SignalReceiver - uid: 5285 components: - rot: 1.5707963267948966 rad @@ -69244,9 +69176,6 @@ entities: - linkedPorts: 55: - Pressed: Toggle - registeredSinks: - Pressed: - - 55 type: DeviceLinkSource - uid: 374 components: @@ -69257,9 +69186,6 @@ entities: - linkedPorts: 7462: - Pressed: Toggle - registeredSinks: - Pressed: - - 7462 type: DeviceLinkSource - uid: 1025 components: @@ -69278,12 +69204,6 @@ entities: - Pressed: Toggle 4503: - Pressed: Toggle - registeredSinks: - Pressed: - - 779 - - 780 - - 4502 - - 4503 type: DeviceLinkSource - uid: 1151 components: @@ -69303,13 +69223,6 @@ entities: - Pressed: Toggle 419: - Pressed: Toggle - registeredSinks: - Pressed: - - 1154 - - 913 - - 6512 - - 1658 - - 419 type: DeviceLinkSource - uid: 1471 components: @@ -69325,11 +69238,6 @@ entities: - Pressed: Toggle 270: - Pressed: Toggle - registeredSinks: - Pressed: - - 265 - - 267 - - 270 type: DeviceLinkSource - uid: 4245 components: @@ -69339,9 +69247,6 @@ entities: - linkedPorts: 4257: - Pressed: Toggle - registeredSinks: - Pressed: - - 4257 type: DeviceLinkSource - uid: 5685 components: @@ -69355,10 +69260,6 @@ entities: - Pressed: Toggle 2835: - Pressed: Toggle - registeredSinks: - Pressed: - - 2834 - - 2835 type: DeviceLinkSource - uid: 6749 components: @@ -69373,10 +69274,6 @@ entities: - Pressed: Toggle 6514: - Pressed: Toggle - registeredSinks: - Pressed: - - 6513 - - 6514 type: DeviceLinkSource - uid: 6856 components: @@ -69389,9 +69286,6 @@ entities: - linkedPorts: 7618: - Pressed: Toggle - registeredSinks: - Pressed: - - 7618 type: DeviceLinkSource - uid: 7463 components: @@ -69402,9 +69296,6 @@ entities: - linkedPorts: 384: - Pressed: Toggle - registeredSinks: - Pressed: - - 384 type: DeviceLinkSource - uid: 8163 components: @@ -69416,10 +69307,6 @@ entities: - Pressed: Toggle 320: - Pressed: Toggle - registeredSinks: - Pressed: - - 2831 - - 320 type: DeviceLinkSource - uid: 8288 components: @@ -69434,11 +69321,6 @@ entities: - Pressed: Toggle 12425: - Pressed: Toggle - registeredSinks: - Pressed: - - 12424 - - 2990 - - 12425 type: DeviceLinkSource - uid: 10321 components: @@ -69448,9 +69330,6 @@ entities: - linkedPorts: 150: - Pressed: Toggle - registeredSinks: - Pressed: - - 150 type: DeviceLinkSource - uid: 12825 components: @@ -69462,10 +69341,6 @@ entities: - Pressed: Toggle 12823: - Pressed: Toggle - registeredSinks: - Pressed: - - 2087 - - 12823 type: DeviceLinkSource - uid: 12826 components: @@ -69477,10 +69352,6 @@ entities: - Pressed: Toggle 12824: - Pressed: Toggle - registeredSinks: - Pressed: - - 12822 - - 12824 type: DeviceLinkSource - proto: SignAnomaly entities: @@ -74905,88 +74776,6 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - registeredSinks: - Left: - - 6843 - - 7667 - - 6844 - - 7891 - - 7841 - - 7875 - - 7949 - - 7586 - - 6825 - - 7672 - - 7585 - - 2028 - - 6823 - - 7888 - - 6820 - - 7849 - - 2030 - - 7671 - - 6846 - - 7880 - - 7878 - - 7879 - - 7876 - - 5285 - - 1319 - - 6775 - Right: - - 6843 - - 7667 - - 6844 - - 7891 - - 7841 - - 7875 - - 7949 - - 7586 - - 6825 - - 7672 - - 7585 - - 2028 - - 6823 - - 7888 - - 6820 - - 7849 - - 2030 - - 7671 - - 6846 - - 7880 - - 7878 - - 7879 - - 7876 - - 5285 - - 1319 - - 6775 - Middle: - - 6843 - - 7667 - - 6844 - - 7891 - - 7841 - - 7875 - - 7949 - - 7586 - - 6825 - - 7672 - - 7585 - - 2028 - - 6823 - - 7888 - - 6820 - - 7849 - - 2030 - - 7671 - - 6846 - - 7880 - - 7878 - - 7879 - - 7876 - - 5285 - - 1319 - - 6775 type: DeviceLinkSource - uid: 2154 components: @@ -75014,61 +74803,7 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - registeredSinks: - Left: - - 2039 - - 2040 - - 2067 - - 2051 - - 2066 - Right: - - 2039 - - 2040 - - 2067 - - 2051 - - 2066 - Middle: - - 2039 - - 2040 - - 2067 - - 2051 - - 2066 type: DeviceLinkSource - - outputs: - Left: - - port: Forward - uid: 2039 - - port: Forward - uid: 2040 - - port: Forward - uid: 2067 - - port: Forward - uid: 2051 - - port: Forward - uid: 2066 - Right: - - port: Reverse - uid: 2039 - - port: Reverse - uid: 2040 - - port: Reverse - uid: 2067 - - port: Reverse - uid: 2051 - - port: Reverse - uid: 2066 - Middle: - - port: Off - uid: 2039 - - port: Off - uid: 2040 - - port: Off - uid: 2067 - - port: Off - uid: 2051 - - port: Off - uid: 2066 - type: SignalTransmitter - uid: 5856 components: - pos: 2.5,-30.5 @@ -75123,46 +74858,6 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - registeredSinks: - Left: - - 5842 - - 5843 - - 5844 - - 5845 - - 5846 - - 5847 - - 5850 - - 5851 - - 5852 - - 5853 - - 5854 - - 5855 - Right: - - 5842 - - 5843 - - 5844 - - 5845 - - 5846 - - 5847 - - 5850 - - 5851 - - 5852 - - 5853 - - 5854 - - 5855 - Middle: - - 5842 - - 5843 - - 5844 - - 5845 - - 5846 - - 5847 - - 5850 - - 5851 - - 5852 - - 5853 - - 5854 - - 5855 type: DeviceLinkSource - uid: 5857 components: @@ -75174,13 +74869,6 @@ entities: - Left: Open - Right: Open - Middle: Close - registeredSinks: - Left: - - 5875 - Right: - - 5875 - Middle: - - 5875 type: DeviceLinkSource - uid: 7808 components: @@ -75208,25 +74896,6 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - registeredSinks: - Left: - - 2038 - - 2037 - - 2041 - - 2042 - - 2064 - Right: - - 2038 - - 2037 - - 2041 - - 2042 - - 2064 - Middle: - - 2038 - - 2037 - - 2041 - - 2042 - - 2064 type: DeviceLinkSource - uid: 8665 components: @@ -75242,16 +74911,6 @@ entities: - Left: Open - Right: Open - Middle: Close - registeredSinks: - Left: - - 5351 - - 5361 - Right: - - 5351 - - 5361 - Middle: - - 5351 - - 5361 type: DeviceLinkSource - uid: 10322 components: @@ -75263,13 +74922,6 @@ entities: - Left: Open - Right: Open - Middle: Close - registeredSinks: - Left: - - 5268 - Right: - - 5268 - Middle: - - 5268 type: DeviceLinkSource - proto: UnfinishedMachineFrame entities: diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index 9605545999..3ab2ea3bcc 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -4261,18 +4261,9 @@ entities: - pos: -12.5,9.5 parent: 31 type: Transform - - inputs: - Open: - - port: Timer - uid: 9952 - Close: - - port: Start - uid: 9952 - Toggle: [] - AutoClose: - - port: Timer - uid: 9952 - type: SignalReceiver + - links: + - 9952 + type: DeviceLinkSink - uid: 1411 components: - pos: 0.5,9.5 @@ -4293,18 +4284,9 @@ entities: - pos: -8.5,9.5 parent: 31 type: Transform - - inputs: - Open: - - port: Timer - uid: 9951 - Close: - - port: Start - uid: 9951 - Toggle: [] - AutoClose: - - port: Timer - uid: 9951 - type: SignalReceiver + - links: + - 9951 + type: DeviceLinkSink - uid: 6015 components: - rot: 1.5707963267948966 rad @@ -5300,13 +5282,9 @@ entities: - pos: 17.5,12.5 parent: 31 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2515 - type: SignalReceiver + - links: + - 2515 + type: DeviceLinkSink - uid: 2308 components: - pos: -13.5,-27.5 @@ -5351,25 +5329,17 @@ entities: - pos: -28.5,-15.5 parent: 31 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7552 - type: SignalReceiver + - links: + - 7552 + type: DeviceLinkSink - uid: 9013 components: - pos: -26.5,-15.5 parent: 31 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7551 - type: SignalReceiver + - links: + - 7551 + type: DeviceLinkSink - uid: 10095 components: - pos: 20.5,25.5 @@ -5734,16 +5704,12 @@ entities: type: Transform - label: cell2 type: SignalTimer - - outputs: - Start: - - port: Close - uid: 5070 - Timer: - - port: AutoClose - uid: 5070 - - port: Open - uid: 5070 - type: SignalTransmitter + - linkedPorts: + 5070: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource - uid: 9952 components: - pos: -11.5,9.5 @@ -5751,16 +5717,12 @@ entities: type: Transform - label: cell1 type: SignalTimer - - outputs: - Start: - - port: Close - uid: 1203 - Timer: - - port: AutoClose - uid: 1203 - - port: Open - uid: 1203 - type: SignalTransmitter + - linkedPorts: + 1203: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource - proto: Brutepack entities: - uid: 7258 @@ -25325,11 +25287,6 @@ entities: pos: -15.5,-22.5 parent: 31 type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 8320 - type: SignalTransmitter - proto: ComputerCargoBounty entities: - uid: 7126 @@ -25621,119 +25578,63 @@ entities: pos: -22.5,-15.5 parent: 31 type: Transform - - inputs: - Off: - - port: Middle - uid: 7537 - Forward: - - port: Left - uid: 7537 - Reverse: - - port: Right - uid: 7537 - type: SignalReceiver + - links: + - 7537 + type: DeviceLinkSink - uid: 7533 components: - rot: 1.5707963267948966 rad pos: -23.5,-15.5 parent: 31 type: Transform - - inputs: - Off: - - port: Middle - uid: 7537 - Forward: - - port: Left - uid: 7537 - Reverse: - - port: Right - uid: 7537 - type: SignalReceiver + - links: + - 7537 + type: DeviceLinkSink - uid: 7534 components: - rot: 1.5707963267948966 rad pos: -24.5,-15.5 parent: 31 type: Transform - - inputs: - Off: - - port: Middle - uid: 7537 - Forward: - - port: Left - uid: 7537 - Reverse: - - port: Right - uid: 7537 - type: SignalReceiver + - links: + - 7537 + type: DeviceLinkSink - uid: 7535 components: - rot: 1.5707963267948966 rad pos: -25.5,-15.5 parent: 31 type: Transform - - inputs: - Off: - - port: Middle - uid: 7537 - Forward: - - port: Left - uid: 7537 - Reverse: - - port: Right - uid: 7537 - type: SignalReceiver + - links: + - 7537 + type: DeviceLinkSink - uid: 7538 components: - rot: -1.5707963267948966 rad pos: -26.5,-15.5 parent: 31 type: Transform - - inputs: - Off: - - port: Middle - uid: 7537 - Forward: - - port: Left - uid: 7537 - Reverse: - - port: Right - uid: 7537 - type: SignalReceiver + - links: + - 7537 + type: DeviceLinkSink - uid: 7539 components: - rot: -1.5707963267948966 rad pos: -27.5,-15.5 parent: 31 type: Transform - - inputs: - Off: - - port: Middle - uid: 7537 - Forward: - - port: Left - uid: 7537 - Reverse: - - port: Right - uid: 7537 - type: SignalReceiver + - links: + - 7537 + type: DeviceLinkSink - uid: 7540 components: - rot: -1.5707963267948966 rad pos: -28.5,-15.5 parent: 31 type: Transform - - inputs: - Off: - - port: Middle - uid: 7537 - Forward: - - port: Left - uid: 7537 - Reverse: - - port: Right - uid: 7537 - type: SignalReceiver + - links: + - 7537 + type: DeviceLinkSink - uid: 7550 components: - pos: 20.5,19.5 @@ -25773,33 +25674,17 @@ entities: - pos: -23.5,-15.5 parent: 31 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9756 - Forward: - - port: Left - uid: 9756 - Off: - - port: Middle - uid: 9756 - type: SignalReceiver + - links: + - 9756 + type: DeviceLinkSink - uid: 9755 components: - pos: -23.5,-16.5 parent: 31 type: Transform - - inputs: - Reverse: - - port: Right - uid: 9756 - Forward: - - port: Left - uid: 9756 - Off: - - port: Middle - uid: 9756 - type: SignalReceiver + - links: + - 9756 + type: DeviceLinkSink - uid: 10045 components: - rot: 3.141592653589793 rad @@ -45433,7 +45318,21 @@ entities: - pos: -3.428735,16.721615 parent: 31 type: Transform -- proto: Intercom +- proto: IntercomAll + entities: + - uid: 9903 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,18.5 + parent: 31 + type: Transform + - uid: 9904 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,24.5 + parent: 31 + type: Transform +- proto: IntercomCommon entities: - uid: 9905 components: @@ -45489,20 +45388,6 @@ entities: pos: 6.5,-18.5 parent: 31 type: Transform -- proto: IntercomAll - entities: - - uid: 9903 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,18.5 - parent: 31 - type: Transform - - uid: 9904 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,24.5 - parent: 31 - type: Transform - proto: IntercomEngineering entities: - uid: 9897 @@ -46323,11 +46208,6 @@ entities: - pos: -14.5,-25.5 parent: 31 type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 8321 - type: SignalReceiver - proto: MachineFrame entities: - uid: 1319 @@ -50700,17 +50580,9 @@ entities: pos: -21.5,-15.5 parent: 31 type: Transform - - inputs: - Off: - - port: Middle - uid: 7537 - Forward: - - port: Left - uid: 7537 - Reverse: - - port: Right - uid: 7537 - type: SignalReceiver + - links: + - 7537 + type: DeviceLinkSink - proto: ReinforcedPlasmaWindow entities: - uid: 439 @@ -52869,39 +52741,27 @@ entities: pos: -10.5,1.5 parent: 31 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4526 - type: SignalReceiver + - links: + - 4526 + type: DeviceLinkSink - uid: 4694 components: - rot: 1.5707963267948966 rad pos: -10.5,0.5 parent: 31 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4526 - type: SignalReceiver + - links: + - 4526 + type: DeviceLinkSink - uid: 4695 components: - rot: 1.5707963267948966 rad pos: -10.5,-0.5 parent: 31 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4526 - type: SignalReceiver + - links: + - 4526 + type: DeviceLinkSink - uid: 7629 components: - rot: -1.5707963267948966 rad @@ -52916,74 +52776,50 @@ entities: - pos: -16.5,7.5 parent: 31 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8766 - type: SignalReceiver + - links: + - 8766 + type: DeviceLinkSink - uid: 8768 components: - rot: 3.141592653589793 rad pos: -16.5,6.5 parent: 31 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8766 - type: SignalReceiver + - links: + - 8766 + type: DeviceLinkSink - uid: 8770 components: - pos: -13.5,6.5 parent: 31 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8774 - type: SignalReceiver + - links: + - 8774 + type: DeviceLinkSink - uid: 8771 components: - pos: -12.5,6.5 parent: 31 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8774 - type: SignalReceiver + - links: + - 8774 + type: DeviceLinkSink - uid: 8772 components: - pos: -7.5,6.5 parent: 31 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8774 - type: SignalReceiver + - links: + - 8774 + type: DeviceLinkSink - uid: 8773 components: - pos: -8.5,6.5 parent: 31 type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8774 - type: SignalReceiver + - links: + - 8774 + type: DeviceLinkSink - uid: 9116 components: - rot: -1.5707963267948966 rad @@ -53064,25 +52900,23 @@ entities: - pos: 16.5,13.5 parent: 31 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1756 - type: SignalTransmitter + - linkedPorts: + 1756: + - Pressed: Toggle + type: DeviceLinkSource - uid: 4526 components: - pos: -11.5,-2.5 parent: 31 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4695 - - port: Toggle - uid: 4694 - - port: Toggle - uid: 4693 - type: SignalTransmitter + - linkedPorts: + 4695: + - Pressed: Toggle + 4694: + - Pressed: Toggle + 4693: + - Pressed: Toggle + type: DeviceLinkSource - uid: 6558 components: - pos: 49.5,18.5 @@ -53093,49 +52927,45 @@ entities: - pos: -26.5,-13.5 parent: 31 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9013 - type: SignalTransmitter + - linkedPorts: + 9013: + - Pressed: Toggle + type: DeviceLinkSource - uid: 7552 components: - pos: -26.50167,-13.167556 parent: 31 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7536 - type: SignalTransmitter + - linkedPorts: + 7536: + - Pressed: Toggle + type: DeviceLinkSource - uid: 8766 components: - pos: -13.5,12.5 parent: 31 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 8767 - - port: Toggle - uid: 8768 - type: SignalTransmitter + - linkedPorts: + 8767: + - Pressed: Toggle + 8768: + - Pressed: Toggle + type: DeviceLinkSource - uid: 8774 components: - pos: -11.5,12.5 parent: 31 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 8772 - - port: Toggle - uid: 8773 - - port: Toggle - uid: 8771 - - port: Toggle - uid: 8770 - type: SignalTransmitter + - linkedPorts: + 8772: + - Pressed: Toggle + 8773: + - Pressed: Toggle + 8771: + - Pressed: Toggle + 8770: + - Pressed: Toggle + type: DeviceLinkSource - proto: SignalControlledValve entities: - uid: 7470 @@ -53199,39 +53029,6 @@ entities: 10053: - On: Forward - Off: Off - registeredSinks: - On: - - 8899 - - 7550 - - 1771 - - 3550 - - 3387 - - 3548 - - 3549 - - 10095 - - 10089 - - 10090 - - 10092 - - 10091 - - 10046 - - 3905 - - 10053 - Off: - - 8899 - - 7550 - - 1771 - - 3550 - - 3387 - - 3548 - - 3549 - - 10095 - - 10089 - - 10090 - - 10092 - - 10091 - - 10046 - - 3905 - - 10053 type: DeviceLinkSource - uid: 7945 components: @@ -53281,37 +53078,6 @@ entities: 10045: - On: Forward - Off: Off - registeredSinks: - On: - - 10047 - - 10048 - - 10049 - - 10050 - - 10051 - - 10052 - - 10053 - - 10093 - - 9139 - - 9138 - - 66 - - 10096 - - 10054 - - 10045 - Off: - - 10047 - - 10048 - - 10049 - - 10050 - - 10051 - - 10052 - - 10053 - - 10093 - - 9139 - - 9138 - - 66 - - 10096 - - 10054 - - 10045 type: DeviceLinkSource - uid: 8224 components: @@ -53325,13 +53091,6 @@ entities: 9122: - On: Open - Off: Close - registeredSinks: - On: - - 2138 - - 9122 - Off: - - 2138 - - 9122 type: DeviceLinkSource - uid: 8225 components: @@ -53345,13 +53104,6 @@ entities: 2308: - On: Open - Off: Close - registeredSinks: - On: - - 2309 - - 2308 - Off: - - 2309 - - 2308 type: DeviceLinkSource - uid: 8232 components: @@ -53365,13 +53117,6 @@ entities: 2137: - On: Open - Off: Close - registeredSinks: - On: - - 1475 - - 2137 - Off: - - 1475 - - 2137 type: DeviceLinkSource - uid: 8850 components: @@ -53383,11 +53128,6 @@ entities: 7470: - On: Open - Off: Close - registeredSinks: - On: - - 7470 - Off: - - 7470 type: DeviceLinkSource - type: ItemCooldown - uid: 9115 @@ -53402,13 +53142,6 @@ entities: 9116: - On: Open - Off: Close - registeredSinks: - On: - - 7629 - - 9116 - Off: - - 7629 - - 9116 type: DeviceLinkSource - uid: 9557 components: @@ -53434,21 +53167,6 @@ entities: 9556: - On: Open - Off: Close - registeredSinks: - On: - - 9551 - - 9552 - - 9553 - - 9554 - - 9555 - - 9556 - Off: - - 9551 - - 9552 - - 9553 - - 9554 - - 9555 - - 9556 type: DeviceLinkSource - proto: SignAnomaly2 entities: @@ -57384,13 +57102,6 @@ entities: - pos: 29.13865,-15.849083 parent: 31 type: Transform -- proto: ToyAssistant - entities: - - uid: 7324 - components: - - pos: 11.08925,-23.08905 - parent: 31 - type: Transform - proto: ToyDeathRipley entities: - uid: 2030 @@ -57398,6 +57109,13 @@ entities: - pos: -24.569178,-5.0530295 parent: 31 type: Transform +- proto: ToyFigurinePassenger + entities: + - uid: 7324 + components: + - pos: 11.08925,-23.08905 + parent: 31 + type: Transform - proto: ToyFireRipley entities: - uid: 2029 @@ -57483,81 +57201,55 @@ entities: - pos: -22.5,-14.5 parent: 31 type: Transform - - outputs: - Middle: - - port: Off - uid: 7532 - - port: Off - uid: 7533 - - port: Off - uid: 7534 - - port: Off - uid: 7535 - - port: Off - uid: 7538 - - port: Off - uid: 7539 - - port: Off - uid: 7540 - - port: Off - uid: 7531 - Right: - - port: Reverse - uid: 7532 - - port: Reverse - uid: 7533 - - port: Reverse - uid: 7534 - - port: Reverse - uid: 7535 - - port: Reverse - uid: 7538 - - port: Reverse - uid: 7539 - - port: Reverse - uid: 7540 - - port: Reverse - uid: 7531 - Left: - - port: Forward - uid: 7532 - - port: Forward - uid: 7533 - - port: Forward - uid: 7534 - - port: Forward - uid: 7535 - - port: Forward - uid: 7538 - - port: Forward - uid: 7539 - - port: Forward - uid: 7540 - - port: Forward - uid: 7531 - type: SignalTransmitter + - linkedPorts: + 7532: + - Middle: Off + - Right: Reverse + - Left: Forward + 7533: + - Middle: Off + - Right: Reverse + - Left: Forward + 7534: + - Middle: Off + - Right: Reverse + - Left: Forward + 7535: + - Middle: Off + - Right: Reverse + - Left: Forward + 7538: + - Middle: Off + - Right: Reverse + - Left: Forward + 7539: + - Middle: Off + - Right: Reverse + - Left: Forward + 7540: + - Middle: Off + - Right: Reverse + - Left: Forward + 7531: + - Middle: Off + - Right: Reverse + - Left: Forward + type: DeviceLinkSource - uid: 9756 components: - pos: -24.5,-17.5 parent: 31 type: Transform - - outputs: - Left: - - port: Forward - uid: 9755 - - port: Forward - uid: 9754 - Right: - - port: Reverse - uid: 9755 - - port: Reverse - uid: 9754 - Middle: - - port: Off - uid: 9755 - - port: Off - uid: 9754 - type: SignalTransmitter + - linkedPorts: + 9755: + - Left: Forward + - Right: Reverse + - Middle: Off + 9754: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource - proto: UniformPrinter entities: - uid: 8408 diff --git a/Resources/migration.yml b/Resources/migration.yml index b6b2bbaf3f..68d148346f 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -6,94 +6,6 @@ # Window: WallSolid # WallSolid: Window # Table: null -# -chem_dispenser: ChemDispenser -KvassTankFull: null -DrinkKvassGlass: null -KvassTank: null - -# 2023-05-03 -SpawnPointBrigmedic: null -ClothingHeadsetBrigmedic: null -ClothingHeadHatBeretBrigmedic: null -ClothingHeadHelmetHardsuitBrigmedic: null -ClothingOuterHardsuitBrigmedic: null -ClothingOuterCoatAMG: null -ClothingBackpackBrigmedic: null -ClothingBackpackBrigmedicFilled: null -ClothingBackpackSatchelBrigmedic: null -ClothingBackpackSatchelBrigmedicFilled: null -ClothingBackpackDuffelBrigmedic: null -ClothingBackpackDuffelBrigmedicFilled: null -BrigmedicIDCard: null -BrigmedicPDA: null -BoxSurvivalBrigmedic: null -LockerBrigmedic: null -LockerBrigmedicFilled: null -BedsheetBrigmedic: null - -# 2023-05-04 -BoxMagazineMagnumSubMachineGun: BoxMagazinePistolSubMachineGun -BoxMagazineMagnumSubMachineGunPractice: BoxMagazinePistolSubMachineGunPractice -BoxMagazineMagnumSubMachineGunRubber: BoxMagazinePistolSubMachineGunRubber - -MagazineMagnumSubMachineGun: MagazinePistolSubMachineGun -MagazineMagnumSubMachineGunHighVelocity: MagazinePistolSubMachineGunHighVelocity -MagazineMagnumSubMachineGunPractice: MagazinePistolSubMachineGunPractice -MagazineMagnumSubMachineGunRubber: MagazinePistolSubMachineGunRubber -WeaponSubMachineGunVector: WeaponSubMachineGunDrozd -WeaponSubMachineGunVectorRubber: WeaponSubMachineGunDrozdRubber - -MagazineBoxAntiMaterial: MagazineBoxAntiMateriel -CartridgeAntiMaterial: CartridgeAntiMateriel -BulletAntiMaterial: BulletAntiMateriel - -# 2023-05-10 -FoodCondimentBottleSmallHotsauce: FoodCondimentBottleHotsauce -FoodBakedCookieFortune: FoodSnackCookieFortune -GunSafeSubMachineGunVector: GunSafeSubMachineGunDrozd - -# 2023-05-24 -AMEController: AmeController -AMEJar: AmeJar -AMEPart: AmePart -AMEShielding: AmeShielding - -# 2023-05-29 -OrGate: null - -# 2023-05-31 -IHSVoidsuit: null -ClothingHeadHelmetIHSVoidHelm: null -ClothingHandsGlovesIhscombat: null - -# 2023-06-02 -# Yes, this is right. They were, in fact, reversed because the default orientation of the particle accelerator was _down_ relative to the screen. -# This resulted in the parts being named assuming that the person building the accelerator treated it like a rocket with the particles coming out the _back_. -# As this was confusing they were converted to nautical orientation with forward being towards the emitters. -MachineParticleAcceleratorEmitterCenterCircuitboard: MachineParticleAcceleratorEmitterForeCircuitboard -MachineParticleAcceleratorEmitterLeftCircuitboard: MachineParticleAcceleratorEmitterStarboardCircuitboard -MachineParticleAcceleratorEmitterRightCircuitboard: MachineParticleAcceleratorEmitterPortCircuitboard -ParticleAcceleratorEmitterCenter: ParticleAcceleratorEmitterFore -ParticleAcceleratorEmitterCenterUnfinished: ParticleAcceleratorEmitterForeUnfinished -ParticleAcceleratorEmitterLeft: ParticleAcceleratorEmitterStarboard -ParticleAcceleratorEmitterLeftUnfinished: ParticleAcceleratorEmitterStarboardUnfinished -ParticleAcceleratorEmitterRight: ParticleAcceleratorEmitterPort -ParticleAcceleratorEmitterRightUnfinished: ParticleAcceleratorEmitterPortUnfinished - -# 2023-06-21 -WindoorArmoryLocked: WindoorSecureArmoryLocked -WindoorBrigLocked: WindoorSecureBrigLocked -WindoorChemistryLocked: WindoorSecureChemistryLocked -WindoorCommandLocked: WindoorSecureCommandLocked -WindoorEngineeringLocked: WindoorSecureEngineeringLocked -WindoorExternalLocked: WindoorSecureExternalLocked -WindoorMedicalLocked: WindoorSecureMedicalLocked -WindoorSecurityLocked: WindoorSecureSecurityLocked -WindoorScienceLocked: WindoorSecureScienceLocked -WindoorHeadOfPersonnelLocked: WindoorSecureHeadOfPersonnelLocked -WindoorAtmosphericsLocked: WindoorSecureAtmosphericsLocked -WindoorParamedicLocked: WindoorSecureParamedicLocked # 2023-07-03 ClothingHeadHelmetHelmet: ClothingHeadHelmetBasic